/* Theme base styles */

/* Tools
Any animations, or functions used throughout the project.
Note: _macros.css needs to be imported into each stylesheet where macros are used and not included here
*/

/* Generic
This is where reset, normalize & box-sizing styles go.
*/

*, *:before, *:after {
  box-sizing: border-box;
}
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

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

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */

 html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */

/**
 * Remove the margin in all browsers.
 */

body {
  margin: 0;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */

/**
 * Add the correct box sizing in Firefox.
 */

hr {
  box-sizing: content-box;
  height: 0;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, Opera, and Safari.
 */

abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */

small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Forms
   ========================================================================== */

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Remove the inheritance of text transform in Edge and Firefox.
 * 1. Remove the inheritance of text transform in Firefox.
 */

button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * Remove the padding so developers are not caught out when they zero out `fieldset` elements in all browsers.
 */

legend {
  padding: 0;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */

progress {
  vertical-align: baseline;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */

[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */

/*
 * Add the correct display in Edge and Firefox.
 */

details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */

summary {
  display: list-item;
}

/* Objects
Non-cosmetic design patterns including grid and layout classes)
*/

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

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

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

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

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

/* Mobile layout */

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

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

/* Desktop layout */

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

  .row-fluid .span11 {
    width: 91.66%;
  }

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

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

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

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

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

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

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

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

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

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

/* Visibilty classes */

.hide {
  display: none;
}

.show {
  display: block;
}

.invisible {
  visibility: hidden;
}

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

/* Responsive visibilty classes */

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 767px) {
  .content-wrapper {
    padding: 0 20px;
  }

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

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

@font-face {
  font-family: 'Adobe Caslon Pro';
  src: local('Adobe Caslon Pro Semibold'), local('ACaslonPro-Semibold'),
    url("//21228708.fs1.hubspotusercontent-na1.net/hubfs/21228708/raw_assets/public/juliette/fonts/ACaslonPro-Semibold.woff2") format('woff2'),
    url("//21228708.fs1.hubspotusercontent-na1.net/hubfs/21228708/raw_assets/public/juliette/fonts/ACaslonPro-Semibold.woff") format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Adobe Caslon Pro';
  src: local('Adobe Caslon Pro Semibold Italic'), local('ACaslonPro-SemiboldItalic'),
    url("//21228708.fs1.hubspotusercontent-na1.net/hubfs/21228708/raw_assets/public/juliette/fonts/ACaslonPro-SemiboldItalic.woff2") format('woff2'),
    url("//21228708.fs1.hubspotusercontent-na1.net/hubfs/21228708/raw_assets/public/juliette/fonts/ACaslonPro-SemiboldItalic.woff") format('woff');
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Adobe Caslon Pro';
  src: local('Adobe Caslon Pro Regular'), local('ACaslonPro-Regular'),
    url("//21228708.fs1.hubspotusercontent-na1.net/hubfs/21228708/raw_assets/public/juliette/fonts/ACaslonPro-Regular.woff2") format('woff2'),
    url("//21228708.fs1.hubspotusercontent-na1.net/hubfs/21228708/raw_assets/public/juliette/fonts/ACaslonPro-Regular.woff") format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Adobe Caslon Pro';
  src: local('Adobe Caslon Pro Italic'), local('ACaslonPro-Italic'),
    url("//21228708.fs1.hubspotusercontent-na1.net/hubfs/21228708/raw_assets/public/juliette/fonts/ACaslonPro-Italic.woff2") format('woff2'),
    url("//21228708.fs1.hubspotusercontent-na1.net/hubfs/21228708/raw_assets/public/juliette/fonts/ACaslonPro-Italic.woff") format('woff');
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Griffon';
  src: local('Griffon Regular'), local('Griffon-Regular'),
    url("//21228708.fs1.hubspotusercontent-na1.net/hubfs/21228708/raw_assets/public/juliette/fonts/Griffon-Regular.woff2") format('woff2'),
    url("//21228708.fs1.hubspotusercontent-na1.net/hubfs/21228708/raw_assets/public/juliette/fonts/Griffon-Regular.woff") format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Aviano Contrast';
  src: local('aviano-contrastblack'),
    url("//21228708.fs1.hubspotusercontent-na1.net/hubfs/21228708/raw_assets/public/juliette/fonts/aviano-contrastblack.woff2") format('woff2'),
    url("//21228708.fs1.hubspotusercontent-na1.net/hubfs/21228708/raw_assets/public/juliette/fonts/aviano-contrastblack.woff") format('woff');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Cheque';
  src: local('Cheque Regular'), local('Cheque-Regular'),
    url("//21228708.fs1.hubspotusercontent-na1.net/hubfs/21228708/raw_assets/public/juliette/fonts/Cheque-Regular.woff2") format('woff2'),
    url("//21228708.fs1.hubspotusercontent-na1.net/hubfs/21228708/raw_assets/public/juliette/fonts/Cheque-Regular.woff") format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Proxima Nova';
  src: local('Proxima Nova Bold'), local('ProximaNova-Bold'),
    url("//21228708.fs1.hubspotusercontent-na1.net/hubfs/21228708/raw_assets/public/juliette/fonts/ProximaNova-Bold.woff2") format('woff2'),
    url("//21228708.fs1.hubspotusercontent-na1.net/hubfs/21228708/raw_assets/public/juliette/fonts/ProximaNova-Bold.woff") format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Proxima Nova';
  src: local('Proxima Nova Regular'), local('ProximaNova-Regular'),
    url("//21228708.fs1.hubspotusercontent-na1.net/hubfs/21228708/raw_assets/public/juliette/fonts/ProximaNova-Regular.woff2") format('woff2'),
    url("//21228708.fs1.hubspotusercontent-na1.net/hubfs/21228708/raw_assets/public/juliette/fonts/ProximaNova-Regular.woff") format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Alburgone';
  src: local('Alburgone Regular'), local('Alburgone-Regular'),
    url("//21228708.fs1.hubspotusercontent-na1.net/hubfs/21228708/raw_assets/public/juliette/fonts/Alburgone-Regular.woff2") format('woff2'),
    url("//21228708.fs1.hubspotusercontent-na1.net/hubfs/21228708/raw_assets/public/juliette/fonts/Alburgone-Regular.woff") format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Broadley';
  src: local('Broadley Script'), local('Broadley-Script'),
    url("//21228708.fs1.hubspotusercontent-na1.net/hubfs/21228708/raw_assets/public/juliette/fonts/Broadley-Script.woff2") format('woff2'),
    url("//21228708.fs1.hubspotusercontent-na1.net/hubfs/21228708/raw_assets/public/juliette/fonts/Broadley-Script.woff") format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Antique Spenserian';
  src: local('Antique Spenserian Standard'), local('Antique'),
    url("//21228708.fs1.hubspotusercontent-na1.net/hubfs/21228708/raw_assets/public/juliette/fonts/Antique.woff2") format('woff2'),
    url("//21228708.fs1.hubspotusercontent-na1.net/hubfs/21228708/raw_assets/public/juliette/fonts/Antique.woff") format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

html {
  font-family: 'Adobe Caslon Pro';
  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;
  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 1em;
}

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

/* Lists */

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

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

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

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

/* Code blocks */

pre {
  overflow: auto;
}

code {
  vertical-align: bottom;
}

/* Blockquotes */

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

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

blockquote:before {
  content: open-quote;
}

blockquote:after {
  content: close-quote;
}

/* Horizontal rules */

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

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

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

/* Image alt text */

img {
  font-size: 9px;
  height: auto;
  max-width: 100%;
  word-break: normal;
}
button,
.button {
  cursor: pointer;
  display: inline-block;
  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,
.no-button:hover,
.no-button:focus,
.no-button:active {
  background: none;
  border: none;
  border-radius: 0;
  color: initial;
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  margin-bottom: 0;
  padding: 0;
  text-align: left;
  text-decoration: none;
  transition: none;
}
/* Fields */

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

/* Labels */

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

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

/* Help text */

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

/* Inputs */

form input[type="text"],
form input[type="email"],
form input[type="password"],
form input[type="tel"],
form input[type="number"],
form input[type="file"],
form select,
form textarea {
  font-family: 'Proxima Nova';
  font-style: normal;
  border: 1px solid #0A0A0A;
  background: #00000000;
  display: block;
  font-size: 12px;
  letter-spacing: 0.04em;
  line-height: 140%;
  padding: 9px 20px 8px;
  width: 100%;
  color: #0A0A0A;
}

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

form select {
  padding-bottom: 14px;
  padding-top: 14px;
}

form textarea {
  resize: vertical;
}

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

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

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

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

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

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

/* Inputs - checkbox/radio */

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

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

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

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

/* Inputs - date picker */

.hs-dateinput {
  position: relative;
}

.hs-dateinput:before {
  content: "\01F4C5";
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
}

.fn-date-picker .pika-button,
.fn-date-picker .pika-next,
.fn-date-picker .pika-prev {
  border-radius: 0;
  min-width: auto;
}

.fn-date-picker .pika-table thead th {
  color: #fff;
}

.fn-date-picker td.is-selected .pika-button {
  border-radius: 0;
  box-shadow: none;
}

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

/* Inputs - file picker */

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

/* Placeholder */

::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  font-size: 12px;
  line-height: 140%;
}

::-moz-placeholder {
  /* Firefox 19+ */
  font-size: 12px;
  line-height: 140%;
}

:-ms-input-placeholder {
  /* IE 10+ */
  font-size: 12px;
  line-height: 140%;
}

:-moz-placeholder {
  /* Firefox 18- */
  font-size: 12px;
  line-height: 140%;
}

::placeholder {
  font-size: 12px;
  line-height: 140%;
  color: #0A0A0A;
}

/* 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: 2em !important;
}

/* Validation */

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

.hs-form-required {
  color: #dfc7a1;
}

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

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

.submitted-message {
  text-align: center;
}

/* Submit button */

form input[type="submit"],
form .hs-button {
  cursor: pointer;
  display: inline-block;
  margin-top: 21px;
  text-align: center;
  text-decoration: none;
  transition: all 0.15s linear;
  white-space: normal;
  min-width: 105px;
  color: #636363;
  text-align: center;
  font-family: "Proxima Nova", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin: 0;
}

/* Captcha */

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

table {
  border-collapse: collapse;
  margin-bottom: 25px;
  overflow-wrap: break-word;
}

/* Table cells */

td,
th {
  vertical-align: top;
}

/* Table header */

thead th {
  vertical-align: bottom;
}

/* Components
Specific pieces of UI that are stylized. Typically used for global partial styling
*/

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

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.fadeIn {
  animation-name: fadeIn;
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

.fadeOut {
  animation-name: fadeOut;
}
/* Sticky Header */

.main-header {
  position: relative;
  width: 100%;
  z-index: 999;
  background: #8d0414;
}

body[data-sticky="true"] .main-header {
  position: fixed;
  top: 0 !important;
  left: 0;
}

body .main-header::after {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 517 15'%3E%3Cg clip-path='url(%23a)'%3E%3Cmask id='b' width='517' height='15' x='0' y='0' maskUnits='userSpaceOnUse' style='mask-type:luminance'%3E%3Cpath fill='%23fff' d='M517 0H0v15h517V0Z'/%3E%3C/mask%3E%3Cg mask='url(%23b)'%3E%3Cpath fill='%23DFC7A1' d='M259.012 0c.41.214.82.429 1.025.857 1.229 1.072 1.229 2.572.205 3.643-1.025 1.071-2.869.857-3.894-.214-.819-1.072-.614-2.786.615-3.643l1.23-.643h.819Zm1.025 2.786c0-.643-.615-1.5-1.435-1.5-.819 0-1.639.643-1.639 1.5 0 .643.615 1.5 1.435 1.5.819 0 1.639-.643 1.639-1.5Z'/%3E%3C/g%3E%3Cmask id='c' width='517' height='15' x='0' y='0' maskUnits='userSpaceOnUse' style='mask-type:luminance'%3E%3Cpath fill='%23fff' d='M517 0H0v15h517V0Z'/%3E%3C/mask%3E%3Cg mask='url(%23c)'%3E%3Cpath fill='%23DFC7A1' d='M1.23 13.286c.82.214 1.434.428 2.049.428H252.66c.205 0 .41.215 1.025.643-.615.214-.82.429-1.025.429H4.508c-.615 0-1.23.214-1.844 0-.82-.215-1.435-.643-2.05-1.072-.41-.428-.614-1.071-.614-1.5 0-.643.41-1.071 1.025-.857.614.214.82.643.614 1.286 0 0-.205.214-.41.643Z'/%3E%3C/g%3E%3Cmask id='d' width='517' height='15' x='0' y='0' maskUnits='userSpaceOnUse' style='mask-type:luminance'%3E%3Cpath fill='%23fff' d='M517 0H0v15h517V0Z'/%3E%3C/mask%3E%3Cg mask='url(%23d)'%3E%3Cpath fill='%23DFC7A1' d='M248.971 8.143c.41-.214.615-.214.82-.214.615-.215 1.025 0 1.23.642.205.643-.205 1.072-.82 1.072-.615.214-1.23 0-1.639-.429-.615-.643-.615-1.285-.41-1.928.41-1.286 1.434-1.929 2.869-1.929 2.254 0 4.098 1.072 5.327 3 .82 1.072 1.435 2.357 2.254 3.643.41-.643.615-1.071.82-1.5.82-1.5 1.639-2.786 3.074-3.857 1.229-.857 2.459-1.286 3.893-1.072 1.23.215 2.254 1.072 2.459 2.143.205 1.286-.615 2.357-1.639 2.357-.41 0-.82-.214-1.025-.642-.205-.215-.205-.643 0-.858.205-.428.82-.428 1.23-.214h.615c-.205-1.071-1.025-1.714-1.845-1.714-1.229 0-2.254.428-3.278 1.286-1.64 1.285-2.459 3.214-3.279 5.142-.205.643-.41 1.286-.82 2.143-.409-.643-.614-1.071-.819-1.285-.615-1.5-1.23-3-2.049-4.286-.82-1.5-2.255-2.572-4.099-3-1.434-.429-2.049 0-2.869 1.5Z'/%3E%3C/g%3E%3Cmask id='e' width='517' height='15' x='0' y='0' maskUnits='userSpaceOnUse' style='mask-type:luminance'%3E%3Cpath fill='%23fff' d='M517 0H0v15h517V0Z'/%3E%3C/mask%3E%3Cg mask='url(%23e)'%3E%3Cpath fill='%23DFC7A1' d='M515.566 13.286c-.82.214-1.23.214-1.845.214H264.34c-.205 0-.41.214-1.025.643.615.214.82.428 1.025.428h248.152c.615 0 1.229.215 1.844 0 .82-.214 1.435-.642 2.049-1.071.41-.214.41-.857.41-1.5s-.41-1.071-1.024-.857c-.615.214-.82.643-.615 1.286.205.214.205.428.41.857Z'/%3E%3C/g%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='a'%3E%3Cpath fill='%23fff' d='M0 0h517v15H0z'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 517px auto;
  bottom: 14px;
  content: "";
  height: 15px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 100%;
}

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

#hs_cos_wrapper_header_main_menu {
  position: relative;
}

/* Header Container */

.header-container {
  align-items: center;
  display: flex;
  justify-content: center;
  padding-bottom: 39px;
  padding-top: 39px;
  padding-right: 58px;
}

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

/* Navigation Skipper */

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

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

/* Logo */

.header-logo {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  line-height: 0;
  max-width: 200px;
}

.header-logo img {
  display: block;
  max-width: 100%;
}

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

/* Navigation */

.header-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"] .header-navigation-wrapper {
  opacity: 1;
  visibility: inherit;
}

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

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

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

.header-navigation--open svg,
.header-navigation--close svg {
  display: block;
  height: 26px;
  width: auto;
}

.header-navigation {
  display: none;
}

.header-menu ul {
  font-family: "Adobe Caslon Pro";
  font-size: 18px;
  font-weight: 400;
  gap: 23px 47px;
  justify-content: center;
  letter-spacing: 0.15em;
  line-height: 22px;
  text-transform: uppercase;
}

.header-menu ul li:nth-child(2) {
  padding-right: 2px;
}

.header-menu ul li:nth-child(3) {
  padding-left: 2px;
}

.header-menu ul a {
  color: #fff;
}

.header-menu ul a:hover,
.header-menu ul a:focus,
.header-menu ul .active a {
  color: #dfc7a1;
  text-decoration: none;
}
.main-footer {
  background: #8d0414;
  padding: 83px 30px 99px;
  text-align: center;
  position: relative;
}

.main-footer--background {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.main-footer--background div,
.main-footer--background span {
  width: 100%;
  height: 100%;
}

.main-footer--background img {
  object-fit: cover;
  width: 100% !important;
  height: 100%;
}

.main-footer--logo {
  position: relative;
  max-width: 305px;
  height: auto;
  margin: 0 auto 47px;
}

.main-footer--form {
  position: relative;
  margin: 0 0 54px;
}

.main-footer--form h1,
.main-footer--form h2,
.main-footer--form h3,
.main-footer--form h4,
.main-footer--form h5,
.main-footer--form h6 {
  color: #fff;
  font-family: "Adobe Caslon Pro";
  font-size: 30px;
  font-style: italic;
  font-weight: 400;
  line-height: 100%;
  padding: 0 0 27px;
  margin: 0;
}

.main-footer--form form {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  gap: 0;
}

.main-footer--form form input[type="text"],
.main-footer--form form input[type="email"],
.main-footer--form form input[type="password"],
.main-footer--form form input[type="tel"],
.main-footer--form form input[type="number"],
.main-footer--form form input[type="file"],
.main-footer--form form select,
.main-footer--form form textarea {
  border: 1px solid #fff;
  background: #00000000;
  display: block;
  padding: 13px 20px 5px;
  width: 100%;
  color: #fff;
  font-family: "Adobe Caslon Pro";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 187.5%;
}

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

.main-footer--form form .hs-form-field {
  flex: 0 1 305px;
  margin-bottom: 0;
}

.main-footer--form .hs-form-field > label {
  margin-bottom: 0px;
}

.main-footer--form form .hs-form-field input {
  border-left: 0;
}

.main-footer--form form .hs-form-field:first-child input {
  border-left: 1px solid;
}

.main-footer--form form .hs_error_rollup,
.main-footer--form form .hs-submit {
  flex: 0 0 100%;
}

.main-footer--form form .hs-submit {
  margin: 21px 0 0;
}

.main-footer--form ::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #ffffff;
  font-size: 16px;
  line-height: 187.5%;
}

.main-footer--form ::-moz-placeholder {
  /* Firefox 19+ */
  color: #ffffff;
  font-size: 16px;
  line-height: 187.5%;
}

.main-footer--form :-ms-input-placeholder {
  /* IE 10+ */
  color: #ffffff;
  font-size: 16px;
  line-height: 187.5%;
}

.main-footer--form :-moz-placeholder {
  /* Firefox 18- */
  color: #ffffff;
  font-size: 16px;
  line-height: 187.5%;
}

.main-footer--form ::placeholder {
  color: #ffffff;
  font-size: 16px;
  line-height: 187.5%;
}

.main-footer--form .submitted-message{
  color: #ffffff;
}

.main-footer--form form input[type=submit].hs-button {
  color: transparent;
  background-color: #dfc7a1;
  border: none;
  background-size: contain;
  width: 139px;
  height: 42px;
  background-repeat: no-repeat;
  background-size:contain;
  padding: 0;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 137 41'%3E%3Ccircle cx='9' cy='9' r='1' fill='currentColor'/%3E%3Ccircle cx='128' cy='9' r='1' fill='currentColor'/%3E%3Ccircle cx='9' cy='32' r='1' fill='currentColor'/%3E%3Ccircle cx='128' cy='32' r='1' fill='currentColor'/%3E%3Cpath fill='currentColor' d='M1.65 1.648h133.7v37.704H1.65V1.648ZM1 40h135V1H1v39Z'/%3E%3Cpath stroke='currentColor' stroke-miterlimit='10' stroke-width='1.008' d='M136 1H1v39h135V1Z'/%3E%3Cpath fill='currentColor' d='M132.349 36.35H4.651V4.65h127.698v31.7ZM133 4H4v33h129V4Z'/%3E%3Cpath fill='currentColor' d='m39.33 24.505 1.11-3.27c.03-.075.074-.075.164-.06l.15.045c.075.03.135.06.105.165-.54 2.235.795 3.255 1.725 3.255.96 0 1.74-.765 1.74-1.77s-.735-1.59-1.395-2.31c-.93-1.02-1.665-1.785-1.665-3.195 0-1.08.855-2.64 2.55-2.64.825 0 1.53.51 1.77.675.075.045.12.075.21.075.12 0 .18-.21.24-.525.015-.045.045-.06.15-.045l.195.015c.09.015.12.045.105.105l-.54 2.85c-.015.06-.045.09-.12.09l-.21-.015c-.09-.015-.15-.045-.135-.135.09-.6-.105-2.505-1.665-2.505-.93 0-1.485.825-1.485 1.635 0 1.125.66 1.575 1.35 2.28.69.69 1.635 1.53 1.635 3.105 0 1.98-1.395 2.895-2.715 2.895-.96 0-1.605-.54-2.205-1.14-.12-.12-.255-.105-.345.03-.09.12-.21.345-.315.57-.03.06-.06.09-.15.045l-.195-.075c-.075-.03-.09-.045-.06-.15Zm8.653-1.125 1.875-6.93c.195-.735-.015-.99-.54-.99h-.69c-.12 0-.15-.03-.135-.12l.075-.345c.015-.06.06-.09.195-.09.18 0 .975.045 2.025.045 1.23 0 1.875-.045 2.085-.045.15 0 .195.06.165.15l-.075.285c-.015.075-.045.12-.165.12h-.285c-.915 0-1.14.15-1.395 1.065l-1.875 6.945c-.195.72.015 1.02.795 1.02h.525c.09 0 .105.06.09.15l-.045.285c-.015.09-.03.12-.18.12-.165 0-.87-.045-2.175-.045-1.215 0-2.055.045-2.22.045-.105 0-.135-.045-.12-.12l.06-.285c.03-.12.045-.15.135-.15h.645c.885 0 1.005-.3 1.23-1.11Zm12.98-1.47-.525 2.31c-.06.195-.105.255-.27.33-.435.18-1.74.675-2.91.675-2.64 0-4.305-1.86-4.305-4.2 0-3.555 2.925-6.3 6.135-6.3 1.29 0 2.13.51 2.43.75.195.15.33.18.405.18.21 0 .3-.15.39-.48.015-.06.045-.09.15-.06l.18.045c.06.015.105.045.09.12l-.855 3.015c-.03.09-.06.105-.18.09l-.195-.03c-.075-.015-.12-.06-.09-.15.33-1.29-.45-2.97-2.325-2.97-2.715 0-4.68 2.79-4.68 6.075 0 2.37 1.395 3.375 2.775 3.375.96 0 1.605-.405 1.875-.63.135-.12.21-.315.27-.51l.3-1.455c.135-.6-.105-.72-.6-.72h-.555c-.12 0-.135-.045-.105-.15l.06-.285c.015-.09.045-.12.165-.12.225 0 .75.045 1.74.045 1.02 0 1.38-.045 1.59-.045.105 0 .15.045.135.15l-.045.285c-.015.09-.045.12-.135.12h-.24c-.36 0-.585.12-.675.54Zm2.865 1.035 2.07-6.6c.15-.465.105-.885-.87-.885h-.57c-.09 0-.15-.06-.12-.18l.06-.225c.03-.105.045-.15.165-.15.195 0 .795.045 2.58.045.225 0 .24.225.315.39l3.225 7.2c.12.255.165.255.375-.345l1.965-5.865c.195-.57 0-.87-.48-.87h-.525c-.135 0-.18-.045-.165-.165l.045-.27c.015-.075.045-.12.15-.12.18 0 .645.045 1.71.045.78 0 1.08-.045 1.29-.045.12 0 .165.075.135.195l-.045.24c-.015.105-.045.12-.135.12h-.375c-.375 0-.57.105-.825.825l-2.91 8.325c-.165.495-.435.48-.615.09l-3.57-7.965c-.09-.195-.21-.195-.27.015l-1.92 6.345c-.27.9-.165 1.395.51 1.395h.585c.105 0 .15.06.135.15l-.045.285c-.03.09-.045.12-.18.12-.15 0-.795-.045-1.89-.045-1.035 0-1.53.045-1.68.045-.09 0-.135-.06-.12-.165l.045-.27c.015-.075.045-.12.135-.12h.405c.735 0 1.05-.42 1.41-1.545Zm24.293-6.795-1.47 4.665c-.855 2.775-2.19 4.41-4.544 4.41-2.01 0-3.495-.885-3.495-2.745 0-.63.225-1.56.315-1.875L80.2 16.39c.226-.675.06-.93-.42-.93h-.54c-.075 0-.12-.03-.105-.12l.076-.315c.014-.09.044-.12.194-.12.18 0 .706.045 1.785.045 1.215 0 1.725-.045 1.876-.045.12 0 .15.045.135.15l-.06.285c-.016.075-.06.12-.15.12h-.48c-.36 0-.72.06-.96.855l-1.23 4.005c-.09.33-.436 1.44-.436 2.115 0 1.89 1.846 2.115 2.37 2.115.66 0 1.47-.315 1.95-.75.69-.615 1.17-1.44 1.68-3.105l1.32-4.32c.225-.72-.09-.915-.555-.915h-.57c-.135 0-.15-.045-.135-.12l.046-.285c.03-.105.06-.15.194-.15.18 0 .75.045 1.83.045.87 0 1.215-.045 1.365-.045.135 0 .15.045.135.15l-.044.285c-.015.075-.045.12-.165.12h-.316c-.48 0-.704.285-.87.69Zm1.552 7.14 1.785-6.78c.135-.48.195-1.005-.48-1.005h-.705c-.075 0-.09-.075-.075-.15l.075-.285c.03-.105.06-.12.21-.12s2.82-.045 3.135-.045c1.425 0 2.25.105 2.97.705.66.555.9 1.02.9 2.04 0 1.515-1.29 3.18-4.32 3.18-.66 0-1.29-.105-1.515-.18l-.735 2.745c-.15.57-.12 1.095.48 1.095h.57c.105 0 .135.06.12.15l-.045.285c-.015.09-.045.12-.18.12-.18 0-.795-.045-1.995-.045-1.02 0-1.56.045-1.77.045-.09 0-.135-.045-.12-.15l.03-.255c.015-.09.06-.15.165-.15h.315c.81 0 1.02-.555 1.185-1.2Zm3.36-7.875-1.275 4.695c.24.165.66.24 1.275.24 2.25 0 3.135-1.56 3.135-2.82 0-1.785-1.53-2.145-2.55-2.145-.165 0-.48 0-.585.03Z'/%3E%3C/svg%3E");
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 137 41'%3E%3Ccircle cx='9' cy='9' r='1' fill='currentColor'/%3E%3Ccircle cx='128' cy='9' r='1' fill='currentColor'/%3E%3Ccircle cx='9' cy='32' r='1' fill='currentColor'/%3E%3Ccircle cx='128' cy='32' r='1' fill='currentColor'/%3E%3Cpath fill='currentColor' d='M1.65 1.648h133.7v37.704H1.65V1.648ZM1 40h135V1H1v39Z'/%3E%3Cpath stroke='currentColor' stroke-miterlimit='10' stroke-width='1.008' d='M136 1H1v39h135V1Z'/%3E%3Cpath fill='currentColor' d='M132.349 36.35H4.651V4.65h127.698v31.7ZM133 4H4v33h129V4Z'/%3E%3Cpath fill='currentColor' d='m39.33 24.505 1.11-3.27c.03-.075.074-.075.164-.06l.15.045c.075.03.135.06.105.165-.54 2.235.795 3.255 1.725 3.255.96 0 1.74-.765 1.74-1.77s-.735-1.59-1.395-2.31c-.93-1.02-1.665-1.785-1.665-3.195 0-1.08.855-2.64 2.55-2.64.825 0 1.53.51 1.77.675.075.045.12.075.21.075.12 0 .18-.21.24-.525.015-.045.045-.06.15-.045l.195.015c.09.015.12.045.105.105l-.54 2.85c-.015.06-.045.09-.12.09l-.21-.015c-.09-.015-.15-.045-.135-.135.09-.6-.105-2.505-1.665-2.505-.93 0-1.485.825-1.485 1.635 0 1.125.66 1.575 1.35 2.28.69.69 1.635 1.53 1.635 3.105 0 1.98-1.395 2.895-2.715 2.895-.96 0-1.605-.54-2.205-1.14-.12-.12-.255-.105-.345.03-.09.12-.21.345-.315.57-.03.06-.06.09-.15.045l-.195-.075c-.075-.03-.09-.045-.06-.15Zm8.653-1.125 1.875-6.93c.195-.735-.015-.99-.54-.99h-.69c-.12 0-.15-.03-.135-.12l.075-.345c.015-.06.06-.09.195-.09.18 0 .975.045 2.025.045 1.23 0 1.875-.045 2.085-.045.15 0 .195.06.165.15l-.075.285c-.015.075-.045.12-.165.12h-.285c-.915 0-1.14.15-1.395 1.065l-1.875 6.945c-.195.72.015 1.02.795 1.02h.525c.09 0 .105.06.09.15l-.045.285c-.015.09-.03.12-.18.12-.165 0-.87-.045-2.175-.045-1.215 0-2.055.045-2.22.045-.105 0-.135-.045-.12-.12l.06-.285c.03-.12.045-.15.135-.15h.645c.885 0 1.005-.3 1.23-1.11Zm12.98-1.47-.525 2.31c-.06.195-.105.255-.27.33-.435.18-1.74.675-2.91.675-2.64 0-4.305-1.86-4.305-4.2 0-3.555 2.925-6.3 6.135-6.3 1.29 0 2.13.51 2.43.75.195.15.33.18.405.18.21 0 .3-.15.39-.48.015-.06.045-.09.15-.06l.18.045c.06.015.105.045.09.12l-.855 3.015c-.03.09-.06.105-.18.09l-.195-.03c-.075-.015-.12-.06-.09-.15.33-1.29-.45-2.97-2.325-2.97-2.715 0-4.68 2.79-4.68 6.075 0 2.37 1.395 3.375 2.775 3.375.96 0 1.605-.405 1.875-.63.135-.12.21-.315.27-.51l.3-1.455c.135-.6-.105-.72-.6-.72h-.555c-.12 0-.135-.045-.105-.15l.06-.285c.015-.09.045-.12.165-.12.225 0 .75.045 1.74.045 1.02 0 1.38-.045 1.59-.045.105 0 .15.045.135.15l-.045.285c-.015.09-.045.12-.135.12h-.24c-.36 0-.585.12-.675.54Zm2.865 1.035 2.07-6.6c.15-.465.105-.885-.87-.885h-.57c-.09 0-.15-.06-.12-.18l.06-.225c.03-.105.045-.15.165-.15.195 0 .795.045 2.58.045.225 0 .24.225.315.39l3.225 7.2c.12.255.165.255.375-.345l1.965-5.865c.195-.57 0-.87-.48-.87h-.525c-.135 0-.18-.045-.165-.165l.045-.27c.015-.075.045-.12.15-.12.18 0 .645.045 1.71.045.78 0 1.08-.045 1.29-.045.12 0 .165.075.135.195l-.045.24c-.015.105-.045.12-.135.12h-.375c-.375 0-.57.105-.825.825l-2.91 8.325c-.165.495-.435.48-.615.09l-3.57-7.965c-.09-.195-.21-.195-.27.015l-1.92 6.345c-.27.9-.165 1.395.51 1.395h.585c.105 0 .15.06.135.15l-.045.285c-.03.09-.045.12-.18.12-.15 0-.795-.045-1.89-.045-1.035 0-1.53.045-1.68.045-.09 0-.135-.06-.12-.165l.045-.27c.015-.075.045-.12.135-.12h.405c.735 0 1.05-.42 1.41-1.545Zm24.293-6.795-1.47 4.665c-.855 2.775-2.19 4.41-4.544 4.41-2.01 0-3.495-.885-3.495-2.745 0-.63.225-1.56.315-1.875L80.2 16.39c.226-.675.06-.93-.42-.93h-.54c-.075 0-.12-.03-.105-.12l.076-.315c.014-.09.044-.12.194-.12.18 0 .706.045 1.785.045 1.215 0 1.725-.045 1.876-.045.12 0 .15.045.135.15l-.06.285c-.016.075-.06.12-.15.12h-.48c-.36 0-.72.06-.96.855l-1.23 4.005c-.09.33-.436 1.44-.436 2.115 0 1.89 1.846 2.115 2.37 2.115.66 0 1.47-.315 1.95-.75.69-.615 1.17-1.44 1.68-3.105l1.32-4.32c.225-.72-.09-.915-.555-.915h-.57c-.135 0-.15-.045-.135-.12l.046-.285c.03-.105.06-.15.194-.15.18 0 .75.045 1.83.045.87 0 1.215-.045 1.365-.045.135 0 .15.045.135.15l-.044.285c-.015.075-.045.12-.165.12h-.316c-.48 0-.704.285-.87.69Zm1.552 7.14 1.785-6.78c.135-.48.195-1.005-.48-1.005h-.705c-.075 0-.09-.075-.075-.15l.075-.285c.03-.105.06-.12.21-.12s2.82-.045 3.135-.045c1.425 0 2.25.105 2.97.705.66.555.9 1.02.9 2.04 0 1.515-1.29 3.18-4.32 3.18-.66 0-1.29-.105-1.515-.18l-.735 2.745c-.15.57-.12 1.095.48 1.095h.57c.105 0 .135.06.12.15l-.045.285c-.015.09-.045.12-.18.12-.18 0-.795-.045-1.995-.045-1.02 0-1.56.045-1.77.045-.09 0-.135-.045-.12-.15l.03-.255c.015-.09.06-.15.165-.15h.315c.81 0 1.02-.555 1.185-1.2Zm3.36-7.875-1.275 4.695c.24.165.66.24 1.275.24 2.25 0 3.135-1.56 3.135-2.82 0-1.785-1.53-2.145-2.55-2.145-.165 0-.48 0-.585.03Z'/%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}

.main-footer--form form input[type=submit].hs-button:hover,
.main-footer--form form input[type=submit].hs-button:focus,
.main-footer--form form input[type=submit].hs-button:focus-within {
  background-color: white;
}

#hs_cos_wrapper_footer_links {
  font-size: 12px;
  letter-spacing: 0.15em;
  line-height: 120%;
  margin-top: 54px;
  position: relative;
  text-transform: uppercase;
}

#hs_cos_wrapper_footer_links ul {
  gap: 23px 47px;
  justify-content: center;
}

#hs_cos_wrapper_footer_links a {
  color: #FFFFFF;
}

#hs_cos_wrapper_footer_links a:hover,
#hs_cos_wrapper_footer_links a:focus {
  color: #dfc7a1;
  text-decoration: none;
}
/* 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;
}


/* Vertical menu */

.hs-menu-wrapper.hs-menu-flow-horizontal ul {
  flex-direction: row;
}

/* Horizontal menu */

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

/* Flyouts */

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

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

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

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

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

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

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

@media (max-width: 767px) {

  .hs-menu-wrapper.flyouts .hs-menu-children-wrapper,
  .hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover>.hs-menu-children-wrapper,
  .hs-menu-wrapper.hs-menu-flow-vertical.flyouts .hs-item-has-children:hover>.hs-menu-children-wrapper {
    left: 0;
    opacity: 1;
    position: relative;
    top: auto;
  }
}

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

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

/* Images */

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

/* Page Header */

#hs_cos_wrapper_page_header .section-header {
  margin: 39px 0;
  text-align: center;
}

#hs_cos_wrapper_page_header .section-header h1,
#hs_cos_wrapper_page_header .section-header h2,
#hs_cos_wrapper_page_header .section-header h3,
#hs_cos_wrapper_page_header .section-header h4,
#hs_cos_wrapper_page_header .section-header h5,
#hs_cos_wrapper_page_header .section-header h6 {
  margin-bottom: 0;
}

