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

   /**
    * 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"] {
  grid-row-start: 1;
  grid-row-end: 2;
  min-width: 0; /* Fixes width issues on smaller screens */
}

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

.body-container-wrapper {
  grid-row-start: 2;
  grid-row-end: 3;
  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 60px;
}

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

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

.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: 'Avenir';
  src: local('Avenir Light'),
  local('Avenir-Light'),
  url('//1928976.fs1.hubspotusercontent-na1.net/hubfs/1928976/raw_assets/public/gmktg-2024/fonts/Avenir-Light.woff2') format('woff2'),
  url('//1928976.fs1.hubspotusercontent-na1.net/hubfs/1928976/raw_assets/public/gmktg-2024/fonts/Avenir-Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Avenir';
  src: local('Avenir Medium'),
  local('Avenir-Medium'),
  url('//1928976.fs1.hubspotusercontent-na1.net/hubfs/1928976/raw_assets/public/gmktg-2024/fonts/Avenir-Medium.woff2') format('woff2'),
  url('//1928976.fs1.hubspotusercontent-na1.net/hubfs/1928976/raw_assets/public/gmktg-2024/fonts/Avenir-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
} */

@font-face {
  font-family: 'Helvetica Now Display';
  src: local('HelveticaNowDisplay-Light'),
  url('//1928976.fs1.hubspotusercontent-na1.net/hubfs/1928976/raw_assets/public/gmktg-2024/fonts/HelveticaNowDisplay-Light.woff2') format('woff2'),
  url('//1928976.fs1.hubspotusercontent-na1.net/hubfs/1928976/raw_assets/public/gmktg-2024/fonts/HelveticaNowDisplay-Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Helvetica Now Display';
  src: local('HelveticaNowDisplay-Regular'),
  url('//1928976.fs1.hubspotusercontent-na1.net/hubfs/1928976/raw_assets/public/gmktg-2024/fonts/HelveticaNowDisplay-Regular.woff2') format('woff2'),
  url('//1928976.fs1.hubspotusercontent-na1.net/hubfs/1928976/raw_assets/public/gmktg-2024/fonts/HelveticaNowDisplay-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

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

@font-face {
  font-family: 'Helvetica Now Display';
  src: local('HelveticaNowDisplay-Bold'),
  url('//1928976.fs1.hubspotusercontent-na1.net/hubfs/1928976/raw_assets/public/gmktg-2024/fonts/HelveticaNowDisplay-Bold.woff2') format('woff2'),
  url('//1928976.fs1.hubspotusercontent-na1.net/hubfs/1928976/raw_assets/public/gmktg-2024/fonts/HelveticaNowDisplay-Bold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Helvetica Now Display';
  src: local('HelveticaNowDisplay-ExtraBold'),
  url('//1928976.fs1.hubspotusercontent-na1.net/hubfs/1928976/raw_assets/public/gmktg-2024/fonts/HelveticaNowDisplay-ExtraBold.woff2') format('woff2'),
  url('//1928976.fs1.hubspotusercontent-na1.net/hubfs/1928976/raw_assets/public/gmktg-2024/fonts/HelveticaNowDisplay-ExtraBold.woff') format('woff');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Helvetica Now Text';
  src: local('HelveticaNowText-Regular'),
  url('//1928976.fs1.hubspotusercontent-na1.net/hubfs/1928976/raw_assets/public/gmktg-2024/fonts/HelveticaNowText-Regular.woff2') format('woff2'),
  url('//1928976.fs1.hubspotusercontent-na1.net/hubfs/1928976/raw_assets/public/gmktg-2024/fonts/HelveticaNowText-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Spezia Serif A';
  src: local('SpeziaSerif-BookA'),
  url('//1928976.fs1.hubspotusercontent-na1.net/hubfs/1928976/raw_assets/public/gmktg-2024/fonts/SpeziaSerif-BookA.woff2') format('woff2'),
  url('//1928976.fs1.hubspotusercontent-na1.net/hubfs/1928976/raw_assets/public/gmktg-2024/fonts/SpeziaSerif-BookA.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Spezia Serif A';
  src: local('SpeziaSerif-BookItalicA'),
  url('//1928976.fs1.hubspotusercontent-na1.net/hubfs/1928976/raw_assets/public/gmktg-2024/fonts/SpeziaSerif-BookItalicA.woff2') format('woff2'),
  url('//1928976.fs1.hubspotusercontent-na1.net/hubfs/1928976/raw_assets/public/gmktg-2024/fonts/SpeziaSerif-BookItalicA.woff') format('woff');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Spezia Serif A';
  src: local('SpeziaSerif-RegularA'),
  url('//1928976.fs1.hubspotusercontent-na1.net/hubfs/1928976/raw_assets/public/gmktg-2024/fonts/SpeziaSerif-RegularA.woff2') format('woff2'),
  url('//1928976.fs1.hubspotusercontent-na1.net/hubfs/1928976/raw_assets/public/gmktg-2024/fonts/SpeziaSerif-RegularA.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Spezia Serif A';
  src: local('SpeziaSerif-RegularItalicA'),
  url('//1928976.fs1.hubspotusercontent-na1.net/hubfs/1928976/raw_assets/public/gmktg-2024/fonts/SpeziaSerif-RegularItalicA.woff2') format('woff2'),
  url('//1928976.fs1.hubspotusercontent-na1.net/hubfs/1928976/raw_assets/public/gmktg-2024/fonts/SpeziaSerif-RegularItalicA.woff') format('woff');
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Spezia Serif A';
  src: local('SpeziaSerif-MediumA'),
  url('//1928976.fs1.hubspotusercontent-na1.net/hubfs/1928976/raw_assets/public/gmktg-2024/fonts/SpeziaSerif-MediumA.woff2') format('woff2'),
  url('//1928976.fs1.hubspotusercontent-na1.net/hubfs/1928976/raw_assets/public/gmktg-2024/fonts/SpeziaSerif-MediumA.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Spezia Serif A';
  src: local('SpeziaSerif-MediumItalicA'),
  url('//1928976.fs1.hubspotusercontent-na1.net/hubfs/1928976/raw_assets/public/gmktg-2024/fonts/SpeziaSerif-MediumItalicA.woff2') format('woff2'),
  url('//1928976.fs1.hubspotusercontent-na1.net/hubfs/1928976/raw_assets/public/gmktg-2024/fonts/SpeziaSerif-MediumItalicA.woff') format('woff');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Spezia Serif A';
  src: local('SpeziaSerif-BoldA'),
  url('//1928976.fs1.hubspotusercontent-na1.net/hubfs/1928976/raw_assets/public/gmktg-2024/fonts/SpeziaSerif-BoldA.woff2') format('woff2'),
  url('//1928976.fs1.hubspotusercontent-na1.net/hubfs/1928976/raw_assets/public/gmktg-2024/fonts/SpeziaSerif-BoldA.woff') format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Spezia Serif A';
  src: local('SpeziaSerif-BoldItalicA'),
  url('//1928976.fs1.hubspotusercontent-na1.net/hubfs/1928976/raw_assets/public/gmktg-2024/fonts/SpeziaSerif-BoldItalicA.woff2') format('woff2'),
  url('//1928976.fs1.hubspotusercontent-na1.net/hubfs/1928976/raw_assets/public/gmktg-2024/fonts/SpeziaSerif-BoldItalicA.woff') format('woff');
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Spezia Serif B';
  src: local('SpeziaSerif-RegularB'),
  url('//1928976.fs1.hubspotusercontent-na1.net/hubfs/1928976/raw_assets/public/gmktg-2024/fonts/SpeziaSerif-RegularB.woff2') format('woff2'),
  url('//1928976.fs1.hubspotusercontent-na1.net/hubfs/1928976/raw_assets/public/gmktg-2024/fonts/SpeziaSerif-RegularB.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Spezia Serif C';
  src: local('SpeziaSerif-RegularC'),
  url('//1928976.fs1.hubspotusercontent-na1.net/hubfs/1928976/raw_assets/public/gmktg-2024/fonts/SpeziaSerif-RegularC.woff2') format('woff2'),
  url('//1928976.fs1.hubspotusercontent-na1.net/hubfs/1928976/raw_assets/public/gmktg-2024/fonts/SpeziaSerif-RegularC.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Spezia Serif C';
  src: local('SpeziaSerif-RegularItalicC'),
  url('//1928976.fs1.hubspotusercontent-na1.net/hubfs/1928976/raw_assets/public/gmktg-2024/fonts/SpeziaSerif-RegularItalicC.woff2') format('woff2'),
  url('//1928976.fs1.hubspotusercontent-na1.net/hubfs/1928976/raw_assets/public/gmktg-2024/fonts/SpeziaSerif-RegularItalicC.woff') format('woff');
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Spezia Serif D';
  src: local('SpeziaSerif-RegularD'),
  url('//1928976.fs1.hubspotusercontent-na1.net/hubfs/1928976/raw_assets/public/gmktg-2024/fonts/SpeziaSerif-RegularD.woff2') format('woff2'),
  url('//1928976.fs1.hubspotusercontent-na1.net/hubfs/1928976/raw_assets/public/gmktg-2024/fonts/SpeziaSerif-RegularD.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Spezia Serif D';
  src: local('SpeziaSerif-RegularItalicD'),
  url('//1928976.fs1.hubspotusercontent-na1.net/hubfs/1928976/raw_assets/public/gmktg-2024/fonts/SpeziaSerif-RegularItalicD.woff2') format('woff2'),
  url('//1928976.fs1.hubspotusercontent-na1.net/hubfs/1928976/raw_assets/public/gmktg-2024/fonts/SpeziaSerif-RegularItalicD.woff') format('woff');
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Spezia Serif D';
  src: local('SpeziaSerif-MediumD'),
  url('//1928976.fs1.hubspotusercontent-na1.net/hubfs/1928976/raw_assets/public/gmktg-2024/fonts/SpeziaSerif-MediumD.woff2') format('woff2'),
  url('//1928976.fs1.hubspotusercontent-na1.net/hubfs/1928976/raw_assets/public/gmktg-2024/fonts/SpeziaSerif-MediumD.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

html {
  font-family: 'Helvetica Now Display', sans-serif;
  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-line: underline;
  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,
h4,
h5,
h6 {
  line-height: 160%;
  margin: 0 0 0.5em;
}

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

/* Lists */

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

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

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

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

/* Code blocks */

pre {
  overflow: auto;
}

code {
  vertical-align: bottom;
}

/* Blockquotes */

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

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

blockquote:before {
  content: open-quote;
}

blockquote:after {
  content: close-quote;
}

/* Horizontal rules */

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

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

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

/* Image alt text */

img,
picture {
  font-size: 9px;
  height: auto;
  max-width: 100%;
  word-break: normal;
}
button,
.button {
  cursor: pointer;
  display: inline-block;
  font-weight: 700;
  letter-spacing: 0.2727em;
  line-height: normal;
  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: 25px;
}

/* Labels */

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

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

/* Help text */

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

/* Inputs */

form input[type=text],
form input[type=email],
form input[type=password],
form input[type=tel],
form input[type=number],
form input[type=file],
form select,
form textarea {
  border: 1px solid #CCC;
  display: block;
  font-size: 12px;
  letter-spacing: 0.04em;
  line-height: 140%;
  padding: 10px 20px;
  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: 10px 16px;
}

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

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

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

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

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

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

@media (max-width: 767px) {

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

/* Inputs - checkbox/radio */

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

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

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

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

/* Inputs - date picker */

.hs-dateinput {
  position: relative;
}

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

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

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

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

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

/* Inputs - Phone */

.hs-input.hs-fieldtype-intl-phone {
  align-items: flex-end;
  display: flex;
}

.hs-input.hs-fieldtype-intl-phone>.hs-input {
  flex: 0 1 100%;
}

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

form fieldset.form-columns-1 .hs-input.hs-fieldtype-intl-phone>select.hs-input,
form fieldset.form-columns-2 .hs-input.hs-fieldtype-intl-phone>select.hs-input,
form fieldset.form-columns-3 .hs-input.hs-fieldtype-intl-phone>select.hs-input {
  margin-right: 18px !important;
  width: 120px !important;
}

/* Inputs - file picker */

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

form input[type=file]::file-selector-button {
  background-color: #e62656;
  border: 1px solid #e62656;
  color: #FFF;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 140%;
  margin-right: 38px;
  padding: 10px;
  text-align: center;
  text-transform: uppercase;
  width: 120px;
}

form input[type=file]::file-selector-button:hover,
form input[type=file]::file-selector-button:hover {
  background-color: #000;
  border-color: #000;
  color: #FFF;
}

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

.hs-fieldtype-file>.input::after {
  border: 1px solid #CCC;
  bottom: 0;
  content: "";
  display: block;
  height: 100%;
  left: 138px;
  position: absolute;
  right: 0;
}

/* Placeholder */

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

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

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

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

/* Headings and text */

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

.widget-type-form .hs-richtext,
.widget-type-form .hs-richtext p {
  font-size: 18px;
  margin: 0 0 22px;
}

.widget-type-form .hs-richtext {
  padding: 0 9px;
}

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

/* GDPR */

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

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

/* Validation */

.hs_error_rollup {
  color: red;
  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;
  margin-top: 40px;
  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-overflow {
  -webkit-overflow-scrolling: touch;
  overflow-x: scroll;
  width: 100%;
}

/* 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 */
@keyframes slideInDown {
  from {
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

.main-header {
  background-color: #FFF;
  border-bottom: 0.5px solid rgba(0, 0, 0, 0.2);
  position: relative;
  transition: background-color 0.2s ease, border 0.2s ease;
  width: 100%;
  z-index: 9999;
}

body[data-sticky="true"] .main-header {
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  animation-name: slideInDown;
  background-color: #FFF;
  left: 0;
  position: fixed;
  top: 0;
}

body.main-header-hidden .main-header,
body[data-sticky="false"].main-header-hidden-always:not(.show-main-header) .main-header {
  background-color: transparent;
  border-bottom-color: transparent;
}

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

/* Header Container */

.header-container {
  align-items: center;
  display: grid;
  gap: 35px;
  grid-template-columns: 1fr auto 1fr;
  padding-bottom: 23px;
  padding-top: 23px;
}

.header-container.content-wrapper {
  max-width: none;
}

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

/* Navigation Skipper */

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

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

/* Logo */

.header-logo {
  position: relative;
}

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

#hs_cos_wrapper_header_logo,
#hs_cos_wrapper_header_logo_new,
#hs_cos_wrapper_header_logo_sticky,
#hs_cos_wrapper_header_logo_sticky_new {
  max-width: 40px;
  transition: opacity 0.2s ease;
}

#hs_cos_wrapper_header_logo,
#hs_cos_wrapper_header_logo_new {
  opacity: 1;
}

body.main-header-hidden #hs_cos_wrapper_header_logo,
body.main-header-hidden #hs_cos_wrapper_header_logo_new,
body[data-sticky="false"].main-header-hidden-always:not(.show-main-header) #hs_cos_wrapper_header_logo,
body[data-sticky="false"].main-header-hidden-always:not(.show-main-header) #hs_cos_wrapper_header_logo_new {
  opacity: 0;
}

#hs_cos_wrapper_header_logo_sticky,
#hs_cos_wrapper_header_logo_sticky_new {
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  z-index: -1;
}

body.main-header-hidden #hs_cos_wrapper_header_logo_sticky,
body.main-header-hidden #hs_cos_wrapper_header_logo_sticky_new,
body[data-sticky="false"].main-header-hidden-always:not(.show-main-header) #hs_cos_wrapper_header_logo_sticky,
body[data-sticky="false"].main-header-hidden-always:not(.show-main-header) #hs_cos_wrapper_header_logo_sticky_new {
  opacity: 1;
  z-index: 1;
}

/* Navigation */

body[data-sticky="true"] .header-navigation {
  opacity: 1;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  visibility: visible;
}

body.main-header-hidden .header-navigation,
body[data-sticky="false"].main-header-hidden-always:not(.show-main-header) .header-navigation {
  opacity: 0;
  visibility: hidden;
}

#hs_cos_wrapper_navigation_primary_desktop,
#hs_cos_wrapper_navigation_primary_desktop_new {
  font-size: 11px;
  letter-spacing: 0.2727em;
  line-height: normal;
  text-transform: uppercase;
}

#hs_cos_wrapper_navigation_primary_desktop ul.menu__wrapper,
#hs_cos_wrapper_navigation_primary_desktop_new ul.menu__wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 37px;
}

#hs_cos_wrapper_navigation_primary_desktop a.menu__link,
#hs_cos_wrapper_navigation_primary_desktop_new a.menu__link {
  text-decoration: none;
}

#hs_cos_wrapper_navigation_primary_desktop a.menu__link--active-link,
#hs_cos_wrapper_navigation_primary_desktop a.menu__link--active-branch,
#hs_cos_wrapper_navigation_primary_desktop_new a.menu__link--active-link,
#hs_cos_wrapper_navigation_primary_desktop_new a.menu__link--active-branch {
  color: inherit;
  font-weight: 800;
}

.popup-navigation-wrapper {
  background-color: #141423;
  color: #FFFFFF;
  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 {
  align-items: flex-start;
  display: flex;
  flex-flow: column wrap;
  min-height: 100%;
  padding: 44px 0 0;
  position: relative;
  width: 100%;
}

.popup-navigation--open,
.popup-navigation--close {
  background-color: transparent;
  border-radius: 0;
  color: #FFF;
  display: block;
  padding: 0;
  position: relative;
}

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

.popup-navigation--open {
  border: 0;
  color: #000000;
}

.popup-navigation--open:hover,
.popup-navigation--open:focus {
  background: none;
  border: 0;
  color: #E62656;
}

.popup-navigation--open svg {
  display: block;
  flex-shrink: 0;
  height: 21px;
  width: auto;
}

.popup-navigation--close {
  border: 0;
  display: none;
  position: absolute;
  right: 23px;
  top: 32px;
  z-index: 1;
}

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

.popup-navigation--close svg {
  display: block;
  height: 23px;
  width: auto;
}

#hs_cos_wrapper_navigation_primary_mobile,
#hs_cos_wrapper_navigation_primary_mobile_new {
  font-size: 36px;
  line-height: 90%;
  padding: 0 43px;
  width: 100%;
}

#hs_cos_wrapper_navigation_primary_mobile .menu__item:not(:first-child),
#hs_cos_wrapper_navigation_primary_mobile_new .menu__item:not(:first-child) {
  margin-top: 20px;
}

#hs_cos_wrapper_navigation_primary_mobile a.menu__link,
#hs_cos_wrapper_navigation_primary_mobile_new a.menu__link {
  align-items: center;
  color: inherit;
  display: flex;
  gap: 10px;
  text-decoration: none;
}

#hs_cos_wrapper_navigation_primary_mobile a.menu__link:hover,
#hs_cos_wrapper_navigation_primary_mobile a.menu__link:focus,
#hs_cos_wrapper_navigation_primary_mobile_new a.menu__link:hover,
#hs_cos_wrapper_navigation_primary_mobile_new a.menu__link:focus {
  color: #E62656;
}

#hs_cos_wrapper_navigation_primary_mobile a.menu__link--active-link,
#hs_cos_wrapper_navigation_primary_mobile a.menu__link--active-branch,
#hs_cos_wrapper_navigation_primary_mobile_new a.menu__link--active-link,
#hs_cos_wrapper_navigation_primary_mobile_new a.menu__link--active-branch {
  color: inherit;
}

#hs_cos_wrapper_navigation_primary_mobile a.menu__link--active-link::before,
#hs_cos_wrapper_navigation_primary_mobile a.menu__link--active-branch::before,
#hs_cos_wrapper_navigation_primary_mobile_new a.menu__link--active-link::before,
#hs_cos_wrapper_navigation_primary_mobile_new a.menu__link--active-branch::before {
  background-color: #E72657;
  content: "";
  flex-shrink: 0;
  height: 26px;
  width: 4px;
}

#hs_cos_wrapper_navigation_buttons {
  margin-bottom: 44px;
  padding: 0 43px;
  width: 100%;
}

#hs_cos_wrapper_navigation_buttons .grouped-buttons {
  display: inline-flex;
  flex-flow: column wrap;
  gap: 20px;
}

#hs_cos_wrapper_navigation_buttons .button {
  background-color: transparent;
  border-radius: 0;
  border: 0;
  color: inherit;
  font-size: 36px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 90%;
  margin-top: 20px;
  padding: 0;
  text-transform: none;
}

#hs_cos_wrapper_navigation_buttons .button:hover,
#hs_cos_wrapper_navigation_buttons .button:focus {
  background-color: transparent;
  border: 0;
  color: #E62656;
}

#hs_cos_wrapper_navigation_buttons .button:focus {
  outline: 0;
}

