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

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

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

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

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

@font-face {
  font-family: "Minion Pro";
  src: local("Minion Pro Regular"),
  local("MinionPro-Regular"),
  url('//49409105.fs1.hubspotusercontent-na1.net/hubfs/49409105/raw_assets/public/rondel-village-feb-2025/fonts/MinionPro-Regular.woff2') format("woff2"),
  url('//49409105.fs1.hubspotusercontent-na1.net/hubfs/49409105/raw_assets/public/rondel-village-feb-2025/fonts/MinionPro-Regular.woff') format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Minion Pro";
  src: local("Minion Pro Medium"),
  local("MinionPro-Medium"),
  url('//49409105.fs1.hubspotusercontent-na1.net/hubfs/49409105/raw_assets/public/rondel-village-feb-2025/fonts/MinionPro-Medium.woff2') format("woff2"),
  url('//49409105.fs1.hubspotusercontent-na1.net/hubfs/49409105/raw_assets/public/rondel-village-feb-2025/fonts/MinionPro-Medium.woff') format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Minion Pro";
  src: local("Minion Pro Semibold"),
  local("MinionPro-Semibold"),
  url('//49409105.fs1.hubspotusercontent-na1.net/hubfs/49409105/raw_assets/public/rondel-village-feb-2025/fonts/MinionPro-Semibold.woff2') format("woff2"),
  url('//49409105.fs1.hubspotusercontent-na1.net/hubfs/49409105/raw_assets/public/rondel-village-feb-2025/fonts/MinionPro-Semibold.woff') format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Minion Pro";
  src: local("Minion Pro Bold"),
  local("MinionPro-Bold"),
  url('//49409105.fs1.hubspotusercontent-na1.net/hubfs/49409105/raw_assets/public/rondel-village-feb-2025/fonts/MinionPro-Bold.woff2') format("woff2"),
  url('//49409105.fs1.hubspotusercontent-na1.net/hubfs/49409105/raw_assets/public/rondel-village-feb-2025/fonts/MinionPro-Bold.woff') format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Sogo";
  src: local("Sogo Light"),
  local("Sogo-Light"),
  url('//49409105.fs1.hubspotusercontent-na1.net/hubfs/49409105/raw_assets/public/rondel-village-feb-2025/fonts/Sogo-Light.woff2') format("woff2"),
  url('//49409105.fs1.hubspotusercontent-na1.net/hubfs/49409105/raw_assets/public/rondel-village-feb-2025/fonts/Sogo-Light.woff') format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

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

@font-face {
  font-family: "Sogo";
  src: local("Sogo Medium"),
  local("Sogo-Medium"),
  url('//49409105.fs1.hubspotusercontent-na1.net/hubfs/49409105/raw_assets/public/rondel-village-feb-2025/fonts/Sogo-Medium.woff2') format("woff2"),
  url('//49409105.fs1.hubspotusercontent-na1.net/hubfs/49409105/raw_assets/public/rondel-village-feb-2025/fonts/Sogo-Medium.woff') format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Sogo";
  src: local("Sogo Bold"),
  local("Sogo-Bold"),
  url('//49409105.fs1.hubspotusercontent-na1.net/hubfs/49409105/raw_assets/public/rondel-village-feb-2025/fonts/Sogo-Bold.woff2') format("woff2"),
  url('//49409105.fs1.hubspotusercontent-na1.net/hubfs/49409105/raw_assets/public/rondel-village-feb-2025/fonts/Sogo-Bold.woff') format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Miller Text";
  src: local("Miller Text Bold"),
  local("Miller-TextBold"),
  url('//49409105.fs1.hubspotusercontent-na1.net/hubfs/49409105/raw_assets/public/rondel-village-feb-2025/fonts/Miller-TextBold.woff2') format("woff2"),
  url('//49409105.fs1.hubspotusercontent-na1.net/hubfs/49409105/raw_assets/public/rondel-village-feb-2025/fonts/Miller-TextBold.woff') format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Miller Text";
  src: local("Miller Text"),
  local("Miller-Text"),
  url('//49409105.fs1.hubspotusercontent-na1.net/hubfs/49409105/raw_assets/public/rondel-village-feb-2025/fonts/Miller-Text.woff2') format("woff2"),
  url('//49409105.fs1.hubspotusercontent-na1.net/hubfs/49409105/raw_assets/public/rondel-village-feb-2025/fonts/Miller-Text.woff') format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Garamond Premiere Pro';
  src: local('Garamond Premiere Pro Display'), local('GaramondPremrPro-Disp'),
    url('//49409105.fs1.hubspotusercontent-na1.net/hubfs/49409105/raw_assets/public/rondel-village-feb-2025/fonts/GaramondPremrPro-Disp.woff2') format('woff2'),
    url('//49409105.fs1.hubspotusercontent-na1.net/hubfs/49409105/raw_assets/public/rondel-village-feb-2025/fonts/GaramondPremrPro-Disp.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Garamond Premiere Pro';
  src: local('Garamond Premiere Pro Semibold Subhead'), local('GaramondPremrPro-SmbdSubh'),
    url('//49409105.fs1.hubspotusercontent-na1.net/hubfs/49409105/raw_assets/public/rondel-village-feb-2025/fonts/GaramondPremrPro-SmbdSubh.woff2') format('woff2'),
    url('//49409105.fs1.hubspotusercontent-na1.net/hubfs/49409105/raw_assets/public/rondel-village-feb-2025/fonts/GaramondPremrPro-SmbdSubh.woff') format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

html {
  background: #fffefc;
  line-height: 160%;
  word-break: break-word;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  color: #1E1E1E;
}

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-line: none;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color 0.15s linear;
}

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

a:focus {
  outline: 0;
}

/* Headings */

h1,
h2,
h3 {
  font-family: "Garamond Premiere Pro";
  font-weight: 400;
}

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

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;
  letter-spacing: 0.05em;
  line-height: 150%;
  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: 30px;
  position: relative;
}

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

/* Labels */

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

.hs-form-field>label {
  color: #8E8E8E;
  margin-bottom: 15px;
}

/* Help text */

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

/* Inputs */

form input[type="text"],
form input[type="email"],
form input[type="password"],
form input[type="tel"],
form input[type="number"],
form input[type="date"],
form input[type="file"],
form select,
form textarea,
form .hs-dateinput .hs-input {
  border: 0;
  border-radius: 0;
  background: transparent;
  border-bottom: 1px solid rgba(30, 30, 30, 0.2);
  display: block;
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 140%;
  letter-spacing: 0.02em;
  padding: 0 0 7px;
  width: 100%;
  color: #8e8e8e;
}

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,
form .hs-dateinput .hs-input:focus {
  color: #1E1E1E;
  border-color: #1E1E1E;
  outline: 0;
}

form input[type=file]::file-selector-button {
  background: transparent;
  border: 1px solid rgba(30, 30, 30, 0.2);
  color: #1E1E1E;
  cursor: pointer;
  margin-right: 20px;
  padding: 10px 20px;
  text-align: center;
  text-transform: none;
}

form input[type=file]::file-selector-button:hover,
form input[type=file]::file-selector-button:focus {
  background-color: #1E1E1E;
  border-color: #1E1E1E;
  color: #FFFFFF;
}

form select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 12 7'%3E%3Cpath stroke='%238E8E8E' stroke-width='.6' d='M11 1 6 6 1 1'/%3E%3C/svg%3E");
  background-position: top 5px right;
  background-repeat: no-repeat;
  background-size: 12px auto;
  padding: 0 19px 7px 0;
}

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

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

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

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

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

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

