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

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
   ========================================================================== */

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

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

   /* 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;
  flex-flow: column wrap;
  grid-template-rows: auto auto 1fr auto;
  min-height: 100%;
}

.body-wrapper>div,
.body-container-wrapper {
  min-width: 0; /* Fixes width issues on smaller screens when parent is flex or grid */
  width: 100%;
}

/* Mobile layout */

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

.row-fluid [class*='span'] {
  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: initial !important;
  }

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

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

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

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

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

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

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

.dnd-section:not([class*="force-full-width-section"])>.row-fluid {
  margin: 0 auto;
  padding: 0 20px;
}

.dnd-section:not([class*="force-full-width-section"]) .dnd-module.widget-span {
  padding: 0 20px;
}

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

@font-face {
  font-family: 'Helvetica Now Display';
  src: local('HelveticaNowDisplay-Medium'),
    url('//47851717.fs1.hubspotusercontent-na1.net/hubfs/47851717/raw_assets/public/douglas-may-2025/fonts/HelveticaNowDisplay-Medium.woff2') format('woff2'),
    url('//47851717.fs1.hubspotusercontent-na1.net/hubfs/47851717/raw_assets/public/douglas-may-2025/fonts/HelveticaNowDisplay-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

html {
  background-color: #fefaf0;
  font-family: "Cardo", serif;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
  color: #26311b;
  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.3em;
}

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

/* Anchors */

a {
  cursor: pointer;
  text-decoration-line: none;
  text-decoration-thickness: from-font;
  text-underline-offset: 0.09375em;
  transition: color 0.15s linear;
}

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

a:focus {
  outline: 0;
}

/* Headings */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: serif;
  line-height: 120%;
  margin: 0 0 0.5em;
}

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.4em;
  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.4em;
  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.4em 0;
}

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

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

/* Image alt text */

img,
picture {
  font-size: 9px;
  height: auto;
  max-width: 100%;
  word-break: normal;
}
button,
.button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
  font-family: "Albert Sans", sans-serif;
  font-weight: 700;
  line-height: 18px;
  letter-spacing: 0.04em;
}

button:disabled,
.button:disabled {
  background-color: #d0d0d0 !important;
  border-color: #d0d0d0 !important;
  color: #e6e6e6 !important;
}

a.button {
  text-decoration: none;
}

/* No button */

.no-button {
  border: 0;
  border-radius: 0;
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  padding: 0;
  text-align: left;
}

.no-button,
.no-button:hover,
.no-button:focus,
.no-button:active {
  background: none;
  border: 0;
  color: initial;
  text-decoration: none;
  transition: none;
}
:root {
  --form-field-background: #ffffff;
  --form-field-border: 1px solid #cccccc;
  --form-field-border-color-focus: #000000;
  --form-field-color: #000000;
  --form-field-spacing: 30px;
}

/* Fields */

.hs-form-field {
  margin-bottom: var(--form-field-spacing);
  position: relative;
}

/* Labels */

form label {
  display: block;
  font-size: 14px;
  line-height: 140%;
}

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

/* Help Text */

form legend {
  font-size: 14px;
  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="date"],
form input[type="file"],
form select,
form textarea {
  display: block;
  font-family: "Albert Sans", sans-serif;
  font-weight: 500;
  font-size: 12px;
  line-height: 140%;
  letter-spacing: 0.11em;
  color: #000000;
  padding: 0 0 7px;
  border: 0;
  border-bottom: 0.5px solid #000000;
  background: transparent;
  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="date"]:focus,
form input[type="file"]:focus,
form select:focus,
form textarea:focus {
  border-color: var(--form-field-border-color-focus);
  outline: 0;
}

form input[type="date"] {
  padding: 9px 20px;
}

form input[type="file"]::file-selector-button {
  background-color: var(--form-field-background);
  border: var(--form-field-border);
  color: var(--form-field-color);
  cursor: pointer;
  margin-right: 20px;
  padding: 10px 20px;
  text-align: center;
  text-transform: none;
}

form input[type="file"]::file-selector-button:hover,
form input[type="file"]::file-selector-button:focus {
  background-color: #000000;
  border-color: #000000;
  color: #ffffff;
}

form select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 8 5'%3E%3Cpath stroke='%23000' stroke-width='.5' d='m7.001 1-3 3.001-3.001-3' opacity='1'/%3E%3C/svg%3E");
  background-position: center right 11px;
  background-repeat: no-repeat;
  background-size: 10px auto;
  padding: 10px 32px 10px 16px;
}

