/* 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: 'Risley';
  src: local('Risley Regular'), local('Risley-Regular'),
    url('https://20847067.fs1.hubspotusercontent-na1.net/hubfs/20847067/raw_assets/public/elektra-june-2024/fonts/Risley-Regular.woff2') format('woff2'),
    url('https://20847067.fs1.hubspotusercontent-na1.net/hubfs/20847067/raw_assets/public/elektra-june-2024/fonts/Risley-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Risley';
  src: local('Risley Italic'), local('Risley-Italic'),
    url('https://20847067.fs1.hubspotusercontent-na1.net/hubfs/20847067/raw_assets/public/elektra-june-2024/fonts/Risley-Italic.woff2') format('woff2'),
    url('https://20847067.fs1.hubspotusercontent-na1.net/hubfs/20847067/raw_assets/public/elektra-june-2024/fonts/Risley-Italic.woff') format('woff');
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'PP Hatton';
  src: local('PP Hatton Medium'), local('PPHatton-Medium'),
    url('https://20847067.fs1.hubspotusercontent-na1.net/hubfs/20847067/raw_assets/public/elektra-june-2024/fonts/PPHatton-Medium.woff2') format('woff2'),
    url('https://20847067.fs1.hubspotusercontent-na1.net/hubfs/20847067/raw_assets/public/elektra-june-2024/fonts/PPHatton-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'PP Hatton';
  src: local('PP Hatton Bold'), local('PPHatton-Bold'),
    url('https://20847067.fs1.hubspotusercontent-na1.net/hubfs/20847067/raw_assets/public/elektra-june-2024/fonts/PPHatton-Bold.woff2') format('woff2'),
    url('https://20847067.fs1.hubspotusercontent-na1.net/hubfs/20847067/raw_assets/public/elektra-june-2024/fonts/PPHatton-Bold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Neue Haas Grotesk Display Pro';
  src: local('NeueHaasDisplay-Roman'),
    url('https://20847067.fs1.hubspotusercontent-na1.net/hubfs/20847067/raw_assets/public/elektra-june-2024/fonts/NeueHaasDisplay-Roman.woff2') format('woff2'),
    url('https://20847067.fs1.hubspotusercontent-na1.net/hubfs/20847067/raw_assets/public/elektra-june-2024/fonts/NeueHaasDisplay-Roman.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Neue Haas Grotesk Display Pro';
  src: local('NeueHaasDisplay-RomanItalic'),
    url('https://20847067.fs1.hubspotusercontent-na1.net/hubfs/20847067/raw_assets/public/elektra-june-2024/fonts/NeueHaasDisplay-RomanItalic.woff2') format('woff2'),
    url('https://20847067.fs1.hubspotusercontent-na1.net/hubfs/20847067/raw_assets/public/elektra-june-2024/fonts/NeueHaasDisplay-RomanItalic.woff') format('woff');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Neue Haas Grotesk Display Pro';
  src: local('NeueHaasDisplay-Medium'),
    url('https://20847067.fs1.hubspotusercontent-na1.net/hubfs/20847067/raw_assets/public/elektra-june-2024/fonts/NeueHaasDisplay-Medium.woff2') format('woff2'),
    url('https://20847067.fs1.hubspotusercontent-na1.net/hubfs/20847067/raw_assets/public/elektra-june-2024/fonts/NeueHaasDisplay-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Neue Haas Grotesk Display Pro';
  src: local('NeueHaasDisplay-MediumItalic'),
    url('https://20847067.fs1.hubspotusercontent-na1.net/hubfs/20847067/raw_assets/public/elektra-june-2024/fonts/NeueHaasDisplay-MediumItalic.woff2') format('woff2'),
    url('https://20847067.fs1.hubspotusercontent-na1.net/hubfs/20847067/raw_assets/public/elektra-june-2024/fonts/NeueHaasDisplay-MediumItalic.woff') format('woff');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

html {
  background-color: #dee0cf;
  color: #462747;
  font-family: 'Risley';
  line-height: 160%;
  word-break: break-word;
}

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

/* Paragraphs */

p {
  margin: 0 0 1.6em;
}

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

/* Anchors */

a {
  cursor: pointer;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color 0.15s linear;
}

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

a:focus {
  outline: 0;
}

/* Headings */

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

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

/* Lists */

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

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

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

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

/* Code blocks */

pre {
  overflow: auto;
}

code {
  vertical-align: bottom;
}

/* Blockquotes */

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

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

blockquote:before {
  content: open-quote;
}

blockquote:after {
  content: close-quote;
}

/* Horizontal rules */

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

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

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

/* Image alt text */

