/* Theme base styles */

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

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

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

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

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

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

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

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

body {
  margin: 0;
}

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

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

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

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

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

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

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

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

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

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

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

b,
strong {
  font-weight: bolder;
}

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

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

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

small {
  font-size: 80%;
}

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

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

legend {
  padding: 0;
}

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

progress {
  vertical-align: baseline;
}

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

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

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

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

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

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

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

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

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

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

details {
  display: block;
}

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

summary {
  display: list-item;
}

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



/* CSS variables */

:root {
  --column-gap: 2.13%;
  --column-width-multiplier: 8.333;
}

/* Mobile layout */

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


  .row-fluid .span1,
  .row-fluid .span2,
  .row-fluid .span3,
  .row-fluid .span4,
  .row-fluid .span5,
  .row-fluid .span6,
  .row-fluid .span7,
  .row-fluid .span8,
  .row-fluid .span9,
  .row-fluid .span10,
  .row-fluid .span11,
  .row-fluid .span12{
  min-height: 1px;
  width: 100%;
}

/* Desktop layout */

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

  
    .row-fluid .span1 {
      width: calc(var(--column-width-multiplier) * 1% * 1 - var(--column-gap) * (11 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span2 {
      width: calc(var(--column-width-multiplier) * 1% * 2 - var(--column-gap) * (10 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span3 {
      width: calc(var(--column-width-multiplier) * 1% * 3 - var(--column-gap) * (9 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span4 {
      width: calc(var(--column-width-multiplier) * 1% * 4 - var(--column-gap) * (8 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span5 {
      width: calc(var(--column-width-multiplier) * 1% * 5 - var(--column-gap) * (7 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span6 {
      width: calc(var(--column-width-multiplier) * 1% * 6 - var(--column-gap) * (6 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span7 {
      width: calc(var(--column-width-multiplier) * 1% * 7 - var(--column-gap) * (5 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span8 {
      width: calc(var(--column-width-multiplier) * 1% * 8 - var(--column-gap) * (4 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span9 {
      width: calc(var(--column-width-multiplier) * 1% * 9 - var(--column-gap) * (3 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span10 {
      width: calc(var(--column-width-multiplier) * 1% * 10 - var(--column-gap) * (2 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span11 {
      width: calc(var(--column-width-multiplier) * 1% * 11 - var(--column-gap) * (1 * var(--column-width-multiplier) / 100));
    }
  
}
.content-wrapper {
  margin: 0 auto;
  padding: 0 1rem;
}

@media screen and (min-width: 1380px) {
  .content-wrapper {
    padding: 0;
  }
}

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

/* .dnd-section .dnd-column {
  padding: 0 1rem;
} */

@media (max-width: 767px) {
  .dnd-section .dnd-column {
    padding: 0;
  }
}

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

/* The overflow-wrap is meant to prevent long/large words from breaking the mobile responsiveness of a page (e.g. horizontal scrolling). It is preferred to reduce font sizes on mobile to address this, with this CSS specifically helping with extreme scenarios where a reduction in font size is not possible. */
body {
  line-height: 1.4;
  overflow-wrap: break-word;
  font-weight: 400;
}

/* Handles word breaking for a few specific languages which handle breaks in words differently. If your content is not translated into these languages, you can safely remove this.  */

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

/* Paragraphs */

p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3; /* 20.8px */  
}

.p-1 {
  font-size: 14px;
}

.caption {
  font-size: 13px;
}

/* Anchors */

a {
  cursor: pointer;
}

/* Headings */

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 1.4rem;
}

.display-primary {
  color: #000;
  font-family: "TT Neoris";
  font-size: 88px;
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -2.64px;
}

.display-secondary {
  color: #000;
  font-family: "TT Neoris";
  font-size: 70px;
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -1.05px;
}

h1, .h1,
h2, .h2,
h3, .h3 {
  line-height: 1.20; /* 57.6px */
}

h4, .h4 {
  line-height: 1.30; /* 26px */
}

h5, .h5, .eyebrow {
  font-family: "TT Neoris";
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3; /* 18.2px */
  text-transform: uppercase;
}

h1.hero {
  font-size: 72px; 
  font-style: normal; 
  font-weight: 300; 
  line-height: 100%;
}
@media (max-width: 767px) {
  .display-primary {
    font-size: 49px;
    line-height: 1.2; /* 58.8px */
    letter-spacing: -0.735px;
  }

  .display-secondary {
    font-size: 46px;
    line-height: 1.2; /* 55.2px */
    letter-spacing: -0.69px;
  }

  body #hs_cos_wrapper_widget_1741193168769 h1, .h1 {
    font-size: 40px;
  }

  h2, .h2 {
    font-size: 27px;
  }

  h3, .h3 {
    font-size: 24px;
  }

  h4, .h4 {
    font-size: 20px;
  }

  h5, .h5, .eyebrow {
    font-size: 12px;
  }
  h1.hero {
    font-size: 52px;
  }
}

/* Lists */

ul,
ol {
  margin: 0 0 1.4rem;
}

ul ul,
ol ul,
ul ol,
ol ol {
  margin: 0;
}

ul {
  padding-left: 1.2rem;
}

ul li li {
  list-style-type: disc;
}
ul li ol li {
  list-style-type: decimal;
}

ul ul {
  margin-bottom: 0;
}

li {
  margin-bottom: .3125rem;
}

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

/* Code blocks */

pre {
  overflow: auto;
}

code {
  vertical-align: bottom;
}

/* Blockquotes */

blockquote {
  border-left: 2px solid;
  margin: 0 0 1.4rem;
  padding-left: 0.7rem;
}

/* Horizontal rules */

hr {
  border: none;
  border-bottom: 1px solid #CCC;
}

/* Image alt text */

img {
  font-size: 0.583rem;
  word-break: normal;
}

@media (max-width: 767px) {
  section:has(table) {
    overflow-x: auto;
  }
}
button,
.button,
.btn {
  cursor: pointer;
  display: block;
  text-align: center;
  color: #0C0320;
  transition: all 300ms ease-out;
  white-space: normal;
  width: fit-content;
  padding: 8px 16px;
  font-weight: 500;
  border-radius: 40px;
  line-height: 1;
  z-index: 2;
  position: relative;
}

button:active,
.button:active,
.btn:active, {
  color: inherit;
}

.btn.left {
  margin-left: 0;
  margin-right: auto;
}

.btn.right {
  margin-left: auto;
  margin-right: 0;
}

.btn.center {
  margin-left: auto;
  margin-right: auto;
}

button:disabled,
.button:disabled,
.btn:disabled,
.hs-button:disabled {
  background-color: #D0D0D0;
  border-color: #D0D0D0;
  color: #E6E6E6;
}

/* No button */
.no-button,
.no-button:hover,
.no-button:focus,
.no-button:active {
  background: none;
  border: none;
  border-radius: 0;
  color: initial;
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  margin-bottom: 0;
  padding: 0;
  text-align: left;
  text-decoration: none;
  transition: none;
}

.btn-sm {
  font-size: 16px;
  padding: 8.5px 27px;
}

.btn-lg {
  font-size: 20px; 
  padding: 16px 28px;
}

@media (max-width: 767px) {
  .btn-lg {
    font-size: 16px;
    padding: 8.5px 27px;  
  }
}

.btn-primary {
  background-color: #1EB110;
  border: 1.5px solid #1EB110;  
  position: relative;
  overflow: hidden;
  z-index: 1;
  color:black !important;
}

.btn-primary:hover {
  border: 1.5px solid #0C0320;
  color: #fff!important;
}

.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #0C0320;
  transform: translateX(-100%) skew(-15deg);
  transition: all 300ms ease-out;
  z-index: -1;
  opacity: 0;
  border-bottom-right-radius: 40px;
}

.btn-primary:hover::before,
.btn-outline:hover::before, 
.btn-outline.hover-primary:hover::before,
.btn-outline.hover-black:hover::before,
.btn-outline-white:hover::before,
.btn-outline-white.hover-primary:hover::before,
.btn-outline-white.hover-white:hover::before,
.btn-white:hover::before,
.btn-white.hover-primary:hover::before,
.btn-white.hover-light-blue:hover::before,
.btn-white-no-outline:hover::before,
.btn-white-no-outline.hover-primary-no-outline:hover::before,
.btn-white-no-outline.hover-light-blue-no-outline:hover::before,
.btn-black:hover::before,
.btn-black.hover-light-blue:hover::before {
  transform: translateX(0) skew(-15deg);
  opacity: 1;
  margin-left: -10%;
  margin-right: -10%;
  height: 110%;
}

.btn-outline {
  background-color: transparent;
  border: 1.5px solid #0C0320;
  color: #0C0320;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-outline::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #1EB110;
  transform: translateX(-100%) skew(-15deg);
  transition: all 300ms ease-out;
  z-index: -1;
  opacity: 0;
  border-bottom-right-radius: 40px;
}

.btn-outline:hover {
  border: 1.5px solid #1EB110;
  color: #0C0320;  
}

.btn-outline.hover-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #1EB110;
  transform: translateX(-100%) skew(-15deg);
  transition: all 300ms ease-out;
  z-index: -1;
  opacity: 0;
  border-bottom-right-radius: 40px;
}

.btn-outline.hover-black::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #0C0320;
  transform: translateX(-100%) skew(-15deg);
  transition: all 300ms ease-out;
  z-index: -1;
  opacity: 0;
  border-bottom-right-radius: 40px;
}

.btn-outline.hover-black:hover {
  border: 1.5px solid #0C0320;
  color: #fff;
}

.btn-outline.hover-primary:hover {
  border: 1.5px solid #1EB110;
  color: #0C0320;
}

.btn-outline.hover-primary:hover {
  background-color: #1EB110;
  border: 1.5px solid #1EB110;
  color: #0C0320;
}

.btn-outline-white::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #fff;
  transform: translateX(-100%) skew(-15deg);
  transition: all 300ms ease-out;
  z-index: -1;
  opacity: 0;
  border-bottom-right-radius: 40px;
}

.btn-outline-white {
  background-color: transparent;
  border: 1.5px solid #fff;
  color: #fff;  
  position: relative;
  overflow: hidden;
  z-index: 1;  
}

.btn-outline-white.hover-white:hover {
  border: 1.5px solid #fff;
  color: #0C0320;
}

.hover-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #1EB110;
  transform: translateX(-100%) skew(-15deg);
  transition: all 300ms ease-out;
  z-index: -1;
  opacity: 0;
  border-bottom-right-radius: 40px;
}

.btn-white {
  background-color: #fff;
  border: 1.5px solid #0C0320;  
  color: #0C0320!important;
  position: relative;
  overflow: hidden;
  z-index: 1;
} 

.btn-white::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #CAE1E8;
  transform: translateX(-100%) skew(-15deg);
  transition: all 300ms ease-out;
  z-index: -1;
  opacity: 0;
  border-bottom-right-radius: 40px;
}

.btn-white-no-outline {
  background-color: #fff;
  color: #0C0320!important;
  position: relative;
  overflow: hidden;
  z-index: 1;
} 

.btn-white-no-outline::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #CAE1E8;
  transform: translateX(-100%) skew(-15deg);
  transition: all 300ms ease-out;
  z-index: -1;
  opacity: 0;
  border-bottom-right-radius: 40px;
}

.hover-primary:hover {
  color: #0C0320;
  border: 1.5px solid #1EB110;
}

.hover-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #1EB110;
  transform: translateX(-100%) skew(-15deg);
  transition: all 300ms ease-out;
  z-index: -1;
  opacity: 0;
  border-bottom-right-radius: 40px;
}

.hover-light-blue::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #CAE1E8;
  transform: translateX(-100%) skew(-15deg);
  transition: all 300ms ease-out;
  z-index: -1;
  opacity: 0;
  border-bottom-right-radius: 40px;
}

.hover-light-blue:hover {
  color: #0C0320;
  border: 1.5px solid #CAE1E8;  
}

.hover-primary-no-outline:hover {
  color: #0C0320;
}

.hover-primary-no-outline::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #1EB110;
  transform: translateX(-100%) skew(-15deg);
  transition: all 300ms ease-out;
  z-index: -1;
  opacity: 0;
  border-bottom-right-radius: 40px;
}

.hover-light-blue-no-outline::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #CAE1E8;
  transform: translateX(-100%) skew(-15deg);
  transition: all 300ms ease-out;
  z-index: -1;
  opacity: 0;
  border-bottom-right-radius: 40px;
}

.hover-light-blue-no-outline:hover {
  color: #0C0320;
}

.btn-black {
  background-color: #0C0320;
  border: 1.5px solid #0C0320;  
  color: #fff;
  position: relative;
  overflow: hidden;
  z-index: 1;  
}

.btn-black::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #CAE1E8;
  transform: translateX(-100%) skew(-15deg);
  transition: all 300ms ease-out;
  z-index: -1;
  opacity: 0;
  border-bottom-right-radius: 40px;
}

.btn-black.hover-light-blue:hover {
  color: #0C0320;
  border: 1.5px solid #CAE1E8;  
}

.btn-custom {
  background-color: #E49319;
  border: 1.5px solid #E49319;  
  color: #fff;
  position: relative;
  overflow: hidden;
  z-index: 1;  
  font-weight: 600;
}

.btn-custom::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #E49319;
  transform: translateX(-100%) skew(-15deg);
  transition: all 300ms ease-out;
  z-index: -1;
  opacity: 0;
  border-bottom-right-radius: 40px;
  font-weight: 600;
}

button.btn-custom:active,button.btn-custom:hover,button.btn-custom:focus {
    background-color: #E49319 !important;
    border: 1px solid #E49319 !important;
    color: #fff;
    font-family: TT Neoris;
}

/* .button-primary {
  color: ;
  background-color: ;   
}

.button-primary:hover {
 color: white; 
}

.button-secondary {
  border: 2px solid #A6B1B3;
  color: ;
  background-color: white;
}

.button-secondary:hover {
  border: 2px solid #000;
}

.button-primary-dark {
 color: ;
  background-color: white;
}

.button-primary-dark:hover {
  background-color: ;
}

.button-secondary-dark {
  border: 2px solid #8B9193;
  color: white;
}

.button-secondary-dark:hover {
 border-color: white; 
} */
/* Fields */

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

/* Labels */

form label {   
  display: block;
  color: #000;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7; /* 27.2px */
  margin-bottom: 0.35rem;
}

/* Form Title */
.form-title {
  font-size: 32px;
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: -0.32px;
  margin-bottom: 24px;
}

/* Help text */

form legend {
  font-size: 0.875rem;
}

/* Inputs */

form input[type=text],
form input[type=search],
form input[type=email],
form input[type=password],
form input[type=tel],
form input[type=number],
form input[type=file],
form select,
form textarea {
  display: inline-block;
  font-size: 16px;
  padding: 14px 20px;
  width: 100%;
}

form input[type=text]:placeholder,
form input[type=search]:placeholder,
form input[type=email]:placeholder,
form input[type=password]:placeholder,
form input[type=tel]:placeholder,
form input[type=number]:placeholder,
form input[type=file]:placeholder,
form select:placeholder,
form textarea:placeholder {
  color: #000;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
}

form textarea {
  resize: vertical;
}

form fieldset {
  max-width: 100% !important;
}

/* Inputs - checkbox/radio */

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

form .inputs-list > li {
  display: block;
  margin: 0.7rem 0;
}

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

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

input:where([type="checkbox"], [type="radio"]) {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  vertical-align: top;
  margin: calc(0.75em - 11px) 0.25rem 0 0;
  border: 2px solid #ddd;
  border-radius: 4px;
  background: #fff no-repeat center center;
}

input[type="radio"] {
  border-radius: 50%;
}

input:where([type="checkbox"], [type="radio"]):where(:active:not(:disabled), :focus) {
  border-color: #E8E8E8;
  outline: none;
}

input:where([type="checkbox"], [type="radio"]):disabled {
  background: #E8E8E8;
}

input[type="radio"] {
  border-radius: 50%;
}

input[type="checkbox"]:checked {
  background-image: url('https://359678.fs1.hubspotusercontent-na1.net/hubfs/359678/raw_assets/public/spotdev-unily-theme/images/module-icons/checkbox.svg');
}

input[type="radio"]:checked {
  background-image: url('https://359678.fs1.hubspotusercontent-na1.net/hubfs/359678/raw_assets/public/spotdev-unily-theme/images/module-icons/radio.svg');
}

/* Inputs - date picker */

.hs-dateinput {
  position: relative;
}

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

/* Inputs - file picker */

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

input[type="search"]::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

/* Headings and text */

form .hs-richtext,
form .hs-richtext p,
form .hs-richtext a {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.2;
  margin: 0 0 1.4rem;
}

.hs-richtext a {
  color: #000;
  font-size: 16px;
  font-weight: 300;
  text-decoration: underline; 
}

form .hs-richtext a:hover {
  text-decoration: none; 
}

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

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

/* Validation */

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

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

.hs-error-msg {
  color: #EF6B51;
  margin-top: 0.35rem;
}

/* Submit button */

form input[type=submit],
form .hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
  color: ;
  background-color: ;
}

form input[type=submit]:hover,
form .hs-button:hover {
 background-color: #0C0320;
 color: white; 
 transition: all 300ms ease-out;  
}

.submitted-message {
  font-weight: bold;
}

/* Submit button animation */
/* .actions {
  position: relative;
  display: inline-block;
  overflow: hidden;
}

.actions::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #0C0320;
  transform: translateX(-100%) skew(-15deg);
  transition: transform 300ms ease-out, opacity 300ms ease-out;
  z-index: -1;
  opacity: 0;
  border-bottom-right-radius: 40px;
  pointer-events: none;
}

.actions:hover::before {
  margin-left: -10%;
  margin-right: -10%;
  height: 100%;  
  transform: translateX(0) skew(-15deg);
  opacity: 1;
  z-index: 1;  
}

.actions input {
  position: relative;
  z-index: 1;
  transition: color 300ms ease-out, border-color 300ms ease-out, background-color 300ms ease-out;
  background-color: #1eb110;
  border: 1.5px solid #1eb110;
  border-radius: 48px;
  color: #0c0320;
  padding: 15px 53px;
  font-family: "TT Neoris", sans-serif;
  font-size: 20px;
  font-weight: 500;
  text-transform: none;
  white-space: nowrap;
}

.actions:hover input {
  color: #fff;
  border-color: #0C0320;
  background-color: #0C0320;
  transition: delay 600ms;
} */

/* Captcha */

.grecaptcha-badge {
  margin: 0 auto;
}


  /* Search button input field and suggestions */
  .body-container-wrapper .hs-search-field__button {
    padding: 15px;
  }

  .body-container-wrapper .hs-search-field__bar--button-inline .hs-search-field__button {
    margin-left: 6px;
    margin-bottom: 0;
  }

  .body-container-wrapper .hs-search-field__button svg {
    height: 15px;
    fill: #fff;
  }

  .body-container-wrapper .hs-search-field__bar > form > .hs-search-field__input {
    padding: 10px;
  }

  .body-container-wrapper .hs-search-field__suggestions li a {
    color: #494A52;
    padding: 0.35rem 0.7rem;
    text-decoration: none;
    transition: background-color 0.3s;
  }

/* Table */

table {
  border-collapse: collapse;
  margin-bottom: 1.4rem;
  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
*/

/* Header DND sections */

.header .dnd-section {
  padding: 0;
}

/* Header container */

.header {
  border-bottom: 1px solid #C2C0C7B3;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 650;
}

main {
  padding-top: 4.5rem;
  overflow: hidden;
}

@media (max-width: 1190px) {
  main {
    padding-top: 3.125rem;
  }
}

.header__logo {
  flex: none;
  margin-right: 140px;
}

@media (max-width: 1225px) {
  .header__logo {
    margin-right: 0;
  }
}

.header__container {
  display: flex;
  align-items: center;
  height: 4.5rem;
  padding: 0 1.25rem;
  position: relative;
}

.header__container.light {
  justify-content:space-between;
}


.header__column {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.header-cta-section {
  display: flex;
  align-items: center;
}

.header__column .hs-menu-item {
  margin-bottom: 0;
}

.header__column ul li.hs-menu-item:not(:last-child) {
  margin-right: 12px;
  padding-right: 12px;
  border-right: 1px solid #D9D9D9;
}

.header__column .hs-menu-item > a {
  color: #000;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  text-decoration: underline;
  transition: all 0.2s ease-out;
}

.header__column .hs-menu-item > a:hover {
  text-decoration: none;
  transition: all 0.2s ease-in;
}

.header-cro .header__button {
  flex: 1 0 240px;
  display: flex;
  justify-content: flex-end;
}
.header-cro .header__column {
  justify-content: center;
}
.header-cro .menu--desktop ul li a {
  align-items: center;
  color: #0c0320;
  display: flex;
  font-size: 16px;
  font-weight: 300;
  gap: 10px;
  line-height: 1.2;
  padding: 0;
  text-decoration: none;
  text-transform: none;
}
@media (max-width: 1190px) {
  .header-cro .header__button button {
    display: none;
  }
  .header-cro .mobile-nav .mobile-links {
    padding: 0px;
    margin: 0px;
  }
  .header-cro .mobile-nav .mobile-links ul {
    border-bottom: 1px solid rgba(12, 3, 32, .25);
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 36px 22px;
    transition: all .3s ease-in-out;
  }
  .header-cro .mobile-nav .mobile-links ul li {
    border: 0;
    transition: all .3s ease-in-out;
    margin: 0;
  }
  .header-cro .mobile-nav .mobile-links ul li a {
    align-items: center;
    display: flex;
    font-size: 20px;
    justify-content: space-between;
    letter-spacing: -.3px;
    line-height: 1.2;
    padding: 0;
    text-decoration: none;
    text-transform: none;
    color: #0c0320;
    font-weight: 300;
  }
}

@media (max-width: 1150px) and (min-width: 767px) {
  .header__column {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .header__column {
    position: relative;
  }
}

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

/* Search bar */

.header__search {
  display: flex;
  align-items: center;
  margin-right: 23px;
  position: relative;
}

.header__search .header--cta-links {
  position: absolute; 
  width: auto;
  right: 39px;
}

.header__search.open .header--cta-links {
  visibility: hidden;
}

.header__search .header--cta-links ul {
  width: max-content;
}

.header__search .hs-search-field {
  margin-left: 23px;
}

.header__search .hs-search-field__input {
  border-radius: 8px;
  border: none;
  align-items: center;
  gap: 10px;
  opacity: 0;
  width: 0;
  height: 44px; 
  padding: 12px 47px;
  position: relative;
  right: -10px;
  color: #000;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7; /* 27.2px */
  transition: opacity .25s ease, width .6s ease;
  visibility: collapse;
  display: none;
}

.header__search .search-close-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='25' height='24' viewBox='0 0 25 24' fill='none'%3E%3Cpath d='M6.60742 17.5441L17.6974 6.4541' stroke='black' stroke-width='1.5' stroke-linecap='square' stroke-linejoin='round'/%3E%3Cpath d='M17.6974 17.5441L6.60742 6.4541' stroke='black' stroke-width='1.5' stroke-linecap='square' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 25px 24px;
  display: none; /* Hide close icon by default */  
}

.header__search .search-open-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='21' height='21' viewBox='0 0 21 21' fill='none'%3E%3Cg clip-path='url(%23clip0_1092_15632)'%3E%3Cpath d='M2.64882 11.5302C3.01614 12.3945 3.5501 13.178 4.22021 13.8359C4.89033 14.4939 5.68347 15.0134 6.55436 15.3648C7.42525 15.7162 8.35683 15.8927 9.29591 15.8841C10.235 15.8755 11.1632 15.682 12.0275 15.3147C12.8918 14.9473 13.6753 14.4134 14.3332 13.7433C14.9912 13.0731 15.5107 12.28 15.8621 11.4091C16.2135 10.5382 16.39 9.60664 16.3814 8.66756C16.3728 7.72848 16.1793 6.80029 15.8119 5.93598C15.4446 5.07168 14.9107 4.28818 14.2406 3.63024C13.5704 2.97229 12.7773 2.45277 11.9064 2.10135C11.0355 1.74993 10.1039 1.57348 9.16485 1.58209C8.22577 1.59069 7.29758 1.78418 6.43328 2.1515C5.56897 2.51882 4.78548 3.05278 4.12754 3.7229C3.46959 4.39301 2.95008 5.18616 2.59866 6.05705C2.24724 6.92794 2.07079 7.85952 2.0794 8.7986C2.08801 9.73768 2.2815 10.6659 2.64882 11.5302Z' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M14.2866 13.7893L19.8329 19.3364' stroke='black' stroke-width='1.5' stroke-linecap='square' stroke-linejoin='round'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_1092_15632'%3E%3Crect width='20' height='20' fill='white' transform='translate(0.956055 0.459473)'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 20px 20px;
  height: 20px;
  width: 20px;
  display: block;
  position: relative;
  cursor: pointer;
  border: 0;
  margin: 0;
}

.header__search .hs-search-field__form .hs-search-field__button {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='21' height='21' viewBox='0 0 21 21' fill='none'%3E%3Cg clip-path='url(%23clip0_1092_15632)'%3E%3Cpath d='M2.64882 11.5302C3.01614 12.3945 3.5501 13.178 4.22021 13.8359C4.89033 14.4939 5.68347 15.0134 6.55436 15.3648C7.42525 15.7162 8.35683 15.8927 9.29591 15.8841C10.235 15.8755 11.1632 15.682 12.0275 15.3147C12.8918 14.9473 13.6753 14.4134 14.3332 13.7433C14.9912 13.0731 15.5107 12.28 15.8621 11.4091C16.2135 10.5382 16.39 9.60664 16.3814 8.66756C16.3728 7.72848 16.1793 6.80029 15.8119 5.93598C15.4446 5.07168 14.9107 4.28818 14.2406 3.63024C13.5704 2.97229 12.7773 2.45277 11.9064 2.10135C11.0355 1.74993 10.1039 1.57348 9.16485 1.58209C8.22577 1.59069 7.29758 1.78418 6.43328 2.1515C5.56897 2.51882 4.78548 3.05278 4.12754 3.7229C3.46959 4.39301 2.95008 5.18616 2.59866 6.05705C2.24724 6.92794 2.07079 7.85952 2.0794 8.7986C2.08801 9.73768 2.2815 10.6659 2.64882 11.5302Z' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M14.2866 13.7893L19.8329 19.3364' stroke='black' stroke-width='1.5' stroke-linecap='square' stroke-linejoin='round'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_1092_15632'%3E%3Crect width='20' height='20' fill='white' transform='translate(0.956055 0.459473)'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 20px 20px;
  position: absolute;
  top: 0;
  left: 10px;
  bottom: 0;
  cursor: pointer;
  border: 0;
  margin: 0;
  display: none; /* Hide close icon by default */  
}

.header__search.open .search-open-icon {
  display: none;
}

.header__search.open .hs-search-field__input {
  display: flex;
  background: #F4F2F7;  
  width: 331px;
  visibility: visible;
  opacity: 1;
  transition: opacity .25s ease, width .6s ease;  
}

.header__search.open .search-close-icon {
  display: block;
  width: 32px;
  height: 44px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: -7px;
  cursor: pointer;
  border: 0;
  margin: 0;
}

.header__search.open .hs-search-field__button {
  display: block;
}

.header__search .hs-search-field--open .hs-search-field__input {
  max-width: 100%;
}

.header__search .hs-search-field__suggestions-container {
  display: none;
}

.header__search .hs-search-field__suggestions #results-for {
  display: none;
}

.mobile-nav {
  display: none;
}

/* Mobile toggles */

@media (max-width: 1330px) {
  .header__logo {
    margin-right: 0;
  }
}

@media (max-width: 1190px) {
  .header__container {
    height: 3.75rem;
  }
  
  .header__column {
    justify-content: end;
  }
  
  .header__navigation,
  .header__search {
    display: none;
    width: 100%;
  }

  .header__navigation.open {
    display: none;
  }
 
  .header__navigation--toggle {
    cursor: pointer;
    position: relative;
    margin-left: 13px;
  }
  
  .header__close--toggle {
    cursor: pointer;
    position: relative;
  }

  .header__navigation--toggle.hide {
    display: block;
  }
  
  .mobile-nav.open {
    background-color: #fff;
    display: flex;
    top: 46px;
    position: absolute;
    flex-direction: column;
    left: 0;
    right: 0;
    height: calc(100vh - 46px);
    overflow: auto;    
  }

  .header__navigation--toggle.open {
    display: none;
    margin-left: 0;
    margin-right: auto;
  }
  
  .header__navigation--toggle {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='25' height='25' viewBox='0 0 25 25' fill='none'%3E%3Cpath d='M3.05566 18.0874H21.3369' stroke='black' stroke-width='1.5' stroke-linecap='square' stroke-linejoin='round'/%3E%3Cpath d='M3.05566 12.4624H21.3369' stroke='black' stroke-width='1.5' stroke-linecap='square' stroke-linejoin='round'/%3E%3Cpath d='M3.05566 6.8374H21.3369' stroke='black' stroke-width='1.5' stroke-linecap='square' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-size: cover;
    height: 25px;
    width: 25px;
  }

  .header__close--toggle {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='25' height='24' viewBox='0 0 25 24' fill='none'%3E%3Cpath d='M6.60742 17.5441L17.6974 6.4541' stroke='black' stroke-width='1.5' stroke-linecap='square' stroke-linejoin='round'/%3E%3Cpath d='M17.6974 17.5441L6.60742 6.4541' stroke='black' stroke-width='1.5' stroke-linecap='square' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: 110%;
    display: none;
    height: 25px;
    margin-right: 0;
    width: 25px;
  }

  .header__close--toggle.show {
    display: block;
    margin-left: 13px;
  }
  
  .mobile-nav .mobile-links {
    padding-top: 36px;
    padding-left: 22px;
    padding-right: 22px;
    margin-bottom: 40px;
  }
  
  .mobile-nav .mobile-links ul {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 0;    
  }

  .mobile-nav .mobile-links a {
    color: #0C0320;
    font-size: 20px;
    font-weight: 300;
    line-height: 120%; /* 24px */
    letter-spacing: -0.3px;
    text-decoration: underline;
  }

  .mobile-nav .mobile-links a:hover {
    color: #0C0320;  
    text-decoration: none;
  }  
  
  .mobile-nav .mobile-search-input {
    border-bottom: 1px solid rgba(12, 3, 32, 0.25);      
    padding-left: 22px;
    padding-right: 22px;
    padding-bottom: 36px;
  }
  
  .mobile-nav .mobile-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 36px 22px;
  }
  
  .mobile-search-input .hs-search-field__input {
    border-radius: 8px;
    border: 1px solid #F4F2F7;
    background: #F4F2F7;
    padding: 12px 17px;
    padding-left: 47px;
    color: #000;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.7; /* 27.2px */
  }
  
  .mobile-search-input .hs-search-field__button {
    bottom: 0;
    left: 10px;
    position: absolute;
    top: 0;
    background-color: transparent;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='21' height='21' viewBox='0 0 21 21' fill='none'%3E%3Cg clip-path='url(%23clip0_1092_15632)'%3E%3Cpath d='M2.64882 11.5302C3.01614 12.3945 3.5501 13.178 4.22021 13.8359C4.89033 14.4939 5.68347 15.0134 6.55436 15.3648C7.42525 15.7162 8.35683 15.8927 9.29591 15.8841C10.235 15.8755 11.1632 15.682 12.0275 15.3147C12.8918 14.9473 13.6753 14.4134 14.3332 13.7433C14.9912 13.0731 15.5107 12.28 15.8621 11.4091C16.2135 10.5382 16.39 9.60664 16.3814 8.66756C16.3728 7.72848 16.1793 6.80029 15.8119 5.93598C15.4446 5.07168 14.9107 4.28818 14.2406 3.63024C13.5704 2.97229 12.7773 2.45277 11.9064 2.10135C11.0355 1.74993 10.1039 1.57348 9.16485 1.58209C8.22577 1.59069 7.29758 1.78418 6.43328 2.1515C5.56897 2.51882 4.78548 3.05278 4.12754 3.7229C3.46959 4.39301 2.95008 5.18616 2.59866 6.05705C2.24724 6.92794 2.07079 7.85952 2.0794 8.7986C2.08801 9.73768 2.2815 10.6659 2.64882 11.5302Z' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M14.2866 13.7893L19.8329 19.3364' stroke='black' stroke-width='1.5' stroke-linecap='square' stroke-linejoin='round'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_1092_15632'%3E%3Crect width='20' height='20' fill='white' transform='translate(0.956055 0.459473)'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: 20px 20px;
    border: 0;
    cursor: pointer;
    margin: 0;
  }
  
  .mobile-search-input .hs-search-field__suggestions-container {
    display: none;
  }
  
}
.footer {
  padding-top: 96px;
  padding-left: 68px;
  padding-right: 68px;
  padding-bottom: 60px;
}

.footer .links-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-top: 24px;
  margin-left: auto;
  margin-right: auto;
  max-width: 1304px;
}

.footer .links-container .copyright a,
.footer .links-container .copyright {
  color: #fff;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.2;
}

.footer .links-container .copyright a {
  text-decoration: underline;
}

.footer .links-container .copyright a:hover {
  text-decoration: none;
}

@media (max-width: 768px) {
  .footer {
    padding-top: 72px;
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 47px;
  }
  
  .footer .links-container {
    gap: 27px;
  }
}
/* 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 .hs-menu-children-wrapper {
  flex-direction: column;
}

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

/* 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 {
  left: 0;
  opacity: 1;
  top: 100%;
}

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

@media (max-width: 767px) {
  .hs-menu-wrapper.flyouts .hs-menu-children-wrapper,
  .hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper,
  .hs-menu-wrapper.hs-menu-flow-vertical.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
    left: 0;
    opacity: 1;
    position: relative;
    top: auto;
  }
}

/* CTA, logo, and rich text images */
.hs_cos_wrapper_type_cta img,
.hs_cos_wrapper_type_logo img,
.hs_cos_wrapper_type_rich_text img {
  height: auto;
  max-width: 100%;
}

/* --- Wrapping Fixes for Mobile --- */
.hs-menu-wrapper a,
.hs-menu-wrapper li {
  word-wrap: break-word;
  overflow-wrap: break-word;
  word-break: normal;   /* Don’t break words in the middle */
  white-space: normal;  /* Allow wrapping */
  line-height: 1.4;
}

/* Extra small devices (phones under 480px) */
@media (max-width: 480px) {
  .hs-menu-wrapper ul {
    flex-direction: column;   /* Stack menu items vertically */
    align-items: flex-start;  /* Left align items */
  }

  .hs-menu-wrapper a {
    display: block;
    max-width: 100%;          /* Prevent overflow */
    text-align: left;
    padding: 10px 0;
    font-size: 14px;
  }

  /* Prevent stray orphaned dots/bullets */
  .hs-menu-wrapper li {
    list-style: none;
  }

  /* Flyout children behave inline on mobile */
  .hs-menu-wrapper.flyouts .hs-menu-children-wrapper {
    position: relative !important;
    left: 0 !important;
    top: auto !important;
    opacity: 1 !important;
  }
}

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