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

/**
 * 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;
}
/* Editor */
.inpage-editor-active-field {
    z-index: 1!important;
}

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

/* ATLAS */

.container {
    width: 100%;
    max-width: 460px;
    padding: 0 0.5rem;
    margin: 0 auto;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: calc(0.5rem * -1);
    margin-left: calc(0.5rem * -1);
}

[class*='col-'] {
    flex-grow: 0;
    flex-shrink: 0;
    padding: 0 0.5rem;
}

.col-12 {
    flex-basis: 100%;
    max-width: 100%;
}

@media (min-width: 480px) {
    .container {
        max-width: 710px;
    }
    .col-md-2 {
        flex-basis: 16.66666667%;
        max-width: 16.66666667%;
    }
    .col-md-5 {
        flex-basis: 41.66666667%;
        max-width: 41.66666667%;
    }
    .col-md-6 {
        flex-basis: 50%;
        max-width: 50%;
    }
}
@media (min-width: 992px) {
    .col-lg-3 {
        flex-basis: 25%;
        max-width: 25%;
    }
}

@media (min-width: 1024px) {
    .container {
        max-width: 1020px;
        padding: 0 0.5rem;
    }
    .row {
        margin-right: calc(0.5rem * -1);
        margin-left: calc(0.5rem * -1);
    }
    [class*='col-'] {
        padding: 0 0.5rem;
    }
}

@media (min-width: 1380px) {
    .container {
        max-width: 1440px;
    }
}
.content-wrapper {
  margin: 0 auto;
  /* padding: 0 1rem; */
}

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

.row-fluid-wrapper.dnd_area-column-1-row-6-margin {
  margin-bottom: 0!important;
}

@media (max-width: 767px) {
  .body-container--blog-index .dnd_area-row-0-padding,
  .body-container--blog-index .dnd_area-row-1-padding {
    padding: 0!important;
  }
}
.dnd-section > .row-fluid {
  margin: 0 auto;
}

.dnd-section .dnd-column {
  padding: 0!important;
}

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

html {
  font-size: 20px;
}

body {
  line-height: 1.5;
  font-weight: 300;
  overflow-wrap: break-word;

  font-size: 16px;
}

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

/* Paragraphs */

p {
  margin: 0 0 1rem;
}
p:last-child {
  margin: 0;
}

/* Anchors */

a {
  cursor: pointer;
}

/* Headings */

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

  font-weight: 300;
  hyphens: auto;
}
h1:only-child,
h2:only-child,
h3:only-child,
h4:only-child,
h5:only-child,
h6:only-child {
  margin: 0;
}

h1, .h1 {
    margin-bottom: 1rem;
    font-size: 31px;
    line-height: 39px;
}
h2, .h2 {
    margin-bottom: 1rem;
    font-size: 25px;
    line-height: 31.25px;
}
h3, .h3 {
    margin-bottom: 1rem;
    font-size: 20px;
    line-height: 25px;
    hyphens: auto;
}
h4, .h4 {
    margin-bottom: 1rem;
    font-size: 20px;
    line-height: 25px;
}
h5, .h5 {
    margin-bottom: 1rem;
    font-size: 20px;
    line-height: 25px;
}

h6, .h6 {
    margin-bottom: 0.5rem;
    font-size: 16px;
    line-height: 20px;
}

@media (min-width: 992px) { 
    html,
    body {
        font-size: 20px;
        }
    h1, .h1 {
        font-size: 48px;
        line-height: 60px;
    }
    h2, .h2 {
        margin-bottom: 1rem;
        font-size: 39px;
        line-height: 48.75px;
    }
    h3, .h3, h4, .h4 {
        font-size: 25px;
        line-height: 31.25px;
    }
}
@media (min-width: 1380px) { 
    h3, .h3 {
        font-size: 31px;
        line-height: 38.75px;
        hyphens: none;
    }
    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
      hyphens: none;
    }
}


/* Lists */

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

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 {
  border-left: 2px solid;
  margin: 0 0 1.4rem;
  padding-left: 0.7rem;
}

/* Horizontal rules */

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

/* Image alt text */

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

::selection {
    color: #ffffff;
    background: #185071;
}
::-moz-selection {
    color: #ffffff;
    background: #185071;
}
button,
.button,
.hs-button {
    cursor: pointer;
    display: inline-block;
    text-align: center;
    transition: all 0.15s linear;
    white-space: normal;
    font-size: 16px;
    line-height: 16px;
    padding: 18px;
    font-weight: 600!important;
}
button:hover,
.button:hover,
.hs-button:hover {
    font-weight: 600;
}

@media (min-width: 1380px) { 
    button,
    .button,
    .hs-button {
      font-size: 18px;
      line-height: 18px;
      padding: 18px 38px;
    }
}

button:disabled,
.button: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;
}
/* Labels */

form label {
  display: block;
  /* font-size: 0.875rem;
  margin-bottom: 0.35rem; */
}

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

/* 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: 0.875rem;
  padding: 0.7rem; */
  width: 100%;
  font-weight: 300;
}
form input[type=search] {
	width: 100%;
}

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

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: 0.5rem;
  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: 0.875rem;
  margin: 0 0 1.4rem;
}

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

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

/* Search field input */

.hs-search-field {
	position: relative;
}
.hs-search-field::before {
	content: '';
	position: absolute;
	top: 12px;
	left: 1rem;

	width: 1.25rem;
	height: 1.5rem;

	background-size: contain;
	background-repeat: no-repeat;
	background-position: 50% 50%;
	background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="23.108" height="23.108" viewBox="0 0 23.108 23.108"><path id="magnifying-glass-light" d="M48.626,47.667,42.81,41.851a9.752,9.752,0,1,0-.96.96l5.816,5.816a.679.679,0,0,0,.96-.96Zm-21.534-12.2a8.376,8.376,0,1,1,8.376,8.376A8.376,8.376,0,0,1,27.093,35.469Z" transform="translate(-25.7 -25.701)" fill="%2300587d"/></svg>');
	z-index: 1;
}

.hs-search-field__input {
	position: relative;
	padding: 15px!important;
	padding-left: 3rem!important;
	font-size: 16px;
}
.hs-search-field__input:focus {
	outline-style: none!important;
}

@media (min-width: 992px) { 
	.hs-search-field__input {
		font-size: 20px;
	}

	form input[type=search],
	.hs-search-field {
		width: 50%;
	}
}

button.hs-search-field__button {
  display: none;
}

/* Search field */

.hs-search-field--open .hs-search-field__suggestions {
  position: absolute;
  width: 100%;
  padding: 1rem;
  border: none;
  z-index: 1;
  background-color: #ffffff;
}

/* Captcha */

.grecaptcha-badge {
  margin: 0 auto;
}



