/* 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;
  -webkit-text-size-adjust: 100%;
}

/* 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;
  font-size: 1em;
}

/* 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;
  text-decoration: underline;
  text-decoration: underline dotted;
}

/**
 * * 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;
  font-size: 1em;
}

/**
 * * 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;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

/**
 * * Remove the inheritance of text transform in Edge and Firefox.
 * * 1. Remove the inheritance of text transform in Firefox.
 * */
button,
select {
  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;
  outline-offset: -2px;
}

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

/* 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));
    }
  
}
html {
  overflow-x: hidden;
}

.body-wrapper {
  min-height: 100vh;
  max-width: 100vw;
  overflow-x: hidden;
}

#main-content {
  position: relative;
  max-width: calc(100vw - 4rem);
  margin: 0 auto;
}
@media (min-width: 1600px) {
  #main-content {
    max-width: 1600px;
  }
}
@media (min-width: 1600px) and (max-width: 1630px) {
  #main-content {
    padding: 0 2rem;
  }
}
#main-content:before {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, var(--color-white), var(--color-secondary-light-2));
  margin-left: -8.33vw;
  margin-right: -8.33vw;
  z-index: -1;
}
@media (min-width: 1600px) {
  #main-content:before {
    margin-left: calc((50vw - 800px) * -1);
    margin-right: calc((50vw - 800px) * -1);
  }
}

.w-full {
  margin-left: -2rem;
  margin-right: -2rem;
}
@media (min-width: 1600px) {
  .w-full {
    margin-left: calc((100vw - 100%) / -2);
    margin-right: calc((100vw - 100%) / -2);
  }
}
@media (min-width: 1920px) {
  .w-full {
    margin-left: -200px;
    margin-right: -200px;
  }
}

.left-over {
  margin-left: -15vw;
  width: 100vw;
}
@media (min-width: 760px) {
  .left-over {
    width: 90vw;
  }
}
@media (min-width: 1600px) {
  .left-over {
    width: 100%;
  }
}
@media (min-width: 1920px) {
  .left-over {
    margin-left: -200px;
  }
}

@media (max-width: 760px) {
  .s-mobile {
    max-width: 93.5vw;
    margin: 0 auto;
  }
  .m-mobile {
    max-width: 90vw;
    margin: 0 auto;
  }
  .l-mobile {
    max-width: 93.5vw;
    margin: 0 auto;
  }
}
@media (min-width: 760px) {
  .s-tablet {
    width: 93.5vw;
    margin: 0 auto;
  }
  .m-tablet {
    max-width: 90vw;
    margin: 0 auto;
  }
  .l-tablet {
    max-width: 88vw;
    margin: 0 auto;
  }
}
@media (min-width: 1380px) {
  .s-desktop {
    max-width: 1380px;
    margin: 0 auto;
  }
  .m-desktop {
    max-width: 1380px;
    margin: 0 auto;
  }
  .l-desktop {
    max-width: 88vw;
    margin: 0 auto;
  }
}
@media (min-width: 1600px) {
  .s-mobile, .m-mobile, .l-mobile,
  .s-tablet, .m-tablet, .l-tablet,
  .s-desktop, .m-desktop, .l-desktop {
    max-width: 1600px;
  }
}
@media (min-width: 1380px) {
  .pl-desktop {
    padding-left: 8.33vw;
  }
  .pr-desktop {
    padding-right: 8.33vw;
  }
}
.dnd-section > .row-fluid {
  margin: 0 auto;
}

/* Image Wrapper */
.image-wrapper {
  position: relative;
  height: 240px;
  object-fit: cover;
  border-radius: 40px;
  overflow: hidden;
  margin-bottom: 2rem;
}
@media (min-width: 760px) {
  .image-wrapper {
    height: 320px;
  }
}
@media (min-width: 1380px) {
  .image-wrapper {
    height: 560px;
  }
}
.image-wrapper img {
  top: 0;
  right: 0;
  left: 0;
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100% !important;
  object-fit: cover;
}