@media (max-width: 767px) {

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

/* Inputs - Checkbox/Radio */

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

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

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

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

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

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

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: start;
  color: #8E8E8E;
  display: flex;
  font-size: 12px;
  letter-spacing: 0.02em;
  line-height: 140%;
}

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 #8E8E8E;
  content: '';
  cursor: pointer;
  display: block;
  flex-shrink: 0;
  height: 16px;
  margin-right: 10px;
  width: 16px;
}

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

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

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

/* Inputs - date picker */

.hs-dateinput {
  position: relative;
}

.hs-dateinput:before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 17'%3E%3Cpath fill='%238E8E8E' d='M7.286 2.576H4.64a.323.323 0 0 1 0-.646h2.646a.323.323 0 0 1 0 .646Z'/%3E%3Cpath fill='%238E8E8E' d='M14.234 16.808H1.766A1.768 1.768 0 0 1 0 15.041V3.697a1.769 1.769 0 0 1 1.766-1.766h1.442a.323.323 0 0 1 0 .646H1.766a1.122 1.122 0 0 0-1.12 1.12v11.344a1.121 1.121 0 0 0 1.12 1.12h12.468a1.122 1.122 0 0 0 1.12-1.12V3.697a1.121 1.121 0 0 0-1.12-1.12h-1.442a.323.323 0 1 1 0-.646h1.442A1.768 1.768 0 0 1 16 3.697v11.344a1.768 1.768 0 0 1-1.766 1.767Z'/%3E%3Cpath fill='%238E8E8E' d='M11.386 2.576H8.739a.323.323 0 1 1 0-.646h2.647a.323.323 0 0 1 0 .646ZM3.395 8.788h-.976a.655.655 0 0 1-.653-.654v-.976a.655.655 0 0 1 .653-.653h.976a.655.655 0 0 1 .653.653v.977a.655.655 0 0 1-.653.653ZM2.419 7.15a.008.008 0 0 0-.007.007v.977c0 .004.003.007.007.007h.976a.009.009 0 0 0 .007-.007v-.977a.008.008 0 0 0-.007-.007h-.976ZM6.794 8.788H5.82a.654.654 0 0 1-.654-.654v-.976a.654.654 0 0 1 .654-.653h.974a.654.654 0 0 1 .654.653v.977a.654.654 0 0 1-.654.653ZM5.819 7.15a.008.008 0 0 0-.007.007v.977c0 .004.003.007.007.007h.975a.008.008 0 0 0 .007-.007v-.977a.008.008 0 0 0-.007-.007h-.975ZM10.187 8.788h-.975a.654.654 0 0 1-.653-.654v-.976a.654.654 0 0 1 .653-.653h.975a.654.654 0 0 1 .654.653v.977a.654.654 0 0 1-.654.653ZM9.212 7.15a.008.008 0 0 0-.007.007v.977c0 .004.003.007.007.007h.975a.008.008 0 0 0 .008-.007v-.977a.008.008 0 0 0-.008-.007h-.975ZM13.588 8.788h-.975a.654.654 0 0 1-.654-.654v-.976a.654.654 0 0 1 .654-.653h.975a.654.654 0 0 1 .653.653v.977a.654.654 0 0 1-.653.653Zm-.975-1.637a.008.008 0 0 0-.008.007v.977c0 .004.004.007.008.007h.975a.008.008 0 0 0 .007-.007v-.977a.008.008 0 0 0-.007-.007h-.975ZM3.395 12.007h-.976a.655.655 0 0 1-.653-.653v-.977a.654.654 0 0 1 .653-.653h.976a.655.655 0 0 1 .653.653v.977a.654.654 0 0 1-.653.653Zm-.976-1.636a.008.008 0 0 0-.007.007v.976c0 .003.003.006.007.007h.976a.009.009 0 0 0 .007-.007v-.977a.008.008 0 0 0-.007-.007l-.976.001ZM6.794 12.007H5.82a.655.655 0 0 1-.654-.653v-.977a.654.654 0 0 1 .654-.653h.974a.654.654 0 0 1 .654.653v.977a.654.654 0 0 1-.654.653Zm-.975-1.636a.008.008 0 0 0-.007.007v.976c0 .003.003.006.007.007h.975a.008.008 0 0 0 .007-.007v-.977a.008.008 0 0 0-.007-.007l-.975.001ZM10.184 12.007h-.975a.655.655 0 0 1-.654-.653v-.977a.654.654 0 0 1 .654-.653h.975a.654.654 0 0 1 .654.653v.977a.655.655 0 0 1-.654.653Zm-.976-1.636a.008.008 0 0 0-.007.007v.976c0 .003.004.006.007.007h.976a.008.008 0 0 0 .007-.007v-.977a.008.008 0 0 0-.008-.007l-.975.001ZM13.588 12.007h-.975a.655.655 0 0 1-.654-.653v-.977a.653.653 0 0 1 .654-.653h.975a.654.654 0 0 1 .653.653v.977a.654.654 0 0 1-.653.653Zm-.975-1.636a.008.008 0 0 0-.008.007v.976c0 .003.004.006.008.007h.975a.008.008 0 0 0 .007-.007v-.977a.008.008 0 0 0-.007-.007l-.975.001ZM3.395 15.226h-.976a.654.654 0 0 1-.653-.653v-.977a.654.654 0 0 1 .653-.654h.976a.653.653 0 0 1 .653.654v.976a.655.655 0 0 1-.653.654Zm-.976-1.637a.008.008 0 0 0-.007.007v.977c0 .003.003.006.007.007h.976a.009.009 0 0 0 .007-.007v-.977a.008.008 0 0 0-.007-.007h-.976ZM6.794 15.226H5.82a.654.654 0 0 1-.654-.653v-.977a.654.654 0 0 1 .654-.654h.974a.654.654 0 0 1 .654.654v.976a.654.654 0 0 1-.654.654Zm-.975-1.637a.008.008 0 0 0-.007.007v.977c0 .003.003.006.007.007h.975a.008.008 0 0 0 .007-.007v-.977a.008.008 0 0 0-.007-.007h-.975ZM10.187 15.226h-.975a.655.655 0 0 1-.653-.654v-.976a.654.654 0 0 1 .653-.654h.975a.654.654 0 0 1 .653.654v.976a.655.655 0 0 1-.653.654Zm-.975-1.637a.008.008 0 0 0-.007.007v.976c0 .004.003.007.007.008h.975a.008.008 0 0 0 .008-.008v-.976a.008.008 0 0 0-.008-.007h-.975ZM13.588 15.226h-.975a.654.654 0 0 1-.654-.653v-.977a.654.654 0 0 1 .654-.654h.975a.654.654 0 0 1 .653.654v.976a.654.654 0 0 1-.653.654Zm-.975-1.637a.008.008 0 0 0-.008.007v.977c0 .003.004.006.008.007h.975a.008.008 0 0 0 .007-.007v-.977a.008.008 0 0 0-.007-.007h-.975ZM15.677 5.57H.323a.323.323 0 1 1 0-.647h15.354a.323.323 0 1 1 0 .646ZM3.94 4.484H3.91a1.026 1.026 0 0 1-1.024-1.025V1.025A1.026 1.026 0 0 1 3.91 0h.028a1.026 1.026 0 0 1 1.025 1.025v2.434a1.026 1.026 0 0 1-1.025 1.025ZM3.91.646a.379.379 0 0 0-.378.378V3.46c0 .209.17.378.378.378h.028c.209 0 .378-.17.378-.378V1.024A.378.378 0 0 0 3.94.646h-.028Z'/%3E%3Cpath fill='%238E8E8E' d='M8.012 4.484h-.028a1.026 1.026 0 0 1-1.025-1.025V1.025A1.025 1.025 0 0 1 7.984 0h.028a1.026 1.026 0 0 1 1.024 1.025v2.434a1.025 1.025 0 0 1-1.024 1.025ZM7.984.646a.379.379 0 0 0-.379.378V3.46c0 .209.17.378.379.378h.028c.208 0 .377-.17.378-.378V1.024a.379.379 0 0 0-.378-.378h-.028ZM12.094 4.484h-.028a1.026 1.026 0 0 1-1.025-1.025V1.025A1.026 1.026 0 0 1 12.065 0h.029a1.026 1.026 0 0 1 1.024 1.025v2.434a1.026 1.026 0 0 1-1.024 1.025ZM12.066.646a.379.379 0 0 0-.379.378V3.46c0 .209.17.378.379.378h.027c.21 0 .379-.17.379-.378V1.024a.379.379 0 0 0-.378-.378h-.028Z'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% auto;
  bottom: 7px;
  content: "";
  height: 17px;
  position: absolute;
  right: 0;
  width: 16px;
}

