/* 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.
*/

/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role='list'],
ol[role='list'] {
  list-style: none;
  padding-inline-start: 0;
}

/* Set core root defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
   scroll-behavior: auto;
  }
  
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/*! 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;
}

/* 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)
*/

:root {
  --content-max-width: 1200px;
  --centered-content-max-width: 1140px;
  --content-inner-max-width: 1000px;
  --text-max-width: 700px;

  --space-3xs: clamp(0.25rem, calc(0.23rem + 0.11vw), 0.31rem); /* 4-5px */
  --space-2xs: clamp(0.50rem, calc(0.48rem + 0.11vw), 0.56rem); /* 8-10px */
  --space-xs: clamp(0.75rem, calc(0.70rem + 0.23vw), 0.88rem); /* 12-15px */
  --space-s: clamp(1.00rem, calc(0.95rem + 0.23vw), 1.13rem); /* 16-20px */
  --space-m: clamp(1.19rem, calc(1.12rem + 0.34vw), 1.38rem); /* 19-24px */
  --space-l: clamp(2.00rem, calc(1.91rem + 0.45vw), 2.25rem); /* 32-40px */
  --space-xl: clamp(3.00rem, calc(2.86rem + 0.68vw), 3.38rem); /* 48-60px */
  --space-2xl: clamp(4.00rem, calc(3.82rem + 0.91vw), 4.50rem); /* 64-80px */
  --space-3xl: clamp(6.00rem, calc(5.73rem + 1.36vw), 6.75rem); /* 96-120px */
}

.container {
  max-width: min(var(--content-max-width), 100% - var(--space-l));
  margin-inline: auto;
}


  /* 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.)
*/

:root {
  --fs--1: clamp(0.83rem, calc(0.81rem + 0.12vw), 0.90rem); /* 13.33-14.40 px */
  --fs-0: clamp(1.00rem, calc(0.96rem + 0.22vw), 1.13rem); /* 16-18 px */
  --fs-1: clamp(1.20rem, calc(1.13rem + 0.36vw), 1.41rem); /* 19.20-22.50 px */
  --fs-2: clamp(1.44rem, calc(1.33rem + 0.55vw), 1.76rem); /* 23.04-28.13 px */
  --fs-3: clamp(1.73rem, calc(1.56rem + 0.82vw), 2.20rem); /* 27.65-35.16 px */
  --fs-4: clamp(2.07rem, calc(1.84rem + 1.17vw), 2.75rem); /* 33.18-43.95 px */
  --fs-5: clamp(2.49rem, calc(2.16rem + 1.64vw), 3.43rem); /* 39.81-54.93 px */
  --fs-6: clamp(2.99rem, calc(2.53rem + 2.27vw), 4.29rem); /* 47.78-68.66 px */

  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --fw-extra-bold: 800;
}

body {
  font-size: var(--fs-0);
  line-height: 1.4;
  overflow-wrap: break-word;
}

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: 1rem;
  margin-bottom: .5rem;
}

/* Anchors */

a {
  cursor: pointer;
}

/* Headings */

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: .8rem;
}

/* Lists */

ul,
ol {
  margin-bottom: .5rem;
}

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

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

/* Code blocks */

pre {
  overflow: auto;
}

code {
  vertical-align: bottom;
}

/* Blockquotes */

blockquote:before {
  content: open-quote;
  font-size: 6rem;
  line-height: 0;
  top: 2rem;
  position: relative;
  font-family: DM Serif Display;
}

blockquote p {
  font-size: var(--fs--1);
}

blockquote {
  quotes: "“" "”";
}

cite {
  font-style: normal;
}

/* Horizontal rules */

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

/* Image alt text */