.hbspt-form {
    margin: 0 auto;
}
.module__media-text .hbspt-form {
  margin: 0 -0.5rem;
}
.hbspt-form form {
    display: flex;
    flex-wrap: wrap;
}
.hbspt-form form > * {
    width: 100%;
}
.hbspt-form fieldset {
    max-width: unset !important;
}
.hbspt-form fieldset.form-columns-1 .hs-input {
    width: 100% !important;
}
.hbspt-form fieldset .input {
    width: 100%;
}
.hbspt-form fieldset .hs-form-field {
    width: 100%;
    float: none !important;
    padding: 0 0.5rem;
}
.hbspt-form ul {
    padding: 0;
    margin: 0;
    list-style: none;
}
.hbspt-form input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]):not([type="file"]),
.hbspt-form select,
.hbspt-form textarea {
    width: 100%;
    padding: 0.5rem 1rem;
    color: #2b2e34;
    font-weight: 300;
    border: 0.5px solid #afafaf;
    border-radius: 0.3rem;
    background: #fff;
}
.hbspt-form input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]):not([type="file"])::-webkit-input-placeholder,
.hbspt-form select::-webkit-input-placeholder,
.hbspt-form textarea::-webkit-input-placeholder {
    color: #afafaf;
    opacity: 1;
}
.hbspt-form input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]):not([type="file"])::-moz-placeholder,
.hbspt-form select::-moz-placeholder,
.hbspt-form textarea::-moz-placeholder {
    color: #afafaf;
    opacity: 1;
}
.hbspt-form input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]):not([type="file"]):-ms-input-placeholder,
.hbspt-form select:-ms-input-placeholder,
.hbspt-form textarea:-ms-input-placeholder {
    color: #afafaf;
    opacity: 1;
}
.hbspt-form input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]):not([type="file"]):-moz-placeholder,
.hbspt-form select:-moz-placeholder,
.hbspt-form textarea:-moz-placeholder {
    color: #afafaf;
    opacity: 1;
}
.hbspt-form input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]):not([type="file"]) {
    width: 100%;
}
.hbspt-form textarea {
    max-width: 100%;
}
.hbspt-form .hs-fieldtype-select .input {
    position: relative;
}
.hbspt-form .hs-fieldtype-select .input::after {
    content: "";
    pointer-events: none;
    width: 0;
    height: 0;
    position: absolute;
    top: 48%;
    right: 13px;
    border-width: 5px 5px 0 5px;
    border-style: solid;
    border-color: #afafaf transparent transparent transparent;
}
.hbspt-form select {
    margin: 0;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
}
.hbspt-form select::-ms-expand {
    display: none;
}
.hbspt-form select::-ms-value {
    color: currentColor;
    background: none;
}
.hbspt-form input[type="checkbox"],
.hbspt-form input[type="radio"] {
    display: none;
}
.hbspt-form input[type="checkbox"] + span,
.hbspt-form input[type="radio"] + span {
    user-select: none;
    padding-left: 3px;
    margin-bottom: 5px;
    line-height: normal;
    color: currentColor;
    font-weight: 300;
    cursor: pointer;
}
.hbspt-form input[type="checkbox"] + span::before,
.hbspt-form input[type="radio"] + span::before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    position: absolute;
    top: 4px;
    margin-right: 0.75rem;
    border: 1px solid #afafaf;
    border-radius: 4px;
    background-color: #fff;
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: 14px 11px;
}
.hbspt-form input[type="radio"] + span::before {
    border-radius: 1rem;
}
.hbspt-form input[type="checkbox"]:checked + span,
.hbspt-form input[type="radio"]:checked + span {
    color: #00597e;
}
.hbspt-form input[type="checkbox"]:checked + span::before {
    border-color: #00597e;
    background-image: url("../images/svg/checkbox-tick.svg");
}
.hbspt-form input[type="radio"]:checked + span::before {
    border-color: #00597e;
    background-image: url("../images/svg/radio-tick.svg");
    background-size: 12px 12px;
}
.hbspt-form .hs-form-radio li:not(:last-child),
.hbspt-form .hs-form-checkbox li:not(:last-child) {
    margin-right: 0.8rem;
}
.hbspt-form .hs-fieldtype-radio ul {
    display: flex;
    flex-flow: row wrap;
}
.hbspt-form .hs-fieldtype-radio ul li {
    margin-right: 2rem;
}
.hbspt-form .form-columns-1,
.hbspt-form .form-columns-2 {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: flex-start;
    margin-bottom: 0.5rem;
}
.hbspt-form label {
    display: inline-block;
    margin: 0 0 0.35rem;
    color: #2b2e34;
    font-weight: 400;
}
.hbspt-form .hs-input {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    margin: 0 0 0.25rem;
}
.hbspt-form .hs-input:focus {
  outline: none;
}
@media (max-width: 399px) {
    .hbspt-form .hs-input {
        width: 100% !important;
    }
}
.hbspt-form .hs_submit,
.hbspt-form .hs-submit {
    padding: 0;
    margin: 0 0.5rem;
}
.hbspt-form [type="submit"] {
    display: inline-block;
    padding: 0.9rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    color: #2b2e34;
    border: 2px solid #fffa00;
    border-radius: 0.25rem;
    background-color: #fffa00;
    cursor: pointer;
    transition: 0.2s;
    font-size: 0.8rem;
    line-height: 1;
    position: relative;
}
@media (min-width: 1380px) {
    .hbspt-form [type="submit"] {
        padding: 0.9rem 1.9rem;
        font-size: 0.9rem;
        line-height: 1;
    }
}
.hbspt-form [type="submit"]:hover {
    color: #fff;
    border-color: #00597e;
    background-color: #00597e;
}
.hbspt-form .legal-consent-container .hs-richtext {
    font-size: 14px;
    line-height: 1.5;
}
.hbspt-form .legal-consent-container li.hs-form-booleancheckbox {
    position: relative;
}
.hbspt-form .legal-consent-container .hs-form-booleancheckbox-display {
    margin-bottom: 0;
}
.hbspt-form .legal-consent-container .hs-form-booleancheckbox-display > span {
    margin-left: 0;
    margin-bottom: 5px;
}
.hbspt-form .legal-consent-container .hs-form-booleancheckbox-display p {
    margin: 0;
    display: inline-block;
    font-size: 14px;
    line-height: 1.4;
    height: auto;
    padding-left: 1.5rem;
    margin-top: 0.25rem;
}
.hbspt-form .legal-consent-container .hs-form-booleancheckbox-display .hs-form-required {
    display: none;
    position: absolute;
    right: 0;
    bottom: 0;
    font-size: 14px;
    line-height: 1.4;
}
.hbspt-form .hs-error-msg {
    color: #f68c7a;
    font-size: 0.7rem;
    line-height: 1;
}
.hbspt-form .hs-richtext {
    padding: 0 0.5rem;
}
/* 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
*/