img,
picture {
  font-size: 9px;
  height: auto;
  max-width: 100%;
  word-break: normal;
}
button,
.button {
  cursor: pointer;
  display: inline-block;
  font-family: 'Neue Haas Grotesk Display Pro', sans-serif;
  font-weight: 500;
  letter-spacing: 0.13em;
  line-height: 121.4286%;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

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

a.button {
  text-decoration: none;
}

/* No button */

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

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

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

/* Labels */

form label {
  display: block;
  font-family: 'Neue Haas Grotesk Display Pro', sans-serif;
  font-size: 12px;
  letter-spacing: 0.15em;
  line-height: 116.6667%;
}

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

/* Help text */

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

/* Inputs */

form input[type='text'],
form input[type='email'],
form input[type='password'],
form input[type='tel'],
form input[type='number'],
form input[type='file'],
form select,
form textarea {
  background-color: transparent;
  border: 1px solid #462747;
  color: #462747;
  display: block;
  font-family: 'Neue Haas Grotesk Display Pro', sans-serif;
  font-size: 16px;
  line-height: 160%;
  padding: 18px 20px 14px;
  width: 100%;
}

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

form select {
  padding: 21.3px 20px 18.3px;
}

form select[data-select2-id] {
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  -webkit-clip-path: inset(50%) !important;
  clip-path: inset(50%) !important;
  height: 1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
  white-space: nowrap !important;
}

.select2-container--default .select2-selection--single {
  background-color: transparent;
  border: 1px solid #462747;
  border-radius: 0;
  height: auto;
}

.select2-container--default .select2-selection--single:focus {
  border-color: #000;
  outline: 0;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #462747;
  font-family: 'Neue Haas Grotesk Display Pro', sans-serif;
  font-size: 16px;
  height: 57.6px;
  line-height: 160%;
  padding: 18px 20px 14px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 15 9'%3E%3Cpath stroke='%23462747' stroke-width='2' d='M14 1 6.91 8M1 1l7.09 7'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% auto;
  height: 100%;
  right: 22px;
  width: 15px;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 15 9'%3E%3Cpath stroke='%23462747' stroke-width='2' d='m1 8 7.09-7M14 8 6.91 1'/%3E%3C/svg%3E");
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  display: none;
}

.select2-dropdown {
  background-color: #dee0cf;
  border-color: #462747;
  border-radius: 0;
  color: #462747;
  font-family: 'Neue Haas Grotesk Display Pro', sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.15em;
  line-height: 225%;
  margin-top: -1px;
}

.select2-container--open .select2-dropdown--above {
  margin-bottom: -1px;
  margin-top: 0;
}

.select2-container--default .select2-results > .select2-results__options {
  max-height: 128px;
  padding: 10px 0;
}

.select2-results__option {
  opacity: 1;
  padding: 0 19px;
}

.select2-container--default .select2-results__option--selected,
.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: transparent;
  color: #462747;
  font-weight: 700;
  opacity: 1;
  position: relative;
}

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

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

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

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 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 {
  display: flex;
  gap: 10px;
}

/* Inputs - date picker */

.hs-dateinput {
  position: relative;
}

.hs-dateinput:before {
  content: none;
}

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

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

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

.fn-date-picker td.is-selected .pika-button {
  background-color: #462747 !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: #39c0b3 !important;
  border-radius: 0 !important;
  color: #462747 !important;
}

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

/* Inputs - file picker */

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

/* Placeholder */

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

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

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

::placeholder {
  font-size: 16px;
  line-height: 160%;
}

/* Headings and text */

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

.widget-type-form .hs-richtext {
  font-size: 24px;
  letter-spacing: 0.14em;
  line-height: 179%;
  margin-bottom: 80px;
  padding: 0 12px;
  text-align: center;
}

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

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

/* Submitted Message */

.submitted-message {
  font-size: 24px;
  letter-spacing: 0.14em;
  line-height: 179%;
}

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

/* 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.04em;
  line-height: 140%;
  margin-top: 5px;
}

/* Submit button */

form input[type='submit'],
form .hs-button {
  cursor: pointer;
  display: inline-block;
  font-family: 'Neue Haas Grotesk Display Pro', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.15em;
  line-height: 121.4286%;
  min-width: 188px;
  padding: 17px 23px 15px;
  text-align: center;
  text-decoration: none;
  transition: all 0.15s linear;
  white-space: normal;
}

/* Captcha */

.grecaptcha-badge {
  margin: 0 auto;
}
/* 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: #dee0cf;
  position: relative;
  width: 100%;
  z-index: 999;
}

body[data-sticky='true'] .main-header {
  background-color: #dee0cf;
  border-bottom: 0.5px solid #462747;
  left: 0;
  position: fixed;
  top: 0;
}

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

/* Header Container */

.header-container {
  align-items: center;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
}

.header-container.content-wrapper {
  padding: 21px 48px;
}

body[data-sticky='true'] .header-container {
  padding-bottom: 9px;
  padding-top: 9px;
}

.main-header--no-navigation .header-container {
  display: flex;
  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;
}

/* Contacts */

