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

/* Sticky Footer */
html,
body {
  height: 100%;
}

.body-wrapper {
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 100%;
}

div[data-global-resource-path*="header"] {
  grid-row-start: 1;
  grid-row-end: 2;
  min-width: 0; /* Fixes width issues on smaller screens */
}

div[data-global-resource-path*="footer"] {
  grid-row-start: 3;
  grid-row-end: 4;
  min-width: 0; /* Fixes width issues on smaller screens */
}

.body-container-wrapper {
  grid-row-start: 2;
  grid-row-end: 3;
  min-width: 0; /* Fixes width issues on smaller screens */
}

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

  .row-fluid .span10 {
    width: 83.33%;
  }

  .row-fluid .span9 {
    width: 75%;
  }

  .row-fluid .span8 {
    width: 66.66%;
  }

  .row-fluid .span7 {
    width: 58.33%;
  }

  .row-fluid .span6 {
    width: 50%;
  }

  .row-fluid .span5 {
    width: 41.66%;
  }

  .row-fluid .span4 {
    width: 33.33%;
  }

  .row-fluid .span3 {
    width: 25%;
  }

  .row-fluid .span2 {
    width: 16.66%;
  }

  .row-fluid .span1 {
    width: 8.33%;
  }
}

/* Visibilty classes */

.hide {
  display: none;
}

.show {
  display: block;
}

.invisible {
  visibility: hidden;
}

.hidden {
  display: none;
  visibility: hidden;
}

/* Responsive visibilty classes */

.visible-phone {
  display: none !important;
}

.visible-tablet {
  display: none !important;
}

.hidden-desktop {
  display: none !important;
}

@media (max-width: 767px) {
  .visible-phone {
    display: inherit !important;
  }

  .hidden-phone {
    display: none !important;
  }

  .hidden-desktop {
    display: inherit !important;
  }

  .visible-desktop {
    display: none !important;
  }
}

@media (min-width: 768px) and (max-width: 1139px) {
  .visible-tablet {
    display: inherit !important;
  }

  .hidden-tablet {
    display: none !important;
  }

  .hidden-desktop {
    display: inherit !important;
  }

  .visible-desktop {
    display: none !important;
  }
}
.content-wrapper {
  margin: 0 auto;
  padding: 0 40px;
}

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

.dnd-section .dnd-module.widget-span {
  padding: 0 20px;
}

.dnd-section[class*="force-full-width-section"] > .row-fluid,
.dnd-section[class*="force-full-width-section"] .dnd-module.widget-span {
  padding: 0;
}

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