form .hs-dateinput .hs-input {
  padding-right: 23px;
}

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

.fn-date-picker .pika-button {
  background-color: #fff !important;
}

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

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

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

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

.datepicker-dropdown {
  z-index: 99;
}

.datepicker-controls .button[disabled] {
  opacity: 0;
}

.datepicker-cell:not(.disabled):hover {
  background: #FFDE59;
}

.datepicker-cell.selected,
.datepicker-cell.selected:hover {
  background: #6DAE5A;
  color: #fff;
}

/* Inputs - Event Start and End Date */

.hs-event_start_date .hs-input,
.hs-event_end_date .hs-input {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 17'%3E%3Cpath fill='%238E8E8E' d='M7.286 2.576H4.64a.323.323 0 0 1 0-.646h2.646a.323.323 0 0 1 0 .646Z'/%3E%3Cpath fill='%238E8E8E' d='M14.234 16.808H1.766A1.768 1.768 0 0 1 0 15.041V3.697a1.769 1.769 0 0 1 1.766-1.766h1.442a.323.323 0 0 1 0 .646H1.766a1.122 1.122 0 0 0-1.12 1.12v11.344a1.121 1.121 0 0 0 1.12 1.12h12.468a1.122 1.122 0 0 0 1.12-1.12V3.697a1.121 1.121 0 0 0-1.12-1.12h-1.442a.323.323 0 1 1 0-.646h1.442A1.768 1.768 0 0 1 16 3.697v11.344a1.768 1.768 0 0 1-1.766 1.767Z'/%3E%3Cpath fill='%238E8E8E' d='M11.386 2.576H8.739a.323.323 0 1 1 0-.646h2.647a.323.323 0 0 1 0 .646ZM3.395 8.788h-.976a.655.655 0 0 1-.653-.654v-.976a.655.655 0 0 1 .653-.653h.976a.655.655 0 0 1 .653.653v.977a.655.655 0 0 1-.653.653ZM2.419 7.15a.008.008 0 0 0-.007.007v.977c0 .004.003.007.007.007h.976a.009.009 0 0 0 .007-.007v-.977a.008.008 0 0 0-.007-.007h-.976ZM6.794 8.788H5.82a.654.654 0 0 1-.654-.654v-.976a.654.654 0 0 1 .654-.653h.974a.654.654 0 0 1 .654.653v.977a.654.654 0 0 1-.654.653ZM5.819 7.15a.008.008 0 0 0-.007.007v.977c0 .004.003.007.007.007h.975a.008.008 0 0 0 .007-.007v-.977a.008.008 0 0 0-.007-.007h-.975ZM10.187 8.788h-.975a.654.654 0 0 1-.653-.654v-.976a.654.654 0 0 1 .653-.653h.975a.654.654 0 0 1 .654.653v.977a.654.654 0 0 1-.654.653ZM9.212 7.15a.008.008 0 0 0-.007.007v.977c0 .004.003.007.007.007h.975a.008.008 0 0 0 .008-.007v-.977a.008.008 0 0 0-.008-.007h-.975ZM13.588 8.788h-.975a.654.654 0 0 1-.654-.654v-.976a.654.654 0 0 1 .654-.653h.975a.654.654 0 0 1 .653.653v.977a.654.654 0 0 1-.653.653Zm-.975-1.637a.008.008 0 0 0-.008.007v.977c0 .004.004.007.008.007h.975a.008.008 0 0 0 .007-.007v-.977a.008.008 0 0 0-.007-.007h-.975ZM3.395 12.007h-.976a.655.655 0 0 1-.653-.653v-.977a.654.654 0 0 1 .653-.653h.976a.655.655 0 0 1 .653.653v.977a.654.654 0 0 1-.653.653Zm-.976-1.636a.008.008 0 0 0-.007.007v.976c0 .003.003.006.007.007h.976a.009.009 0 0 0 .007-.007v-.977a.008.008 0 0 0-.007-.007l-.976.001ZM6.794 12.007H5.82a.655.655 0 0 1-.654-.653v-.977a.654.654 0 0 1 .654-.653h.974a.654.654 0 0 1 .654.653v.977a.654.654 0 0 1-.654.653Zm-.975-1.636a.008.008 0 0 0-.007.007v.976c0 .003.003.006.007.007h.975a.008.008 0 0 0 .007-.007v-.977a.008.008 0 0 0-.007-.007l-.975.001ZM10.184 12.007h-.975a.655.655 0 0 1-.654-.653v-.977a.654.654 0 0 1 .654-.653h.975a.654.654 0 0 1 .654.653v.977a.655.655 0 0 1-.654.653Zm-.976-1.636a.008.008 0 0 0-.007.007v.976c0 .003.004.006.007.007h.976a.008.008 0 0 0 .007-.007v-.977a.008.008 0 0 0-.008-.007l-.975.001ZM13.588 12.007h-.975a.655.655 0 0 1-.654-.653v-.977a.653.653 0 0 1 .654-.653h.975a.654.654 0 0 1 .653.653v.977a.654.654 0 0 1-.653.653Zm-.975-1.636a.008.008 0 0 0-.008.007v.976c0 .003.004.006.008.007h.975a.008.008 0 0 0 .007-.007v-.977a.008.008 0 0 0-.007-.007l-.975.001ZM3.395 15.226h-.976a.654.654 0 0 1-.653-.653v-.977a.654.654 0 0 1 .653-.654h.976a.653.653 0 0 1 .653.654v.976a.655.655 0 0 1-.653.654Zm-.976-1.637a.008.008 0 0 0-.007.007v.977c0 .003.003.006.007.007h.976a.009.009 0 0 0 .007-.007v-.977a.008.008 0 0 0-.007-.007h-.976ZM6.794 15.226H5.82a.654.654 0 0 1-.654-.653v-.977a.654.654 0 0 1 .654-.654h.974a.654.654 0 0 1 .654.654v.976a.654.654 0 0 1-.654.654Zm-.975-1.637a.008.008 0 0 0-.007.007v.977c0 .003.003.006.007.007h.975a.008.008 0 0 0 .007-.007v-.977a.008.008 0 0 0-.007-.007h-.975ZM10.187 15.226h-.975a.655.655 0 0 1-.653-.654v-.976a.654.654 0 0 1 .653-.654h.975a.654.654 0 0 1 .653.654v.976a.655.655 0 0 1-.653.654Zm-.975-1.637a.008.008 0 0 0-.007.007v.976c0 .004.003.007.007.008h.975a.008.008 0 0 0 .008-.008v-.976a.008.008 0 0 0-.008-.007h-.975ZM13.588 15.226h-.975a.654.654 0 0 1-.654-.653v-.977a.654.654 0 0 1 .654-.654h.975a.654.654 0 0 1 .653.654v.976a.654.654 0 0 1-.653.654Zm-.975-1.637a.008.008 0 0 0-.008.007v.977c0 .003.004.006.008.007h.975a.008.008 0 0 0 .007-.007v-.977a.008.008 0 0 0-.007-.007h-.975ZM15.677 5.57H.323a.323.323 0 1 1 0-.647h15.354a.323.323 0 1 1 0 .646ZM3.94 4.484H3.91a1.026 1.026 0 0 1-1.024-1.025V1.025A1.026 1.026 0 0 1 3.91 0h.028a1.026 1.026 0 0 1 1.025 1.025v2.434a1.026 1.026 0 0 1-1.025 1.025ZM3.91.646a.379.379 0 0 0-.378.378V3.46c0 .209.17.378.378.378h.028c.209 0 .378-.17.378-.378V1.024A.378.378 0 0 0 3.94.646h-.028Z'/%3E%3Cpath fill='%238E8E8E' d='M8.012 4.484h-.028a1.026 1.026 0 0 1-1.025-1.025V1.025A1.025 1.025 0 0 1 7.984 0h.028a1.026 1.026 0 0 1 1.024 1.025v2.434a1.025 1.025 0 0 1-1.024 1.025ZM7.984.646a.379.379 0 0 0-.379.378V3.46c0 .209.17.378.379.378h.028c.208 0 .377-.17.378-.378V1.024a.379.379 0 0 0-.378-.378h-.028ZM12.094 4.484h-.028a1.026 1.026 0 0 1-1.025-1.025V1.025A1.026 1.026 0 0 1 12.065 0h.029a1.026 1.026 0 0 1 1.024 1.025v2.434a1.026 1.026 0 0 1-1.024 1.025ZM12.066.646a.379.379 0 0 0-.379.378V3.46c0 .209.17.378.379.378h.027c.21 0 .379-.17.379-.378V1.024a.379.379 0 0 0-.378-.378h-.028Z'/%3E%3C/svg%3E");
  background-position: top right;
  background-repeat: no-repeat;
  background-size: 16px auto;
  padding-right: 23px;
}