#hs_cos_wrapper_header_contacts {
  display: none;
  padding: 0 6px;
}

#hs_cos_wrapper_header_contacts .grouped-buttons {
  gap: 20px;
}

#hs_cos_wrapper_header_contacts .button {
  background-color: transparent;
  border: 0;
  color: #462747;
  padding: 0;
}

#hs_cos_wrapper_header_contacts .button:hover,
#hs_cos_wrapper_header_contacts .button:focus {
  background-color: transparent;
  border: 0;
  color: #39c0b3;
}

#hs_cos_wrapper_header_contacts .button svg {
  display: block;
  height: 17px;
  width: auto;
}

/* Logo */

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

#hs_cos_wrapper_header_logo {
  max-width: 112px;
}

#hs_cos_wrapper_header_logo svg path {
  fill: #462747;
  transition: color 0.15s linear;
}

#hs_cos_wrapper_header_logo a:hover svg path,
#hs_cos_wrapper_header_logo a:focus svg path {
  fill: #39c0b3;
}

/* Header Buttons */

#hs_cos_wrapper_header_buttons {
  display: none;
  margin-top: 8px;
}

#hs_cos_wrapper_header_buttons .grouped-buttons {
  background-color: #462747;
  flex-flow: row nowrap;
  gap: 1px;
  padding-top: 1px;
}

#hs_cos_wrapper_header_buttons .button {
  background-color: #dee0cf;
  border: 0 !important;
  color: #462747;
  flex: 1;
  font-size: 14px;
  letter-spacing: 0.15em;
  line-height: 121.4286%;
  padding: 19px 12px 15px;
}

#hs_cos_wrapper_header_buttons .button:hover,
#hs_cos_wrapper_header_buttons .button:focus {
  background-color: #462747;
  color: #dee0cf;
}

/* Navigation */

.header-navigation {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 24px 40px;
  justify-content: flex-end;
}

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

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

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

.popup-navigation-wrapper > .content-wrapper > .hs_cos_wrapper_widget {
  padding: 0 40px;
}

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

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

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

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

.popup-navigation--open span {
  display: block;
}

.popup-navigation--open span::before,
.popup-navigation--open span::after {
  background-color: currentColor;
  content: '';
  display: block;
  height: 5.04px;
  width: 56.16px;
}

.popup-navigation--open span::before {
  margin-bottom: 6px;
}

.popup-navigation--close {
  color: #462747;
  position: absolute;
  right: 56.58px;
  top: 29px;
  z-index: 20;
}

.popup-navigation--close:hover,
.popup-navigation--close:focus {
  color: #39c0b3;
}

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

#hs_cos_wrapper_popup_nav_logo {
  padding: 47px 0 56px;
  text-align: center;
  width: 100%;
}

#hs_cos_wrapper_popup_nav_logo a {
  display: inline-block;
  max-width: 225.91px;
  width: 100%;
}

#hs_cos_wrapper_popup_nav_primary_links {
  font-family: 'Risley';
  font-size: 34px;
  letter-spacing: 0.08em;
  line-height: 135.2941%;
  margin: 0 auto 50px;
  text-align: center;
  text-transform: uppercase;
  width: 100%;
}

#hs_cos_wrapper_popup_nav_primary_links a {
  color: inherit;
  display: inline-block;
  text-decoration: none;
  vertical-align: top;
}

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

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

#hs_cos_wrapper_popup_nav_buttons {
  margin-bottom: 40px;
}

#hs_cos_wrapper_popup_nav_buttons .grouped-buttons {
  justify-content: center;
}

#hs_cos_wrapper_popup_nav_buttons .button {
  background-color: transparent;
  border: 0;
  box-shadow: 0 0 0 0.25px #f9faf1;
  color: #f9faf1;
  font-family: 'Risley';
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 135.7143%;
  padding: 10px 39px;
}

#hs_cos_wrapper_popup_nav_buttons .button:hover,
#hs_cos_wrapper_popup_nav_buttons .button:focus {
  background-color: #39c0b3;
  border: 0;
  box-shadow: 0 0 0 0.25px #39c0b3;
  color: #462747;
}

#hs_cos_wrapper_popup_nav_socials {
  margin: 0 0 40px;
}

#hs_cos_wrapper_popup_nav_socials .social-links {
  gap: 14px;
  margin: 0;
}

#hs_cos_wrapper_popup_nav_socials .social-links__link {
  margin: 0;
}

#hs_cos_wrapper_popup_nav_socials .social-links__icon {
  background-color: #f9faf1;
  border: 1px solid #f9faf1;
  color: #462747;
  height: 48px;
  width: 48px;
}

#hs_cos_wrapper_popup_nav_socials .social-links__link:hover .social-links__icon,
#hs_cos_wrapper_popup_nav_socials .social-links__link:focus .social-links__icon {
  background-color: transparent;
  border-color: #f9faf1;
  color: #f9faf1;
}