form textarea {
  height: auto;
  resize: vertical;
  padding: 11px 0 0;
}

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

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

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: 8px 0 0;
}

form .inputs-list li:first-child {
  margin-top: 0;
}

form input[type="checkbox"],
form input[type="radio"] {
  cursor: pointer;
}

form .inputs-list .hs-form-checkbox-display,
form .inputs-list .hs-form-radio-display,
form .inputs-list .hs-form-booleancheckbox-display {
  position: relative;
}

form .inputs-list .hs-form-booleancheckbox-display > input[type="checkbox"],
form .inputs-list .hs-form-checkbox-display > input[type="checkbox"],
form .inputs-list .hs-form-radio-display > input[type="radio"] {
  left: 0;
  opacity: 0;
  position: absolute;
  top: 4px;
}

form .inputs-list .hs-form-booleancheckbox-display > span,
form .inputs-list .hs-form-checkbox-display > span,
form .inputs-list .hs-form-radio-display > span {
  font-size: 14px;
  line-height: 160%;
}

form .inputs-list .hs-form-booleancheckbox-display > span::before,
form .inputs-list .hs-form-checkbox-display > span::before,
form .inputs-list .hs-form-radio-display > span::before {
  border: 1px solid #000000;
  content: "";
  cursor: pointer;
  display: block;
  flex-shrink: 0;
  height: 13px;
  margin-right: 8px;
  margin-top: 4px;
  margin-bottom: 10px;
  width: 13px;
  float: left;
}

form
  .inputs-list
  .hs-form-checkbox-display
  > input[type="checkbox"]:checked
  + span::before,
form
  .inputs-list
  .hs-form-booleancheckbox-display
  > input[type="checkbox"]:checked
  + span::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath fill='%23743419' d='M64 32C28.7 32 0 60.7 0 96v320c0 35.3 28.7 64 64 64h320c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64H64zm273 177L209 337c-9.4 9.4-24.6 9.4-33.9 0l-64-64c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l47 47L303 175c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9z'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 13px auto;
  border-color: #743419;
}

form .inputs-list .hs-form-radio-display > span::before {
  border-radius: 100%;
}

form
  .inputs-list
  .hs-form-radio-display
  > input[type="radio"]:checked
  + span::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='%23743419' d='M256 512a256 256 0 1 0 0-512 256 256 0 1 0 0 512zm0-352a96 96 0 1 1 0 192 96 96 0 1 1 0-192z'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 13px auto;
  border-color: #743419;
}

/* Inputs - Phone International */

.hs-fieldtype-intl-phone {
  display: flex;
}

.hs-fieldtype-intl-phone > select {
  flex: 0 0 150px;
}

.hs-fieldtype-intl-phone > input[type="tel"] {
  flex: 0 1 100%;
  margin-left: 20px;
}

/* Inputs - Date Picker */

.hs-dateinput {
  position: relative;
}

.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-button {
  background-color: #fff !important;
}

.fn-date-picker td.is-today .pika-button {
  color: #743419 !important;
}

.fn-date-picker td.is-selected .pika-button {
  background-color: #743419 !important;
  border-radius: 0 !important;
  box-shadow: none;
  color: #fff !important;
}

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

.fn-date-picker .pika-table thead th {
  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;
  line-height: 140%;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: #979797;
}

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

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

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

/* Headings and Text */

.widget-type-form .form-title {
  font-size: 64px;
  line-height: 107.4%;
  margin-bottom: 35px;
}

.widget-type-form .hs-richtext {
  margin: 0 0 var(--form-field-spacing);
  padding: 0 10px;
}

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

/* GDPR */

.legal-consent-container {
  margin-bottom: var(--form-field-spacing);
}

.legal-consent-container .hs-richtext {
  margin-bottom: 10px;
}

.legal-consent-container .field.hs-form-field {
  margin-bottom: 10px !important;
}

.legal-consent-container .hs-form-booleancheckbox-display > span {
  font-size: 16px;
  margin-left: 0 !important;
}

/* Submitted Message */

.submitted-message {
  font-size: 16px;
  line-height: 140%;
}

.submitted-message p {
  margin-bottom: 1.4em;
}

/* Validation */

.hs_error_rollup {
  display: none;
}

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

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

.hs-error-msg {
  color: red;
  font-size: 14px;
  line-height: 140%;
  margin-top: 5px;
}

/* Submit button */

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

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