/* Inputs - file picker */

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

/* Placeholder */

::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #8E8E8E;
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  letter-spacing: 0.04em;
  line-height: 140%;
  text-transform: uppercase;
}

::-moz-placeholder {
  /* Firefox 19+ */
  color: #8E8E8E;
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  letter-spacing: 0.04em;
  line-height: 140%;
  text-transform: uppercase;
}

:-moz-placeholder {
  /* Firefox 18- */
  color: #8E8E8E;
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  letter-spacing: 0.04em;
  line-height: 140%;
  text-transform: uppercase;
}

::placeholder {
  color: #8E8E8E;
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  letter-spacing: 0.04em;
  line-height: 140%;
  text-transform: uppercase;
}

/* Headings and text */

.widget-type-form .form-title {
  font-family: "Garamond Premiere Pro";
  font-size: 48px;
  font-weight: 400;
  line-height: 100%;
  margin: 0;
  padding: 100px 0;
  text-align: center;
  text-transform: capitalize;
}

.widget-type-form .hs-richtext {
  font-size: 20px;
  line-height: 100%;
  margin: 0 0 60px;
  padding: 0 18px;
}

.widget-type-form fieldset:not(:first-child) .hs-richtext {
  margin-top: 70px;
}

.widget-type-form .hs-richtext p {
  margin-bottom: 1.6em;
}

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