#hs_cos_wrapper_popup_nav_socials .social-links__icon svg {
  height: 25.83px;
}

#hs_cos_wrapper_popup_nav_secondary_links {
  font-family: 'Risley';
  font-size: 14px;
  letter-spacing: 0.08em;
  line-height: 135.7143%;
  margin: 0 auto 63px;
  text-align: center;
  text-transform: uppercase;
  width: 100%;
}

#hs_cos_wrapper_popup_nav_secondary_links a {
  color: inherit;
  display: inline-block;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 8px;
  vertical-align: top;
}

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

#hs_cos_wrapper_popup_nav_secondary_links .hs-menu-wrapper ul {
  gap: 32px 40px;
  justify-content: center;
}

#hs_cos_wrapper_popup_nav_secondary_links .hs-menu-wrapper li {
  min-width: 107.33px;
}

#hs_cos_wrapper_popup_nav_form .form-title {
  font-family: 'Neue Haas Grotesk Display Pro', sans-serif;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 120.8333%;
  margin: 0 0 56px;
  text-align: center;
  text-transform: uppercase;
}

#hs_cos_wrapper_popup_nav_form form {
  margin: 0 auto;
  max-width: 343px;
  position: relative;
  width: 100%;
}

#hs_cos_wrapper_popup_nav_form form .hs-form-field {
  margin: 0;
}

#hs_cos_wrapper_popup_nav_form form input[type='text'],
#hs_cos_wrapper_popup_nav_form form input[type='email'],
#hs_cos_wrapper_popup_nav_form form input[type='password'],
#hs_cos_wrapper_popup_nav_form form input[type='tel'],
#hs_cos_wrapper_popup_nav_form form input[type='number'],
#hs_cos_wrapper_popup_nav_form form input[type='file'],
#hs_cos_wrapper_popup_nav_form form select,
#hs_cos_wrapper_popup_nav_form form textarea {
  background-color: transparent;
  border-color: #f9faf1;
  border-style: solid;
  border-width: 0 0 1px;
  color: #f9faf1;
  display: inline-block;
  font-family: 'Neue Haas Grotesk Display Pro', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 123.0769%;
  padding: 0 34.4px 10.5px 0;
  width: 100%;
}

#hs_cos_wrapper_popup_nav_form form input[type='text']:focus,
#hs_cos_wrapper_popup_nav_form form input[type='email']:focus,
#hs_cos_wrapper_popup_nav_form form input[type='password']:focus,
#hs_cos_wrapper_popup_nav_form form input[type='tel']:focus,
#hs_cos_wrapper_popup_nav_form form input[type='number']:focus,
#hs_cos_wrapper_popup_nav_form form input[type='file']:focus,
#hs_cos_wrapper_popup_nav_form form select:focus,
#hs_cos_wrapper_popup_nav_form form textarea:focus {
  outline: 0;
}

#hs_cos_wrapper_popup_nav_form ::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #f9faf1;
  font-family: 'Neue Haas Grotesk Display Pro', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 123.0769%;
  text-transform: uppercase;
}

#hs_cos_wrapper_popup_nav_form ::-moz-placeholder {
  /* Firefox 19+ */
  color: #f9faf1;
  font-family: 'Neue Haas Grotesk Display Pro', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 123.0769%;
  opacity: 1;
  text-transform: uppercase;
}

#hs_cos_wrapper_popup_nav_form :-moz-placeholder {
  /* Firefox 18- */
  color: #f9faf1;
  font-family: 'Neue Haas Grotesk Display Pro', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 123.0769%;
  text-transform: uppercase;
}

#hs_cos_wrapper_popup_nav_form ::placeholder {
  color: #f9faf1;
  font-family: 'Neue Haas Grotesk Display Pro', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 123.0769%;
  text-transform: uppercase;
}

#hs_cos_wrapper_popup_nav_form .hs-submit {
  bottom: 6px;
  position: absolute;
  right: 0;
}

#hs_cos_wrapper_popup_nav_form form .hs-button,
#hs_cos_wrapper_popup_nav_form form input[type='submit'] {
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 26 12'%3E%3Cpath fill='%23F9FAF1' d='M24.904 6.507a.718.718 0 0 0 0-1.014L20.337.926a.717.717 0 1 0-1.015 1.015L23.382 6l-4.06 4.059a.718.718 0 0 0 1.015 1.015l4.567-4.567ZM0 6.717h24.396V5.283H0v1.436Z'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 24px auto;
  border-radius: 50%;
  border: 0;
  cursor: pointer;
  display: block;
  font-size: 0;
  height: 27.48px;
  line-height: 0;
  margin: 0;
  min-width: 0;
  padding: 0;
  width: 24px;
}