/* Text Wrapper */
.text-wrapper {
  width: 100%;
}
@media (min-width: 1380px) {
  .text-wrapper {
    width: 50%;
    padding-left: 2rem;
  }
  .text-wrapper h1 {
    margin-bottom: 0;
  }
}

.blue-gradient {
  background: transparent linear-gradient(83deg, #013770 0%, rgba(1, 55, 112, 0) 100%) 0% 0% no-repeat padding-box;
}
.blue-gradient * {
  color: white;
}
.icon-s, .icon-m, .icon-l, .icon-xl, .icon-xxl {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.icon-s svg {
  width: 1rem;
  height: 1rem;
}

.icon-m svg {
  width: 1.5rem;
  height: 1.5rem;
}

.icon-l svg {
  width: 2rem;
  height: 2rem;
}

.icon-xl svg {
  width: 2.5rem;
  height: 2.5rem;
}

.icon-xxl svg {
  width: 3rem;
  height: 3rem;
}

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

@charset "UTF-8";
/* The overflow-wrap is meant to prevent long/large words from breaking the mobile responsiveness of a page */
body {
  line-height: 1.4;
  hyphens: auto;
  overflow-wrap: break-word;
  /* Für alle Elemente */
  /* Firefox benötigt einen eigenen Prefix */
  /* Smoothing for better readability */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;
}
body ::selection {
  background-color: var(--color-primary);
  color: white;
}
body ::-moz-selection {
  background-color: var(--color-primary);
  color: white;
}

/* Handles word breaking for specific languages */
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: 0 0 1.4rem;
}

/* Anchors */
a {
  cursor: pointer;
  position: relative;
  z-index: 2;
  text-decoration: none !important;
}
a:not(.button, .icon-xl, .icon-m, .icon-s) {
  padding-bottom: 0 !important;
}
a:not(.button, .icon-xl, .icon-m, .icon-s)::after {
  content: "";
  border-bottom: 3px solid var(--color-primary-light-3);
  width: 100%;
  position: absolute;
  bottom: 2px;
  left: 0;
  border-radius: 2px;
  z-index: -1;
}

a.button {
  text-transform: lowercase;
}

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.2em;
  margin: 0 0 1.4rem;
}

/* Sublines */
h1 + .subline {
  margin-bottom: 24px;
}
@media (min-width: 1380px) {
  h1 + .subline {
    font-size: 26px;
    margin-bottom: 42px;
  }
}

/* Lists */
ul ul,
ol ul,
ul ol,
ol ol {
  margin: 0;
}

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

ul {
  list-style: none;
  padding-left: 0;
}
ul li {
  position: relative;
  padding-left: 1.5rem;
}
ul li:before {
  content: "";
  position: absolute;
  display: inline-block;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><path fill="#F7A600" d="M129.56,93.49c3.6,3.6,3.6,9.44,0,13.04l-46.07,46.07c-3.6,3.6-9.45,3.6-13.04,0s-3.6-9.44,0-13.04l39.57-39.57-39.54-39.57c-3.6-3.6-3.6-9.44,0-13.04s9.44-3.6,13.04,0l46.07,46.07-.03.03Z"/></svg>');
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
}

form ul li {
  padding: 0;
}
form ul li:before {
  content: none;
}