.main-header {
    height: 115px;
    position: relative;
}
@media (max-width: 1199px) {
    .main-header {
        height: 83px;
    }
}
nav ul {
    padding: 0;
    margin: 0;
    list-style: none;
}
nav li {
    display: inline-block;
}
.main-header__fixed {
    position: fixed;
    z-index: 50;
    top: 0;
    right: 0;
    left: 0;
    background-color: #fff;
    box-shadow: 0 3px 20px 3px rgba(43, 46, 52, 0.075);
}
.main-header__desktop-wrapper {
    display: none;
}
@media (min-width: 1200px) {
    .main-header__desktop-wrapper {
        display: flex;
        align-items: center;
        position: relative;
    }
}
@media (min-width: 1380px) {
    .main-header__desktop-wrapper {
        padding-left: 3.5rem;
    }
}
@media (min-width: 1200px) {
    .main-header__desktop-wrapper {
        padding-left: 7.5rem;
    }
}
.main-header__fixed-top {
    margin-left: auto;
}
.main-header__container {
    padding: 0 0.7rem;
    position: relative;
}
@media (max-width: 1199px) {
    .main-header__container {
        text-align: right;
        display: flex;
        justify-content: flex-end;
        padding: 1.1rem 0 1.55rem;
        padding-right: 0.75rem;
    }
}
@media (min-width: 1200px) {
    .main-header__container {
        padding: 0 1rem;
    }
}
.main-header .c-btn {
    padding-top: 0.6rem;
    padding-bottom: 0.6rem;
}
@media (min-width: 1200px) {
    .main-header .c-btn {
        padding-right: 1rem;
        padding-left: 1rem;
    }
}
@media (min-width: 1680px) {
    .main-header .c-btn {
        padding-right: 1.6rem;
        padding-left: 1.6rem;
    }
}
.main-header__mobile-open {
    display: inline-block;
    width: 2.5rem;
    height: 2rem;
    position: relative;
    top: -0.15rem;
    border: none;
    background: transparent;
    cursor: pointer;
}
.main-header__mobile-open:hover, 
.main-header__mobile-open:focus {
    background-color: transparent;
    border: none;
}
@media (min-width: 1200px) {
    .main-header__mobile-open {
        display: none;
    }
}
.main-header__mobile-open span {
    width: calc(100% - 0.5rem);
    height: 2px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background-color: #000;
}
.main-header__mobile-open span:first-child {
    top: 0.6rem;
}
.main-header__mobile-open span:nth-child(2) {
    top: 1.2rem;
}
.main-header__mobile-open span:last-child {
    top: 1.8rem;
}
.main-header__mobile-close {
    display: inline-block;
    width: 1.5rem;
    height: 1.5rem;
    padding: 0;
    position: absolute;
    z-index: 10;
    top: 1.4rem;
    right: 1rem;
    border: none;
    background: transparent;
    cursor: pointer;
}
.main-header__mobile-close:hover, 
.main-header__mobile-close:focus {
    background-color: transparent;
    border: none;
}
.main-header__mobile-close::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 1.5rem;
    height: 1.5rem;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="33.677" height="33.677"><g fill="none" stroke="%232b2e34" stroke-linecap="round" stroke-width="2.6" data-name="Gruppe 2443"><path d="m1.838 31.838 30-30" data-name="Linie 64"/><path d="m1.838 1.838 30 30" data-name="Linie 65"/></g></svg>');
}
.main-header__mobile-close * {
    pointer-events: none;
}
.main-header .c-btn--primary {
    color: #2b2e34;
}
.main-header__logo {
    display: inline-block !important;
    max-width: 80px;
    max-height: 80px;
    position: absolute;
    z-index: 5;
    top: 0.5rem;
    left: 1rem;
}
@media (min-width: 1200px) {
    .main-header__logo {
        max-width: 150px;
        max-height: 150px;
        top: 0.5rem;
    }
}
.main-header__logo::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    border-radius: 50%;
    box-shadow: 0 9px 29px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transition: opacity 0.2s;
}
@media (min-width: 1200px) {
    .main-header__logo::before {
        width: 150px;
        height: 150px;
    }
}
.main-header__logo:hover::before {
    opacity: 1;
}
.main-header__logo-wrapper--desktop {
    display: inline-block;
}
.main-header__logo-wrapper--desktop img,
.main-header__logo-wrapper--desktop svg {
    width: 80px !important;
}
@media (min-width: 1200px) {
    .main-header__logo-wrapper--desktop img,
    .main-header__logo-wrapper--desktop svg {
        width: 150px !important;
    }
}
.main-header__logo img,
.main-header__logo svg {
    pointer-events: none;
    display: block;
    width: 100%;
    height: auto;
    max-height: 4rem;
}
@media (min-width: 1200px) {
    .main-header__logo img,
    .main-header__logo svg {
        max-height: 150px;
    }
}
@media (min-width: 1200px) {
    .main-nav {
        display: flex;
        flex-basis: 0;
        flex-grow: 1;
        max-width: 100%;
        padding-right: 1rem;
        padding-left: 0.5rem;
    }
}
.main-nav > .menu > .menu-item.current_page_item > a {
    font-weight: 600;
}
.main-nav > .menu > .menu-item.open > a {
    text-decoration-color: #2b2e34;
}
.main-nav > .menu > .menu-item.menu-item-has-children {
    position: relative;
}
.main-nav > .menu > .menu-item > a {
    padding: 0.6rem 0.75rem;
    letter-spacing: 0;
    font-weight: 400;
    font-size: 0.9rem;
    line-height: 2;
}
@media (min-width: 1200px) {
    .main-nav > .menu > .menu-item > a {
        padding: 1.2rem 0.3rem 0.75rem;
    }
}
@media (min-width: 1200px) {
    .main-nav > .menu > .menu-item > a {
        padding-right: 0.5rem;
        padding-left: 0.5rem;
    }
}
@media (min-width: 1380px) {
    .main-nav > .menu > .menu-item > a {
        padding-right: 1rem;
        padding-left: 1rem;
    }
}
.main-nav a {
    display: inline-block;
    font-weight: 300;
    color: #2b2e34;
    text-decoration: 1px underline transparent;
    text-underline-offset: 2px;
    transition: 0.2s;
    font-size: 14px;
}
@media (min-width: 1380px) {
    .main-nav a {
        font-size: 16px;
    }
}
.main-nav a:hover {
    text-decoration-color: #2b2e34;
}
.main-nav .hs-menu-wrapper,
.main-nav .sub-menu {
    display: flex;
    flex-direction: column;
}
.main-nav .menu-item-has-children.open .mega-menu-wrapper,
.main-nav .menu-item-has-children.open .mega-menu-wrapper {
    pointer-events: auto;
    opacity: 1;
    visibility: visible;
    z-index: 1;
}
.main-nav .mega-menu-wrapper {
    position: absolute;
    z-index: 0;
    top: 100%;
    left: -1rem;
    background-color: #fff;
    pointer-events: none;
    display: flex;
    justify-content: center;
    width: auto;
    padding: 1.5rem 1rem 1.5rem;
    font-size: 0.7rem;
    line-height: 1.2;
    hyphens: auto;
    opacity: 0;
    visibility: hidden;
    box-shadow: 0 3px 20px 3px rgba(43, 46, 52, 0.075);
    transition: opacity 0.2s;
}
@media (min-width: 1380px) {
    .main-nav .mega-menu-wrapper {
        padding: 1.5rem 1rem 1.5rem;
        left: -1rem;
        font-size: 1.6rem;
        hyphens: unset;
        z-index: 49;
    }
}
.main-nav .mega-menu-wrapper a {
    letter-spacing: normal;
}
.main-nav .sub-menu-text,
.main-nav .sub-menu-text a {
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.2;
}
.main-nav .sub-menu-text span {
    display: inline-block;
}
.main-nav .mega-menu-wrapper .hs-menu-wrapper .hs-menu-item:not(:last-child),
.main-nav .mega-menu-wrapper .sub-menu .menu-item:not(:last-child),
.main-nav .sub-menu-text {
    margin-bottom: 0.5rem;
}
.main-nav .mega-menu-wrapper .hs-menu-wrapper a,
.main-nav .mega-menu-wrapper .sub-menu a,
.main-nav .sub-menu-text > a,
.main-nav .sub-menu-text > span {
    padding: 0.25rem 0.5rem;
}
@media (min-width: 1380px) {
    .main-nav .mega-menu-wrapper .hs-menu-wrapper a,
    .main-nav .mega-menu-wrapper .sub-menu a,
    .main-nav .sub-menu-text > a,
    .main-nav .sub-menu-text > span {
        padding: 0.25rem 0.65rem;
    }
}
@media (min-width: 1680px) {
    .main-nav .mega-menu-wrapper .hs-menu-wrapper a,
    .main-nav .mega-menu-wrapper .sub-menu a,
    .main-nav .sub-menu-text > a,
    .main-nav .sub-menu-text > span {
        padding: 0.25rem 1rem;
    }
}
@media (min-width: 1200px) {
    .sub-menu-spacing {
        height: 42.4px;
    }
}
.main-nav .mega-menu-wrapper .sub-menu-wrapper {
    flex: 0 0 25%;
    min-width: 160px;
}
@media (min-width: 1380px) {
    .main-nav .mega-menu-wrapper .sub-menu-wrapper {
        min-width: 210px;
    }
}
@media (min-width: 1680px) {
    .main-nav .mega-menu-wrapper .sub-menu-wrapper {
        min-width: 250px;
    }
}
.main-nav .columns-count-1 .sub-menu-wrapper {
    flex: 0 0 100%;
}
/* .main-nav .columns-count-2 .sub-menu-wrapper {
    flex: 0 0 50%;
} */