#hs_cos_wrapper_popup_nav_form form .hs-button:hover,
#hs_cos_wrapper_popup_nav_form form .hs-button:focus,
#hs_cos_wrapper_popup_nav_form form input[type='submit']:hover,
#hs_cos_wrapper_popup_nav_form form input[type='submit']:focus {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 26 12'%3E%3Cpath fill='%2339C0B3' d='M24.904 6.507a.718.718 0 0 0 0-1.014L20.337.926a.717.717 0 1 0-1.015 1.015L23.382 6l-4.06 4.059a.718.718 0 0 0 1.015 1.015l4.567-4.567ZM0 6.717h24.396V5.283H0v1.436Z'/%3E%3C/svg%3E");
}

#hs_cos_wrapper_popup_nav_form form .hs-fieldtype-text > label {
  display: none;
}

#hs_cos_wrapper_popup_nav_form ul.inputs-list {
  list-style: none;
  margin: 0;
  padding-left: 0;
}

#hs_cos_wrapper_popup_nav_form form .hs_error_rollup {
  display: none;
}

#hs_cos_wrapper_popup_nav_form form .hs-error-msgs {
  left: 0;
  padding-top: 10px;
  position: absolute;
  top: 100%;
  width: 100%;
}

#hs_cos_wrapper_popup_nav_form form .hs-error-msg {
  color: inherit;
  font-family: 'Neue Haas Grotesk Display Pro', sans-serif;
  font-size: 12px;
  font-weight: 500;
  gap: 29px;
  grid-template-columns: 1fr auto 1fr;
  letter-spacing: 0.14em;
  line-height: 125%;
  margin-top: 0;
}

#hs_cos_wrapper_popup_nav_form form .hs-input.invalid.error {
  border-color: inherit;
}

#hs_cos_wrapper_popup_nav_form .submitted-message {
  font-family: 'Neue Haas Grotesk Display Pro', sans-serif;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 120.8333%;
  text-align: center;
}

.popup-navigation--footer {
  align-items: center;
  bottom: 0;
  display: flex;
  flex-wrap: wrap;
  font-family: 'Neue Haas Grotesk Display Pro', sans-serif;
  font-size: 12px;
  justify-content: space-between;
  left: 0;
  letter-spacing: 0.08em;
  line-height: 116.6667%;
  padding: 16px;
  position: absolute;
  width: 100%;
}

.popup-navigation--footer p {
  margin: 0;
}

.popup-navigation--footer .website-by svg {
  display: block;
  height: auto;
  width: 29.47px;
}

.popup-navigation--footer .copyright {
  color: #462747;
}

@media (min-width: 1025px) {
  .popup-navigation-wrapper {
    background: linear-gradient(90deg, #462747 50%, #f9faf1 50%);
  }

  .popup-navigation-wrapper > .content-wrapper {
    align-content: center;
    background-image: url('https://20847067.fs1.hubspotusercontent-na1.net/hubfs/20847067/Elektra/Website/bg-splash-form.png');
    background-position: center right;
    background-repeat: no-repeat;
    background-size: 50% auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(5, auto);
    grid-template-areas:
      'popupLogo popupForm'
      'popupPrimaryLinks popupForm'
      'popupButtons popupForm'
      'popupSocials popupForm'
      'popupSecondaryLinks popupForm';
    min-height: 100vh;
    min-height: 100svh;
  }

  #hs_cos_wrapper_popup_nav_logo {
    grid-area: popupLogo;
  }

  #hs_cos_wrapper_popup_nav_primary_links {
    grid-area: popupPrimaryLinks;
  }

  #hs_cos_wrapper_popup_nav_buttons {
    grid-area: popupButtons;
  }

  #hs_cos_wrapper_popup_nav_socials {
    grid-area: popupSocials;
  }

  #hs_cos_wrapper_popup_nav_secondary_links {
    grid-area: popupSecondaryLinks;
  }

  #hs_cos_wrapper_popup_nav_form {
    align-items: center;
    color: #462747;
    display: flex;
    grid-area: popupForm;
    min-height: 100%;
    text-align: center;
    text-transform: uppercase;
  }

  #hs_cos_wrapper_popup_nav_form .hs_cos_wrapper_type_form {
    width: 100%;
  }

  #hs_cos_wrapper_popup_nav_form form input[type='text'],
  #hs_cos_wrapper_popup_nav_form form input[type='email'],
  #hs_cos_wrapper_popup_nav_form form input[type='password'],
  #hs_cos_wrapper_popup_nav_form form input[type='tel'],
  #hs_cos_wrapper_popup_nav_form form input[type='number'],
  #hs_cos_wrapper_popup_nav_form form input[type='file'],
  #hs_cos_wrapper_popup_nav_form form select,
  #hs_cos_wrapper_popup_nav_form form textarea {
    border-color: #462747;
    color: #462747;
  }

  #hs_cos_wrapper_popup_nav_form ::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: #462747;
  }

  #hs_cos_wrapper_popup_nav_form ::-moz-placeholder {
    /* Firefox 19+ */
    color: #462747;
  }

  #hs_cos_wrapper_popup_nav_form :-moz-placeholder {
    /* Firefox 18- */
    color: #462747;
  }

  #hs_cos_wrapper_popup_nav_form ::placeholder {
    color: #462747;
  }

  #hs_cos_wrapper_popup_nav_form form .hs-button,
  #hs_cos_wrapper_popup_nav_form form input[type='submit'] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 26 12'%3E%3Cpath fill='%23462747' d='M24.904 6.507a.718.718 0 0 0 0-1.014L20.337.926a.717.717 0 1 0-1.015 1.015L23.382 6l-4.06 4.059a.718.718 0 0 0 1.015 1.015l4.567-4.567ZM0 6.717h24.396V5.283H0v1.436Z'/%3E%3C/svg%3E");
  }
}
.main-footer {
  background-color: #462747;
  color: #f9faf1;
  padding-top: 49px;
}