/* 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;
}
button,
.button,
.hs-button,
.hs-blog-post-listing__post-button {
  appearance: none;
  -webkit-appearance: none;
  background-color: var(--color-secondary);
  border: none;
  outline: none;
  border-radius: 2px;
  color: var(--color-white);
  font-size: calc(1rem - 2px);
  padding: 10px 20px;
}

button:hover,
button: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 {
  color: var(--color-white);
  background-color: var(--color-primary-light);
}

button:active,
.button:active,
.hs-button:active,
.hs-blog-post-listing__post-button:active {
  background-color: var(--color-secondary-light);
  border-color: none;
}

.button-icon {
  padding: 19px 18px 18px 19px;
  border-radius: 5px;
}

.button-cta {
  font-size: 22px;
  font-weight: 700 !important;
  padding: 22px 20px 22px 20px;
  border-radius: 5px;
}

.icon--arrow-right {
  background-color: var(--color-primary);
  position: relative;
  border-radius: 5px 0px 0px 5px;
}
.icon--arrow-right:hover {
  background-color: var(--color-primary);
}
.icon--arrow-right:hover .svg-container {
  background-color: var(--color-secondary);
}
.icon--arrow-right .svg-container {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: -50px;
  top: 0;
  bottom: 0;
  width: 50px;
  background-color: var(--color-primary-light);
  border-radius: 0px 5px 5px 0px;
  height: 100%;
  padding: 25px 8px;
}

@media (min-width: 760px) {
  button,
  .button,
  .hs-button,
  .hs-blog-post-listing__post-button {
    font-size: calc(1rem + 1px);
  }
  .button-icon {
    padding: 26px 26px 25px 26px;
  }
  .button-cta {
    font-size: 32px;
    padding: 30px 30px 34px 20px;
  }
  .icon--arrow-right .svg-container {
    right: -64px;
    width: 74px;
    padding: 25px 10px;
  }
}
.select {
  position: relative;
  width: 140px;
  background-color: var(--color-secondary);
  border-radius: 2px;
  color: var(--color-white);
  font-size: calc(1rem - 2px);
  letter-spacing: 0.64px;
  line-height: 19px;
  padding: 10px 20px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}
.select::after {
  content: "";
  border: 2px solid var(--color-white);
  border-right: 0;
  border-top: 0;
  height: 0.6rem;
  width: 0.6rem;
  pointer-events: none;
  position: absolute;
  right: 1rem;
  top: 28%;
  transform: rotate(-45deg);
  transition: transform 0.2s ease;
}
.select:hover {
  background-color: var(--color-primary-light);
}
.select:focus-within .options {
  display: block;
  background-color: var(--color-secondary-light);
}
.select:focus-within::after {
  transform: rotate(136deg);
  top: 42%;
}
.select .options {
  position: absolute;
  display: none;
  width: 100%;
  top: 100%;
  left: 17%;
  border-radius: inherit;
  color: var(--color-secondary);
  z-index: 10;
}
.select .options a {
  display: block;
  padding: 5px 7px 4px 7px;
}
.select .options a:hover {
  color: var(--color-secondary);
  background-color: var(--color-secondary-light-2);
}
/* Fields */

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

/* Labels */

form label {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 1rem;
  margin-bottom: 0.35rem;
}

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

/* Help text */

form legend {
  font-size: 1rem;
}

/* 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: 1rem;
  padding: 0.7rem;
  width: 100%;
  background-color: var(--color-secondary-transparent);
  border: none;    
  border-bottom: 7px solid var(--color-secondary);
  padding: 0.5rem 0.75rem;  
  color: var(--color-white);
}

::placeholder{
    color: var(--color-white);
    opacity: 1;
}

form input[type=text]:focus, form input[type=text]:focus-visible,
form input[type=search]:focus,form input[type=search]:focus-visible,
form input[type=email]:focus,form input[type=email]:focus-visible,
form input[type=password]:focus,form input[type=password]:focus-visible,
form input[type=tel]:focus,form input[type=tel]:focus-visible,
form input[type=number]:focus,form input[type=number]:focus-visible,
form input[type=file]:focus,form input[type=file]:focus-visible,
form select:focus,form select:focus-visible,
form textarea:focus,form textarea:focus-visible {
  border-bottom-color: var(--color-white);
  outline: none;
}

form textarea {
  resize: vertical;
}

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

/* Inputs - checkbox/radio */

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

