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

div[data-global-resource-path*="header"],
.body-container-wrapper,
div[data-global-resource-path*="footer"] {
  min-width: 0; /* Fixes width issues on smaller screens */
}

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

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

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

.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: "Spezia Serif Trial";
  src: local("Spezia Serif Trial Book A"), local("SpeziaSerifTrial-BookA"),
    url('//20137924.fs1.hubspotusercontent-na1.net/hubfs/20137924/raw_assets/public/marmara-park-avenue-2024/fonts/SpeziaSerifTrial-BookA.woff2')
      format("woff2"),
    url('//20137924.fs1.hubspotusercontent-na1.net/hubfs/20137924/raw_assets/public/marmara-park-avenue-2024/fonts/SpeziaSerifTrial-BookA.woff')
      format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Spezia Serif Trial";
  src: local("Spezia Serif Trial Book Italic A"),
    local("SpeziaSerifTrial-BookItalicA"),
    url('//20137924.fs1.hubspotusercontent-na1.net/hubfs/20137924/raw_assets/public/marmara-park-avenue-2024/fonts/SpeziaSerifTrial-BookItalicA.woff2')
      format("woff2"),
    url('//20137924.fs1.hubspotusercontent-na1.net/hubfs/20137924/raw_assets/public/marmara-park-avenue-2024/fonts/SpeziaSerifTrial-BookItalicA.woff')
      format("woff");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Spezia Serif Trial";
  src: local("Spezia Serif Trial Regular A"), local("SpeziaSerifTrial-RegularA"),
    url('//20137924.fs1.hubspotusercontent-na1.net/hubfs/20137924/raw_assets/public/marmara-park-avenue-2024/fonts/SpeziaSerifTrial-RegularA.woff2')
      format("woff2"),
    url('//20137924.fs1.hubspotusercontent-na1.net/hubfs/20137924/raw_assets/public/marmara-park-avenue-2024/fonts/SpeziaSerifTrial-RegularA.woff')
      format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Helvetica Neue";
  src: local("Helvetica Neue Medium"), local("HelveticaNeue-Medium"),
    url('//20137924.fs1.hubspotusercontent-na1.net/hubfs/20137924/raw_assets/public/marmara-park-avenue-2024/fonts/HelveticaNeue-Medium.woff2')
      format("woff2"),
    url('//20137924.fs1.hubspotusercontent-na1.net/hubfs/20137924/raw_assets/public/marmara-park-avenue-2024/fonts/HelveticaNeue-Medium.woff')
      format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Helvetica Neue";
  src: local("Helvetica Neue Bold"), local("HelveticaNeue-Bold"),
    url('//20137924.fs1.hubspotusercontent-na1.net/hubfs/20137924/raw_assets/public/marmara-park-avenue-2024/fonts/HelveticaNeue-Bold.woff2')
      format("woff2"),
    url('//20137924.fs1.hubspotusercontent-na1.net/hubfs/20137924/raw_assets/public/marmara-park-avenue-2024/fonts/HelveticaNeue-Bold.woff')
      format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Helvetica Neue";
  src: local("Helvetica Neue Roman"), local("HelveticaNeue-Roman"),
    url('//20137924.fs1.hubspotusercontent-na1.net/hubfs/20137924/raw_assets/public/marmara-park-avenue-2024/fonts/HelveticaNeue-Roman.woff2')
      format("woff2"),
    url('//20137924.fs1.hubspotusercontent-na1.net/hubfs/20137924/raw_assets/public/marmara-park-avenue-2024/fonts/HelveticaNeue-Roman.woff')
      format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Acumin Pro";
  src: local("Acumin Pro"), local("AcuminPro-Regular"),
    url('//20137924.fs1.hubspotusercontent-na1.net/hubfs/20137924/raw_assets/public/marmara-park-avenue-2024/fonts/AcuminPro-Regular.woff2')
      format("woff2"),
    url('//20137924.fs1.hubspotusercontent-na1.net/hubfs/20137924/raw_assets/public/marmara-park-avenue-2024/fonts/AcuminPro-Regular.woff')
      format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Neue Montreal";
  src: local("Neue Montreal Regular"), local("NeueMontreal-Regular"),
    url('//20137924.fs1.hubspotusercontent-na1.net/hubfs/20137924/raw_assets/public/marmara-park-avenue-2024/fonts/NeueMontreal-Regular.woff2')
      format("woff2"),
    url('//20137924.fs1.hubspotusercontent-na1.net/hubfs/20137924/raw_assets/public/marmara-park-avenue-2024/fonts/NeueMontreal-Regular.woff')
      format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Neue Montreal";
  src: local("Neue Montreal Medium"), local("NeueMontreal-Medium"),
    url('//20137924.fs1.hubspotusercontent-na1.net/hubfs/20137924/raw_assets/public/marmara-park-avenue-2024/fonts/NeueMontreal-Medium.woff2')
      format("woff2"),
    url('//20137924.fs1.hubspotusercontent-na1.net/hubfs/20137924/raw_assets/public/marmara-park-avenue-2024/fonts/NeueMontreal-Medium.woff')
      format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Neue Montreal";
  src: local("Neue Montreal Bold"), local("NeueMontreal-Bold"),
    url('//20137924.fs1.hubspotusercontent-na1.net/hubfs/20137924/raw_assets/public/marmara-park-avenue-2024/fonts/NeueMontreal-Bold.woff2')
      format("woff2"),
    url('//20137924.fs1.hubspotusercontent-na1.net/hubfs/20137924/raw_assets/public/marmara-park-avenue-2024/fonts/NeueMontreal-Bold.woff')
      format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Roobert PRO TRIAL";
  src: local("Roobert PRO TRIAL SemiBold"), local("RoobertPROTRIAL-SemiBold"),
    url('//20137924.fs1.hubspotusercontent-na1.net/hubfs/20137924/raw_assets/public/marmara-park-avenue-2024/fonts/RoobertPROTRIAL-SemiBold.woff2')
      format("woff2"),
    url('//20137924.fs1.hubspotusercontent-na1.net/hubfs/20137924/raw_assets/public/marmara-park-avenue-2024/fonts/RoobertPROTRIAL-SemiBold.woff')
      format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