.main-footer a {
  color: inherit;
  text-decoration: none;
}

.main-footer a:hover,
.main-footer a:focus {
  color: inherit;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 8px;
}

.main-footer--primary-row {
  margin-bottom: 80px;
}

.main-footer--details {
  flex-shrink: 0;
}

#hs_cos_wrapper_footer_logo {
  margin-bottom: 35px;
  max-width: 276px;
  width: 100%;
}

#hs_cos_wrapper_footer_details {
  font-family: 'Neue Haas Grotesk Display Pro', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  line-height: 167%;
  text-transform: uppercase;
}

#hs_cos_wrapper_footer_details p {
  margin-bottom: 1.67em;
}

#hs_cos_wrapper_footer_details address {
  font-style: normal;
}

#hs_cos_wrapper_footer_details address:not(:last-child) {
  margin-bottom: 23px;
}

#hs_cos_wrapper_footer_hours {
  flex: 0 1 566px;
}

#hs_cos_wrapper_footer_form {
  flex: 0 1 343px;
  min-height: 34.48px;
}

#hs_cos_wrapper_footer_form .form-title {
  font-family: 'Neue Haas Grotesk Display Pro', sans-serif;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 120.8333%;
  margin: 0 0 56px;
  text-align: center;
  text-transform: uppercase;
}

#hs_cos_wrapper_footer_form form {
  position: relative;
}

#hs_cos_wrapper_footer_form form .hs-form-field {
  margin: 0;
}

#hs_cos_wrapper_footer_form form input[type='text'],
#hs_cos_wrapper_footer_form form input[type='email'],
#hs_cos_wrapper_footer_form form input[type='password'],
#hs_cos_wrapper_footer_form form input[type='tel'],
#hs_cos_wrapper_footer_form form input[type='number'],
#hs_cos_wrapper_footer_form form input[type='file'],
#hs_cos_wrapper_footer_form form select,
#hs_cos_wrapper_footer_form form textarea {
  background-color: transparent;
  border-color: #f9faf1;
  border-style: solid;
  border-width: 0 0 1px;
  color: #f9faf1;
  display: inline-block;
  font-family: 'Neue Haas Grotesk Display Pro', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 123.0769%;
  padding: 0 34.4px 10.5px 0;
  width: 100%;
}

#hs_cos_wrapper_footer_form form input[type='text']:focus,
#hs_cos_wrapper_footer_form form input[type='email']:focus,
#hs_cos_wrapper_footer_form form input[type='password']:focus,
#hs_cos_wrapper_footer_form form input[type='tel']:focus,
#hs_cos_wrapper_footer_form form input[type='number']:focus,
#hs_cos_wrapper_footer_form form input[type='file']:focus,
#hs_cos_wrapper_footer_form form select:focus,
#hs_cos_wrapper_footer_form form textarea:focus {
  outline: 0;
}

#hs_cos_wrapper_footer_form ::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #f9faf1;
  font-family: 'Neue Haas Grotesk Display Pro', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 123.0769%;
  text-transform: uppercase;
}

#hs_cos_wrapper_footer_form ::-moz-placeholder {
  /* Firefox 19+ */
  color: #f9faf1;
  font-family: 'Neue Haas Grotesk Display Pro', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 123.0769%;
  opacity: 1;
  text-transform: uppercase;
}

#hs_cos_wrapper_footer_form :-moz-placeholder {
  /* Firefox 18- */
  color: #f9faf1;
  font-family: 'Neue Haas Grotesk Display Pro', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 123.0769%;
  text-transform: uppercase;
}

#hs_cos_wrapper_footer_form ::placeholder {
  color: #f9faf1;
  font-family: 'Neue Haas Grotesk Display Pro', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 123.0769%;
  text-transform: uppercase;
}

#hs_cos_wrapper_footer_form .hs-submit {
  bottom: 6px;
  position: absolute;
  right: 0;
}