/* GDPR */

.legal-consent-container {
  margin-bottom: 30px;
}

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

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

form .legal-consent-container .hs-form-booleancheckbox-display>span {
  text-transform: none;
}

/* Submitted Message */

.submitted-message {
  font-size: 20px;
  line-height: 100%;
  text-align: center;
}

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

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

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

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

/* Submit button */

form input[type="submit"],
form .hs-button {
  cursor: pointer;
  display: inline-block;
  line-height: 150%;
  min-width: 123px;
  text-align: center;
  text-decoration: none;
  transition: all 0.15s linear;
  white-space: normal;
}

.hs-submit {
  text-align: center;
}
/* 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: #ffffff;
  position: relative;
  top: 0;
  transition: background 0.25s linear;
  width: 100%;
  z-index: 999;
}

.main-header::before {
  background-color: #D2D2D2;
  bottom: 0;
  content: '';
  display: block;
  height: 0.5px;
  left: 0;
  position: absolute;
  width: 100%;
}

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

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

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

#hs_cos_wrapper_header_logo .custom-logo--first {
  display: none;
}

#hs_cos_wrapper_header_logo .custom-logo--secondary {
  display: block;
}

/* Header Container */

.header-container {
  align-items: center;
  display: grid;
  gap: 45px;
  grid-template-columns: 1fr 1fr auto 1fr 1fr;
  padding: 6px 80px;
  position: relative;
}

@media (max-width: 1440px) {
  .header-container {
    margin: 0 auto;
    max-width: 1360px;
    padding-left: 40px;
    padding-right: 40px;
  }
}

@media (max-width: 1230px) {
  .header-container {
    grid-template-columns: 1fr auto 1fr;
  }
}

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

.header__column.header__button {
  justify-self: flex-end;
}

/* 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 .logo-company-name {
  font-size: 18px;
}

#hs_cos_wrapper_header_logo {
  max-width: 95px;
}

/* Header Button */

body[data-sticky="true"] #hs_cos_wrapper_header_button .button {
  background: #E28641;
  border-color: #E28641;
  color: #000;
}

body[data-sticky="true"] #hs_cos_wrapper_header_button .button:hover,
body[data-sticky="true"] #hs_cos_wrapper_header_button .button:focus {
  background: #000;
  border-color: #000;
  color: #E1DE1C;
}

/* Header Links Left & Right */

.header-container>.widget-type-simple_menu {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 100%;
  text-transform: uppercase;
}

@media (max-width: 1230px) {
  .header-container>.widget-type-simple_menu {
    display: none;
  }
}

.header-container>.widget-type-simple_menu .hs-menu-wrapper ul {
  gap: 10px 45px;
}

.header-container>.widget-type-simple_menu a {
  text-decoration: none;
}

.header-container>.widget-type-simple_menu li.active-branch a,
.header-container>.widget-type-simple_menu li.active a {
  color: #e28641;
}

#hs_cos_wrapper_header_links_left {
  padding-right: 15px;
}

#hs_cos_wrapper_header_links_left .hs-menu-wrapper.hs-menu-flow-horizontal ul {
  justify-content: flex-end;
}

#hs_cos_wrapper_header_links_right {
  padding-left: 15px;
}

/* Navigation */

.popup-navigation-wrapper {
  background-color: #41B54D;
  height: 100%;
  left: 0;
  min-height: 100%;
  opacity: 0;
  -webkit-overflow-scrolling: touch;
  overflow-y: scroll;
  padding: 20px;
  position: fixed;
  right: 0;
  top: 0;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  visibility: hidden;
  width: 100%;
  z-index: 999;
}

div[data-global-resource-path*="header-v2.html"] .popup-navigation-wrapper {
  background-color: #FFFAF0;
  padding: 0;
}

.popup-navigation-wrapper::before {
  border-top: 1px solid #ffffff;
  content: "";
  height: 1px;
  left: 0;
  opacity: 0.7;
  position: absolute;
  top: 20px;
  width: 100%;
}

div[data-global-resource-path*="header-v2.html"] .popup-navigation-wrapper::before {
  content: none;
}

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 {
  align-items: center;
  background-color: transparent;
  border-radius: 0;
  border: 0;
  color: #000000;
  display: flex;
  font-size: 12px;
  font-weight: 600;
  gap: 19px;
  letter-spacing: 0.1em;
  line-height: 100%;
  padding: 0;
  position: relative;
  text-transform: uppercase;
}

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

.popup-navigation--toggle:hover,
.popup-navigation--toggle:focus {
  color: #E28641;
}

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

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

div[data-global-resource-path*="header-v2.html"] .popup-navigation--close {
  color: #ffffff;
  left: 26px;
  position: absolute;
  top: 36.5px;
}

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

div[data-global-resource-path*="header-v2.html"] .popup-navigation--close svg {
  height: 21px;
}

.popup-navigation--contain {
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 100%;
  position: relative;
}

.popup-navigation--top {
  position: relative;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: center;
  padding: 22px 30px 0;
  border-right: 1px solid rgba(255, 255, 255, 0.7);
  border-left: 1px solid rgba(255, 255, 255, 0.7);
}

.popup-navigation--top .popup-navigation--close {
  color: #ffffff;
}

.popup-navigation--top .popup-navigation--close:hover,
.popup-navigation--top .popup-navigation--close:focus {
  color: #ffde59;
}

.popup-navigation--top .popup-navigation--logo {
  max-width: 71px;
}

.popup-navigation--top .popup-navigation--logo .custom-logo--first {
  display: block;
}

.popup-navigation--top .popup-navigation--logo .custom-logo--secondary {
  display: none;
}

.popup-navigation--top .popup-navigation--btn {
  text-align: right;
}

.popup-navigation--body {
  border-left: 1px solid rgba(255, 255, 255, 0.7);
  border-right: 1px solid rgba(255, 255, 255, 0.7);
  flex: 1 1 100%;
  padding: 66px 40px 90px;
  position: relative;
  width: 100%;
}