@font-face {
  font-family: 'Avenir';
  src: local('Avenir Light'), local('Avenir-Light'),
      url('https://24209776.fs1.hubspotusercontent-na1.net/hubfs/24209776/raw_assets/public/wes-brands-2023/fonts/Avenir-Light.woff2') format('woff2'),
      url('https://24209776.fs1.hubspotusercontent-na1.net/hubfs/24209776/raw_assets/public/wes-brands-2023/fonts/Avenir-Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Avenir';
  src: local('Avenir Roman'), local('Avenir-Roman'),
      url('https://24209776.fs1.hubspotusercontent-na1.net/hubfs/24209776/raw_assets/public/wes-brands-2023/fonts/Avenir-Roman.woff2') format('woff2'),
      url('https://24209776.fs1.hubspotusercontent-na1.net/hubfs/24209776/raw_assets/public/wes-brands-2023/fonts/Avenir-Roman.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Avenir';
  src: local('Avenir Medium'), local('Avenir-Medium'),
      url('https://24209776.fs1.hubspotusercontent-na1.net/hubfs/24209776/raw_assets/public/wes-brands-2023/fonts/Avenir-Medium.woff2') format('woff2'),
      url('https://24209776.fs1.hubspotusercontent-na1.net/hubfs/24209776/raw_assets/public/wes-brands-2023/fonts/Avenir-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Avenir';
  src: local('Avenir Heavy'), local('Avenir-Heavy'),
      url('https://24209776.fs1.hubspotusercontent-na1.net/hubfs/24209776/raw_assets/public/wes-brands-2023/fonts/Avenir-Heavy.woff2') format('woff2'),
      url('https://24209776.fs1.hubspotusercontent-na1.net/hubfs/24209776/raw_assets/public/wes-brands-2023/fonts/Avenir-Heavy.woff') format('woff');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Avenir';
  src: local('Avenir Black'), local('Avenir-Black'),
      url('https://24209776.fs1.hubspotusercontent-na1.net/hubfs/24209776/raw_assets/public/wes-brands-2023/fonts/Avenir-Black.woff2') format('woff2'),
      url('https://24209776.fs1.hubspotusercontent-na1.net/hubfs/24209776/raw_assets/public/wes-brands-2023/fonts/Avenir-Black.woff') format('woff');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Albert Sans";
  src: local("Albert Sans Regular"), local("AlbertSans-Regular"),
    url('https://24209776.fs1.hubspotusercontent-na1.net/hubfs/24209776/raw_assets/public/wes-brands-2023/fonts/AlbertSans-Regular.woff2') format("woff2"),
    url('https://24209776.fs1.hubspotusercontent-na1.net/hubfs/24209776/raw_assets/public/wes-brands-2023/fonts/AlbertSans-Regular.woff') format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Albert Sans";
  src: local("Albert Sans Medium"), local("AlbertSans-Medium"),
    url('https://24209776.fs1.hubspotusercontent-na1.net/hubfs/24209776/raw_assets/public/wes-brands-2023/fonts/AlbertSans-Medium.woff2') format("woff2"),
    url('https://24209776.fs1.hubspotusercontent-na1.net/hubfs/24209776/raw_assets/public/wes-brands-2023/fonts/AlbertSans-Medium.woff') format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Albert Sans';
  src: local('Albert Sans SemiBold'), local('AlbertSans-SemiBold'),
    url('https://24209776.fs1.hubspotusercontent-na1.net/hubfs/24209776/raw_assets/public/wes-brands-2023/fonts/AlbertSans-SemiBold.woff2') format('woff2'),
    url('https://24209776.fs1.hubspotusercontent-na1.net/hubfs/24209776/raw_assets/public/wes-brands-2023/fonts/AlbertSans-SemiBold.woff') format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Albert Sans";
  src: local("Albert Sans Bold"), local("AlbertSans-Bold"),
    url('https://24209776.fs1.hubspotusercontent-na1.net/hubfs/24209776/raw_assets/public/wes-brands-2023/fonts/AlbertSans-Bold.woff2') format("woff2"),
    url('https://24209776.fs1.hubspotusercontent-na1.net/hubfs/24209776/raw_assets/public/wes-brands-2023/fonts/AlbertSans-Bold.woff') format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "CopperplateCC";
  src: local("CopperplateCC"), local("copperplate-cc"),
    url('https://24209776.fs1.hubspotusercontent-na1.net/hubfs/24209776/raw_assets/public/wes-brands-2023/fonts/copperplate-cc.bold.woff2') format("woff2"),
    url('https://24209776.fs1.hubspotusercontent-na1.net/hubfs/24209776/raw_assets/public/wes-brands-2023/fonts/copperplate-cc.bold.woff') format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Copperplate";
  src: local("Copperplate"), local("copperplate-inner"),
    url('https://24209776.fs1.hubspotusercontent-na1.net/hubfs/24209776/raw_assets/public/wes-brands-2023/fonts/copperplate-inner.woff2') format("woff2"),
    url('https://24209776.fs1.hubspotusercontent-na1.net/hubfs/24209776/raw_assets/public/wes-brands-2023/fonts/copperplate-inner.woff') format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "LHF Antique Half Block";
  src: local("LHF Antique Half Block"), local("LHFAntiqueHalfBlock"),
    url('https://24209776.fs1.hubspotusercontent-na1.net/hubfs/24209776/raw_assets/public/wes-brands-2023/fonts/LHFAntiqueHalfBlock.woff2') format("woff2"),
    url('https://24209776.fs1.hubspotusercontent-na1.net/hubfs/24209776/raw_assets/public/wes-brands-2023/fonts/LHFAntiqueHalfBlock.woff') format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Spezia Serif";
  src: local("Spezia Serif"), local("SpeziaSerif-RegularA"),
    url('https://24209776.fs1.hubspotusercontent-na1.net/hubfs/24209776/raw_assets/public/wes-brands-2023/fonts/SpeziaSerif-RegularA.woff2') format("woff2"),
    url('https://24209776.fs1.hubspotusercontent-na1.net/hubfs/24209776/raw_assets/public/wes-brands-2023/fonts/SpeziaSerif-RegularA.woff') format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Spezia Serif";
  src: local("Spezia Serif"), local("SpeziaSerif-RegularItalicA"),
    url('https://24209776.fs1.hubspotusercontent-na1.net/hubfs/24209776/raw_assets/public/wes-brands-2023/fonts/SpeziaSerif-RegularItalicA.woff2') format("woff2"),
    url('https://24209776.fs1.hubspotusercontent-na1.net/hubfs/24209776/raw_assets/public/wes-brands-2023/fonts/SpeziaSerif-RegularItalicA.woff') format("woff");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Gotham";
  src: local("Gotham"), local("Gotham-Book"),
    url('https://24209776.fs1.hubspotusercontent-na1.net/hubfs/24209776/raw_assets/public/wes-brands-2023/fonts/Gotham-Book.woff2') format("woff2"),
    url('https://24209776.fs1.hubspotusercontent-na1.net/hubfs/24209776/raw_assets/public/wes-brands-2023/fonts/Gotham-Book.woff') format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gotham";
  src: local("Gotham"), local("Gotham-Bold"),
    url('https://24209776.fs1.hubspotusercontent-na1.net/hubfs/24209776/raw_assets/public/wes-brands-2023/fonts/Gotham-Bold.woff2') format("woff2"),
    url('https://24209776.fs1.hubspotusercontent-na1.net/hubfs/24209776/raw_assets/public/wes-brands-2023/fonts/Gotham-Bold.woff') format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

html {
  background-color: #FAFAFA;
  color: #000;
  font-family: 'Avenir', sans-serif;
  line-height: 160%;
  word-break: break-word;
}

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

/* Paragraphs */

p {
  margin: 0 0 1.6em;
}

p:last-child {
  margin-bottom: 0 !important;
}

/* Anchors */

a {
  cursor: pointer;
  text-decoration: underline;
  transition: color 0.15s linear;
}

a:hover,
a:focus {
  text-decoration: underline;
}

a:focus {
  outline: 0;
}

/* Headings */

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 160%;
  margin: 0 0 0.4583em;
}

h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child {
  margin-bottom: 0 !important;
}

/* Lists */

ul,
ol {
  margin: 0 0 1.6em;
  padding-left: 25px;
}

ul:last-child,
ol:last-child {
  margin-bottom: 0 !important;
}

ul ul,
ol ul,
ul ol,
ol ol {
  margin: 0;
  padding-left: 0;
}

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

/* Code blocks */

pre {
  overflow: auto;
}

code {
  vertical-align: bottom;
}

/* Blockquotes */

blockquote {
  margin: 0 0 1.6em;
  quotes: "\201C" "\201D";
  text-align: center;
}

blockquote:last-child {
  margin-bottom: 0 !important;
}

blockquote:before {
  content: open-quote;
}

blockquote:after {
  content: close-quote;
}

/* Horizontal rules */

hr {
  border: 0;
  border-bottom: 1px solid #CCC;
  margin: 1.6em 0;
}

hr:first-child {
  margin-top: 0;
}

hr:last-child {
  margin-bottom: 0 !important;
}

/* Image alt text */

img {
  font-size: 9px;
  height: auto;
  max-width: 100%;
  word-break: normal;
}
button,
.button {
  cursor: pointer;
  display: inline-block;
  font-family: 'Work Sans', sans-serif;
  font-weight: 500;
  line-height: 100.6%;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

button:disabled,
.button:disabled {
  background-color: #D0D0D0 !important;
  border-color: #D0D0D0 !important;
  color: #E6E6E6 !important;
}

.button {
  display: inline-flex;
  gap: 8px;
  justify-content: center;
}

.button svg {
  display: block;
  flex-shrink: 0;
  height: auto;
  width: 16px;
}

a.button {
  text-decoration: none;
}

/* No button */

.no-button {
  border-radius: 0;
  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;
}

.no-button,
.no-button:hover,
.no-button:focus,
.no-button:active {
  background: none;
  border: none;
  color: initial;
  text-decoration: none;
  transition: none;
}
/* Fields */

.hs-form-field {
  margin-bottom: 20px;
}

/* Labels */

form label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.04em;
  line-height: 140%;
}

.hs-form-field > label {
  margin-bottom: 5px;
}

/* Help text */

form legend {
  font-size: 12px;
  letter-spacing: 0.04em;
  line-height: 140%;
}

/* Inputs */

form input[type=text],
form input[type=email],
form input[type=password],
form input[type=tel],
form input[type=number],
form input[type=file],
form select,
form textarea {
  background-color: #FFF;
  border: 0.5px solid #000;
  display: block;
  font-size: 12px;
  letter-spacing: 0.04em;
  line-height: 140%;
  padding: 19px 30px;
  width: 100%;
}

form input[type=text]:focus,
form input[type=email]:focus,
form input[type=password]:focus,
form input[type=tel]:focus,
form input[type=number]:focus,
form input[type=file]:focus,
form select:focus,
form textarea:focus {
  border-color: #000;
  outline: 0;
}

form select {
  padding: 10px 16px;
}

form textarea {
  height: 150px;
  resize: vertical;
}

form fieldset {
  margin: 0 -9px !important;
  max-width: none !important;
}

form fieldset .hs-form-field {
  padding: 0 9px;
}

form fieldset.form-columns-1 .input,
form fieldset.form-columns-1 .hs-input:not([type="checkbox"]):not([type="radio"]),
form fieldset.form-columns-2 .input,
form fieldset.form-columns-2 .hs-input:not([type="checkbox"]):not([type="radio"]),
form fieldset.form-columns-3 .input,
form fieldset.form-columns-3 .hs-input:not([type="checkbox"]):not([type="radio"]) {
  margin-right: 0 !important;
  width: 100% !important;
}

form fieldset.form-columns-2 .hs-form-field {
  width: 50% !important;
}

form fieldset.form-columns-3 .hs-form-field {
  width: 33.33% !important;
}

@media (max-width: 767px) {
  form fieldset.form-columns-2 .hs-form-field,
  form fieldset.form-columns-3 .hs-form-field {
    width: 100% !important;
  }
}

/* Inputs - checkbox/radio */

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

form .inputs-list > li {
  display: block;
  margin: 5px 0 0;
}

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

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

/* 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-button,
.fn-date-picker .pika-next,
.fn-date-picker .pika-prev {
  border-radius: 0;
  min-width: auto;
}

.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;
}

/* Placeholder */

::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  font-size: 12px;
  letter-spacing: 0.04em;
  line-height: 140%;
  text-transform: uppercase;
}

::-moz-placeholder { /* Firefox 19+ */
  font-size: 12px;
  letter-spacing: 0.04em;
  line-height: 140%;
  text-transform: uppercase;
}

:-ms-input-placeholder { /* IE 10+ */
  font-size: 12px;
  letter-spacing: 0.04em;
  line-height: 140%;
  text-transform: uppercase;
}

:-moz-placeholder { /* Firefox 18- */
  font-size: 12px;
  letter-spacing: 0.04em;
  line-height: 140%;
  text-transform: uppercase;
}

::placeholder {
  font-size: 12px;
  letter-spacing: 0.04em;
  line-height: 140%;
  text-transform: uppercase;
}

/* Headings and text */

.widget-type-form .form-title {
  font-size: 16px;
  font-weight: 800;
  line-height: normal;
  margin-bottom: 20px;
}

.widget-type-form .hs-richtext,
.widget-type-form .hs-richtext p {
  font-size: 14px;
  margin: 0 0 22px;
}

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

/* GDPR */

.legal-consent-container .inputs-list > li:first-child {
  margin-top: 0;
}

.legal-consent-container .hs-form-booleancheckbox-display > span {
  margin-left: 2em !important;
}

/* Validation */

.hs_error_rollup {
  color: red;
  font-size: 12px;
  letter-spacing: 0.04em;
  line-height: 140%;
  margin-bottom: 25px;
}

.hs-form-required {
  color: red;
}

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

.hs-error-msg {
  color: #DA3743;
  font-size: 14px;
  letter-spacing: 0.05em;
  line-height: 121.4286%;
  margin-top: 5px;
}

/* Submit button */

form input[type=submit],
form .hs-button {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 18 12'%3E%3Cpath fill='%23000' d='M1 5.25a.75.75 0 0 0 0 1.5v-1.5Zm16.53 1.28a.75.75 0 0 0 0-1.06L12.757.697a.75.75 0 0 0-1.06 1.06L15.939 6l-4.242 4.243a.75.75 0 0 0 1.06 1.06L17.53 6.53ZM1 6.75h16v-1.5H1v1.5Z'/%3E%3C/svg%3E");
  background-position: 29px 50%;
  background-repeat: no-repeat;
  background-size: 18px 12px;
  cursor: pointer;
  display: inline-block;
  font-family: 'Work Sans', sans-serif;
  font-weight: 500;
  line-height: 100.6%;
  margin-top: 20px;
  padding: 15px 31px 15px 54px !important;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.15s linear, border-color 0.15s linear, color 0.15s linear, padding 0.15s linear;
  white-space: normal;
}

form input[type=submit]:hover,
form input[type=submit]:focus,
form .hs-button:hover,
form .hs-button:focus {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 18 12'%3E%3Cpath fill='%23fff' d='M1 5.25a.75.75 0 0 0 0 1.5v-1.5Zm16.53 1.28a.75.75 0 0 0 0-1.06L12.757.697a.75.75 0 0 0-1.06 1.06L15.939 6l-4.242 4.243a.75.75 0 0 0 1.06 1.06L17.53 6.53ZM1 6.75h16v-1.5H1v1.5Z'/%3E%3C/svg%3E");
  background-position: right 29px top 50%;
  padding: 15px 54px 15px 31px !important;
}

/* Captcha */

.grecaptcha-badge {
  margin: 0 auto;
}
/* Table */

table {
  border-collapse: collapse;
  margin-bottom: 25px;
  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
*/

.animated {
  animation-duration: 0.5s;
  animation-fill-mode: both;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.fadeIn {
  animation-name: fadeIn;
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

.fadeOut {
  animation-name: fadeOut;
}
html.age-restricted {
  overflow: hidden;
}

.age_gate {
  background-color: #000;
  color: #FFF;
  height: 100vh;
  left: 0;
  opacity: 1;
  -webkit-overflow-scrolling: touch;
  overflow-y: scroll;
  position: fixed;
  top: 0;
  transition: opacity 0.4s ease-out, visibility 0.4s ease-out;
  visibility: visible;
  width: 100%;
  z-index: 99998;
}

html.age_gate-hidden .age_gate,
.age_gate.hidden {
  opacity: 0;
  visibility: hidden;
}

.age_gate-wrapper {
  align-items: center;
  display: flex;
  flex-flow: row wrap;
  isolation: isolate;
  min-height: 100vh;
  padding: 62px 60px;
  position: relative;
}

.age_gate-content {
  flex-basis: 100%;
  text-align: center;
}

.age_gate-logo {
  margin: 0 0 69px;
}

.age_gate-logo-image {
  display: block;
  margin: 0 auto;
}

.age_gate-heading {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 100%;
  margin: 0 0 27px;
  text-align: center;
  text-transform: capitalize;
}

.age_gate-error-message {
  color: #c10000;
}

.age_gate-actions {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  gap: 15px;
}

.age_gate-actions .button {
  font-family: 'Avenir', sans-serif;
  font-size: 9.46154px;
  font-weight: 900;
  letter-spacing: 1.18269px;
  line-height: 16px;
  min-width: 110px;
  text-align: center;
  text-transform: uppercase;
}

.age_gate-actions .button:hover,
.age_gate-actions .button:focus {
  border-color: #FFFFFF;
}

@media (max-width: 767px) {
  .age_gate-wrapper {
    padding: 32px 30px;
  }

  .age_gate-heading {
    font-size: 28px;
    line-height: 140%;
  }
}
/* Sticky Header */

.main-header {
  background-color: #FAFAFA;
  /* overflow: hidden; */
  position: relative;
  width: 100%;
  z-index: 999;
}

.main-header::before {
  background-color: #000;
  bottom: 0;
  content: "";
  display: block;
  height: 0.5px;
  left: 0;
  opacity: 0.4;
  position: absolute;
  width: 100%;
  z-index: 2;
}

body[data-sticky="true"] .main-header {
  background-color: #FAFAFA;
  position: fixed;
  top: 0;
  left: 0;
}

body[data-nav="true"] {
  overflow: hidden;
}

/* Header Container */

.header-container {
  display: flex;
  justify-content: space-between;
}

.header-container.content-wrapper {
  padding: 0;
}

.main-header--no-navigation .header-container {
  justify-content: center;
}

/* Navigation Skipper */

.header-skip {
  height: 1px;
  left: -1000px;
  overflow: hidden;
  position: absolute;
  text-align: left;
  top: -1000px;
  width: 1px;
}

.header-skip:hover,
.header-skip:focus,
.header-skip:active {
  height: auto;
  left: 0;
  overflow: visible;
  top: 0;
  width: auto;
}

/* Logo */

.header-logo {
  align-items: center;
  background-color: #000;
  border-right: 0.5px solid #000;
  display: flex;
  flex-wrap: wrap;
  flex: 0 0 128px;
  justify-content: center;
  line-height: 0;
  position: relative;
  z-index: 3;
}

.header-logo a {
  padding: 13px;
}

.header-logo img {
  margin: 0 auto;
}

.header-logo .logo-company-name {
  font-size: 18px;
}

/* Our Brands */

.header-brands {
  flex-shrink: 0;
  font-family: Avenir, sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 100.6%;
  margin-right: auto;
  position: relative;
  text-transform: uppercase;
  width: 145.26px;
  z-index: 1;
}

.header-brands-wrapper {
  align-items: center;
  border-right: 0.5px solid rgba(0, 0, 0, 0.4);
  color: #000;
  display: flex;
  left: 0;
  min-height: 100%;
  overflow: hidden;
  padding-right: 24px;
  position: absolute;
  top: 0;
  transition: background 0.2s ease 0.2s, width 0.2s ease;
  width: 145.26px;
}

.header-brands:hover .header-brands-wrapper,
.header-brands:focus .header-brands-wrapper,
.header-brands:focus-within .header-brands-wrapper {
  background-color: #FFF;
  color: #000;
  transition: background 0.2s ease, width 0.2s ease;
  width: 640px;
  /* width: 530.09px; */
  /* width: 368.74px; */
}

.header-brands-label {
  align-items: center;
  display: flex;
  flex-shrink: 0;
  gap: 8px;
  padding: 24px 0 24px 24px;
}

.header-brands-label span {
  margin-top: 2px;
}

.header-brands-label svg {
  height: auto;
  width: 10px;
}

.header-brands-label svg:last-child,
.header-brands:hover .header-brands-label svg:first-child,
.header-brands:focus .header-brands-label svg:first-child,
.header-brands:focus-within .header-brands-label svg:first-child {
  display: none;
}

.header-brands:hover .header-brands-label svg:last-child,
.header-brands:focus .header-brands-label svg:last-child,
.header-brands:focus-within .header-brands-label svg:last-child {
  display: block;
}

#hs_cos_wrapper_navigation_brands {
  flex-shrink: 0;
  margin-left: 33px;
}

#hs_cos_wrapper_navigation_brands li {
  margin-top: 2px;
}

#hs_cos_wrapper_navigation_brands a {
  color: inherit;
}

#hs_cos_wrapper_navigation_brands a:hover,
#hs_cos_wrapper_navigation_brands a:focus {
  text-decoration: none;
}

#hs_cos_wrapper_navigation_brands .hs-menu-wrapper ul {
  gap: 30px;
}