.popup-navigation-typeform {
  background-color: #E72657;
  color: #FFFFFF;
  margin-top: auto;
  padding: 54px 28px;
  width: 100%;
}

.popup-navigation-typeform-content {
  font-size: 35.884px;
  font-weight: 500;
  line-height: 130%;
  max-width: 223px;
  margin-left: auto;
}

.popup-navigation-typeform-content .button {
	background-color: transparent;
	border-radius: 0;
	border: 0;
	color: inherit;
	font-size: 35.884px;
	font-weight: 500;
	isolation: isolate;
	letter-spacing: 0;
	line-height: 130%;
	padding: 0;
	position: relative;
	text-decoration: none;
	text-transform: none;
}

.popup-navigation-typeform-content .button:hover,
.popup-navigation-typeform-content .button:focus {
  background-color: transparent;
	border: 0;
	color: #141414;
}

.popup-navigation-typeform-content .button::before {
	background: #141414;
	border-radius: 50px;
	box-sizing: content-box;
	content: "";
	height: 100%;
	left: 50%;
	margin-top: 1px;
	padding: 0px 25px;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	transition: background 0.15s ease;
	width: 100%;
	z-index: -1;
}

.popup-navigation-typeform-content .button:hover::before,
.popup-navigation-typeform-content .button:focus::before {
	background: #FFFFFF;
}