#hs_cos_wrapper_footer_form form .hs-button,
#hs_cos_wrapper_footer_form form input[type='submit'] {
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 26 12'%3E%3Cpath fill='%23F9FAF1' d='M24.904 6.507a.718.718 0 0 0 0-1.014L20.337.926a.717.717 0 1 0-1.015 1.015L23.382 6l-4.06 4.059a.718.718 0 0 0 1.015 1.015l4.567-4.567ZM0 6.717h24.396V5.283H0v1.436Z'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 24px auto;
  border-radius: 50%;
  border: 0;
  cursor: pointer;
  display: block;
  font-size: 0;
  height: 27.48px;
  line-height: 0;
  margin: 0;
  min-width: auto;
  padding: 0;
  width: 24px;
}

#hs_cos_wrapper_footer_form form .hs-button:hover,
#hs_cos_wrapper_footer_form form .hs-button:focus,
#hs_cos_wrapper_footer_form form input[type='submit']:hover,
#hs_cos_wrapper_footer_form form input[type='submit']:focus {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 26 12'%3E%3Cpath fill='%2339C0B3' d='M24.904 6.507a.718.718 0 0 0 0-1.014L20.337.926a.717.717 0 1 0-1.015 1.015L23.382 6l-4.06 4.059a.718.718 0 0 0 1.015 1.015l4.567-4.567ZM0 6.717h24.396V5.283H0v1.436Z'/%3E%3C/svg%3E");
}

#hs_cos_wrapper_footer_form form .hs-fieldtype-text > label {
  display: none;
}

#hs_cos_wrapper_footer_form ul.inputs-list {
  list-style: none;
  margin: 0;
  padding-left: 0;
}

#hs_cos_wrapper_footer_form form .hs_error_rollup {
  display: none;
}

#hs_cos_wrapper_footer_form form .hs-error-msgs {
  left: 0;
  padding-top: 10px;
  position: absolute;
  top: 100%;
  width: 100%;
}

#hs_cos_wrapper_footer_form form .hs-error-msg {
  color: inherit;
  font-family: 'Neue Haas Grotesk Display Pro', sans-serif;
  font-size: 12px;
  font-weight: 500;
  gap: 29px;
  grid-template-columns: 1fr auto 1fr;
  letter-spacing: 0.14em;
  line-height: 125%;
  margin-top: 0;
}

#hs_cos_wrapper_footer_form form .hs-input.invalid.error {
  border-color: inherit;
}

#hs_cos_wrapper_footer_form .submitted-message {
  font-family: 'Neue Haas Grotesk Display Pro', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 123.0769%;
}

#hs_cos_wrapper_footer_secondary_links {
  font-family: 'Risley';
  font-size: 14px;
  letter-spacing: 0.08em;
  line-height: 135.7143%;
  margin-left: auto;
  text-align: center;
  text-transform: uppercase;
}

#hs_cos_wrapper_footer_secondary_links a {
  color: inherit;
  display: inline-block;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 8px;
  vertical-align: top;
}

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

#hs_cos_wrapper_footer_secondary_links .hs-menu-wrapper ul {
  gap: 23px;
  justify-content: flex-end;
}

#hs_cos_wrapper_footer_secondary_links .hs-menu-wrapper li {
  min-width: 107.33px;
}

#hs_cos_wrapper_footer_socials .social-links {
  gap: 14px;
  margin: 0;
}

#hs_cos_wrapper_footer_socials .social-links__link {
  margin: 0;
}

#hs_cos_wrapper_footer_socials .social-links__icon {
  background-color: #f9faf1;
  border: 1px solid #f9faf1;
  color: #462747;
  height: 48px;
  width: 48px;
}

#hs_cos_wrapper_footer_socials .social-links__link:hover .social-links__icon,
#hs_cos_wrapper_footer_socials .social-links__link:focus .social-links__icon {
  background-color: transparent;
  border-color: #f9faf1;
  color: #f9faf1;
}

#hs_cos_wrapper_footer_socials .social-links__icon svg {
  height: 25.83px;
}

#hs_cos_wrapper_footer_logos {
  padding: 44px 0 55px;
}

.main-footer--bottom {
  border-top: 0.25px solid #dee0cf;
  font-family: 'Neue Haas Grotesk Display Pro', sans-serif;
  font-size: 12px;
  letter-spacing: 0.08em;
  line-height: 116.6667%;
  padding: 18px 0;
}

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

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

.main-footer--bottom .website-by svg {
  display: block;
  height: auto;
  width: 29.47px;
}

@media (min-width: 768px) {
  .main-footer--primary-row {
    display: flex;
    gap: 88px;
    justify-content: space-between;
  }

  .main-footer--secondary-row {
    align-items: center;
    display: flex;
    gap: 40px;
  }

  #hs_cos_wrapper_footer_hours {
    align-self: center;
  }
}
/* 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;
}

/* Form */