#sticky-header-trigger + div {
  left: 0;
  position: sticky;
  top: 0;
  z-index: 999;
}

.main-header {
  background-color: #fefaf0;
  padding-bottom: 21px;
  padding-top: 21px;
  position: relative;
  width: 100%;
  border-bottom: 0.5px solid #26311b;
}

body[data-nav-sticky="true"] .main-header {
  background-color: #fefaf0;
}

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

/* Header Container */

.header-container {
  align-items: center;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  max-width: 1195px;
  margin: 0 auto;
  padding: 0 40px;
}

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

/* Header Menu */

.header-menu {
  flex: 1 1 auto;
  position: relative;
}

.header-menu ul {
  justify-content: flex-end;
  gap: 24px;
  font-family: "Cardo";
  font-weight: 700;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: #26311b;
}

.header-menu .hs-menu-wrapper ul li {
  font-size: 12px;
  line-height: 14px;
}

.header-menu .hs-menu-wrapper ul li a {
  position: relative;
  color: #26311b;
}

.header-menu .hs-menu-wrapper ul li a::before {
  content: "";
  display: block;
  position: absolute;
  top: -10px;
  right: -10px;
  bottom: -10px;
  left: -10px;
  width: calc(100% + 20px);
  height: calc(100% + 20px);
}

.header-menu .hs-menu-wrapper ul li a:hover,
.header-menu .hs-menu-wrapper ul li a:focus {
  color: #26311b;
  text-decoration: none;
}

.header-menu .hs-menu-wrapper ul li.active a {
  color: #743419;
}

.header-menu .hs-menu-wrapper ul li a:hover::after,
.header-menu .hs-menu-wrapper ul li a:focus::after {
  content: "";
  border-bottom: 1px solid;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}

.header-menu .hs-menu-wrapper ul li.active a:hover::after,
.header-menu .hs-menu-wrapper ul li.active a:focus::after {
  display: none;
}

/* Header Buttons */

.header-button .button {
  border-radius: 100px;
  min-width: 198px;
}

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

#hs_cos_wrapper_header_logo {
  max-width: 200px;
}

/* Navigation */
.popup_navigation-wrapper {
  background-color: #26311b;
  height: 100%;
  left: 0;
  min-height: 100%;
  opacity: 0;
  -webkit-overflow-scrolling: touch;
  overflow-y: scroll;
  position: fixed;
  top: 0;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  visibility: hidden;
  width: 100%;
  z-index: 999;
}

body[data-nav="true"] .popup_navigation-wrapper {
  opacity: 1;
  transition: opacity 0.3s ease;
  visibility: visible;
}

.popup_navigation-toggle {
  background-color: transparent;
  border-radius: 0;
  border: 0;
  color: #000;
  display: none;
  padding: 0;
  position: relative;
}

.popup_navigation-toggle:before {
  content: "";
  display: block;
  position: absolute;
  top: -5px;
  right: -5px;
  bottom: -5px;
  left: -5px;
  width: calc(100% + 10px);
  height: calc(100% + 10px);
}

.popup_navigation-toggle:hover,
.popup_navigation-toggle:focus {
  background-color: transparent;
  border: 0;
  color: #000;
}

.popup_navigation-toggle svg {
  display: block;
  width: auto;
}

.popup_navigation-open svg {
  height: 25px;
}

.popup_navigation-close svg {
  height: 23px;
}

/* Popup Navigation */

.popup_navigation-heading {
  position: relative;
  padding: 36.51px 48px 29.09px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  width: 100%;
}

.popup_navigation-heading .button {
  border-radius: 100px;
  min-width: 200px;
  background: transparent;
  border: 1px solid #ffffff;
  color: #ffffff;
}

.popup_navigation-heading .button:hover,
.popup_navigation-heading .button:focus {
  background: #ffffff;
  border: 1px solid #ffffff;
  color: #26311b;
}

.popup_navigation-heading .popup_navigation-close {
  color: #ffffff;
}

.popup_navigation-heading::after {
  content: "";
  display: block;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  border-bottom: 0.266667px solid #ffffff;
}

.popup_navigation-body {
  position: relative;
  padding: 123px 56px 66px;
}

.popup_navigation-menu {
  position: relative;
  margin: 0 0 72px;
}

.popup_navigation-menu ul {
  gap: 32px;
  font-family: "Albert Sans", sans-serif;
  font-weight: 400;
}

.popup_navigation-menu .hs-menu-wrapper ul li {
  font-size: 32px;
  line-height: 100%;
}