/* Navigation */

.header-navigation {
  display: flex;
}

#hs_cos_wrapper_navigation_header {
  align-self: center;
  font-family: Avenir, sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 100.6%;
  padding: 0 38.5px;
  text-transform: uppercase;
}

#hs_cos_wrapper_navigation_header a {
  text-decoration: none;
}

#hs_cos_wrapper_navigation_header a:hover,
#hs_cos_wrapper_navigation_header a:focus {
  text-decoration: underline;
}

#hs_cos_wrapper_navigation_header .hs-menu-wrapper ul {
  gap: 32px;
}

.header-navigation-wrapper {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #0C0C0C;
  color: #FFF;
  height: 100%;
  left: 0;
  min-height: 100%;
  opacity: 0;
  -webkit-overflow-scrolling: touch;
  overflow-y: scroll;
  position: fixed;
  right: 0;
  top: 0;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  visibility: hidden;
  width: 100%;
  z-index: 999;
}

.header-navigation-wrapper>.content-wrapper {
  padding: 116px 16px 55px;
  width: 100%;
}

.header-navigation--open,
.header-navigation--close {
  background-color: transparent;
  border-radius: 0;
  border: 0;
  display: block;
  padding: 0;
  position: relative;
}

.header-navigation--open:hover,
.header-navigation--open:focus,
.header-navigation--close:hover,
.header-navigation--close:focus {
  background-color: transparent;
  border: 0;
}