html {
  font-family: "Helvetica Neue", sans-serif;
  font-weight: 400;
  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: none;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  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.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.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,
picture {
  font-size: 9px;
  height: auto;
  max-width: 100%;
  word-break: normal;
}
button,
.button {
  cursor: pointer;
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 118.75%;
  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;
}

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

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

/* Labels */

form label {
  display: block;
  font-size: 16px;
  line-height: 150%;
}

.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 input[type="date"],
form select,
form textarea {
  font-family: "Helvetica Neue", sans-serif;
  font-weight: normal;
  border: 1px solid #d9d9d9;
  display: block;
  font-size: 16px;
  line-height: 150%;
  padding: 20px 24px;
  width: 100%;
  color: #000000;
}

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 {
  appearance: none;
  /*   background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_4021_1883)'%3E%3Cpath d='M7 10L12 15L17 10H7Z' fill='black'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_4021_1883'%3E%3Crect width='24' height='24' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A"); */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3E%3Cpath stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m5 7.5 5 5 5-5'/%3E%3C/svg%3E");
  background-position: top 22px right 4px;
  background-repeat: no-repeat;
  background-size: 60px 20px;
  padding: 20px 24px;
  color: #4b4b4b;
}

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

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

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

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

form fieldset.form-columns-3 .hs-form-field {
  padding-right: 0px;
}

form input[type="file"]::file-selector-button {
  background-color: transparent;
  border: 1px solid #9a9aa1;
  color: #9a9aa1;
  font-family: "Helvetica Now Display", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 150%;
  margin-right: 18px;
  padding: 7px;
  text-align: center;
  width: 91px;
}

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

.hs-fieldtype-file>.input {
  position: relative;
}

.hs-fieldtype-file>.input::after {
  background-color: #d9d9d9;
  bottom: 0;
  content: "";
  display: block;
  height: 1px;
  left: 109px;
  position: absolute;
  right: 0;
}

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

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

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

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

form .inputs-list .hs-form-booleancheckbox-display>span,
form .inputs-list .hs-form-checkbox-display>span,
form .inputs-list .hs-form-radio-display>span {
  align-items: center;
  display: flex;
  gap: 17px;
}

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 #231f20;
  content: "";
  cursor: pointer;
  display: block;
  flex-shrink: 0;
  height: 22px;
  overflow: hidden;
  width: 22px;
}

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

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