.popup_navigation-menu .hs-menu-wrapper ul li a {
  position: relative;
  color: rgba(255, 255, 255, 0.6);
}

.popup_navigation-menu .hs-menu-wrapper ul li a::before {
  content: "";
  display: block;
  position: absolute;
  top: -10px;
  right: -10px;
  bottom: -10px;
  left: -10px;
  width: calc(100% + 20px);
  height: calc(100% + 20px);
}

.popup_navigation-menu .hs-menu-wrapper ul li a:hover,
.popup_navigation-menu .hs-menu-wrapper ul li a:focus {
  color: #ffffff;
  text-decoration: none;
}

.popup_navigation-menu .hs-menu-wrapper ul li.active a::after,
.popup_navigation-menu .hs-menu-wrapper ul li a:hover::after,
.popup_navigation-menu .hs-menu-wrapper ul li a:focus::after {
  content: "";
  border-bottom: 1px solid;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}

.popup_navigation-info {
  position: relative;
}

.popup_navigation-title {
  position: relative;
  margin: 0 0 18px;
}

.popup_navigation-title h1,
.popup_navigation-title h2,
.popup_navigation-title h3,
.popup_navigation-title h4,
.popup_navigation-title h5,
.popup_navigation-title h6 {
  font-family: "Albert Sans", sans-serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 140%;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #ffffff;
}

.popup_navigation-info-contain {
  display: flex;
  gap: 115px;
  font-family: "Albert Sans", sans-serif;
  font-weight: 300;
  font-size: 20px;
  line-height: 140%;
  letter-spacing: 0.04em;
  color: #ffffff;
}

.popup_navigation-info-contain a {
  color: #ffffff;
}

.popup_navigation-info-contain a:hover,
.popup_navigation-info-contain a:focus {
  color: #ffffff;
}

.popup_navigation-address {
  flex: 0 1 244px;
}

.popup_navigation-contact {
  flex: 0 1 auto;
}

.popup_navigation-follow {
  position: relative;
  margin: 89px 0 0;
}

.popup_navigation-follow-title {
  position: relative;
  margin: 0 0 22px;
}

.popup_navigation-follow-title h1,
.popup_navigation-follow-title h2,
.popup_navigation-follow-title h3,
.popup_navigation-follow-title h4,
.popup_navigation-follow-title h5,
.popup_navigation-follow-title h6 {
  font-family: "Albert Sans", sans-serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 140%;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #ffffff;
}

.popup_navigation-follow-media .social_links {
  margin: 0;
  gap: 40px;
}

.popup_navigation-follow-media .social_links-link {
  margin: 0;
  color: #ffffff;
  position: relative;
}

.popup_navigation-follow-media .social_links-link::before {
  content: "";
  display: block;
  position: absolute;
  top: -10px;
  right: -10px;
  bottom: -10px;
  left: -10px;
  width: calc(100% + 20px);
  height: calc(100% + 20px);
}

.popup_navigation-follow-media .social_links-link:hover,
.popup_navigation-follow-media .social_links-link:focus {
  color: #743419;
}

.popup_navigation-follow-media .social_links-icon svg {
  height: 25px;
}

@media (min-width: 1441px) {
  .header-container {
    max-width: 100%;
    padding: 0 162.5px;
  }
}
.main_footer {
  font-family: "Albert Sans", sans-serif;
  background: #26311b;
}

.main_footer-body {
  max-width: 1334px;
  margin: 0 auto;
  padding: 0 40px 0 42px;
}

.main_footer-upper {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding: 63px 0 72px;
}

.main_footer-upper-left {
  flex: 0 1 auto;
}

.main_footer-logo {
  max-width: 188.34px;
  margin: 0 0 93px 3.83px;
}

.main_footer-media .social_links {
  margin: 0;
  gap: 27px;
}

.main_footer-media .social_links-link {
  margin: 0;
  color: #ffffff;
  position: relative;
}

.main_footer-media .social_links-link::before {
  content: "";
  display: block;
  position: absolute;
  top: -10px;
  right: -10px;
  bottom: -10px;
  left: -10px;
  width: calc(100% + 20px);
  height: calc(100% + 20px);
}

.main_footer-media .social_links-link:hover,
.main_footer-media .social_links-link:focus {
  color: #743419;
}

.main_footer-media .social_links-icon svg {
  height: 14px;
}

.main_footer-upper-right {
  flex: 0 1 627px;
}