.header-navigation--open:active,
.header-navigation--close:active {
  transform: scale(0.9);
}

.header-navigation--open svg,
.header-navigation--close svg {
  display: block;
  margin: 0 auto;
  width: auto;
}

.header-navigation--open {
  align-self: center;
  color: #000;
  display: none;
  flex-shrink: 0;
  height: 18px;
  margin-right: 40px;
  width: 28px;
}

.header-navigation--open:hover,
.header-navigation--open:hover {
  background-color: transparent;
  border-left-color: transparent;
  color: #000;
}

.header-navigation--open svg {
  height: 18px;
}

.header-navigation-header {
  align-items: center;
  display: flex;
  flex: 0 1 100%;
  justify-content: space-between;
  padding: 13px 31px 13px 35px;
}

#hs_cos_wrapper_navigation_logo {
  width: auto;
}

.header-navigation--close {
  color: #FFF;
}

.header-navigation--close:hover,
.header-navigation--close:focus {
  color: #FFF;
}

.header-navigation--close svg {
  height: 18px;
}

#hs_cos_wrapper_navigation_primary {
  font-size: 40px;
  font-weight: 500;
  letter-spacing: 0.2em;
  line-height: normal;
  text-align: center;
  text-transform: uppercase;
}

#hs_cos_wrapper_navigation_primary a,
#hs_cos_wrapper_navigation_primary .menu__child-toggle {
  color: inherit;
}