@media(min-width:1380px) {
    form .inputs-list {
        display: flex;
        flex-flow: row wrap;
        gap: 0px 1rem;
}
}

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] {
    appearance: none;  
    -webkit-appearance: none;
    cursor: pointer;
    margin-right: 0.35rem;
    border-radius: 50%;              
    width: 18px;                  
    height: 18px;
    background-color: var(--color-secondary-transparent);
    display: inline-block;
    position: relative;
    border: 2px solid var(--color-secondary);
    overflow: hidden;
}

form input[type=checkbox]::before,
form input[type=radio]::before {
    box-shadow: inset 1em 1em var(--color-secondary);
    content: "";
    display: grid;
    height: 100%;
    place-content: center;
    transform: translate(14px, 6px);
    transition: transform .12s ease-in-out;
    width: 100%;
    border-radius: 50%;
}

form input[type=checkbox]:checked::before,
form input[type=radio]:checked::before {
    transform: translate(3px, 1px);
}

/* 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: 1rem;
  margin: 0 0 1.4rem;
}

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

/* GDPR */

.legal-consent-container .hs-form-booleancheckbox-display > span,
.legal-consent-container .hs-form-booleancheckbox-display > span p {
  margin-left: 0 !important;
  line-height: 1rem;
}

/* Validation */

.hs-form-required {
  color: var(--color-white);
}

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

.hs-error-msg {
  color: #EF6B51!important;
  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;
}

form .hs_submit {
    display: flex;
    justify-content: flex-end;
}

/* Captcha */

.grecaptcha-badge {
  margin: 0 auto;
}


/* Missing Template at Path: \'Qf_theme\/css\/elements\/_tables.css\' */
.newsletter {
  width: 100%;
  margin-bottom: 2rem;
}
@media (min-width: 960px) {
  .newsletter {
    width: 420px;
  }
}
.newsletter .headline {
  display: none;
}
.newsletter .headline, .newsletter p, .newsletter span, .newsletter div, .newsletter a {
  color: var(--color-white);
}
.newsletter form {
  max-width: 440px;
}
.newsletter form .hs_submit {
  margin-top: 1rem;
}
.newsletter form li:before {
  display: none;
}
.swiper-button-prev:after, .swiper-button-next:after {
  content: "";
}

.swiper-button-prev, .swiper-button-next {
  width: 58px;
  height: 58px;
  color: var(--color-white);
  background-color: var(--color-secondary);
  border-radius: 5%;
}

.swiper-button-prev {
  transform: rotate(180deg);
}

.swiper-pagination {
  position: absolute;
  width: unset;
  height: fit-content;
}
.swiper-pagination .swiper-pagination-bullet {
  height: 3px;
  width: 15px;
  border-radius: 0;
}
@media (min-width: 600px) {
  .swiper-pagination .swiper-pagination-bullet {
    height: 6px;
    width: 30px;
  }
}
.swiper-pagination.style-primary > .swiper-pagination-bullet {
  opacity: 0.6;
  background-color: var(--color-primary);
}
.swiper-pagination.style-primary > .swiper-pagination-bullet-active {
  opacity: 1;
  background-color: var(--color-primary);
}
.swiper-pagination.style-secondary > .swiper-pagination-bullet-active {
  background-color: var(--color-secondary);
}
/* Components
Specific pieces of UI that are stylized. Typically used for global partial styling
*/

/* Missing Template at Path: \'Qf_theme\/css\/components\/header.css\' */
/* Menu and simple menu */
.hs-menu-wrapper ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding-left: 0;
  color: #007bff;
}

/* 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-eu-cookie-confirmation a:after {
  content: none;
}

.grecaptcha-badge {
  display: none;
}

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

.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;
  }
}
.shadow-lg {
  box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0, 0, 0, 0)), var(--tw-ring-shadow, 0 0 rgba(0, 0, 0, 0)), var(--tw-shadow);
  --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, .1), 0 4px 6px -4px rgba(0, 0, 0, .1);
  --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
}

.zoom-s {
  transition: transform 0.3s ease-in-out;
}
.zoom-s:hover {
  transform: scale(1.05);
}