form .inputs-list .hs-form-booleancheckbox-display>input[type="checkbox"]:checked+span:before,
form .inputs-list .hs-form-checkbox-display>input[type="checkbox"]:checked+span:before,
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 448 512'%3E%3Cpath fill='%23795f41' 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: 50%;
  background-repeat: no-repeat;
  background-size: 22px auto;
  border-color: #795f41;
}

form .hs-fieldtype-radio {
  position: relative;
  display: flex;
  gap: 24px;
  margin-top: 28px;
  margin-bottom: 36px;
  padding-left: 24px;
}

form .hs-fieldtype-radio .hs-error-msgs {
  position: absolute;
  bottom: -24px;
}

form fieldset.form-columns-3 .hs-error-msgs .hs-error-msg {
  font-size: 10px;
}

.hs-fieldtype-radio>label {
  font-weight: normal;
}

.hs-fieldtype-radio>label,
.hs-fieldtype-radio>.input {
  flex: 1 0 auto;
}

.hs-fieldtype-radio>.input ul.inputs-list {
  display: flex;
  gap: 16px;
}

/* Inputs - date picker */

.hs-dateinput {
  position: relative;
}

.hs-dateinput:before {
  content: "\01F4C5";
  content: "";
  --calendar-icon-svg: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 18 20'%3E%3Cpath stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M16.5 8.333h-15m10.833-6.666V5M5.667 1.667V5M5.5 18.333h7c1.4 0 2.1 0 2.635-.272a2.5 2.5 0 0 0 1.092-1.093c.273-.534.273-1.235.273-2.635v-7c0-1.4 0-2.1-.273-2.635a2.5 2.5 0 0 0-1.092-1.092c-.535-.273-1.235-.273-2.635-.273h-7c-1.4 0-2.1 0-2.635.273a2.5 2.5 0 0 0-1.093 1.092C1.5 5.233 1.5 5.933 1.5 7.333v7c0 1.4 0 2.1.272 2.635a2.5 2.5 0 0 0 1.093 1.093c.535.272 1.235.272 2.635.272'/%3E%3C/svg%3E");
  background-color: #303033;
  -webkit-mask: var(--calendar-icon-svg);
  mask: var(--calendar-icon-svg);
  -webkit-mask-size: cover;
  mask-size: cover;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 18px;
}

.hs-fieldtype-date .hs-form-required {
  display: none;
}

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

.hs-datepicker .fn-date-picker .is-today .pika-button {
  color: #e60438 !important;
}

.hs-datepicker .fn-date-picker .pika-button:hover {
  background: #000000 !important;
  color: #ffffff !important;
}

.hs-datepicker .fn-date-picker .is-selected .pika-button {
  background: #8b6e4a !important;
  color: #ffffff !important;
}

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

form.hs-form .datepicker {
  font-size: 14.861px;
  letter-spacing: 0.928814px;
  line-height: 150%;
  padding-top: 2px;
  width: 340px;
}

form.hs-form .datepicker .datepicker-picker {
  border-radius: 0px;
  border: 1px solid #d9d9d9;
  box-shadow: none;
  overflow: hidden;
}

form.hs-form .datepicker .datepicker-controls .button {
  min-width: 0;
}

form.hs-form .datepicker .datepicker-header {
  padding: 22px 23px 31px;
}

form.hs-form .datepicker .datepicker-header .view-switch {
  color: #000000;
  font-size: 14.861px;
  font-weight: 500;
  letter-spacing: 0.928814px;
  line-height: 150%;
  text-transform: none;
}

form.hs-form .datepicker .datepicker-header .datepicker-controls .button {
  height: 22px;
  padding: 0;
}

form.hs-form .datepicker .datepicker-header .datepicker-controls .button:hover {
  background-color: transparent;
  color: #0d5987;
}

form.hs-form .datepicker .datepicker-header .datepicker-controls .button:disabled {
  background-color: transparent !important;
  border-color: transparent !important;
  color: #d0d0d0 !important;
}

form.hs-form .datepicker .datepicker-header .datepicker-controls .button svg {
  height: 18px;
  width: auto;
}