#hs_cos_wrapper_navigation_primary a {
  padding-left: 0.2em;
  text-underline-offset: 0.2em;
}

#hs_cos_wrapper_navigation_primary .menu__item {
  justify-content: center;
}

#hs_cos_wrapper_navigation_primary .menu__item:not(:first-child) {
  margin-top: 40px;
}

.header-navigation-brands {
  margin-top: 141px;
}

.header-navigation-brands h4 {
  color: #FFF;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.5em;
  line-height: 100.6%;
  margin-bottom: 40px;
  opacity: 0.5;
  padding-left: 0.5em;
  text-align: center;
  text-transform: uppercase;
}

#hs_cos_wrapper_navigation_popup_brands {
  font-size: 40px;
  font-weight: 500;
  letter-spacing: 0.1042em;
  letter-spacing: 0.2em;
  line-height: normal;
  text-align: center;
  text-transform: uppercase;
}

#hs_cos_wrapper_navigation_popup_brands a {
  color: inherit;
  padding-left: 0.2em;
  text-decoration: none;
  text-underline-offset: 0.2em;
}

#hs_cos_wrapper_navigation_popup_brands a:hover,
#hs_cos_wrapper_navigation_popup_brands a:focus {
  text-decoration: underline;
}

#hs_cos_wrapper_navigation_popup_brands .menu__item {
  justify-content: center;
}