.popup-navigation--links {
  margin: auto 0;
  position: relative;
  text-align: center;
  width: 100%;
}

.popup-navigation--links ul {
  font-family: "Garamond Premiere Pro";
  font-weight: 400;
  text-align: center;
  text-transform: uppercase;
  gap: 20px;
}

.popup-navigation--links ul li {
  font-size: 58px;
  line-height: 124%;
}

.popup-navigation--links ul li a {
  color: #ffffff;
}

.popup-navigation--links ul li.active a,
.popup-navigation--links ul li a:hover,
.popup-navigation--links ul li a:focus {
  color: #FFDE59;
  text-decoration: none;
}

#hs_cos_wrapper_popup_body_button {
  display: none;
  margin-top: 30px;
  text-align: center;
}

.popup-navigation--bot {
  position: relative;
  width: 100%;
  padding: 50px;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  border-right: 1px solid rgba(255, 255, 255, 0.7);
  border-left: 1px solid rgba(255, 255, 255, 0.7);
}

.popup-navigation--bot::before {
  border-top: 1px solid #ffffff;
  content: "";
  height: 1px;
  left: 0;
  opacity: 0.7;
  position: absolute;
  top: 0;
  width: 100%;
}

.popup-navigation--bot::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: -20px;
  right: -20px;
  width: calc(100% + 40px);
  height: 1px;
  opacity: 0.7;
  border-bottom: 1px solid #ffffff;
}

.popup-navigation--bot_links {
  position: relative;
}

.popup-navigation--bot_links ul {
  text-transform: uppercase;
  gap: 35px;
}

.popup-navigation--bot_links ul li {
  font-size: 18px;
  letter-spacing: 0;
  line-height: 192%;
  padding-top: 1px;
}

.popup-navigation--bot_links ul li a {
  color: #ffffff;
  opacity: 0.5;
}

.popup-navigation--bot_links ul li.active a,
.popup-navigation--bot_links ul li a:hover,
.popup-navigation--bot_links ul li a:focus {
  opacity: 1;
  text-decoration: none;
}

.popup-navigation--social_media {
  position: relative;
}

.popup-navigation--social_media .social-links {
  margin: 0;
  gap: 0 26px;
}

.popup-navigation--social_media .social-links a {
  color: #ffffff;
}

.popup-navigation--social_media .social-links__link {
  margin: 0;
}

.popup-navigation--social_media .social-links a:hover,
.popup-navigation--social_media .social-links a:focus {
  color: #ffde59;
}

.popup-navigation--social_media .social-links__icon svg {
  height: 14px;
}

.popup-navigation-column {
  position: relative;
}

.popup-navigation-links {
  background-color: #41B54D;
  color: #ffffff;
  padding: 88px 0;
}

#hs_cos_wrapper_navigation_primary {
  padding: 0 60px 10px 100px;
}

#hs_cos_wrapper_navigation_primary .hs-menu-item {
  margin-bottom: 30px;
}

#hs_cos_wrapper_navigation_primary .hs-menu-item a {
  color: inherit;
  font-size: 23px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 110%;
}

#hs_cos_wrapper_navigation_primary .hs-menu-item a:hover,
#hs_cos_wrapper_navigation_primary .hs-menu-item a:focus,
#hs_cos_wrapper_navigation_primary .hs-menu-item.active {
  color: #FFDE59;
  text-decoration: none;
}

#hs_cos_wrapper_navigation_button {
  padding: 0 64px 100px;
  position: relative;
}

#hs_cos_wrapper_navigation_button::after {
  border-top: 0.5px dashed #ffffff;
  bottom: 55px;
  content: '';
  left: 0;
  max-width: 224px;
  position: absolute;
  width: 100%;
}

#hs_cos_wrapper_navigation_button .button {
  background-color: #FFDE59;
  border-color: #FFDE59;
  border-radius: 4px;
  color: #33342B;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 110%;
  min-width: 320px;
  padding: 20px 37px 18px;
  text-transform: uppercase;
}

#hs_cos_wrapper_navigation_button .button:hover,
#hs_cos_wrapper_navigation_button .button:focus {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #41B54D;
}

#hs_cos_wrapper_navigation_secondary {
  padding: 0 60px 0 100px;
}

#hs_cos_wrapper_navigation_secondary .hs-menu-item:not(:first-child) {
  margin-top: 20px;
}

#hs_cos_wrapper_navigation_secondary .hs-menu-item a {
  color: inherit;
  font-size: 15px;
  line-height: 100%;
}

#hs_cos_wrapper_navigation_secondary .hs-menu-item a:hover,
#hs_cos_wrapper_navigation_secondary .hs-menu-item a:focus,
#hs_cos_wrapper_navigation_secondary .hs-menu-item.active a {
  color: #FFDE59;
  text-decoration: none;
}

.popup-navigation-insider {
  align-self: center;
  padding: 50px 39px 56px 73px;
}

@media (min-width: 768px) {
  div[data-global-resource-path*="header-v2.html"] .popup-navigation-wrapper {
    display: grid;
    grid-template-columns: 396px 1fr;
  }
}

@media (min-width: 1025px) {
  div[data-global-resource-path*="header-v2.html"] .popup-navigation-wrapper {
    grid-template-columns: 35.2088% 1fr;
  }

  .popup-navigation-links {
    min-width: 396px;
  }
}

@media (min-width: 1440px) {
  div[data-global-resource-path*="header-v2.html"] .popup-navigation-wrapper {
    grid-template-columns: 507px 1fr;
  }
}
.main-footer {
  background: #E28641;
  color: #ffffff;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 160%;
  padding: 20px 20px 0;
  position: relative;
}

.main-footer::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 0;
  width: 100%;
  height: 1px;
  opacity: 0.7;
  border-bottom: 1px solid #ffffff;
}

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

.main-footer a:hover,
.main-footer a:focus {
  color: #FFDE59;
  opacity: 1;
  text-decoration: none;
}

.main-footer--body {
  position: relative;
  display: flex;
  justify-content: center;
  min-height: 629px;
  overflow: hidden;
}

.main-footer--body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-top: 0;
}

.main-footer--body_left {
  flex: 1 1 593px;
  position: relative;
  padding: 77px 10px 88px;
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  gap: 34px;
}

.main-footer--logo {
  position: relative;
}

.main-footer--form {
  position: relative;
  max-width: 511px;
  width: 100%;
  margin: 0 auto;
  padding: 0 49px 0 40px;
}