img {
  font-size: 0.583rem;
  word-break: normal;
}
:root {
    --black: hsla(240, 4%, 20%, 1);
    --orange: hsla(25, 100%, 48%, 1);
    --orange-400: hsla(24, 98%, 60%, 1);
    --turquoise: hsla(174, 96%, 81%, 1);
    --purple: hsla(295, 100%, 50%, 1);

    --light-grey: hsla(192, 16%, 94%, 1);
    --light-orange: hsla(25, 85%, 90%, 1);
    --light-green: hsla(175, 85%, 95%, 1);
    --dark-blue: hsla(226, 56%, 11%, 1);

    --grey-100: hsla(0, 0%, 90%);
    --grey-300: hsla(0, 0%, 70%);
    --grey-500: hsla(0, 0%, 50%);
    --grey-700: hsla(0, 0%, 30%);
    --grey-900: hsla(0, 0%, 10%);

}


/* Color helper class */

.dark-blue {
    color: var(--dark-blue);
}
html {
  --btn-primary: var(--orange);
  --btn-primary--hover: var(--orange-400);
}




button,
.btn-primary,
.button,
.hs-button,
.hs-blog-post-listing__post-button,
input[type="submit"] {
  
  cursor: pointer;
  display: inline-block;
  color: white;
  margin-top: var(--space-s);
  padding: var(--space-xs) var(--space-l);
  border-radius: 2rem;
  border: none;
  font-weight: bold;
  text-align: center;
  white-space: normal;

  background-color: var(--btn-primary);
  min-width: 10px;
  transition: background-color 0.2s linear;
}


button:hover,
button:focus,
.btn-primary:hover,
.btn-primary:focus,
.button:hover,
.button:focus,
.hs-button:hover,
.hs-button:focus,
.hs-blog-post-listing__post-button:hover,
.hs-blog-post-listing__post-button:focus,
input[type="submit"]:hover,
input[type="submit"]:focus {
  color: white;
  font-weight: bold;
  background-color: var(--btn-primary--hover);
  border-radius: 2rem;
}

button:disabled,
.button:disabled,
.hs-button:disabled,
input[type="submit"]:disabled, {
  background-color: #D0D0D0;
  border-color: #D0D0D0;
  color: #E6E6E6;
}

/* Floating button */

.btn-floating {
  
  cursor: pointer;
  display: inline-block;
  color: white;
  margin-top: var(--space-s);
  padding: var(--space-xs) var(--space-l);
  border-radius: 2rem;
  border: none;
  font-weight: bold;
  text-align: center;
  white-space: normal;

  position: fixed;
  bottom: var(--space-2xl);
  right: var(--space-s);
  z-index: 3;
  background: var(--orange);
  font-size: var(--fs--1);
  border-radius: 50%;
  height: 70px;
  width: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
  text-align: center;
  padding: 0;
  margin: 0;

  box-shadow: 
  1px 3px 10px var(--grey-300),
  0px 0px 10px var(--grey-100);
}

.btn-floating:hover, 
.btn-floating:active,
.btn-floating:focus {
  color: white;
  font-weight: var(--fw-semibold);
}


/* No button (show button as simple link) */

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


/* Arrow button */

.arrow-down .hs-button {
  display: flex;
  width: max-content;
  align-items: center;
}

.arrow-down .hs-button:after {
  content: url("https://3042464.fs1.hubspotusercontent-na1.net/hubfs/3042464/KATALYST%20BY%20CODURANCE/Microsite/katalyst_arrow.svg");
  height: 22px;
  width: 0;
  display: block;
  opacity: 0;
  transition: 
    width .2s cubic-bezier(.18,.89,.32,1.28),
    opacity .2s ease-in,
    margin-left .3s ease-out;
}

.arrow-down .hs-button:hover:after {
  opacity: 1;
  margin-left: 0.6rem;
  width: 22px;
  transition: 
    width .1s cubic-bezier(.18,.89,.32,1.28),
}
/* Fields */

.hs-form-field {
  margin-bottom: 1.4rem;
}

/* Labels */