.wp-block-button__link {
    display: inline-block;
    font-weight: 700;
    text-align: center;
    text-decoration: none;

    color: #2B2E34;
    border: 2px solid #FEF104;
    border-radius: 5px;
    background-color: #FEF104;
    cursor: pointer;
}
.is-style-fill-secondary .wp-block-button__link {
    color: #2B2E34;

    border-color: #a5d6e3;
    background-color: #a5d6e3;
}
.wp-block-button__link:hover,
.is-style-fill-secondary .wp-block-button__link:hover {            
    -webkit-box-shadow: 0px 0px 15px 5px rgba(0,0,0,0.2); 
    box-shadow: 0px 0px 15px 5px rgba(0,0,0,0.2);
}
.main-header__buttons {
    display: flex;
    flex-flow: column wrap;
    align-items: flex-end;
}
@media (min-width: 1380px) {
    .main-header__buttons {
        flex-flow: row wrap;
    }
}
.main-header-button {
    margin-bottom: 0.25rem !important;
}
@media (min-width: 1380px) {
    .main-header-button {
        margin-bottom: 0 !important;
    }
}
.main-header-button__desktop {
    display: none;
    margin-left: auto;
}
@media (min-width: 1200px) {
    .main-header-button__desktop {
        margin-left: 2rem;
    }
}
@media (min-width: 1380px) {
    .main-header-button__desktop {
        display: block;
        margin-top: .5rem !important;
    }
}
@media (min-width: 1200px) {
    .main-header-button {
        margin-top: 0;
    }
}
.main-header-button > .wp-block-button__link {
    font-size: 0.7rem;
    line-height: 1;
    padding: 0.9rem;
    font-weight: 700;
}
@media (min-width: 1024px) {
    .main-header-button > .wp-block-button__link {
        padding: 0.7rem 1.2rem;
    }
}
.main-header-button:last-child {
    margin-left: 0.25rem;
}
.main-header__slogan {
    display: none;
    font-weight: 900;
}
@media (min-width: 1200px) {
    .main-header__slogan {
        display: block;
        padding-left: 1rem;
        border-left: 1.5px solid #e1e1e1;
    }
}
.main-header__mobile {
    display: none;
    width: 100vw;
    position: fixed;
    top: 0;
    right: 0;
    overflow: hidden;
    background-color: #fff;
}
@media (max-width: 1199px) {
    .main-header__mobile {
        display: block;
    }
}
@media (min-width: 992px) {
    .main-header__mobile {
        max-width: 414px;
    }
}
.main-header__mobile-buttons {
    display: flex;
    flex-wrap: wrap;
    width: calc(100% + 0.4rem);
    position: absolute;
    z-index: 15;
    top: 0;
    left: 0;
    margin: 0 -0.2rem;
    opacity: 0;
    transition: opacity 0.2s;
}
.main-header__mobile-buttons .c-btn {
    flex-grow: 1;
    padding: 0.9rem 0.5rem;
    margin: 0 0.2rem;
    text-align: center;
}
.main-header__mobile-buttons .c-btn:hover {
    box-shadow: none;
}
.main-header__mobile-buttons .c-btn:hover.c-btn--primary {
    background-color: #fffa00;
}
.main-header__mobile-buttons .c-btn:hover:after {
    opacity: 0;
}
.main-header__mobile-buttons .c-btn:last-child {
    padding: 0.9rem;
}
.main-header__mobile-icons {
    position: relative;
    display: none;
    align-items: center;
    justify-content: flex-end;
    margin-right: 0.75rem;
    z-index: 999;
}
@media (max-width: 1379px) {
    .main-header__mobile-icons {
        position: absolute;
        display: flex;
        top: 50%;
        right: 0.25rem;
        transform: translateY(-50%);
        margin-top: 1.25rem;
    }
}
@media (max-width: 1199px) {
    .main-header__mobile-icons {
        position: relative;
        top: unset;
        right: unset;
        transform: unset;
        margin-top: 0;
    }
}
.main-header__mobile-icon {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    margin-left: 0.5rem;
}
/* HS EXTRA */
.main-header__mobile-icon .hs_cos_wrapper_type_image {
    display: flex;
    justify-content: center;
    align-items: center;
}
/* HS EXTRA - ENDE */
.main-header__mobile-icon svg,
.main-header__mobile-icon img {
    width: 1.5rem!important;
    height: 1.5rem;
    aspect-ratio: 1 / 1;
}
.main-header__mobile-icon__text {
    display: none;
    max-width: 3.8rem;
    margin-right: 0.4rem;
    color: #2b2e34;
    font-weight: 600;
    text-align: right;
    font-size: 0.65rem;
    line-height: 1;
}
@media (min-width: 370px) {
    .main-header__mobile-icon__text {
        display: inline-block;
    }
}
.main-header .mega-menu-header {
    pointer-events: none;
    width: 100%;
    min-height: 6.1rem;
    padding: 1.35rem 1.2rem 0;
    position: absolute;
    z-index: 10;
    top: 4.25rem;
    left: 0;
    opacity: 0;
    transition: opacity 0.6s;
}
/* HS EXTRA - Abweichung */
.main-header .mega-menu-header__link {
    margin-top: 1.3rem;
    text-align: left;
}
.main-header .mega-menu-header__link a {
    display: inline-block;
    font-size: 1rem;
    line-height: 1.2;
    font-weight: 700;
}
/* HS EXTRA - ENDE */
.main-header .mega-menu-footer {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    position: absolute;
    bottom: 0;
    padding: 1.6rem 1rem;
    background-color: #fff;
}
.main-header .mega-menu-footer::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 1rem;
    width: calc(100% - 2rem);
    height: 0.1rem;
    background-color: #f5f5f5;
}
.main-header .mega-menu-footer .main-header__language--mobile {
    margin-bottom: 1rem;
}
.main-header .mega-menu-footer .main-header__buttons {
    align-items: flex-start;
}
.main-header .mega-menu-footer .main-header__buttons .main-header-button {
    margin-bottom: 0.5rem !important;
}
.main-header .mega-menu-footer .main-header__buttons .main-header-button:last-child {
    margin-left: 0;
}
.main-header .mobile-submenu-back {
    display: flex;
    align-items: center;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
}
.main-header .mobile-submenu-back * {
    pointer-events: none;
}
.main-header .mobile-submenu-back__icon {
    display: inline-block;
    width: 1.5rem;
    height: 1.5rem;
    position: relative;
    margin-right: 0.8rem;
}
.main-header .mobile-submenu-back__icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1.5rem;
    height: 1.5rem;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="22.439" height="18.7"><path fill="%2300587d" d="M.274 8.689 8.689.274a.935.935 0 0 1 1.322 1.322L3.192 8.414h18.312a.935.935 0 0 1 0 1.87H3.192l6.819 6.818a.936.936 0 0 1-1.323 1.323L.273 10.01a.935.935 0 0 1 0-1.323Z"/></svg>');
}
.main-header .mobile-submenu-back__icon svg {
    width: 1.15rem;
    height: 1.15rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.main-header .mobile-submenu-back__icon svg * {
    fill: #fff;
}
.main-header .mobile-submenu-back__label {
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.2;
    color: #2b2e34;
}
.main-header .main-nav-mobile {
    width: 100%;
    position: absolute;
    top: 0;
    bottom: 2.5rem;
    left: 0;
    text-align: left;
    overflow-x: hidden;
    overflow-y: auto;
}
@media (max-width: 1023px) and (orientation: landscape) {
    .main-header .main-nav-mobile {
        bottom: 2.5rem;
    }
}
.main-header .main-nav-mobile a {
    display: inline-block;
    color: #2b2e34;
    text-decoration: none;
}
.main-header .main-nav-mobile .hs-menu-item,
.main-header .main-nav-mobile .menu-item {
    display: block;
}
.main-header .main-nav-mobile .menu-item-has-children > a {
    position: relative;
}
.main-header .main-nav-mobile .menu-item-has-children > a:before {
    content: "";
    display: block;
    width: 11px;
    height: 11px;
    position: absolute;
    top: 52%;
    right: 10px;
    transform: translateY(-50%);
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="8.278" height="13.729"><path fill="none" stroke="%232b2e34" stroke-linecap="round" stroke-width="2" d="m1.414 1.414 5.45 5.45-5.45 5.451" data-name="Pfad 2206"/></svg>');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}
.main-header .main-nav-mobile > .menu {
    padding-top: 6.5rem;
    padding-bottom: 2.5rem;
}
@media (min-width: 480px) {
    .main-header .main-nav-mobile > .menu {
        padding-top: 6.2rem;
    }
}
.main-header .main-nav-mobile .menu > .hs-menu-item,
.main-header .main-nav-mobile .menu > .menu-item {
    font-size: 1rem;
    line-height: 1.2;
}
.main-header .main-nav-mobile .menu > .hs-menu-item:not(:last-child),
.main-header .main-nav-mobile .menu > .menu-item:not(:last-child) {
    margin-bottom: 0.5rem;
}
.main-header .main-nav-mobile .menu > .hs-menu-item > a,
.main-header .main-nav-mobile .menu > .menu-item > a {
    padding: 0.55rem 1.2rem;
    font-weight: 600;
}
.main-header .main-nav-mobile .mega-menu-wrapper {
    width: 100%;
    position: absolute;
    top: 11rem;
    bottom: 0;
    left: 0;
    height: calc(100% - 9rem - 256px);
    font-size: 0.9rem;
    line-height: 1.2;
}
.main-header .main-nav-mobile .sub-menu-wrapper {
    padding: 0 0.55rem;
}
.main-header .main-nav-mobile .sub-menu-wrapper:not(:last-child) {
    margin-bottom: 0.95rem;
}
.main-header .main-nav-mobile .sub-menu-wrapper .hs-menu-item:not(:last-child),
.main-header .main-nav-mobile .sub-menu-wrapper .menu-item:not(:last-child) {
    margin-bottom: 0.45rem;
}
.main-header .main-nav-mobile .sub-menu-text {
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.2;
}
.main-header .main-nav-mobile .sub-menu-text,
.main-header .main-nav-mobile .sub-menu-text a {
    font-weight: 700;
}
.main-header .main-nav-mobile .sub-menu-text *,
.main-header .main-nav-mobile .sub-menu-wrapper .hs-menu-item a,
.main-header .main-nav-mobile .sub-menu-wrapper .menu-item a {
    padding: 0.35rem 0.7rem;
}
.main-header .main-nav-mobile .sub-menu-wrapper .hs-menu-item a,
.main-header .main-nav-mobile .sub-menu-wrapper .menu-item a {
    letter-spacing: -0.01rem;
}
.main-header .main-nav-mobile .mega-menu-wrapper {
    pointer-events: none;
    overflow: hidden;
}
.main-header .main-nav-mobile .mega-menu-wrapper li,
.main-header .main-nav-mobile .mega-menu-wrapper .sub-menu-text {
    transform: translateX(110%);
    transition: transform 0.6s, opacity 0.3s;
}
.main-header .main-nav-mobile .mega-menu-wrapper.active li,
.main-header .main-nav-mobile .mega-menu-wrapper.active .sub-menu-text {
    transform: translateX(0);
}
.main-header .main-nav-mobile > .menu > .menu-item > a {
    transform: translateY(-5px);
    opacity: 0;
    transition: transform 0.3s, opacity 0.3s;
}
.main-header .main-nav-mobile > .menu > .menu-item > a.revealed {
    transform: translateY(0);
    opacity: 1;
}
.main-header .main-nav-mobile.visible {
    overflow-x: visible;
    overflow-y: visible;
}
.main-header .main-nav-mobile.visible > .menu > .hs-menu-item > a,
.main-header .main-nav-mobile.visible > .menu > .menu-item > a {
    transform: translateX(-100%);
}
.main-header__mobile {
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s;
}
.main-header__mobile .hs-menu-wrapper ul {
    display: unset;
}
.main-header__mobile.open {
    pointer-events: auto;
    z-index: 4;
    opacity: 1;
}
.main-header__mobile.open .mega-menu-wrapper.active {
    pointer-events: auto;
    overflow-x: hidden;
    overflow-y: auto;
}
.main-header__mobile.open .main-header__mobile-buttons {
    opacity: 1;
}
.main-header__mobile.open.second .mega-menu-header {
    pointer-events: auto;
    opacity: 1;
}
.main-header__mobile.open.second .mega-menu-wrapper.active .sub-menu-text,
.main-header__mobile.open.second .mega-menu-wrapper.active li {
    transform: translateY(0);
    opacity: 1;
}
.main-header__mobile.second:not(.open) .mega-menu-wrapper.active .sub-menu-text,
.main-header__mobile.second:not(.open) .mega-menu-wrapper.active li {
    transform: translateY(-5px);
    opacity: 0;
    transition: none !important;
}
.main-header__meta {
    display: none;
}
@media (min-width: 1200px) {
    .main-header__meta {
        display: flex;
        align-items: center;
        justify-content: end;
        padding: 1rem 0 0;
    }
}
.main-header__language--mobile {
    display: block;
    margin-left: 0.75rem;
    margin-bottom: 2rem;
}
@media (min-width: 1200px) {
    .main-header__language--mobile {
        display: none;
    }
}
.main-header__language--desktop {
    display: none;
}
@media (min-width: 1200px) {
    .main-header__language--desktop {
        display: block; 
        margin-right: 1rem;
    }
}
/* HS EXTRA */
.main-header__language--row {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    padding-left: 1.15rem;
}
.main-header__language .hs_cos_wrapper_type_language_switcher {
    display: flex;
}
.main-header__language .wpml-ls-legacy-dropdown-click {
    width: unset;
}
.main-header__language .wpml-ls-legacy-dropdown-click:hover,
.main-header__language .wpml-ls-legacy-dropdown-click:focus {
    background-color: transparent !important;
}
.main-header__language .wpml-ls-legacy-dropdown-click .wpml-ls-item-toggle {
    padding-left: calc(10px + 0.4rem);
    padding-right: calc(10px + 0.3rem);
    margin-right: 1rem;
}
.main-header__language .wpml-ls-legacy-dropdown-click .wpml-ls-item-toggle span {
    padding: 0 0.5rem;
}
.main-header__language .wpml-ls-legacy-dropdown-click a,
.main-header__language .main-header__language-switcher--label-current,
.main-header__language .lang_list_class .lang_switcher_link {
    display: inline-block;
    border: 0;
    color: #2b2e34 !important;
    font-weight: 400;
    padding: 0.65rem 0.2rem;
}
.main-header__language .wpml-ls-legacy-dropdown-click a span,
.main-header__language .main-header__language-switcher--label-current,
.main-header__language .lang_list_class .lang_switcher_link {
    font-size: 0.9rem;
    line-height: 1;
}
/* HS EXTRA */
.main-header__language .main-header__language--row::after {
    content: "";
    position: absolute;
    border: 0;
    border-radius: 0;
    width: 0.9rem;
    height: 0.9rem;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" fill="none"><path stroke="%232B2E34" stroke-linecap="round" stroke-linejoin="round" d="M10 1a13.77 13.77 0 0 1 3.6 9 13.77 13.77 0 0 1-3.6 9m0-18a13.77 13.77 0 0 0-3.6 9 13.77 13.77 0 0 0 3.6 9m0-18a9 9 0 1 0 0 18m0-18a9 9 0 0 1 0 18M1.45 7.3h17.1m-17.1 5.4h17.1"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}
.main-header__language .globe_class {
    border: 0;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="8" fill="none"><path fill="%232B2E34" d="M10.363.363a.9.9 0 0 1 1.274 1.274L6 7.272.363 1.637A.9.9 0 0 1 1.637.363L6 4.726 10.363.363Z"/></svg>');
    background-size: 16px 9px;
    background-repeat: no-repeat;
    background-position: center center;
}
.main-header__language .wpml-ls-legacy-dropdown-click .wpml-ls-sub-menu,
.main-header__language .lang_list_class {
    min-width: 7.5rem;
    padding: 0.6rem;
    border-top: 0;
    background-color: #fff;
    -webkit-box-shadow: 0px 0px 20px 1px rgba(0, 0, 0, 0.125);
    -moz-box-shadow: 0px 0px 20px 1px rgba(0, 0, 0, 0.125);
    box-shadow: 0px 0px 20px 1px rgba(0, 0, 0, 0.125);
}
.main-header__language .wpml-ls-legacy-dropdown-click .wpml-ls-sub-menu .wpml-ls-link,
.main-header__language .lang_list_class .lang_switcher_link {
    background-color: transparent;
    text-decoration: 1px underline transparent;
    text-underline-offset: 3px;
}
.lang_list_class::before,
.lang_list_class::after {
    display: none!important;
}

.lang_list_class li {
    border: none!important;
    padding: 0!important;
}

.main-header__language .wpml-ls-legacy-dropdown-click .wpml-ls-sub-menu .wpml-ls-link:hover,
.main-header__language .wpml-ls-legacy-dropdown-click .wpml-ls-sub-menu .wpml-ls-link:focus,
.main-header__language .lang_list_class .lang_switcher_link:hover,
.main-header__language .lang_list_class .lang_switcher_link:focus {
    background-color: transparent;
    text-decoration-color: #2b2e34;
}
.main-header__language .wpml-ls-legacy-list-vertical {
    width: 100%;
    border: none;
}
.wpml-ls-statics-shortcode_actions .wpml-ls-current-language > a {
    color: #00597e;
}
/* HS EXTRA - ENDE */
/* Footer DND sections */

.footer {
	text-align: left;
}
.footer .dnd-section>.row-fluid {
	padding: 0;
}

.footer__col {
    margin: 0 0 2.5rem;
}
.footer__col.col-lg-3:first-child {
    flex-basis: 100%;
    max-width: 100%;
}

.footer__top {
    padding: 3rem 0;
    background-color: rgba(0, 88, 125, 0.05);

    font-size: 16px;
    line-height: 21px;
}
.footer__top a:hover {
    color: $text-color-base;
    text-decoration: underline;
}

.footer__heading {
    margin: 0 0 1rem;
    letter-spacing: 0;
    font-weight: 600;

    font-size: 16px;
    line-height: 21px;
}
.footer__heading.align-center {
    text-align: center;
}

.footer__menu li {
    display: block;

    margin: 0 0 0.8rem;
}
.footer__menu li :last-child {
    margin: 0;
}

.footer__content {
    text-align: center;

    padding-bottom: 2.5rem;
    border-bottom: 3px solid #ffffff;
}
.footer__content p {
    margin: 0 0 0.8rem;
}
.footer__content p:last-child {
    margin: 0;
}

.footer__bottom {
    padding: 1.25rem 0;

    color: #7F8080;

    border-right: 0;
    border-left: 0;
}
.footer__bottom .col {
    display: flex;
    align-items: center;
    justify-content: center;
}


.footer__quick-links {
    margin-bottom: 1rem;

    font-size: 14px;
    line-height: 21px;
}
.footer__quick-links li {
    margin: 0 0.35rem;
}
.footer__quick-links a {
    color: #7F8080;
}

.footer__copy {
    text-align: center;
    display: flex;
    justify-content: center;

    font-size: 14px;
    line-height: 21px;
}
.footer .footer__copy span {
    color: #7F8080;
}
.footer__copy strong a {
    font-weight: 600;
}
.footer__copy strong a:hover {
    color: #185071;
}

.social-links__wrapper {
    padding: 0;
    margin: 0;
    list-style: none;
}
.main-footer__bottom .social-links__wrapper {
    display: flex;
    flex-flow: row wrap;
}

.social-links__single {
    margin: 0 .25rem;
}
.social-links__link {
    display: flex;
    margin-bottom: .25rem;
}
.social-links__icon {
    display: inline-block;

    width: 20px;
    height: 20px;

    text-align: center;
}
.social-links__icon svg,
.social-links__icon img {
    max-width: 100%;
    max-height: 100%;
}
.social-links__text {
    display: inline-block;

    vertical-align: middle;
}
.footer__socials ul li {
    display: flex;
    justify-content: center;
    margin: 0 0.25rem;
}
.footer__socials ul li a {
    display: inline-block;

    vertical-align: middle;
    color: #7F8080;
    font-size: 14px; 
    line-height: 21px;
}


@media (min-width: 480px) { 
    .footer__copy {
        text-align: right;
        justify-content: flex-end;
    }
}
@media (min-width: 992px) { 
    .footer__bottom .row {
        justify-content: space-between;
    }
    .footer__bottom .col {
        margin: 0;
        flex-basis: auto;
        max-width: unset;
    }
    .footer__quick-links {
        margin-bottom: 0;
    }
    .footer__quick-links li {
        margin:0;
    }			
    .footer__quick-links li + li {
        margin-left: 1rem;
    }
}
@media (min-width: 1024px) { 
    .footer .row {
        justify-content: space-between;
    }
    .footer__heading {
        margin: 0 0 2.25rem;
    }
}
@media (min-width: 1380px) { 
    .footer .row {
        flex-wrap: nowrap;
    }
    .footer__col.col-lg-3 {
        flex-basis: auto;
        max-width: unset;
        margin: 0;
    }
    .footer__col.col-lg-3:first-child {
        flex-basis: auto;
        max-width: unset;
    }
    .footer__heading.align-center {
        text-align: left;
    }

    .footer__content {
        text-align: left;
        border: 0;
        padding: 0;
    }
    .footer__bottom .row {
        flex-wrap: nowrap;
    }
}
/* 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%;
}

.hs_cos_wrapper_type_rich_text a {
    font-weight: 600;
    color: #185071;
    text-decoration: 2px underline transparent!important;
	text-underline-offset: 2px;
	transition: 0.2s ease;
}
.hs_cos_wrapper_type_rich_text a:hover {
    font-weight: 600;
    color: #185071;
    text-decoration-color: #185071;
}

/* Utilities
Helper classes with ability to override anything that comes before it
*/

@font-face {
    font-family: 'Buenos Aires';
    src: url('https://25117726.fs1.hubspotusercontent-eu1.net/hubfs/25117726/BuenosAires/BuenosAires-Bold.eot');
    src: local('Buenos Aires Bold'), local('BuenosAires-Bold'),
        url('https://25117726.fs1.hubspotusercontent-eu1.net/hubfs/25117726/BuenosAires/BuenosAires-Bold.eot#iefix') format('embedded-opentype'),
        url('https://25117726.fs1.hubspotusercontent-eu1.net/hubfs/25117726/BuenosAires/BuenosAires-Bold.woff2') format('woff2'),
        url('https://25117726.fs1.hubspotusercontent-eu1.net/hubfs/25117726/BuenosAires/BuenosAires-Bold.woff') format('woff'),
        url('https://25117726.fs1.hubspotusercontent-eu1.net/hubfs/25117726/BuenosAires/BuenosAires-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Buenos Aires';
    src: url('https://25117726.fs1.hubspotusercontent-eu1.net/hubfs/25117726/BuenosAires/BuenosAires-LightItalic.eot');
    src: local('Buenos Aires Light Italic'), local('BuenosAires-LightItalic'),
        url('https://25117726.fs1.hubspotusercontent-eu1.net/hubfs/25117726/BuenosAires/BuenosAires-LightItalic.eot#iefix') format('embedded-opentype'),
        url('https://25117726.fs1.hubspotusercontent-eu1.net/hubfs/25117726/BuenosAires/BuenosAires-LightItalic.woff2') format('woff2'),
        url('https://25117726.fs1.hubspotusercontent-eu1.net/hubfs/25117726/BuenosAires/BuenosAires-LightItalic.woff') format('woff'),
        url('https://25117726.fs1.hubspotusercontent-eu1.net/hubfs/25117726/BuenosAires/BuenosAires-LightItalic.ttf') format('truetype');
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Buenos Aires';
    src: url('https://25117726.fs1.hubspotusercontent-eu1.net/hubfs/25117726/BuenosAires/BuenosAires-Regular.eot');
    src: local('Buenos Aires Regular'), local('BuenosAires-Regular'),
        url('https://25117726.fs1.hubspotusercontent-eu1.net/hubfs/25117726/BuenosAires/BuenosAires-Regular.eot#iefix') format('embedded-opentype'),
        url('https://25117726.fs1.hubspotusercontent-eu1.net/hubfs/25117726/BuenosAires/BuenosAires-Regular.woff2') format('woff2'),
        url('https://25117726.fs1.hubspotusercontent-eu1.net/hubfs/25117726/BuenosAires/BuenosAires-Regular.woff') format('woff'),
        url('https://25117726.fs1.hubspotusercontent-eu1.net/hubfs/25117726/BuenosAires/BuenosAires-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Buenos Aires';
    src: url('https://25117726.fs1.hubspotusercontent-eu1.net/hubfs/25117726/BuenosAires/BuenosAires-BoldItalic.eot');
    src: local('Buenos Aires Bold Italic'), local('BuenosAires-BoldItalic'),
        url('https://25117726.fs1.hubspotusercontent-eu1.net/hubfs/25117726/BuenosAires/BuenosAires-BoldItalic.eot#iefix') format('embedded-opentype'),
        url('https://25117726.fs1.hubspotusercontent-eu1.net/hubfs/25117726/BuenosAires/BuenosAires-BoldItalic.woff2') format('woff2'),
        url('https://25117726.fs1.hubspotusercontent-eu1.net/hubfs/25117726/BuenosAires/BuenosAires-BoldItalic.woff') format('woff'),
        url('https://25117726.fs1.hubspotusercontent-eu1.net/hubfs/25117726/BuenosAires/BuenosAires-BoldItalic.ttf') format('truetype');
    font-weight: bold;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Buenos Aires';
    src: url('https://25117726.fs1.hubspotusercontent-eu1.net/hubfs/25117726/BuenosAires/BuenosAires-SemiBold.eot');
    src: local('Buenos Aires SemiBold'), local('BuenosAires-SemiBold'),
        url('https://25117726.fs1.hubspotusercontent-eu1.net/hubfs/25117726/BuenosAires/BuenosAires-SemiBold.eot#iefix') format('embedded-opentype'),
        url('https://25117726.fs1.hubspotusercontent-eu1.net/hubfs/25117726/BuenosAires/BuenosAires-SemiBold.woff2') format('woff2'),
        url('https://25117726.fs1.hubspotusercontent-eu1.net/hubfs/25117726/BuenosAires/BuenosAires-SemiBold.woff') format('woff'),
        url('https://25117726.fs1.hubspotusercontent-eu1.net/hubfs/25117726/BuenosAires/BuenosAires-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Buenos Aires';
    src: url('https://25117726.fs1.hubspotusercontent-eu1.net/hubfs/25117726/BuenosAires/BuenosAires-SemiBoldItalic.eot');
    src: local('Buenos Aires SemiBold Italic'), local('BuenosAires-SemiBoldItalic'),
        url('https://25117726.fs1.hubspotusercontent-eu1.net/hubfs/25117726/BuenosAires/BuenosAires-SemiBoldItalic.eot#iefix') format('embedded-opentype'),
        url('https://25117726.fs1.hubspotusercontent-eu1.net/hubfs/25117726/BuenosAires/BuenosAires-SemiBoldItalic.woff2') format('woff2'),
        url('https://25117726.fs1.hubspotusercontent-eu1.net/hubfs/25117726/BuenosAires/BuenosAires-SemiBoldItalic.woff') format('woff'),
        url('https://25117726.fs1.hubspotusercontent-eu1.net/hubfs/25117726/BuenosAires/BuenosAires-SemiBoldItalic.ttf') format('truetype');
    font-weight: 600;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Buenos Aires';
    src: url('https://25117726.fs1.hubspotusercontent-eu1.net/hubfs/25117726/BuenosAires/BuenosAires-Thin.eot');
    src: local('Buenos Aires Thin'), local('BuenosAires-Thin'),
        url('https://25117726.fs1.hubspotusercontent-eu1.net/hubfs/25117726/BuenosAires/BuenosAires-Thin.eot#iefix') format('embedded-opentype'),
        url('https://25117726.fs1.hubspotusercontent-eu1.net/hubfs/25117726/BuenosAires/BuenosAires-Thin.woff2') format('woff2'),
        url('https://25117726.fs1.hubspotusercontent-eu1.net/hubfs/25117726/BuenosAires/BuenosAires-Thin.woff') format('woff'),
        url('https://25117726.fs1.hubspotusercontent-eu1.net/hubfs/25117726/BuenosAires/BuenosAires-Thin.ttf') format('truetype');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Buenos Aires';
    src: url('https://25117726.fs1.hubspotusercontent-eu1.net/hubfs/25117726/BuenosAires/BuenosAires-ThinItalic.eot');
    src: local('Buenos Aires Thin Italic'), local('BuenosAires-ThinItalic'),
        url('https://25117726.fs1.hubspotusercontent-eu1.net/hubfs/25117726/BuenosAires/BuenosAires-ThinItalic.eot#iefix') format('embedded-opentype'),
        url('https://25117726.fs1.hubspotusercontent-eu1.net/hubfs/25117726/BuenosAires/BuenosAires-ThinItalic.woff2') format('woff2'),
        url('https://25117726.fs1.hubspotusercontent-eu1.net/hubfs/25117726/BuenosAires/BuenosAires-ThinItalic.woff') format('woff'),
        url('https://25117726.fs1.hubspotusercontent-eu1.net/hubfs/25117726/BuenosAires/BuenosAires-ThinItalic.ttf') format('truetype');
    font-weight: 100;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Buenos Aires';
    src: url('https://25117726.fs1.hubspotusercontent-eu1.net/hubfs/25117726/BuenosAires/BuenosAires-Light.eot');
    src: local('Buenos Aires Light'), local('BuenosAires-Light'),
        url('https://25117726.fs1.hubspotusercontent-eu1.net/hubfs/25117726/BuenosAires/BuenosAires-Light.eot#iefix') format('embedded-opentype'),
        url('https://25117726.fs1.hubspotusercontent-eu1.net/hubfs/25117726/BuenosAires/BuenosAires-Light.woff2') format('woff2'),
        url('https://25117726.fs1.hubspotusercontent-eu1.net/hubfs/25117726/BuenosAires/BuenosAires-Light.woff') format('woff'),
        url('https://25117726.fs1.hubspotusercontent-eu1.net/hubfs/25117726/BuenosAires/BuenosAires-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Buenos Aires';
    src: url('https://25117726.fs1.hubspotusercontent-eu1.net/hubfs/25117726/BuenosAires/BuenosAires-Black.eot');
    src: local('Buenos Aires Black'), local('BuenosAires-Black'),
        url('https://25117726.fs1.hubspotusercontent-eu1.net/hubfs/25117726/BuenosAires/BuenosAires-Black.eot#iefix') format('embedded-opentype'),
        url('https://25117726.fs1.hubspotusercontent-eu1.net/hubfs/25117726/BuenosAires/BuenosAires-Black.woff2') format('woff2'),
        url('https://25117726.fs1.hubspotusercontent-eu1.net/hubfs/25117726/BuenosAires/BuenosAires-Black.woff') format('woff'),
        url('https://25117726.fs1.hubspotusercontent-eu1.net/hubfs/25117726/BuenosAires/BuenosAires-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Buenos Aires';
    src: url('https://25117726.fs1.hubspotusercontent-eu1.net/hubfs/25117726/BuenosAires/BuenosAires-BlackItalic.eot');
    src: local('Buenos Aires Black Italic'), local('BuenosAires-BlackItalic'),
        url('https://25117726.fs1.hubspotusercontent-eu1.net/hubfs/25117726/BuenosAires/BuenosAires-BlackItalic.eot#iefix') format('embedded-opentype'),
        url('https://25117726.fs1.hubspotusercontent-eu1.net/hubfs/25117726/BuenosAires/BuenosAires-BlackItalic.woff2') format('woff2'),
        url('https://25117726.fs1.hubspotusercontent-eu1.net/hubfs/25117726/BuenosAires/BuenosAires-BlackItalic.woff') format('woff'),
        url('https://25117726.fs1.hubspotusercontent-eu1.net/hubfs/25117726/BuenosAires/BuenosAires-BlackItalic.ttf') format('truetype');
    font-weight: 900;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Buenos Aires';
    src: url('https://25117726.fs1.hubspotusercontent-eu1.net/hubfs/25117726/BuenosAires/BuenosAires-RegularItalic.eot');
    src: local('Buenos Aires Regular Italic'), local('BuenosAires-RegularItalic'),
        url('https://25117726.fs1.hubspotusercontent-eu1.net/hubfs/25117726/BuenosAires/BuenosAires-RegularItalic.eot#iefix') format('embedded-opentype'),
        url('https://25117726.fs1.hubspotusercontent-eu1.net/hubfs/25117726/BuenosAires/BuenosAires-RegularItalic.woff2') format('woff2'),
        url('https://25117726.fs1.hubspotusercontent-eu1.net/hubfs/25117726/BuenosAires/BuenosAires-RegularItalic.woff') format('woff'),
        url('https://25117726.fs1.hubspotusercontent-eu1.net/hubfs/25117726/BuenosAires/BuenosAires-RegularItalic.ttf') format('truetype');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}
/* 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;
  }
}