.main-footer--form .form-title {
  font-family: "Poppins", sans-serif;
  font-size: 36px;
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 144%;
  margin-bottom: 30px;
  padding-bottom: 0;
  padding-top: 0;
  text-align: left;
}

.main-footer--form .hs-form-field>label {
  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;
}

.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: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
  display: block;
  font-size: 14px;
  line-height: 160%;
  letter-spacing: -0.04em;
  color: #ffffff;
  padding: 0 0 10px;
  width: 100%;
  background: transparent;
}

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

/* Placeholder */

.main-footer--form ::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: rgb(255, 255, 255, 0.4);
  font-size: 14px;
  letter-spacing: -0.04em;
  line-height: 160%;
  text-transform: none;
}

.main-footer--form ::-moz-placeholder {
  /* Firefox 19+ */
  color: rgb(255, 255, 255, 0.4);
  font-size: 14px;
  letter-spacing: -0.04em;
  line-height: 160%;
  text-transform: none;
}

.main-footer--form :-moz-placeholder {
  /* Firefox 18- */
  color: rgb(255, 255, 255, 0.4);
  font-size: 14px;
  letter-spacing: -0.04em;
  line-height: 160%;
  text-transform: none;
}

.main-footer--form ::placeholder {
  color: rgb(255, 255, 255, 0.4);
  font-size: 14px;
  letter-spacing: -0.04em;
  line-height: 160%;
  text-transform: none;
}

.main-footer--form form .actions {
  margin-top: 5px 0 0;
  text-align: right;
}

.main-footer--form form .hs-button,
.main-footer--form form input[type="submit"] {
  background: #FFDE59;
  border-color: #FFDE59;
  color: #000000;
  font-size: 14px;
  letter-spacing: 0.05em;
  line-height: 150%;
  padding: 17px 33px 15px;
}

.main-footer--form form .hs-button:hover,
.main-footer--form form .hs-button:focus,
.main-footer--form form input[type="submit"]:hover,
.main-footer--form form input[type="submit"]:focus {
  background: #000000;
  border-color: #000000;
  color: #ffffff;
}

.main-footer--form .submitted-message {
  font-size: 14px;
  line-height: 160%;
}

.main-footer--body_line {
  flex: 0 1 1px;
  position: relative;
  min-height: 100%;
}

.main-footer--body_line::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 1px;
  height: 100%;
  opacity: 0.7;
  border-right: 1px solid rgba(255, 255, 255, 0.7);
}

.main-footer--body_right {
  display: grid;
  grid-template-rows: auto auto 1fr;
  flex: 1 1 807px;
  position: relative;
}

.main-footer--links {
  display: flex;
  flex-flow: row wrap;
  gap: 68px;
  margin: 0 auto;
  max-width: 773px;
  padding: 50px 60px 65px;
  position: relative;
  width: 100%;
}

.main-footer--links_main {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  max-width: 487px;
  width: 100%;
}

.main-footer--links_big ul {
  display: flex;
  flex-flow: column nowrap;
  gap: 5px;
}

.main-footer--links_big ul li {
  font-size: 36px;
  line-height: 124%;
  letter-spacing: -0.03em;
}

.main-footer--links_big ul li a {
  color: #ffffff;
}

.main-footer--links_big ul li.active a {
  color: #ffde59;
}

.main-footer--links_small ul {
  display: flex;
  flex-flow: column nowrap;
}

.main-footer--links_small ul li {
  font-size: 16px;
  line-height: 192%;
  letter-spacing: 0;
}

.main-footer--links_small ul li a {
  color: #ffffff;
  opacity: 0.5;
}

.main-footer--links_small ul li.active a {
  color: #ffde59;
  opacity: 1;
}

.main-footer--links_info {
  position: relative;
  display: flex;
  gap: 50px;
}

.main-footer--links_info .links_icon_label-icon.is-phone path {
  stroke: #E28641;
}

.main-footer--body_right-line {
  position: relative;
  width: 100%;
}

.main-footer--body_right-line::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  opacity: 0.7;
  border-bottom: 1px solid #ffffff;
}

.main-footer--social {
  align-items: center;
  display: flex;
  gap: 40px;
  justify-content: space-between;
  margin: auto;
  max-width: 707px;
  padding: 40px 60px;
  width: 100%;
}

.main-footer--social_media .social-links {
  margin: 0;
  gap: 0 35px;
}

.main-footer--social_media .social-links__link {
  margin: 0;
}

.main-footer--social_media .social-links a:hover,
.main-footer--social_media .social-links a:focus {
  color: #ffde59;
}

.main-footer--social_media .social-links__icon svg {
  height: 14px;
}