.main_footer-upper-right .widget-type-form .form-title,
.main_footer-form #hs_cos_wrapper_form_title h1,
.main_footer-form #hs_cos_wrapper_form_title h2,
.main_footer-form #hs_cos_wrapper_form_title h3,
.main_footer-form #hs_cos_wrapper_form_title h4,
.main_footer-form #hs_cos_wrapper_form_title h5,
.main_footer-form #hs_cos_wrapper_form_title h6 {
  font-family: "Cardo";
  font-weight: 400;
  font-size: 56px;
  line-height: 144%;
  letter-spacing: -0.03em;
  text-transform: capitalize;
  color: #ffffff;
  margin: 0 0 71px;
}

.main_footer-form #hs_cos_wrapper_form_title {
  margin: 0 0 71px;
}

.main_footer-upper-right form,
.main_footer-form form {
  display: inline-flex;
  gap: 50px;
  width: 100%;
}

.main_footer-upper-right form label {
  margin-bottom: 0;
}

.main_footer-upper-right form .hs_email {
  flex: 1 1 auto;
  margin: 0;
}

.main_footer-upper-right form input[type="email"],
.main_footer-form form input[type="email"] {
  background: transparent;
  border: 0;
  border-bottom: 1px solid #a8a8a8;
  font-family: "Albert Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 30px;
  color: rgba(255, 255, 255, 1);
  padding: 0 0 11px;
}

.main_footer-upper-right form input[type="email"]::placeholder,
.main_footer-form form input[type="email"]::placeholder {
  color: rgba(255, 255, 255, 0.5);
  font-size: 16px;
  line-height: 30px;
}

.main_footer-upper-right form .hs_submit {
  flex: 0 0 auto;
}

.main_footer-upper-right form .hs-button,
.main_footer-upper-right form input[type="submit"],
.main_footer-form form button {
  background-color: transparent;
  border: 1px solid #ffffff;
  border-radius: 100px;
  color: #ffffff;
  min-width: 114px;
  font-family: "Albert Sans", sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 0.04em;
}

.main_footer-upper-right form .hs-button:hover,
.main_footer-upper-right form input[type="submit"]:hover,
.main_footer-upper-right form .hs-button:focus,
.main_footer-upper-right form input[type="submit"]:focus,
.main_footer-form form button:hover,
.main_footer-form form button:focus {
  background-color: #ffffff;
  border: 1px solid #ffffff;
  color: #26311b;
}

#hs_cos_wrapper_footer_form {
  display: none;
}

.main_footer-links {
  position: relative;
  padding: 58.64px 0 41.63px;
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.main_footer-links::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  border-top: 1px solid #a8a8a8;
  width: 100%;
}

.main_footer-menu {
  flex: 0 1 auto;
  position: relative;
  margin: 3px 0 0;
}

.main_footer-menu .hs-menu-wrapper ul {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 5px 75px;
  list-style: none;
  padding: 0;
  margin: 0;
  font-weight: 400;
}

.main_footer-menu .hs-menu-wrapper ul li {
  font-size: 16px;
  line-height: 124%;
}

.main_footer-menu .hs-menu-wrapper ul li a {
  color: #c9cbc6;
}

.main_footer-menu .hs-menu-wrapper ul li a:hover,
.main_footer-menu .hs-menu-wrapper ul li a:focus {
  color: #ffffff;
}

.main_footer-menu .hs-menu-wrapper ul li.active a {
  color: #743419;
  text-decoration: none;
}

.main_footer-menu .main_footer-media {
  display: none;
}

.main_footer-lists {
  flex: 0 1 auto;
}

.main_footer-lists ul {
  font-family: "Albert Sans", sans-serif;
  font-weight: 400;
  text-transform: capitalize;
}

.main_footer-lists ul li:first-child {
  position: relative;
  padding: 0 0 8px;
  margin: 0 0 8px;
}

.main_footer-lists ul li:first-child::before {
  content: "";
  border-bottom: 0.5px solid #a8a8a8;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}

.main_footer-lists ul li:first-child a {
  font-size: 16px;
  line-height: 160%;
}

.main_footer-lists ul li a {
  display: block;
  font-size: 16px;
  line-height: 124%;
  color: rgba(255, 255, 255, 0.75);
}

.main_footer-lists ul li a:hover,
.main_footer-lists ul li a:focus {
  color: #ffffff;
  text-decoration: none;
}

.main_footer-info {
  flex: 0 1 206px;
  font-weight: 400;
  font-size: 14px;
  line-height: 160%;
}

.main_footer-info a {
  color: rgba(255, 255, 255, 0.5);
  display: block;
}

.main_footer-info a:hover,
.main_footer-info a:focus {
  color: #ffffff;
}

.main_footer-address {
  margin: 0 0 15px;
}

.main_footer-bottom {
  position: relative;
}

.main_footer-bottom::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  border-top: 1px solid #a8a8a8;
  width: 100%;
}