#hs_cos_wrapper_navigation_popup_brands .menu__item:not(:first-child) {
  margin-top: 40px;
}

.header-navigation-socials {
  margin-top: 152px;
}

.header-navigation-socials h4 {
  color: #FFF;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.5em;
  line-height: 100.6%;
  margin-bottom: 24px;
  padding-left: 0.5em;
  text-align: center;
  text-transform: uppercase;
}

.header-navigation-socials .social-links__link {
  color: inherit;
  border-color: rgba(255, 255, 255, 0.16);
}

.header-navigation-socials .social-links__link:hover,
.header-navigation-socials .social-links__link:focus {
  background-color: #FFF;
  border-color: #FFF;
  color: #000;
}

.header-navigation-socials .social-links__icon {
  height: 68px;
  width: 68px;
}

.header-navigation-socials .social-links__icon svg {
  height: 20px;
}

/* Language Switcher */

.header__language-switcher {
  align-items: center;
  border-left: 0.5px solid rgba(0, 0, 0, 0.4);
  color: #000;
  cursor: pointer;
  display: flex;
  flex-shrink: 0;
  height: 68px;
  text-align: center;
  width: 94px;
}

.header__language-switcher:hover,
.header__language-switcher:focus {
  background-color: #000;
  border-left-color: #000;
  color: #FFF;
  transition: background-color 0.15s linear, border-color 0.15s linear, color 0.15s linear;
}

.header__language-switcher .lang_switcher_class {
  position: static;
}

.header__language-switcher .lang_list_class {
  background-color: #FFF;
  border: 1px solid;
  box-shadow: 0 2px 9px 0 rgba(0, 0, 0, 0.2);
  display: block;
  left: auto;
  min-width: 120px;
  opacity: 0;
  padding-top: 0;
  right: -8px;
  text-align: left;
  top: 100%;
  transform: translateX(0);
  transition: opacity 0.3s;
  visibility: hidden;
}

.header__language-switcher:hover .lang_list_class,
.header__language-switcher:focus .lang_list_class {
  opacity: 1;
  transition: opacity 0.3s;
  visibility: visible;
}

.header__language-switcher .lang_list_class:before {
  left: auto;
  right: 0;
  top: -20px;
}

.header__language-switcher .lang_list_class:after {
  left: auto;
  right: 0;
  top: -19px;
}

.header__language-switcher .lang_list_class.first-active::after {
  top: -19px;
  transition: 0.3s;
}

.header__language-switcher .lang_list_class li {
  border: none;
  font-size: 10px;
  letter-spacing: 1px;
  line-height: 120%;
  padding: 5px 10px;
  text-align: right;
  text-transform: uppercase;
}

.header__language-switcher .lang_list_class li:first-child {
  border-top: none;
}

.header__language-switcher .lang_list_class li:last-child {
  border-bottom: none;
}

.header__language-switcher .lang_list_class li:hover {
  transition: background-color 0.3s;
}

.header__language-switcher .lang_list_class a:hover,
.header__language-switcher .lang_list_class a:focus {
  color: #8B6E4B;
}

.header__language-switcher--label {
  font-size: 10px;
  letter-spacing: 1px;
  line-height: 120%;
  width: 100%;
}

.header__language-switcher--label-current {
  font-family: 'Work Sans', sans-serif;
  font-size: 10px;
  font-weight: 500;
  line-height: 100.6%;
  text-transform: uppercase;
}

.header__language-switcher .globe_class {
  background-image: none;
  height: 0;
  width: 0;
}
.main-footer {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #0C0C0C;
  color: #FFF;
  padding-top: 20px;
}

.main-footer a {
  color: inherit;
  text-decoration: none;
  text-underline-offset: 0.25em;
}

.main-footer a:hover,
.main-footer a:focus {
  color: inherit;
  text-decoration: underline;
}

.main-footer--top {
  border-top: 1px solid rgba(79, 79, 79, 0.7);
  padding: 0 20px;
}

.main-footer--top>.content-wrapper {
  border-color: rgba(79, 79, 79, 0.7);
  border-style: solid;
  border-width: 0 1px 1px;
  display: grid;
  grid-template-columns: 42.418% 1fr;
  max-width: 1400px;
  padding: 0;
  position: relative;
}

.main-footer--top>.content-wrapper::before {
  background-color: #4F4F4F;
  content: "";
  display: block;
  height: 100%;
  left: 42.418%;
  margin-left: -0.5px;
  opacity: 0.7;
  position: absolute;
  top: 0;
  width: 1px;
}

.main_footer-column {
  min-height: 358px;
  padding: 53px 53px 44px;
}

#hs_cos_wrapper_footer_form {
  margin: 0 auto;
  max-width: 422px;
}

.main_footer-column-form .hs-form-field {
  margin-bottom: 32px;
}

.main_footer-column-form form label {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 160%;
}