form label {
  display: block;
  font-size: var(--fs--1);
  margin-bottom: 0.35rem;
}

/* Form Title */
.form-title {
  margin-bottom: 0;
}

/* Help text */

form legend {
  font-size: var(--fs--1);
}

/* 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;
  border: none;
  font-size: var(--fs--1);
  padding: var(--space-s);
  width: 100%;
  border-radius: 3px;
  box-shadow: 1px 1px 20px var(--light-grey);
}

form input:focus,
form input:active {
  outline: 1px solid var(--orange);
}

form textarea {
  resize: vertical;
  min-height: 6.5rem;
}

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: middle;
}

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

/* 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-table thead th {
  color: #FFF;
}

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

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

/* Inputs - file picker */

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

/* Headings and text */

form .hs-richtext,
form .hs-richtext p {
  font-size: var(--fs--1);
  margin: 0 0 1.4rem;
}

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

/* GDPR */

.legal-consent-container .hs-form-booleancheckbox-display > span {
  margin-left: var(--space-l) !important;
}

.legal-consent-container .hs-form-booleancheckbox-display input {
  width: var(--space-s);
  height: var(--space-s);
}

.legal-consent-container .hs-form-booleancheckbox-display p {
  font-size: var(--fs--1);
}

/* Validation */

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

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

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

/* Captcha */

.grecaptcha-badge {
  margin: 0 auto;
}


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

header.header {
  background: white;
  transform: translateY(0);
  z-index: 1;
    position: relative;
}

.header.hide {
  transform: translateY(-160px);
}

header.header,
.header.hide {
  transition: transform .3s ease-in-out;
}

.header__wrapper {
  padding-top: var(--space-l);
}


/* 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 {
  display: flex;
  justify-content: center;
  max-width: 200px;
  margin-inline: auto;
}

.header__logo img {
  max-width: 100%;
}



  @media (width < 48rem) {
    
    .header__logo {
      max-width: 120px;
    }

  }

@media (min-width: 767px) {
  .mobile-language{
    display:none;
  }
}


.mobile-language{
      position: absolute;
    top: 10px;
    right: 20px;
    color: #0C132B;
  z-index: 0;
}
}
.mobile-language >.language-selector a{
  color: #0C132B!important;
}

.mobile-language >.language-selector i{
  display:none;
}
.footer p,
.footer a,
.footer h1,
.footer h2,
.footer h3,
.footer h4,
.footer h5,
.footer h6,
.footer label,
.footer span,
.footer img {
  color: white;
}

.footer {
    color: white;
    background: var(--dark-blue);
    padding-top: var(--space-3xl);
    padding-bottom: var(--space-2xl);
}

.footer__wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.footer__logo {
    margin-bottom: var(--space-xl);
}
    

.footer a {
    color: var(--light-grey);
}

.footer a:hover {
    color: var(--turquoise);
    text-decoration: underline;
    transition: color .2s ease-in-out;
}

.footer p {
    font-size: .6rem;
    text-align: center;
}

.footer img {
    width: 100%;
}

.footer hr {
    border-color: var(--turquoise);
    width: 100%;
    height: 2px;
}

.footer__links {
    max-width: var(--content-max-width);
    display: flex;
    align-items: baseline;
    width: 100%;
}


.footer__policies ul {
    list-style-type: none;
    padding: 0;

    display: flex;
    gap: var(--space-xs);
}

.footer__policies li {
    font-size: var(--fs--1);
}
@media (max-width: 767px) {
.footer__links .language-selector{
    display:none;
  }
}
/* 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%;
}

/* Section headers (title + subtitle) */
.section-header {
  text-align: center;
  max-width: min(60ch, 100% - var(--space-l));
  margin-inline: auto;
}

.section-header h2 {
  font-size: var(--fs-4);
  font-weight: var(--fw-medium);
  color: black;
}

.section-header p {
  font-size: var(--fs-1);
}

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