@media (min-width: 768px) {
  .popup-navigation-wrapper {
    display: none;
  }

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

body[data-sticky="true"] #hs_cos_wrapper_header_buttons {
  opacity: 1;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  visibility: visible;
}

body.main-header-hidden #hs_cos_wrapper_header_buttons,
body[data-sticky="false"].main-header-hidden-always:not(.show-main-header) #hs_cos_wrapper_header_buttons {
  opacity: 0;
  visibility: hidden;
}

#hs_cos_wrapper_header_buttons .button {
  font-weight: 500;
  letter-spacing: 0.2727em;
}
.main-footer {
  background: #FFFFFF;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  color: #000000;
  padding-top: 97px;
}

@media (min-width: 1025px) {
  .main-footer > .content-wrapper {
    padding: 0 25px;
  }
}

.main-footer--bottom {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  color: #000000;
  font-size: 13px;
  letter-spacing: 0.0769em;
  line-height: 180%;
  margin-top: 79px;
  padding: 25px 0 25px;
  text-transform: capitalize;
}

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

.main-footer--bottom .content-wrapper {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 56px;
  justify-content: center;
}

#hs_cos_wrapper_footer_logo {
  display: none;
}

#hs_cos_wrapper_footer_secondary_links a {
  text-decoration: none;
}