.main-footer--bottom {
  position: relative;
  padding: 25px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

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

.main-footer--bottom .copyright {
  font-size: 12px;
  line-height: 18px;
  opacity: 0.5;
}

.main-footer--bottom .website-by {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  line-height: 16px;
  letter-spacing: 0.02em;
}
/* 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 Header */

#hs_cos_wrapper_page_header h1,
#hs_cos_wrapper_page_header h2,
#hs_cos_wrapper_page_header h3,
#hs_cos_wrapper_page_header h4,
#hs_cos_wrapper_page_header h5,
#hs_cos_wrapper_page_header h6 {
  color: #000000;
  font-family: "Garamond Premiere Pro";
  font-size: 64px;
  font-weight: 400;
  line-height: 120%;
  margin: 0;
  padding: 99px 40px 100px;
  text-align: center;
  text-transform: uppercase;
}
@media (max-width: 1024px) {
  .hs-form-field {
    margin-bottom: 40px;
  }

  .hs-form-field.hs-message {
    margin-top: 2px;
  }

  .widget-type-form .form-title {
    padding-bottom: 67px;
  }

  .widget-type-form .hs-richtext {
    margin-bottom: 34px;
  }

  .widget-type-form fieldset:not(:first-child) .hs-richtext {
    margin-top: 60px;
  }

  .legal-consent-container {
    margin-bottom: 40px;
  }

  form .legal-consent-container .hs-form-booleancheckbox-display {
    max-width: 549px;
  }

  .header-container {
    padding: 16px 20px 9px;
  }

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

  #hs_cos_wrapper_header_logo {
    max-width: 71px;
  }

  .popup-navigation--body {
    padding: 50px 30px 64px;
  }

  .popup-navigation--links ul li {
    font-size: 46px;
    line-height: 135%;
  }

  .popup-navigation--bot {
    padding: 42px 30px 43px;
  }

  #hs_cos_wrapper_navigation_primary {
    padding-inline: 74px 38px;
  }

  #hs_cos_wrapper_navigation_button {
    padding-inline: 38px;
  }

  #hs_cos_wrapper_navigation_secondary {
    padding-inline: 74px 38px;
  }

  .popup-navigation-insider {
    padding: 50px 43px 62px 37px;
  }

  .main-footer--body {
    min-height: 547px;
  }

  .main-footer--body_left {
    align-items: flex-start;
    flex: 1 1 367px;
    gap: 23px;
    justify-content: flex-start;
    padding: 49px 24px 69px;
  }

  .main-footer--logo {
    margin-left: -7px;
  }

  .main-footer--form {
    max-width: none;
    padding: 0;
  }

  .main-footer--form .form-title {
    font-size: 24px;
    letter-spacing: -0.03em;
    line-height: 144%;
    padding-bottom: 0;
  }

  .main-footer--body_right {
    flex: 1 1 360px;
  }

  .main-footer--links {
    padding: 37px 13px 38px 24px;
    gap: 20px;
  }

  .main-footer--links_big ul {
    gap: 0;
  }

  .main-footer--links_big ul li {
    font-size: 24px;
    line-height: 140%;
    letter-spacing: -0.03em;
  }

  .main-footer--links_small ul li {
    font-size: 14px;
    line-height: 192%;
    letter-spacing: 0;
  }

  .main-footer--links_info {
    flex-flow: column wrap;
    gap: 10px 50px;
  }

  .main-footer--social {
    align-items: flex-start;
    padding: 40px 24px;
    flex-flow: column wrap;
    gap: 48px 40px;
  }

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

  #hs_cos_wrapper_page_header h1,
  #hs_cos_wrapper_page_header h2,
  #hs_cos_wrapper_page_header h3,
  #hs_cos_wrapper_page_header h4,
  #hs_cos_wrapper_page_header h5,
  #hs_cos_wrapper_page_header h6 {
    padding-bottom: 100px;
    padding-top: 100px;
  }
}
@media (max-width: 767px) {
  .content-wrapper {
    padding: 0 20px;
  }

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

  .hs-form-field.hs-message {
    margin-top: 0;
  }

  .widget-type-form fieldset:not(:first-child) .hs-richtext {
    margin-top: 40px;
  }

  .widget-type-form .form-title {
    font-size: 32px;
    padding-top: 80px;
  }

  .header-container {
    gap: 20px;
    grid-template-columns: 1fr auto;
    padding: 19px 17.14px 11px 20px;
  }

  .header-column.header-navigation {
    align-self: start;
    margin-top: 20px;
  }

  #hs_cos_wrapper_header_logo {
    max-width: 60px;
  }

  .header__column.header__button {
    display: none;
  }

  #hs_cos_wrapper_header_button .button {
    font-size: 12px;
    padding: 10px 15px;
  }

  .popup-navigation--contain::before,
  .popup-navigation--contain::after {
    background-color: rgba(255, 255, 255, 0.7);
    content: '';
    display: block;
    height: 20px;
    position: absolute;
    top: 100%;
    width: 1px;
  }

  .popup-navigation--contain::before {
    left: 0;
  }

  .popup-navigation--contain::after {
    right: 0;
  }

  .popup-navigation--top {
    padding: 11px 4px 0;
    gap: 20px;
    grid-template-columns: 1fr auto 1fr;
  }

  .popup-navigation--top .popup-navigation--close {
    align-self: start;
    margin-top: 5px;
  }

  .popup-navigation--top .popup-navigation--btn .button {
    font-size: 12px;
    padding: 10px 15px;
  }

  #hs_cos_wrapper_popup_header_button {
    display: none;
  }

  .popup-navigation--body {
    padding: 36px 20px 54px;
  }

  .popup-navigation--links ul li {
    font-size: 30px;
    line-height: 117%;
  }

  #hs_cos_wrapper_popup_body_button {
    display: block;
  }

  .popup-navigation--bot {
    gap: 24px;
    padding: 34px 20px 41px;
  }

  .popup-navigation--bot_links,
  .popup-navigation--social_media {
    width: 100%;
  }

  .popup-navigation--bot_links ul {
    gap: 0;
  }

  .popup-navigation--bot_links ul li {
    text-align: center;
  }

  .popup-navigation--bot_links .hs-menu-wrapper.hs-menu-flow-horizontal ul {
    flex-direction: column;
  }

  .popup-navigation-insider {
    padding: 60px 37px 80px;
  }

  .main-footer--body {
    min-height: auto;
    flex-flow: row wrap;
  }

  .main-footer--body_left {
    gap: 13px;
    padding: 23px 20px 33px;
  }

  .main-footer--logo {
    max-width: 54px;
  }

  .main-footer--form {
    max-width: 100%;
  }

  .main-footer--form .form-title {
    padding-top: 0;
  }

  .main-footer--links {
    gap: 0;
    max-width: 100%;
    padding: 0;
  }

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

  .main-footer--body_right {
    border-top: 1px solid rgba(255, 255, 255, 0.7);
  }

  .main-footer--links_main {
    border-bottom: 1px solid rgba(255, 255, 255, 0.7);
    gap: 37px;
    max-width: 100%;
    padding: 50px 10px 50px 20px;
    width: 100%;
  }

  .main-footer--links_info {
    padding: 44px 20px 10px;
    width: 100%;
  }

  .main-footer--body_right-line {
    display: none;
  }

  .main-footer--social {
    gap: 20px;
    max-width: 100%;
    padding: 0px 20px 49px;
  }

  .main-footer--bottom {
    padding: 24px 0 27px;
    flex-flow: row wrap;
    gap: 10px 40px;
  }

  .main-footer--bottom a {
    color: #F1C3A0;
  }

  .main-footer--bottom a:hover,
  .main-footer--bottom a:focus {
    color: #FFFFFF;
  }

  .main-footer--bottom .website-by {
    color: #F1C3A0;
  }

  #hs_cos_wrapper_page_header h1,
  #hs_cos_wrapper_page_header h2,
  #hs_cos_wrapper_page_header h3,
  #hs_cos_wrapper_page_header h4,
  #hs_cos_wrapper_page_header h5,
  #hs_cos_wrapper_page_header h6 {
    padding: 80px 20px;
  }

  #hs_cos_wrapper_page_header h1,
  #hs_cos_wrapper_page_header h2,
  #hs_cos_wrapper_page_header h3 {
    font-size: 48px;
  }
}

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