form.hs-form .datepicker .datepicker-main {
  padding: 0 25px;
}

form.hs-form .datepicker .datepicker-main .datepicker-view {
  width: 100%;
}

form.hs-form .datepicker .datepicker-main .dow {
  color: #000000;
  font-size: 14.861px;
  font-weight: 400;
  height: 22px;
  letter-spacing: 0.928814px;
  line-height: 150%;
}

form.hs-form .datepicker-cell.selected,
form.hs-form .datepicker-cell.selected:hover {
  background-color: #8b6e4a;
  font-weight: 400;
}

form.hs-form .datepicker-cell.range {
  background-color: rgba(139, 110, 74, 0.2);
}

form.hs-form .datepicker-cell.range:not(.disabled):not(.focused):not(.today):hover {
  background-color: rgba(139, 110, 74, 0.4);
}

form.hs-form .datepicker-cell.range-start:not(.selected),
form.hs-form .datepicker-cell.range-end:not(.selected) {
  background-color: #8b6e4a;
  color: #ffffff;
}

form.hs-form .datepicker .datepicker-footer {
  background-color: transparent;
  box-shadow: none;
  padding: 24px 25px;
}

form.hs-form .datepicker .datepicker-footer .datepicker-controls {
  gap: 20px;
}

form.hs-form .datepicker .datepicker-footer .button {
  border: 0;
  color: #000000;
  flex-grow: 0;
  font-size: 14px;
  font-weight: 700;
  height: auto;
  letter-spacing: 1px;
  line-height: 150%;
  margin: 0;
  padding: 0;
  text-transform: none;
  width: auto;
}

form.hs-form .datepicker .datepicker-footer .button:hover,
form.hs-form .datepicker .datepicker-footer .button:focus {
  color: #8b6e4a;
}

/* Inputs - file picker */

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

/* Placeholder */

::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #4b4b4b;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0px;
  line-height: 150%;
}

::-moz-placeholder {
  /* Firefox 19+ */
  color: #4b4b4b;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0px;
  line-height: 150%;
}

:-moz-placeholder {
  /* Firefox 18- */
  color: #4b4b4b;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0px;
  line-height: 150%;
}

::placeholder {
  color: #4b4b4b;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0px;
  line-height: 150%;
}

/* Headings and text */

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

.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: 0 !important;
}

/* Validation */

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

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

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

.hs-error-msg {
  color: red;
  font-size: 12px;
  letter-spacing: 0.04em;
  line-height: 140%;
  margin-top: 5px;
}

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

  background-color: rgba(139, 110, 74, 1);
  border: 1px solid #8b6e4a;
  color: #ffffff;
  font-size: 14px;
  padding-top: 23px;
  padding-right: 31px;
  padding-bottom: 22px;
  padding-left: 31px;
}

form .hs-submit .hs-button:hover,
form .hs-submit .hs-button:focus {
  background-color: rgba(0, 0, 0, 1);
  border: 1px solid #000000;
  color: rgba(255, 255, 255, 1);
}