.dnd-section .widget-type-form {
  margin: 0 auto;
  max-width: 1000px;
  width: 100%;
}
@media (max-width: 1024px) {
  .select2-dropdown {
    line-height: 283.3333%;
  }

  .select2-container--default .select2-results>.select2-results__options {
    max-height: 156px;
  }

  .widget-type-form .hs-richtext,
  .submitted-message {
    font-size: 20px;
    line-height: 130%;
  }

  .widget-type-form .hs-richtext p,
  .submitted-message p {
    margin-bottom: 1.79em;
  }

  #hs_cos_wrapper_header_logo {
    max-width: 88px;
  }

  .popup-navigation-wrapper>.content-wrapper {
    display: flex;
    flex-flow: column wrap;
    min-height: 100%;
  }

  .popup-navigation--open span::before,
  .popup-navigation--open span::after {
    height: 3.68px;
    width: 41px;
  }

  .popup-navigation--close {
    color: #f9faf1;
    right: 68.58px;
    top: 49px;
  }

  #hs_cos_wrapper_popup_nav_logo {
    padding: 45px 0 122px;
  }

  #hs_cos_wrapper_popup_nav_secondary_links {
    margin-bottom: 164px;
  }

  #hs_cos_wrapper_popup_nav_form {
    margin-bottom: 123px;
  }

  .popup-navigation--footer {
    padding: 21.32px 18px 21.32px 22.1px;
  }

  .popup-navigation--footer .copyright {
    color: #f9faf1;
  }

  #hs_cos_wrapper_footer_logo {
    max-width: 188px;
  }

  #hs_cos_wrapper_footer_logos {
    padding: 89px 0 70px;
  }

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

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

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

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

  .main-header {
    border-bottom: 1px solid #462747;
  }

  body[data-sticky='true'] .main-header {
    border-bottom: 1px solid #462747;
  }

  .header-container.content-wrapper {
    padding: 4px 12px;
  }

  body[data-sticky='true'] .header-container {
    padding-bottom: 4px;
    padding-top: 4px;
  }

  #hs_cos_wrapper_header_contacts,
  #hs_cos_wrapper_header_buttons {
    display: block;
  }

  .popup-navigation--open span::before,
  .popup-navigation--open span::after {
    height: 3.5px;
    width: 39px;
  }

  .popup-navigation--open span::before {
    margin-bottom: 4px;
  }

  .popup-navigation--close {
    right: 33.9px;
    top: 20px;
  }

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

  #hs_cos_wrapper_popup_nav_logo {
    padding: 11px 0 92.5px;
  }

  #hs_cos_wrapper_popup_nav_logo a {
    max-width: 121.07px;
  }

  #hs_cos_wrapper_popup_nav_primary_links {
    font-size: 28px;
    line-height: 135.7143%;
    margin: 0 auto 60px;
  }

  #hs_cos_wrapper_popup_nav_primary_links .hs-menu-wrapper ul {
    gap: 28px;
  }

  #hs_cos_wrapper_popup_nav_buttons {
    margin-bottom: 60px;
  }

  #hs_cos_wrapper_popup_nav_socials {
    margin: 0 0 123px;
    order: 1;
  }

  #hs_cos_wrapper_popup_nav_secondary_links {
    margin: 0 auto 76px;
  }

  #hs_cos_wrapper_popup_nav_secondary_links .hs-menu-wrapper ul {
    flex-direction: column;
    gap: 18px;
  }

  #hs_cos_wrapper_popup_nav_secondary_links .hs-menu-wrapper li {
    min-width: 107.33px;
  }

  #hs_cos_wrapper_popup_nav_form {
    margin-bottom: 28px;
  }

  #hs_cos_wrapper_popup_nav_form .form-title {
    display: none;
  }

  #hs_cos_wrapper_popup_nav_form form {
    max-width: 266px;
  }

  .popup-navigation--footer {
    padding: 16.18px 16px;
  }

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

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

  .main-footer--primary-row {
    margin-bottom: 60px;
  }

  #hs_cos_wrapper_footer_logo {
    margin: 0 auto 16px;
    max-width: 140px;
  }

  #hs_cos_wrapper_footer_details {
    margin-bottom: 49px;
    text-align: center;
  }

  #hs_cos_wrapper_footer_form {
    margin: 0 auto 45px;
    max-width: 343px;
    width: 100%;
  }

  #hs_cos_wrapper_footer_secondary_links {
    margin-bottom: 44px;
  }

  #hs_cos_wrapper_footer_secondary_links .hs-menu-wrapper ul {
    gap: 17px;
    justify-content: center;
  }

  #hs_cos_wrapper_footer_secondary_links .hs-menu-wrapper li {
    min-width: 107.33px;
  }

  #hs_cos_wrapper_footer_logos {
    padding: 66px 0 47px;
  }

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

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