.main_footer-bot-contain {
  font-weight: 400;
  font-size: 12px;
  line-height: 14px;
  color: #ffffff;
  max-width: 1340px;
  margin: 0 auto;
  padding: 26px 40px 18px 45px;
  display: flex;
  align-content: center;
  justify-content: space-between;
  gap: 8px 40px;
}

.main_footer-bot-contain a {
  color: #ffffff;
}

.main_footer-bot-contain a:hover,
.main_footer-bot-contain a:focus {
  color: #ffffff;
}

.main_footer-bot-contain .copyright {
  opacity: 0.5;
  margin: 0;
}

.main_footer-bot-contain .website-by {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
}

@media (min-width: 1441px) {
  .main_footer-body {
    max-width: 100%;
    padding: 0 93px 0 95px;
  }

  .main_footer-bot-contain {
    max-width: 100%;
    padding: 26px 90px 18px 95px;
  }
}

@media (min-width: 1025px) {
  .main_footer-menu .hs-menu-wrapper ul li:nth-child(1),
  .main_footer-menu .hs-menu-wrapper ul li:nth-child(2),
  .main_footer-menu .hs-menu-wrapper ul li:nth-child(3) {
    grid-column: 1;
  }

  .main_footer-menu .hs-menu-wrapper ul li:nth-child(4),
  .main_footer-menu .hs-menu-wrapper ul li:nth-child(5),
  .main_footer-menu .hs-menu-wrapper ul li:nth-child(6) {
    grid-column: 2;
  }

  .main_footer-menu .hs-menu-wrapper ul li:nth-child(4) {
    grid-row: 1;
  }

  .main_footer-menu .hs-menu-wrapper ul li:nth-child(5) {
    grid-row: 2;
  }

  .main_footer-menu .hs-menu-wrapper ul li:nth-child(6) {
    grid-row: 3;
  }

  .main_footer-menu .hs-menu-wrapper ul li:nth-child(7),
  .main_footer-menu .hs-menu-wrapper ul li:nth-child(8),
  .hs-menu-wrapper ul li:nth-child(9) {
    grid-column: 3;
  }

  .main_footer-menu .hs-menu-wrapper ul li:nth-child(7) {
    grid-row: 1;
  }

  .main_footer-menu .hs-menu-wrapper ul li:nth-child(8) {
    grid-row: 2;
  }
}
/* 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,
.hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:focus-within > .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,
.hs-menu-wrapper.hs-menu-flow-vertical.flyouts .hs-item-has-children:focus-within > .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;
}

.hs_cos_wrapper_type_linked_image {
  border-radius: 16px;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .content-wrapper {
    padding: 0 48px;
  }

  .dnd-section:not([class*="force-full-width-section"]) > .row-fluid {
    padding: 0 24px;
  }

  .dnd-section:not([class*="force-full-width-section"])
    .dnd-module.widget-span {
    padding: 0 24px;
  }

  /* == START HEADER == */

  .main-header {
    background-color: #fefaf0;
    padding-bottom: 23.32px;
    padding-top: 30.75px;
  }

  /* Header Container */

  .header-container {
    padding: 0 48px;
  }

  /* Header Menu */

  .header-menu {
    display: none;
  }

  /* Logo */

  #hs_cos_wrapper_header_logo {
    max-width: 140px;
  }

  /* Navigation */

  .header-navigation {
    display: flex;
    align-items: center;
    gap: 24px;
  }

  .popup_navigation-toggle {
    display: block;
  }

  /* == END HEADER == */

  /* == START FOOTER == */

  .main_footer-body {
    padding: 0 48px;
  }

  .main_footer-upper {
    gap: 16px 151px;
    padding: 32px 0 48px;
  }

  .main_footer-logo {
    max-width: 127px;
    margin: 0 0 33.45px 0;
  }

  .main_footer-media .social_links {
    gap: 16px;
  }

  .main_footer-upper-right {
    flex: 0 1 627px;
  }

  .main_footer-upper-right .widget-type-form .form-title,
  .main_footer-form #hs_cos_wrapper_form_title h1,
  .main_footer-form #hs_cos_wrapper_form_title h2,
  .main_footer-form #hs_cos_wrapper_form_title h3,
  .main_footer-form #hs_cos_wrapper_form_title h4,
  .main_footer-form #hs_cos_wrapper_form_title h5,
  .main_footer-form #hs_cos_wrapper_form_title h6 {
    font-size: 32px;
    line-height: 144%;
    letter-spacing: -0.03em;
    margin: 0 0 32px;
  }

  .main_footer-form #hs_cos_wrapper_form_title {
    margin: 0 0 32px;
  }

  .main_footer-upper-right form,
  .main_footer-form form {
    gap: 24px;
  }

  .main_footer-upper-right form .hs_email {
    flex: 1 1 auto;
  }

  .main_footer-upper-right form input[type="email"],
  .main_footer-form form input[type="email"] {
    font-size: 16px;
    line-height: 100%;
    padding: 0 0 6px;
  }

  .main_footer-upper-right form input[type="email"]::placeholder,
  .main_footer-form form input[type="email"]::placeholder {
    font-size: 16px;
    line-height: 100%;
  }

  .main_footer-upper-right form .hs-button,
  .main_footer-upper-right form input[type="submit"],
  .main_footer-form form button {
    min-width: 86px;
    font-size: 12px;
    line-height: 100%;
    padding: 6px 11px;
  }

  .main_footer-links {
    padding: 48px 28px;
    display: flex;
    justify-content: space-between;
    flex-flow: row wrap;
    gap: 32px 40px;
  }

  .main_footer-menu {
    flex: 0 1 auto;
    margin: 0;
  }

  .main_footer-menu .hs-menu-wrapper ul {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 8px 84px;
  }

  .main_footer-menu .hs-menu-wrapper ul li:nth-child(1),
  .main_footer-menu .hs-menu-wrapper ul li:nth-child(2),
  .main_footer-menu .hs-menu-wrapper ul li:nth-child(3),
  .main_footer-menu .hs-menu-wrapper ul li:nth-child(4),
  .main_footer-menu .hs-menu-wrapper ul li:nth-child(5) {
    grid-column: 1;
  }

  .main_footer-menu .hs-menu-wrapper ul li:nth-child(6),
  .main_footer-menu .hs-menu-wrapper ul li:nth-child(7),
  .main_footer-menu .hs-menu-wrapper ul li:nth-child(8),
  .main_footer-menu .hs-menu-wrapper ul li:nth-child(9) {
    grid-column: 2;
  }

  .main_footer-menu .hs-menu-wrapper ul li:nth-child(6) {
    grid-row: 1;
  }

  .main_footer-menu .hs-menu-wrapper ul li:nth-child(7) {
    grid-row: 2;
  }

  .main_footer-menu .hs-menu-wrapper ul li:nth-child(8) {
    grid-row: 3;
  }

  .main_footer-menu .hs-menu-wrapper ul li:nth-child(9) {
    grid-row: 4;
  }

  .main_footer-menu .hs-menu-wrapper ul li {
    font-size: 16px;
    line-height: 140%;
  }

  .main_footer-lists {
    flex: 0 1 auto;
  }

  .main_footer-info {
    flex: 0 1 100%;
    font-size: 12px;
    line-height: 120%;
    display: flex;
    justify-content: space-between;
    gap: 40px;
  }

  .main_footer-address {
    flex: 0 1 180px;
    margin: 0;
  }

  .main_footer-contact {
    font-size: 12px;
    line-height: 100%;
  }

  .main_footer-contact a:first-child {
    margin: 0 0 8px;
  }

  .main_footer-bot-contain {
    padding: 24px 48px;
  }

  /* == END FOOTER == */
}
@media (max-width: 767px) {
  .content-wrapper {
    padding: 0 32px;
  }

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

  /* == START HEADER == */

  .main-header {
    padding-bottom: 11.3px;
    padding-top: 15.3px;
  }

  /* Header Container */

  .header-container {
    padding: 0 26px;
  }

  /* Header Buttons */

  .header-button .button {
    min-width: 154px;
    font-size: 10px;
    line-height: 10px;
    padding: 7px 11px;
  }

  /* Logo */

  #hs_cos_wrapper_header_logo {
    max-width: 83px;
  }

  /* Navigation */

  .header-navigation {
    gap: 13px;
  }

  .popup_navigation-open svg {
    height: 13px;
  }

  /* Popup Navigation */

  .popup_navigation-heading {
    padding: 18px 25.87px 14px;
  }

  .popup_navigation-heading .button {
    min-width: 154px;
    font-size: 10px;
    line-height: 10px;
    letter-spacing: 0.04em;
    padding: 7px 20px;
  }

  .popup_navigation-close svg {
    height: 12.4px;
  }

  .popup_navigation-body {
    padding: 67px 30px 63px;
  }

  .popup_navigation-menu {
    margin: 0 0 161.75px;
  }

  .popup_navigation-menu ul {
    gap: 17.25px;
  }

  .popup_navigation-menu .hs-menu-wrapper ul li {
    font-size: 27px;
    line-height: 100%;
  }

  .popup_navigation-contain {
    position: relative;
    display: flex;
    flex-flow: row wrap;
    gap: 45px;
  }

  .popup_navigation-info {
    flex: 0 1 181px;
  }

  .popup_navigation-title {
    margin: 0 0 31px;
  }

  .popup_navigation-title h1,
  .popup_navigation-title h2,
  .popup_navigation-title h3,
  .popup_navigation-title h4,
  .popup_navigation-title h5,
  .popup_navigation-title h6 {
    font-size: 14px;
    line-height: 140%;
  }

  .popup_navigation-info-contain {
    display: block;
    font-size: 16px;
    line-height: 140%;
  }

  .popup_navigation-address {
    margin: 0 0 31px;
  }

  .popup_navigation-follow {
    margin: 0;
  }

  .popup_navigation-follow-title {
    margin: 0 0 36px;
  }

  .popup_navigation-follow-title h1,
  .popup_navigation-follow-title h2,
  .popup_navigation-follow-title h3,
  .popup_navigation-follow-title h4,
  .popup_navigation-follow-title h5,
  .popup_navigation-follow-title h6 {
    font-size: 14px;
    line-height: 140%;
  }

  .popup_navigation-follow-media .social_links {
    gap: 21px;
  }

  /* == END HEADER == */

  /* == START FOOTER == */

  .main_footer-body {
    padding: 0 32px;
  }

  .main_footer-upper {
    flex-flow: row wrap;
    padding: 24px 0 0;
  }

  .main_footer-logo {
    max-width: 81px;
    margin: 0;
  }

  .main_footer-media {
    display: none;
  }

  .main_footer-upper-right {
    flex: 0 1 100%;
  }

  .main_footer-upper-right .widget-type-form .form-title,
  .main_footer-form #hs_cos_wrapper_form_title {
    margin: 0 0 16px;
  }

  .main_footer-links {
    flex-flow: row wrap;
    padding: 48px 0 32px;
    gap: 48px;
  }

  .main_footer-links:before {
    display: none;
  }

  .main_footer-menu {
    flex: 0 1 100%;
  }

  .main_footer-menu .hs-menu-wrapper ul {
    gap: 8px 20px;
  }

  .main_footer-menu .main_footer-media {
    position: absolute;
    right: 0;
    bottom: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    width: 100%;
  }

  .main_footer-menu .main_footer-media #hs_cos_wrapper_footer_social_media {
    grid-area: 2 / 2;
  }

  .main_footer-lists {
    flex: 0 1 100%;
  }

  .main_footer-lists ul {
    width: 100%;
    flex-flow: row wrap !important;
    justify-content: space-between;
    gap: 8px;
  }

  .main_footer-lists ul li:first-child {
    flex: 0 1 100%;
    margin-bottom: 0;
  }

  .main_footer-lists ul li:nth-child(2) {
    position: relative;
    padding-right: 49px;
  }

  .main_footer-lists ul li:nth-child(2)::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    border-right: 0.5px solid #a8a8a8;
  }

  .main_footer-info {
    flex: 0 1 100%;
    display: block;
    text-align: center;
  }

  .main_footer-address {
    margin: 0 0 16px;
  }

  .main_footer-contact {
    font-size: 12px;
    line-height: 100%;
  }

  .main_footer-contact a:first-child {
    margin: 0 0 16px;
  }

  .main_footer-bottom::after {
    width: calc(100% - 64px);
    margin: 0 auto;
  }

  .main_footer-bot-contain {
    padding: 24px 32px 32px;
    flex-flow: row wrap;
    justify-content: center;
    text-align: center;
  }

  .main_footer-bot-contain .website-by {
    flex-flow: row-reverse nowrap;
    gap: 7.37px;
  }

  /* == END FOOTER == */
}

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