@media (max-width: 1024px) {
  .hs-form-field {
    padding: 0 9px;
    margin-bottom: 18px;
  }

  form .hs-form-field.hs-fieldtype-radio {
    margin-top: 20px;
    margin-bottom: 38px;
    padding-left: 24px;
    flex: 1 0 100%;
  }

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

@media (max-width: 767px) {
  form fieldset .hs-form-field {
    padding: 0 8px;
  }

  form .hs-form-field.hs-fieldtype-radio {
    padding-left: 33px;
    margin-bottom: 20px;
  }

  .hs-dateinput:before {
    height: 21px;
    right: 7%;
    width: 19px;
  }

  .hs-dateinput input[type="date"]::-webkit-inner-spin-button,
  .hs-dateinput input[type="date"]::-webkit-calendar-picker-indicator {
    opacity: 0;
  }

  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 {
    height: 14.67px;
    width: 14.67px;
  }

  .hs-error-msg {
    font-size: 10px;
    line-height: 110%;
  }

  form .hs-fieldtype-radio .hs-error-msgs {
    bottom: -14px;
  }
}
/* 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
*/

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

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

.main-header::after {
  content: "";
  width: 100%;
  height: 0.5px;
  position: absolute;
  bottom: 0;
  left: 0;
  border-bottom: 0.5px solid rgba(0, 0, 0, 0.2);
}

body[data-sticky="true"] .main-header {
  background-color: #fffefe;
  /*box-shadow: 0 4px 20px 2px rgba(0, 0, 0, 0.05);*/
  position: fixed;
  top: 0;
  left: 0;
}

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

/* Header Container */

.header-container {
  display: flex;
}

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

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

/* 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 {
  border-right: 0.5px solid rgba(0, 0, 0, 0.2);
  flex: 0 0 165.5px;
}

@media (min-width: 1025px) {
  .header-logo {
    padding-left: 29px;
  }
}

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

#hs_cos_wrapper_header_logo a {
  display: block;
  padding: 21px 0 24px;
  width: 100%;
}

#hs_cos_wrapper_header_logo img,
#hs_cos_wrapper_header_logo svg {
  margin: 0 auto;
}

/* Navigation */

.header-navigation {
  flex: 1;
}

.header-navigation--top {
  border-bottom: 0.5px solid rgba(0, 0, 0, 0.2);
  display: flex;
  gap: 16px;
  justify-content: space-between;
  align-items: flex-end;
  min-height: 64px;
  padding: 0 32px;
}

.header-navigation--btm {
  position: relative;
}

.header-navigation--btm_main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  min-height: 64px;
  padding: 0 0 0 32px;
}

.header-navigation--btm_child {
  position: relative;
  background: #f8f8f8;
  display: none;
}

.header-navigation--btm_child:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 300%;
  background: #f8f8f8;
}

.menu-top_active .header-navigation--btm_main {
  display: none;
}

.menu-top_active .header-navigation--btm_child {
  display: block;
}

.header-text {
  font-weight: 700;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #795f41;
  padding: 0 0 23px;
}

.header-links {
  position: relative;
  padding: 23px 0;
}

.header-links ul {
  gap: 28px;
}

.header-links ul li {
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0.02em;
}

.header-links ul li a,
.header-links ul li ul a {
  position: relative;
  color: #000000;
}

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

.header-links ul .active a,
.header-links ul .active ul .active a,
.header-links ul li a:hover,
.header-links ul li a:focus {
  text-decoration: none;
  color: #8b6e4a;
}

.header-links ul .hs-item-has-children {
  display: flex;
  align-items: center;
}

.header-links ul .hs-item-has-children:after {
  display: inline-block;
  content: "";
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg fill='none' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='m4 6 4 4 4-4' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.header-links ul .hs-item-has-children:hover ul,
.header-links ul .hs-item-has-children:focus ul {
  display: none;
}

.header_buttons_check .button {
  letter-spacing: 0.06em;
  line-height: 121.4286%;
  background: #e60438 !important;
  border-color: #e60438 !important;
}

.header_buttons_check .button:hover,
.header_buttons_check .button:focus {
  background: #000000 !important;
  border-color: #000000 !important;
}

.popup-navigation-wrapper {
  background-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;
}

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

.popup-navigation-wrapper > .content-wrapper {
  padding: 40px;
  position: relative;
  width: 100%;
}

.popup-navigation--toggle {
  background-color: transparent;
  border-radius: 0;
  border: 0;
  color: #000;
  display: block;
  padding: 0;
  position: relative;
}

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

.popup-navigation--toggle:active {
  transform: scale(0.9);
}

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

.popup-navigation--open {
  display: none;
}

.popup-navigation--open svg {
  height: 24px;
}

.popup-navigation--close {
  position: absolute;
  right: 40px;
  top: 20px;
}

.popup-navigation--close svg {
  height: 26px;
}

/* Popup Dropdown */
html.popup-dropdown--html {
  overflow-y: hidden;
}

html.popup-dropdown--html .main-header {
  box-shadow: unset;
}

html.popup-dropdown--html .popup-dropdown--wrapper {
  display: block;
}

.header-navigation--top ul .dropdown,
#header_primary_links ul .dropdown {
  align-items: center;
  display: flex;
  gap: 4px;
}

.header-navigation--top ul .dropdown:after,
#header_primary_links ul .dropdown:after {
  background-image: url("data:image/svg+xml,%3Csvg fill='none' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='m4 6 4 4 4-4' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  content: "";
  display: inline-block;
  height: 16px;
  width: 16px;
}