#hs_cos_wrapper_footer_secondary_links .hs-menu-wrapper ul {
  gap: 52px;
}
/* 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 {
  padding: 50px 0 107px;
}

#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 {
  font-family: 'Spezia Serif A';
  font-size: 95px;
  font-weight: 400;
  letter-spacing: -0.0632em;
  line-height: 100%;
  margin-bottom: 23px;
}

#hs_cos_wrapper_page_header .secondary-header {
  font-size: 32px;
  font-weight: 300;
  line-height: 140%;
}
@media (max-width: 1120px) {
	.main-footer--bottom .content-wrapper {
		gap: 9px 50px;
	}

	#hs_cos_wrapper_footer_secondary_links .hs-menu-wrapper ul {
		gap: 50px;
	}
}

@media (max-width: 1024px) {
	.content-wrapper {
		padding-left: 40px;
		padding-right: 40px;
	}

	.dnd-section>.row-fluid,
	.dnd-section .dnd-module.widget-span {
		padding-left: 20px;
		padding-right: 20px;
	}

	.header-container {
		gap: 45px;
		grid-template-columns: auto 1fr auto;
		padding-bottom: 23px;
		padding-top: 23px;
	}

	#hs_cos_wrapper_navigation_primary_desktop ul.menu__wrapper,
	#hs_cos_wrapper_navigation_primary_desktop_new ul.menu__wrapper {
		gap: 12px 22px;
	}

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

	.main-footer--bottom .content-wrapper {
		gap: 31px;
	}

	#hs_cos_wrapper_footer_secondary_links .hs-menu-wrapper ul {
		gap: 31px;
	}
}
@media (max-width: 767px) {
  .content-wrapper {
    padding-left: 22px;
    padding-right: 22px;
  }

  .dnd-section>.row-fluid,
  .dnd-section .dnd-module.widget-span {
    padding-left: 11px;
    padding-right: 11px;
  }

  .widget-type-form .form-title {
    font-size: 40px;
  }

  body[data-nav="true"] .popup-navigation--open {
    display: none;
  }

  body[data-nav="true"] .popup-navigation--close {
    display: block;
  }

  .header-container {
    grid-template-columns: 1fr auto;
  }

  #hs_cos_wrapper_navigation_primary_desktop,
  #hs_cos_wrapper_navigation_primary_desktop_new,
  #hs_cos_wrapper_header_buttons {
    display: none;
  }

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

  .main-footer--bottom {
    font-size: 10px;
    letter-spacing: 0.05em;
    line-height: 180%;
    margin-top: 65px;
    padding: 32px 0 26px;
    text-transform: uppercase;
  }

  .main-footer--bottom .content-wrapper {
    align-items: start;
    display: grid;
    gap: 18px 40px;
    grid-template-columns: auto 1fr;
    padding: 0 25px 0 40px;
  }

  #hs_cos_wrapper_footer_logo {
    display: block;
  }

  #hs_cos_wrapper_footer_secondary_links {
    grid-column-start: 2;
  }

  #hs_cos_wrapper_footer_secondary_links .hs-menu-wrapper ul {
    gap: 18px 41px;
  }

  #hs_cos_wrapper_page_header {
    padding: 50px 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 {
    font-size: 50px;
  }

  #hs_cos_wrapper_page_header .secondary-header {
    font-size: 16px;
  }
}

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