#hs_cos_wrapper_page_header .secondary-header {
  margin: 0 auto;
  max-width: 700px;
}

/* Slider - Cocktails */

.slider_cocktails {
  background-image: url('//21228708.fs1.hubspotusercontent-na1.net/hubfs/21228708/raw_assets/public/juliette/images/bg-texture-paper.png');
}

@media (max-width: 768px) {
  .slider_cocktails {
    background-image: url('//21228708.fs1.hubspotusercontent-na1.net/hubfs/21228708/raw_assets/public/juliette/images/bg-texture-paper-tablet.png');
  }
}

@media (max-width: 414px) {
  .slider_cocktails {
    background-image: url('//21228708.fs1.hubspotusercontent-na1.net/hubfs/21228708/raw_assets/public/juliette/images/bg-texture-paper-phone.png');
  }
}
@media (max-width: 1024px) {
  .main-footer {
    padding: 83px 30px 51.94px;
  }

  .main-footer--form form .hs-form-field {
    flex: 1 1 236px;
  }
}

@media (max-width: 900px) {
  .header-container {
    padding-right: 30px;
  }
  
  .header-column.header-menu {
    max-width: 700px;
  }
}
@media (max-width: 767px) {
  body .main-header::after {
    background-size: 325px auto;
    bottom: 8px;
    height: 9px;
  }

  .header-container {
    padding: 18px 27px 18px 15px;
  }

  .header-menu ul {
    font-size: 12px;
    gap: 12px 24px;
    line-height: 116.6667%;
  }

  .header-menu ul li:nth-child(2) {
    padding-right: 0.5px;
  }

  .header-menu ul li:nth-child(3) {
    padding-left: 0.5px;
  }

  .main-footer {
    padding: 83px 20px 99.94px;
  }

  .main-footer--form form .hs-form-field {
    flex: 1 1 100%;
  }

  .main-footer--form form .hs-form-field input {
    border-left: 1px solid;
    border-bottom: 0px;
  }

  .main-footer--form form .hs-form-field:nth-child(3) input {
    border-bottom: 1px solid;
  }

  .main-footer--form form .hs-input.invalid.error {
    border-bottom: 1px solid #dfc7a1;
  }

  .main-footer--form form .hs-error-msg {
    margin: 0 0 5px;
  }
}

@media (max-width: 560px) {
  .header-container {
    padding-right: 15px;
  }

  .header-column.header-menu {
    max-width: 400px;
  }
}

@media (max-width: 413px) {
  body .main-header::after {
    background-size: 78.5% auto;
  }

  .header-container {
    padding-left: 10px;
    padding-right: 10px;
  }

  .header-column.header-menu {
    max-width: 320px;
  }

  .header-menu ul {
    font-size: 10px;
    gap: 14px;
  }
}

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