.header-navigation--top ul .dropdown:hover:after,
.header-navigation--top ul .dropdown:focus:after,
#header_primary_links ul .dropdown:hover:after,
#header_primary_links ul .dropdown:focus:after {
  background-image: url("data:image/svg+xml,%3Csvg fill='none' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='m4 6 4 4 4-4' stroke='%238b6e4a' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.header-navigation--top ul .dropdown-active,
#header_primary_links ul .dropdown-active {
  color: #8b6e4a;
}

.header-navigation--top ul .dropdown-active::after,
#header_primary_links ul .dropdown-active::after {
  background-image: url("data:image/svg+xml,%3Csvg fill='none' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='m4 6 4 4 4-4' stroke='%238b6e4a' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  transform: rotate(180deg);
}

.popup-dropdown--wrapper {
  display: none;
  position: fixed;
  top: 128px;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99;
  min-height: calc(100vh);
  min-height: calc(100svh);
  padding-top: 128px;
}

.popup-dropdown--close {
  background: #000000;
  opacity: 0.6;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  cursor: pointer;
}

.popup-dropdown--navigation {
  border-top: 0.5px solid rgba(0, 0, 0, 0.2);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 40px 64px;
  z-index: 999;
  background: #ffffff;
}

@media only screen and (min-width: 1025px) {
  body[data-nav="true"] {
    overflow-y: auto;
  }

  body[data-nav="true"] .popup-navigation-wrapper {
    display: none;
  }
}
.main-footer {
  position: relative;
  color: #000000;
}

.main-footer a {
  color: #000000;
}

.main-footer a:hover,
.main-footer a:focus {
  color: #8b6e4a;
  text-decoration: none;
}

.main-footer--bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.main-footer--contain {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 64px;
}

.main-footer--body {
  position: relative;
  padding: 133px 0 40.95px;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  gap: 57px;
  min-height: 580.95px;
}

.main-footer--logo {
  flex: 0 0 129px;
  margin: 0 0 0 3px;
}

.main-footer--links {
  flex: 0 0 557px;
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding: 0 19px 0 0;
}

.footer--item {
  display: flex;
  flex-flow: column nowrap;
  gap: 40px;
}

.footer--title h1,
.footer--title h2,
.footer--title h3,
.footer--title h4,
.footer--title h5,
.footer--title h6 {
  font-family: "Helvetica Neue";
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 120%;
  margin: 0;
}

.footer--links ul {
  gap: 8px;
}

.footer--links ul li {
  font-size: 16px;
  line-height: 150%;
}

.footer--links ul .active a {
  color: #8b6e4a;
  text-decoration: none;
}

.footer--mobile_social {
  display: none;
}

.main-footer--address {
  flex: 1 1 50%;
  align-self: flex-end;
  font-size: 14px;
  line-height: 150%;
  margin: 0 0 2px;
}

.main-footer--address p {
  margin: 0 0 7px;
}

.main-footer--social {
  flex: 0 0 auto;
  align-self: flex-end;
}

.main-footer--social .social-links {
  justify-content: flex-end;
}

.main-footer--bottom {
  position: relative;
  padding: 19px 0 13px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 57.05px;
  font-size: 14px;
  line-height: 150%;
}

.main-footer--bottom:before {
  content: "";
  width: 100%;
  height: 0.5px;
  border-bottom: 0.5px solid rgba(0, 0, 0, 0.4);
  margin: 0 auto;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
}

.website-by {
  justify-self: flex-end;
}
/* 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;
}

/* Page template header */
#hs_cos_wrapper_page_header .section-header {
  margin-bottom: 90px;
}

#hs_cos_wrapper_page_header .section-header h1 {
  font-family: "Spezia Serif Trial",serif;
  font-size: 96px;
  font-weight: 400;
  letter-spacing: -5px;
  line-height: 100%;
  text-transform: uppercase;
  padding-top: 100px;
  padding-bottom: 48px;
  margin-bottom: 60px;
  border-bottom: 0.5px solid rgb(0 0 0 / 20%);
}