.main_footer-column-form form input[type=text],
.main_footer-column-form form input[type=email],
.main_footer-column-form form input[type=password],
.main_footer-column-form form input[type=tel],
.main_footer-column-form form input[type=number],
.main_footer-column-form form input[type=file],
.main_footer-column-form form select,
.main_footer-column-form form textarea {
  background-color: transparent;
  border-color: #4F4F4F;
  border-width: 0 0 1px;
  color: #FFF;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 160%;
  padding: 0 0 8px;
}

.main_footer-column-form form input[type=text]:focus,
.main_footer-column-form form input[type=email]:focus,
.main_footer-column-form form input[type=password]:focus,
.main_footer-column-form form input[type=tel]:focus,
.main_footer-column-form form input[type=number]:focus,
.main_footer-column-form form input[type=file]:focus,
.main_footer-column-form form select:focus,
.main_footer-column-form form textarea:focus {
  border-color: #FFF;
}

.main_footer-column-form ::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 160%;
  text-transform: none;
}

.main_footer-column-form ::-moz-placeholder {
  /* Firefox 19+ */
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 160%;
  text-transform: none;
}

.main_footer-column-form :-ms-input-placeholder {
  /* IE 10+ */
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 160%;
  text-transform: none;
}

.main_footer-column-form :-moz-placeholder {
  /* Firefox 18- */
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 160%;
  text-transform: none;
}

.main_footer-column-form ::placeholder {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 160%;
  text-transform: none;
}

.main_footer-column-form form .hs-submit {
  text-align: right;
}

.main_footer-column-form form input[type=submit],
.main_footer-column-form form .hs-button {
  margin-top: 7px;
}

.main_footer-column-form form input[type=submit]:hover,
.main_footer-column-form form input[type=submit]:focus,
.main_footer-column-form form .hs-button:hover,
.main_footer-column-form form .hs-button:focus {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 18 12'%3E%3Cpath fill='%23000' d='M1 5.25a.75.75 0 0 0 0 1.5v-1.5Zm16.53 1.28a.75.75 0 0 0 0-1.06L12.757.697a.75.75 0 0 0-1.06 1.06L15.939 6l-4.242 4.243a.75.75 0 0 0 1.06 1.06L17.53 6.53ZM1 6.75h16v-1.5H1v1.5Z'/%3E%3C/svg%3E");
  background-color: #FFF;
  color: #000;
}

.main_footer-column-links {
  display: grid;
  gap: 12%;
  grid-template-columns: 1fr auto;
  padding-left: 11.305%;
  padding-right: 8.323%;
}

.main_footer-column-links h6 {
  font-size: 14px;
  font-weight: 800;
  line-height: normal;
  margin-bottom: 49px;
  opacity: 0.5;
  text-transform: uppercase;
}

.main_footer-links {
  display: flex;
  gap: 12%;
  /* gap: 38px; */
  justify-content: space-between;
}

@media (min-width: 768px) {
  .main_footer-links>div {
    flex: 0 1 100%;
  }
}

.main_footer-links .widget-type-simple_menu,
.main_footer-socials .widget-type-simple_menu {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 124%;
  text-transform: uppercase;
}

.main_footer-links .hs-menu-wrapper ul,
.main_footer-socials .hs-menu-wrapper ul {
  gap: 24px;
}

.main_footer-socials .social-links__link {
  border-color: rgba(255, 255, 255, 0.16);
}

.main_footer-socials .social-links__link:hover,
.main_footer-socials .social-links__link:focus {
  background-color: #FFF;
  border-color: #FFF;
  color: #000;
}

.main-footer--bottom {
  font-family: Avenir, sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: normal;
  padding: 24px 0 31px;
}

.main-footer--bottom p {
  margin: 0;
}

.main-footer--bottom a {
  opacity: 0.5;
}

.main-footer--bottom a:hover,
.main-footer--bottom a:focus {
  opacity: 1;
  transition: opacity 0.15s linear;
}

.main-footer--bottom>.content-wrapper {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  padding: 0 20px;
}

.main-footer--bottom .copyright {
  opacity: 0.5;
}

.main-footer--bottom .hs-menu-wrapper ul {
  gap: 16px;
}
/* Logo */

.hs_cos_wrapper_type_logo,
.hs_cos_wrapper_type_logo img,
.hs_cos_wrapper_type_logo a {
  display: inline-block;
  vertical-align: top;
}

/* 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 ul {
  flex-direction: row;
}

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

/* Images */

.hs_cos_wrapper_type_linked_image,
.hs-image-widget {
  display: inline-block;
  vertical-align: top;
}

/* Title */

#hs_cos_wrapper_page_header {
  padding: 56px 0;
}

#hs_cos_wrapper_page_header h1,
#hs_cos_wrapper_page_header h2,
#hs_cos_wrapper_page_header h3,
#hs_cos_wrapper_page_header h4,
#hs_cos_wrapper_page_header h5,
#hs_cos_wrapper_page_header h6 {
  color: #000;
  font-family: Anton, sans-serif;
  font-size: 128px;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 0;
  text-align: center;
  text-transform: uppercase;
}

#hs_cos_wrapper_page_header .secondary-header {
  color: #1F1F1F;
  font-size: 20px;
  font-weight: 500;
  line-height: normal;
  margin: 0 auto;
  max-width: 899px;
  text-align: center;
}
@media (max-width: 1199px) {
	.main_footer-column-links {
		gap: 58px;
		grid-template-columns: 1fr;
	}

	.main_footer-column-links h6 {
		margin-bottom: 17px;
	}
}

@media (min-width: 768px) and (max-width: 1024px) {
	.widget-type-form .form-title {
		font-size: 24px;
		letter-spacing: -0.03em;
		line-height: 144%;
		margin-bottom: 23px;
	}
}