#hs_cos_wrapper_page_header .secondary-header {
  font-size: 18px;
  line-height: 150%;
  max-width: 584px;
}
@media (max-width: 1024px) {
  .content-wrapper {
    padding: 0 40px;
  }

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

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

  /*==== Header ====*/

  .header-container {
    align-items: center;
    padding: 14px 40px 14px 32px !important;
  }

  .header-logo {
    flex: 0 0 71.65px;
    border: 0;
  }

  .header-logo #hs_cos_wrapper_header_logo a {
    padding: 0;
  }

  .header-navigation--top,
  .header-links {
    display: none;
  }

  .header-navigation {
    flex: unset;
    display: flex;
    justify-content: flex-end;
    width: 100%;
  }

  .header-navigation--btm_main {
    gap: 24px;
    min-height: auto;
    padding: 0;
  }

  .header-navigation--btm_main .header_buttons_check .button {
    padding: 15px;
    font-size: 12px;
    line-height: 12px;
  }

  .menu-top_active .header-navigation--btm_main {
    display: flex;
  }

  .menu-top_active .header-navigation--btm_child {
    display: none;
  }

  .popup-navigation--open {
    display: block;
    color: #000000;
  }

  .popup-navigation--open svg {
    height: 19px;
    width: 32px;
  }

  .popup-navigation--open:hover,
  .popup-navigation--open:focus {
    color: #8b6e4a;
  }

  html.popup-dropdown--html {
    overflow-y: auto;
  }

  html.popup-dropdown--html .popup-dropdown--wrapper {
    display: none;
  }

  /*==== Popup Navigation ====*/
  .popup-navigation-wrapper {
    background: #8b6e4a;
    color: #ffffff;
  }

  .popup-navigation--top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 44px 14px 32px;
    position: relative;
  }

  .popup-navigation--top::before {
    content: "";
    border-bottom: 0.5px solid rgba(255, 255, 255, 0.32);
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 0.5px;
  }

  .popup-navigation--top_logo {
    max-width: 71.65px;
  }

  .popup-navigation--top_button {
    display: flex;
    align-items: center;
    gap: 28px;
  }

  .popup-navigation--top_button #hs_cos_wrapper_popup_buttons .button {
    background: #e60438;
    border-color: #e60438;
    color: #ffffff;
  }

  .popup-navigation--top_button .popup-navigation--close {
    position: relative;
    top: unset;
    right: unset;
    color: #ffffff;
  }

  .popup-navigation--top_button .popup-navigation--close svg {
    width: 24px;
    height: 24px;
  }

  .popup-navigation--top_button .popup-navigation--close:hover,
  .popup-navigation--top_button .popup-navigation--close:focus {
    color: #000000;
  }

  .popup-navigation--links {
    display: flex;
    flex-flow: column nowrap;
    gap: 98px;
    padding: 40px 40px 64px;
    min-height: calc(100% - 103px);
  }

  .popup-navigation--links_main {
    margin: auto 0 0;
  }

  .popup-navigation--links_main ul {
    font-weight: 400;
    gap: 18px;
  }

  .popup-navigation--links_main ul li {
    font-size: 32px;
    line-height: 90%;
    letter-spacing: -1px;
  }

  .popup-navigation--links_main ul li a {
    color: #ffffff;
    text-decoration: none;
  }

  .popup-navigation--links_main ul li a:hover,
  .popup-navigation--links_main ul li a:focus {
    color: #ffffff;
    text-decoration: none;
  }

  .popup-navigation--links_main ul li.active a {
    text-decoration: underline;
  }

  .popup-navigation--links_sub {
    margin: 0 0 auto;
  }

  .popup-navigation--links_sub ul {
    font-weight: 400;
    gap: 24px;
  }

  .popup-navigation--links_sub ul li {
    font-size: 24px;
    line-height: 90%;
  }

  .popup-navigation--links_sub ul li a {
    color: #ffffff;
    text-decoration: none;
  }

  .popup-navigation--links_sub ul li a:hover,
  .popup-navigation--links_sub ul li a:focus {
    color: #ffffff;
    text-decoration: none;
  }

  .popup-navigation--links_sub ul li.active a {
    text-decoration: underline;
  }

  .popup-navigation--links_main ul .dropdown {
    align-items: center;
    display: flex;
    gap: 8px;
  }

  .popup-navigation--links_main ul .dropdown:after {
    background-image: url("data:image/svg+xml,%3Csvg fill='none' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='m4 6 4 4 4-4' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    content: "";
    display: inline-block;
    height: 32px;
    width: 32px;
  }

  .popup-navigation--links_main ul .dropdown-active a::after {
    transform: rotate(180deg);
  }

  .popup-navigation--links_main ul .dropdown-active .navigations-rows {
    display: flex;
    opacity: 1;
  }

  /*==== Footer ====*/

  .main-footer--contain {
    padding: 0 40px;
  }

  .main-footer--body {
    padding: 56.05px 0 39.94px;
    gap: 49px;
    min-height: 524px;
  }

  .main-footer--logo {
    flex: 0 0 104.25px;
    margin: 0 0 0 1px;
  }

  .main-footer--links {
    flex: 0 1 499px;
    gap: 19px;
  }

  .main-footer--bottom {
    padding: 19px 0;
    min-height: 59px;
  }

  .website-by {
    justify-self: flex-end;
  }
}
@media (max-width: 767px) {
  .content-wrapper {
    padding: 0 24px;
  }

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

  /*==== Header ====*/

  .header-container {
    padding: 16px 24px !important;
  }

  .header-logo {
    flex: 0 0 55.41px;
    border: 0;
  }

  .header-navigation--btm_main .header_buttons_check .button {
    display: none;
  }

  /*==== Popup Navigation ====*/
  .popup-navigation--top {
    padding: 0;
    position: unset;
  }

  .popup-navigation--top::before {
    display: none;
  }

  .popup-navigation--top_logo {
    display: none;
  }

  .popup-navigation--top_button #hs_cos_wrapper_popup_buttons .button {
    position: fixed;
    right: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 21.8px 20px 26.2px;
    font-size: 18px;
    line-height: 18px;
    letter-spacing: 0.06em;
    z-index: 3;
    background: #e60438;
    border-color: #e60438;
    color: #ffffff;
  }

  .popup-navigation--top_button .popup-navigation--close {
    position: absolute;
    top: 30px;
    right: 24px;
  }

  .popup-navigation--links {
    gap: 88px;
    padding: 60px 24px 110px;
    min-height: 100%;
  }

  .popup-navigation--links_main {
    margin: 0;
  }

  .popup-navigation--links_sub {
    margin: 0;
  }

  /*==== Footer ====*/

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

  .main-footer--body {
    position: relative;
    padding: 80px 0 0;
    gap: 60px;
    min-height: 994px;
  }

  .main-footer--logo {
    flex: 0 0 105px;
    margin: 0px;
  }

  .main-footer--links {
    flex: 0 0 100%;
    flex-flow: row wrap;
    gap: 63px 24px;
    padding: 0 24px 0 0;
  }

  .footer--item {
    gap: 32px;
    flex: 0 1 40%;
  }

  .footer--title h1,
  .footer--title h2,
  .footer--title h3,
  .footer--title h4,
  .footer--title h5,
  .footer--title h6 {
    font-size: 20px;
    line-height: 120%;
  }

  .footer--links ul {
    gap: 12px;
  }

  .footer--links ul li {
    font-size: 16px;
    line-height: 160%;
  }

  .footer--mobile_social {
    display: flex;
  }

  .footer--mobile_social .social-links {
    justify-content: flex-start;
  }

  .main-footer--address {
    flex: 1 1 100%;
    align-self: center;
    font-size: 16px;
    line-height: 140%;
    margin: 0;
    order: 3;
    text-align: center;
    position: relative;
    padding: 21px 0;
    border-top: 0.5px solid rgba(0, 0, 0, 0.4);
  }

  .main-footer--address p {
    margin: 0 0 7px;
  }

  .main-footer--social {
    display: none;
  }

  .main-footer--bottom {
    padding: 40px 0;
    flex-flow: row wrap;
    gap: 6px;
    min-height: auto;
    text-align: center;
  }

  .main-footer--bottom:before {
    content: "";
    width: 100%;
    height: 0.5px;
    border-bottom: 0.5px solid rgba(0, 0, 0, 0.4);
    margin: 0 auto;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
  }

  #hs_cos_wrapper_footer_bottom_text {
    display: none;
  }

  .website-by {
    width: 100%;
    justify-self: center;
  }
}

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