@media (max-width: 1024px) {
  #hs_cos_wrapper_navigation_header {
		display: none;
	}

	body[data-nav="true"] .header-navigation-wrapper {
		opacity: 1;
		visibility: inherit;
	}

	.header-navigation--open {
		display: block;
	}

  #hs_cos_wrapper_page_header {
    padding: 24px 0;
  }

	.main-footer--top {
		border-top: 0;
	}

	.main-footer--top>.content-wrapper {
		border-top-width: 1px;
		grid-template-columns: 50.127% 1fr;
	}

	.main-footer--top>.content-wrapper::before {
		left: 50.127%;
	}

	.main_footer-column {
		padding: 33px 50px 49px 44px;
	}

	.main_footer-column-links {
		padding: 32px 44px 49px 54px;
	}

	.main_footer-links .widget-type-simple_menu,
	.main_footer-socials .widget-type-simple_menu {
		font-size: 12px;
	}

	.main-footer--bottom {
		padding: 16px 0;
	}
}
@media (max-width: 767px) {
  .content-wrapper {
    padding: 0 30px;
  }

  .dnd-section>.row-fluid,
  .dnd-section .dnd-module.widget-span {
    padding: 0 15px;
  }

  .header-logo {
    flex-basis: 86px;
  }

  .header-logo a {
    padding: 8px;
  }

  .header-logo .widget-type-custom-logo img {
    height: 40px;
    width: auto;
  }

  .header-brands {
    width: 123.26px;
  }

  .header-brands-wrapper {
    overflow: visible;
    padding-right: 0;
    width: auto;
  }

  .header-brands:hover .header-brands-wrapper,
  .header-brands:focus .header-brands-wrapper,
  .header-brands:focus-within .header-brands-wrapper {
    width: auto;
  }

  .header-navigation-wrapper>.content-wrapper {
    padding: 94px 30px 56px;
  }

  .header-brands-label {
    padding: 21px 13px;
  }

  #hs_cos_wrapper_navigation_brands {
    background-color: #fafafa;
    border-color: rgba(0, 0, 0, .4);
    border-style: solid;
    border-width: 0 0.5px 0.5px;
    left: -0.5px;
    margin-left: 0;
    margin-right: -0.5px;
    opacity: 0;
    padding: 21px 13px;
    position: absolute;
    top: 100%;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    visibility: hidden;
  }

  .header-brands:hover #hs_cos_wrapper_navigation_brands,
  .header-brands:focus #hs_cos_wrapper_navigation_brands,
  .header-brands:focus-within #hs_cos_wrapper_navigation_brands {
    opacity: 1;
    visibility: visible;
  }

  .header-navigation--open {
    margin-right: 14px;
  }

  .header-navigation-header {
    padding: 8px 16px;
  }

  #hs_cos_wrapper_navigation_primary {
    font-size: 26px;
  }

  #hs_cos_wrapper_navigation_primary .menu__item:not(:first-child) {
    margin-top: 28px;
  }

  .header-navigation-brands {
    margin-top: 92px;
  }

  .header-navigation-brands h4 {
    font-size: 16px;
    margin-bottom: 24px;
  }

  #hs_cos_wrapper_navigation_popup_brands {
    font-size: 26px;
  }

  #hs_cos_wrapper_navigation_popup_brands .menu__item:not(:first-child) {
    margin-top: 28px;
  }

  .header-navigation-socials {
    margin-top: 106px;
  }

  .header-navigation-socials h4 {
    font-size: 12px;
    margin-bottom: 20px;
  }

  .header-navigation-socials .social-links__icon {
    height: 40px;
    width: 40px;
  }

  .header-navigation-socials .social-links__icon svg {
    height: 12px;
  }

  .header__language-switcher {
    display: none;
  }

  .widget-type-form .form-title {
    font-size: 24px;
    line-height: 144%;
    letter-spacing: -0.03em;
  }

  #hs_cos_wrapper_page_header {
    padding: 32px 0;
  }

  #hs_cos_wrapper_page_header h1,
  #hs_cos_wrapper_page_header h2,
  #hs_cos_wrapper_page_header h3,
  #hs_cos_wrapper_page_header h4,
  #hs_cos_wrapper_page_header h5,
  #hs_cos_wrapper_page_header h6 {
    font-size: 64px;
  }

  #hs_cos_wrapper_page_header .secondary-header {
    font-size: 14px;
  }

  .main-footer {
    padding-top: 40px;
  }

  .main-footer--top {
    padding: 0 24px;
  }

  .main-footer--top>.content-wrapper {
    display: block;
    padding: 0;
  }

  .main-footer--top>.content-wrapper::before {
    content: none;
  }

  .main_footer-column {
    min-height: auto;
    padding: 35px 23px 40px;
  }

  #hs_cos_wrapper_footer_form {
    max-width: none;
  }

  .main_footer-column-links {
    border-top: 1px solid rgba(79, 79, 79, 0.7);
    display: flex;
    flex-wrap: wrap;
    gap: 56px 62px;
    padding: 32px 20px 40px 15px;
  }

  .main_footer-links {
    flex-wrap: wrap;
    gap: 56px 62px;
    justify-content: flex-start;
  }

  .main_footer-column-links h6 {
    margin-bottom: 24px;
  }

  .main_footer-links .widget-type-simple_menu,
  .main_footer-socials .widget-type-simple_menu {
    font-size: 14px;
  }

  .main-footer--bottom {
    padding: 24px 0;
  }

  .main-footer--bottom>.content-wrapper {
    padding: 0 24px;
  }
}

@media (max-width: 390px) {
  .main_footer-links {
    gap: 56px 40px;
    justify-content: space-between;
  }
}

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