/* Theme base styles */

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

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

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

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

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

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

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

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

body {
    margin: 0;
}

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

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

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

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

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

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

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

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

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

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

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

b,
strong {
  font-weight: bolder;  
	font-weight: 500;
}

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



html,
body {
	overflow-x: clip;
}

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

}

/* Images */

.image-container {
    width: 100%;
}

.image-container img {
    max-width: 100%;
    height: auto;
}

@media (max-width: 767px) {
    .image-container img {
        margin-bottom: 1rem;
    }
}

/* overflow */
.overflow-y-clip {
	overflow-y: clip;
}

/* Layout classes */

.flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.flex.vertical {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.flex.vertical.reverse {
	-webkit-box-orient: vertical;
	-webkit-box-direction: reverse;
	-ms-flex-direction: column-reverse;
	flex-direction: column-reverse;
}

.flex-wrap {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.justify-left,
.justify-top {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.justify-center,
.justify-middle {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.justify-right,
.justify-bottom {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.justify-between {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

@media (max-width: 991px) {
    .mobile-justify-left,
	  .mobile-justify-top {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }

    .mobile-justify-center,
	  .mobile-justify-middle {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .mobile-justify-right
	  .mobile-justify-bottom {
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
    }
}

.items-left,
.items-top {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.items-center,
.items-middle {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.items-right,
.items-bottom {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

@media (max-width: 991px) {
    .mobile-items-left,
	  .mobile-items-top {
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }

    .mobile-items-center,
	  .mobile-items-middle {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .mobile-items-right,
	  .mobile-items-bottom {
        -webkit-box-align: end;
        -ms-flex-align: end;
        align-items: flex-end;
    }
}



.content-wrapper {
    margin: 0 auto;
    padding: 0 1rem;
}

@media screen and (min-width: 1280px) {
    .content-wrapper {
        padding: 0;
    }
	
	  header .content-wrapper {
        padding: 0 1rem;
    }
	
	  .landingpage .content-wrapper {
        padding: 0 1rem;
    }
}

@media screen and (min-width: 1400px) {
    header .content-wrapper {
        padding: 0;
    }
	
	  .landingpage .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.)
*/




body {
    line-height: 150%;
}


/* Local Font Inter */
@font-face {
    font-family: 'Inter';
    src: url('https://www.brandreach.at/hubfs/brandreach.at%202020/fonts/Inter-Black.woff2') format('woff2'),
        url('https://www.brandreach.at/hubfs/brandreach.at%202020/fonts/Inter-Black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('https://www.brandreach.at/hubfs/brandreach.at%202020/fonts/Inter-ExtraBold.woff2') format('woff2'),
        url('https://www.brandreach.at/hubfs/brandreach.at%202020/fonts/Inter-ExtraBold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('https://www.brandreach.at/hubfs/brandreach.at%202020/fonts/Inter-Bold.woff2') format('woff2'),
        url('https://www.brandreach.at/hubfs/brandreach.at%202020/fonts/Inter-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('https://www.brandreach.at/hubfs/brandreach.at%202020/fonts/Inter-ExtraLight.woff2') format('woff2'),
        url('https://www.brandreach.at/hubfs/brandreach.at%202020/fonts/Inter-ExtraLight.woff') format('woff');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('https://www.brandreach.at/hubfs/brandreach.at%202020/fonts/Inter-SemiBold.woff2') format('woff2'),
        url('https://www.brandreach.at/hubfs/brandreach.at%202020/fonts/Inter-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('https://www.brandreach.at/hubfs/brandreach.at%202020/fonts/Inter-Thin.woff2') format('woff2'),
        url('https://www.brandreach.at/hubfs/brandreach.at%202020/fonts/Inter-Thin.woff') format('woff');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('https://www.brandreach.at/hubfs/brandreach.at%202020/fonts/Inter-Regular.woff2') format('woff2'),
        url('https://www.brandreach.at/hubfs/brandreach.at%202020/fonts/Inter-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('https://www.brandreach.at/hubfs/brandreach.at%202020/fonts/Inter-Medium.woff2') format('woff2'),
        url('https://www.brandreach.at/hubfs/brandreach.at%202020/fonts/Inter-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('https://www.brandreach.at/hubfs/brandreach.at%202020/fonts/Inter-Light.woff2') format('woff2'),
        url('https://www.brandreach.at/hubfs/brandreach.at%202020/fonts/Inter-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}


/* Links */

a {
    cursor: pointer;
    transition: all 0.3s ease;
}

p a {
	display: inline-block;
}

a:hover,
.menu-item {
    cursor: pointer;
}

p a:after,
.blog-pagination a:after {
	display: block;
	content: '';
  border-bottom: solid 3px;  
  transform: scaleX(0);  
	transform-origin:  0% 50%;
  transition: transform 250ms ease-in-out;
}

 p a:hover:after,
.blog-pagination a:hover:after {
	transform: scaleX(1);
}

/* white text */
.text-white,
h1.text-white, .h1.text-white,
h2.text-white, .h2.text-white,
h3.text-white, .h3.text-white,
h4.text-white, .h4.text-white,
h5.text-white, .h5.text-white,
h6.text-white, .h6.text-white {
    color: #fff;
}

/* text align */
.text-left {
    text-align: left;
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

@media (max-width: 991px) {

    .mobile-text-left {
        text-align: left;
    }

    .mobile-text-center {
        text-align: center;
    }

    .mobile-text-right {
        text-align: right;
    }

}

/* headlines */

h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5,
h6, .h6 {
	margin-top: 0;
	margin-bottom: 1rem;
	line-height: 120%;
	position: relative;
	z-index: 2;
}

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

h1 > span, .h1 > span,
h2 > span, .h2 > span,
h3 > span, .h3 > span,
h4 > span, .h4 > span,
h5 > span, .h5 > span,
h6 > span, .h6 > span {
	color: #e8581a;
	text-decoration: underline;
	text-decoration-color: #581ae8;
	text-decoration-thickness: 15%;
	text-underline-offset: 10%;
}

.h1-subtitle,
.h2-subtitle,
.h3-subtitle,
.h4-subtitle,
.h5-subtitle,
.h6-subtitle {
	font-weight: 300 !important;
	margin-bottom: 1rem;
	position: relative;
	z-index: 2;
	line-height: 150%;
}

.label {
	font-weight: 500;
	margin-bottom: .5rem;
	padding: .25rem .5rem;
	width: fit-content;
	font-size: 0.9rem;
	line-height: 100%;
}

.label-secondary {
	background-color: #581ae8;
	color: #fff;
}

/* lists */

ul, ol {
    padding-inline-start: 20px;
}

ul li, ol li {
    padding-bottom: 0.5em;
}

.container-richtext ul {
	margin-top: 2rem;
	padding-inline-start: 0;
	list-style-type: none;
}

.container-richtext ul li {
	padding-bottom: 0;
	margin-bottom: 24px;
	/*display: flex;
	align-items: center;*/
	padding-left: 60px;
	position: relative;
}

.container-richtext ul li:before {
	content: ""''"";
	max-width: 27px;
	width: 100%;
	height: 30px;
	margin-right: 2rem;
	background-image: url("https://www.brandreach.at/hubfs/brandreach.at%202020/shapes/list-outline.svg");
	/*background-image: url("data:image/svg+xml,<svg width='27' height='23' viewBox='0 0 27 23' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M24.4142 8.46335L24.4142 8.46336C26.1872 9.05573 26.4052 11.4752 24.7671 12.3751L25.2486 13.2515L24.7671 12.3751L8.25769 21.4441C8.25766 21.4441 8.25764 21.4441 8.25762 21.4441C7.02832 22.1192 5.49261 21.4514 5.14809 20.0921L1.11008 4.15741L1.11 4.1571C0.693143 2.51428 2.25869 1.06055 3.86671 1.5977C3.86673 1.59771 3.86675 1.59772 3.86677 1.59772L24.4142 8.46335Z' stroke='#581AE8' stroke-width='2'/></svg>");*/
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	display: block;
	position: absolute;
	left: 0;
}

.container-richtext.list-filled ul li:before {
	content: '';
	max-width: 27px;
	width: 100%;
	height: 30px;
	margin-right: 2rem;
	background-image: url("https://www.brandreach.at/hubfs/brandreach.at%202020/shapes/list-filled.svg");
	/*background-image: url('data:image/svg+xml,<svg width="27" height="24" viewBox="0 0 27 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M24.4142 8.96335L24.4142 8.96336C26.1872 9.55573 26.4052 11.9752 24.7671 12.8751L25.2485 13.7515L24.7671 12.8751L8.25763 21.9441C8.2576 21.9441 8.25758 21.9441 8.25756 21.9441C7.02825 22.6192 5.49255 21.9514 5.14802 20.5921L1.11002 4.65741L1.10994 4.6571C0.693083 3.01428 2.25863 1.56055 3.86665 2.0977C3.86667 2.09771 3.86669 2.09772 3.86671 2.09772L24.4142 8.96335Z" fill="#581AE8" stroke="#581AE8" stroke-width="2"/></svg>');*/
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}

.container-richtext.list-col-2 ul,
.container-richtext.list-col-3 ul {
	display: flex;
	flex-wrap: wrap;
}

.container-richtext.list-col-2 ul li,
.container-richtext.list-col-3 ul li {
	padding-right: 1rem;
}

.container-richtext.list-col-2 ul li {
	width: 50%
}

.container-richtext.list-col-3 ul li {
	width: calc(100% / 3);
}

@media screen and (max-width: 911px) {
	.container-richtext.list-col-3 ul li {
		width: 50%;
	}
}

@media screen and (max-width: 600px) {
	.container-richtext.list-col-2 ul li,
	.container-richtext.list-col-3 ul li {
		width: 100%;
	}
}
/* General Button Styling */

button,
.hs-button,
.btn,
.cta_button {
	padding: 1rem 2rem;
	transition: all 0.3s ease;
	cursor: pointer;
	border: 3px solid currentColor;
	text-align: center;
	display: inline-block;
}

button:hover,
input[type=submit]:hover,
.hs-button:hover,
.btn:hover {
	cursor: pointer;
}

.btn-small,
input[type=submit] {
	padding: 0.5rem 1rem;
}

.btn-container .btn {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.btn:not(:last-of-type) {
    margin-right: 0.5rem;
}

.hs-cta-wrapper {
	min-height: 76px;
}

button:focus,
.btn:focus {

}

.btn-white {
    background-color: #fff;
    border-color: #fff;
    color: #000;
}

.btn-white.btn-outline,
.btn-white.btn-outline:hover,
.btn-white.btn-outline:visited {
    background-color: transparent;
    color: #fff;
    border-color: #fff;
}

.btn-fullwidth {
    width: 100%;
	  text-align: center;
}

/* Button Icon */
.btn .icon-wrapper {
    margin-left: 0.5rem;
    transition: all 0.3s ease;
}

.btn:hover .icon-wrapper,
.btn:focus .icon-wrapper,
.btn:active .icon-wrapper {
    margin-left: 1rem;
}

.btn .icon-wrapper .icon {
    display: flex;
    align-items: center;
}

.btn .icon-wrapper svg {
    width: 18px;
    height: 18px;
}

.btn-white.btn-outline .icon-wrapper svg {
    fill: #fff;
}

/* CTA styling */

.cta-container .hs-cta-node,
.cta-container .hs-web-interactive-inline {
    display: flex;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.cta-container .hs_cos_wrapper_type_cta:not(:last-of-type) .hs-cta-node,
.cta-container .hs_cos_wrapper_type_cta:not(:last-of-type) .hs-web-interactive-inline {
    margin-right: 0.5rem;
}

.cta-container a {
	display: block;
}
/* new forms editor */

:root {
  --hsf-global__font-family: 'Inter';
}

.hsfc-FormWrapper form {
    -webkit-box-shadow: 4px 4px 1rem rgba(0, 0, 0, 0.2);
    box-shadow: 4px 4px 1rem rgba(0, 0, 0, 0.2);
	position: relative;
	z-index: 2;
}

.hsfc-DataPrivacyField {
	line-height: 120%;
}

[data-hsfc-id=Renderer] .hsfc-NavigationRow {
	margin-top: 1rem !important;
}

.hsfc-FormWrapper form input {
	font-size: 0.875rem !important;
}

.hsfc-FormWrapper form .hsfc-PhoneInput__FlagAndCaret {
	padding: 0 0.5rem;
}

/* Fields */

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

/* Labels */

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

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

.form-section .subtitle {
	margin-bottom: 3rem;
	font-size: 1.2rem;
	font-weight: 300;
}

/* Help text */

form legend {
  font-size: 0.7rem;
  margin-bottom: 0.35rem;
}

/* Layout */

.form-section {
	position: relative;
	z-index: 2;
}

.form-section .form-container {
	margin-top: 24px;
}

/* white background */

.form-section.background-white,
.form-section.background-light {
	padding: 2rem 1rem;
}

.form-section.background-light {
	background-color: #fef4ea; /* TODO */
}

/* 3 columns */
form.hs-form fieldset.form-columns-3 .hs-form-field {
  width: 33.333333%;
}

form.hs-form fieldset .field,
form.hs-form fieldset .hs-richtext {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

/* 1 col */
form.hs-form fieldset.form-columns-1 input.hs-input {
  width: 100%;
}
form.hs-form fieldset.form-columns-1 input.hs-input[type=checkbox] {
	width: auto;
}

form.hs-form fieldset.form-columns-1 textarea.hs-input {
  width: 100%;
}

form.hs-form fieldset.form-columns-1 .hs-form-booleancheckbox input.hs-input {
  width: auto;
}

@media (max-width: 767px) {
  form.hs-form fieldset.form-columns-3 input.hs-input,
  form.hs-form fieldset.form-columns-3 .hs-form-field .hs-input,
  form.hs-form fieldset.form-columns-2 .hs-form-field .hs-input {
    width: 100% !important;
  }

  form.hs-form fieldset.form-columns-3 input.hs-input[type=checkbox],
  form.hs-form fieldset.form-columns-3 .hs-form-field .hs-input[type=checkbox],
  form.hs-form fieldset.form-columns-2 .hs-form-field .hs-input[type=checkbox],
  form.hs-form fieldset.form-columns-1 .hs-form-field .hs-input[type=checkbox] {
    /*-webkit-transform: scale(1.3,1.3);*/
    max-width: 32px;
    width: 32px;
  }
}

/* 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% !important;
  border: 1px solid;
}

form select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url(data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2212%22%20height%3D%2212%22%20viewBox%3D%220%200%2012%2012%22%3E%3Ctitle%3Edown-arrow%3C%2Ftitle%3E%3Cg%20fill%3D%22%23000000%22%3E%3Cpath%20d%3D%22M10.293%2C3.293%2C6%2C7.586%2C1.707%2C3.293A1%2C1%2C0%2C0%2C0%2C.293%2C4.707l5%2C5a1%2C1%2C0%2C0%2C0%2C1.414%2C0l5-5a1%2C1%2C0%2C1%2C0-1.414-1.414Z%22%20fill%3D%22%23000000%22%3E%3C%2Fpath%3E%3C%2Fg%3E%3C%2Fsvg%3E);
  background-size: .6rem;
  background-position: calc(100% - 1.3em) center;
  background-repeat: no-repeat;
  color: #000;
}

form textarea {
  resize: vertical;
}

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

/* Inputs - checkbox/radio */

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

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

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

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

form .hs-form-radio label.hs-form-radio-display {
  display: flex;
  align-items: center;
}

form .hs-form-radio label.hs-form-radio-display input[type=radio] {
  width: auto;
}

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

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

/* GDPR */

.legal-consent-container .hs-form-booleancheckbox-display {
  display: flex;
  align-items: center;
}

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

form .legal-consent-container,
form .legal-consent-container .hs-richtext,
form .legal-consent-container p,
form .legal-consent-container span,
form .hsfc-DataPrivacyField {
	font-size: 11px;
}

form .legal-consent-container .hs-richtext,
form .legal-consent-container p {
	margin-bottom: 4px;
}

form .legal-consent-container {
	margin-bottom: 1.5rem;
}

/* 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 .actions {
  display: flex;
}

.form-container.submit-left form .actions {
  justify-content: flex-start;
}

.form-container.submit-center form .actions {
  justify-content: center;
}

.form-container.submit-right form .actions {
  justify-content: flex-end;
}

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

form .hsfc-Button {
	font-weight: 400 !important;
}

form .hsfc-Step__Content p {
	margin: 0 !important;
}

/* Captcha */

.grecaptcha-badge {
  margin: 0 auto;
}


/* background classes */

.background-white {
    background-color: white;
}

.background-none {
    background-color: transparent;
}

/* shadow */

.shadow {
    -webkit-box-shadow: 4px 4px 1rem rgba(0, 0, 0, 0.2);
    box-shadow: 4px 4px 1rem rgba(0, 0, 0, 0.2);
}

/* border */
.border {
    border: 2px solid;
}

.border-white {
    border-color: white;
}

/* fills */
.fill-white,
.fill-white svg {
    fill: white;
}

/* images */

img.circle {
    border-radius: 100%;
}

/* Components
Specific pieces of UI that are stylized. Typically used for global partial styling
*/




/* Header DND sections */

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

/* Header container */

.header {
    width: 100%;
    height: 100px;
    position: fixed;
    top: 0;
    z-index: 999;
    transition: all 0.3s ease;
}

.header__container {
    width: 100%;
    padding: 0.5rem 0 0;
}

.header__container_secondary {
	background: linear-gradient(to left, #581ae8, #e8581a);
	color: #fff;
	font-size: 0.7rem;
	min-height: 33px;
}

.header.scroll .header__container_secondary {
	min-height: 0;
}

.header.scroll {
    height: auto;
}

.header.scroll .header__container {
	padding: 0.5rem 0;
}

@media (max-width: 767px) {
    .header {
        height: auto;
    }
}

/* Header Styles */

.header.default.shadow,
.header.transparent.scroll.shadow {
    box-shadow: 0 0 8px rgba(0,0,0,0.2);
}

.header.default.border,
.header.transparent.scroll.border {
    border-bottom: 1px solid #dfdfdf;
}

.header.transparent {
    background-color: transparent;
    box-shadow: none;
    border: none;
}

/* 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;
    z-index: 9999;
}

/* Logo */

.header__logo img {
    max-height: 82px; /* 100px minus padding */
    width: auto;
    transition: all 0.3s ease;
    margin-right: 2rem;
}

.header.scroll .header__logo img {
    /*transform: scale(50%);*/
    max-height: 41px;
	  filter: invert(1);
}

@media (max-width: 500px) {
    .header .header__logo img {
        max-height: 41px;
    }
}

/* Search bar */

.page-search {
    margin-left: 1rem;
    position: relative;
    padding: 10px 0;
}

.page-search .search-toggle .icon-container svg {
    width: 18px;
    height: 18px;
    transition: all 0.3s ease;
}

.page-search .search-input {
    position: absolute;
    right: -1rem;
    width: 400px;
    padding-top: 50px;
    transition: all 0.3s ease;
    opacity: 0;
    z-index: -5;
}

.js-search-open .page-search .search-input {
    opacity: 1;
    z-index: 99999;
}

/* Search Module Styles */

.hs-editor-hide-until-active {
    display: none;
}

.inpage-editor-active-field .hs-editor-hide-until-active {
    display: block;
}

.hs-search-field {
    position: relative;
}

.hs-search-field__input {
    box-sizing: border-box;
    width: 100%;
    flex: 1;
}

.hs-search-field__bar button svg {
    height: 18px;
}

button.hs-search-field__button {
    padding: 1rem;
    margin-left: 1rem;
}

button.hs-search-field__button .hs_cos_wrapper_type_icon {
    display: flex;
}

.hs-search-field__suggestions {
    padding: 0;
    margin: 0;
    list-style: none;
}

.hs-search-field--open .hs-search-field__suggestions,
.inpage-editor-active-field .hs-search-field__suggestions {
    position: absolute;
    width: 100%;
    border: 1px solid #cdcdcd;
    background-color: #fff;
    box-shadow: 1px 10px 16px -9px rgba(122, 122, 122, 0.75);
}

.hs-search-field__suggestions li {
    display: block;
    padding: 0;
    margin: 0;
}

.hs-search-field__suggestions .results-for {
    font-weight: bold;
}

.hs-search-field__suggestions a,
.hs-search-field__suggestions .results-for {
    display: block;
    padding: 0 10px;
    line-height: 1.7rem;
}

.hs-search-field__suggestions a:hover,
.hs-search-field__suggestions a:focus {
    background-color: rgba(0, 0, 0, 0.1);
    outline: none;
}

.hs-search-field__input:focus {
    outline-style: solid;
}

.hs-search-field__suggestions-container {
    position: relative;
    flex-basis: 100%;
}

.hs-search-field__form {
    display: flex;
    flex-wrap: wrap;
}

.hs-search-field__label {
    flex-basis: 100%;
}

.hs-search-field__bar--button-beneath .hs-search-field__input {
    flex-basis: 100%;
}

.hs-search-field__bar--button-beneath .hs-search-field__button {
    margin-top: 0.725rem;
    margin-right: 0.725rem;
}

.hs-search-field__bar--button-align-right .hs-search-field__button {
    margin-right: 0;
    margin-left: 0.725rem;
    order: 2;
}

.hs-search-field__bar--button-beneath .hs-search-field__suggestions-container {
    min-width: 75%;
    flex-basis: auto;
    flex-grow: 1;
}

.hs-search-field__button--labelled .hs_cos_wrapper_type_icon {
    margin-right: 0.5rem;
}

/* stylelint-disable declaration-no-important */
.show-for-sr {
    position: absolute !important;
    overflow: hidden !important;
    height: 1px !important;
    width: 1px !important;
    padding: 0 !important;
    border: 0 !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
}
/* stylelint-enable declaration-no-important */


@media (min-width: 767px) {

}

@media (max-width: 767px) {

}

/* Language switcher */

.language-switcher {
    margin-left: 1rem;
    text-transform: uppercase;
    position: relative;
}

.language-switcher .current-language {
    padding: 10px 0;
}

.language-switcher .current-language > span {
    padding: 0 0.2rem;
}

.language-switcher .current-language .language-switcher-chevron {
    width: 8px;
    height: auto;
}

.language-switcher .available-translations {
    list-style-type: none;
    position: absolute;
    padding: 10px 0;
    margin: 0;
    width: 100%;
    background: #fff;
    -webkit-box-shadow: 0 0 5px 0px rgba(0,0,0,0.1);
    box-shadow: 0 0 5px 0px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    opacity: 0;
    z-index: -5;

}

.language-switcher .available-translations:after {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    width: 0;
    height: 0;
    border: 5px solid transparent;
    margin-left: -5px;
    top: -10px;
    border-bottom-color: #e56951;
}

.language-switcher .available-translations li {
    width: 100%;
    padding: 10px 0;
    margin: 0;
    text-align: center;
    transition: all 0.2s ease;
    display: none;
}

.language-switcher .available-translations li:hover {
    background: #f5f5f5;
}

.language-switcher .available-translations li a {
    display: block;
    width: 100%;
}

.language-switcher:hover .available-translations,
.language-switcher:focus .available-translations,
.language-switcher:focus-visible .available-translations,
.language-switcher:active .available-translations,
.js-lang-open .language-switcher .available-translations {
    opacity: 1;
    z-index: 99999;
}

.language-switcher:hover .available-translations li,
.js-lang-open .language-switcher .available-translations li {
    display: list-item;
}

@media (max-width: 1041px) {

    .language-switcher .available-translations,
    .language-switcher:active .available-translations,
    .language-switcher:focus .available-translations,
    .language-switcher:focus-visible .available-translations,
    .language-switcher:hover .available-translations {
        opacity: 0;
        height: 0;
        overflow: hidden;
    }

    .js-lang-open .language-switcher .available-translations {
        opacity: 1;
        height: auto;
        overflow: visible;
    }

    .language-switcher {
        width: 100%;
    }

    .language-switcher .current-language {
        width: 100%;
        justify-content: center;
    }

    .language-switcher .available-translations {
        bottom: 0;
        transform: translateY(-40px);
    }

    .language-switcher .available-translations:after {
        top: unset;
        bottom: -10px;
        border-bottom-color: transparent;
        border-top-color: #e56951;
    }
}

/* Navigation */

.header .header__menu {
    width: 100%;
}

.header__menu nav > div:not(:last-of-type),
.header__menu nav > a:not(:last-of-type),
nav.header__menu--secondary .menu-item:not(:last-of-type) {
    margin-right: 1rem;
}

.header__menu nav > .btn-header,
.header .container-btn-header .btn-header,
.header .header__container_secondary nav.header__menu--secondary {
    transition: all 0.3s ease-out;
}
@media screen and (min-width: 1042px) {
    .header.scroll .header__menu nav > .btn-header,
    .header.scroll .container-btn-header .btn-header {
        padding: 0.5rem 1rem;
    }
}

.header__menu .container-btn-header {
    margin-left: 1rem;
}

.header .header__container_secondary nav.header__menu--secondary {
	height: auto;
	opacity: 1;
	overflow: hidden;
}

.header__menu .header__menu--secondary {
	display: none;
}

@media screen and (min-width: 1042px) {
    .header.scroll .header__container_secondary nav.header__menu--secondary {
        height: 0;
        opacity: 0;
        padding-bottom: 0;
    }
}

.header .header__menu .menu-item a,
.header .header__menu .menu-item > span {
	padding-bottom: 1.5rem; /* TODO */
}

.header .header__menu .menu-item a svg {
	margin-left: 5px;
}

.header__menu nav > .menu-item a:not(.btn-header):after,
.header__menu--secondary > .menu-item a:after,
.header__menu nav > .menu-item > span:after{
	display: block;
	content: '';
  border-bottom: solid 3px;  
  transform: scaleX(0);  
	transform-origin:  0% 50%;
  transition: transform 250ms ease-in-out;
}

.header__menu nav > .menu-item a:not(.btn-header):hover:after,
.header__menu--secondary > .menu-item a:hover:after,
.header__menu nav > .menu-item > span:hover:after,
.header .header__menu .menu-item.active > a:not(.btn-header):after,
.header__menu--secondary > .menu-item.active a:after,
.header .header__menu .menu-item.active > span:after { 
	transform: scaleX(1);
}

.header nav.header__menu--secondary .menu-item,
.header nav.header__menu--secondary .menu-item:hover,
.header nav.header__menu--secondary .menu-item:hover > a,
.header nav.header__menu--secondary .menu-item:hover > a:hover {
	color: #fff;
}

@media screen and (max-width: 1041px) {
	.header__menu .container-btn-header .btn-header,
	.header .header__menu .menu-item a,
	.header .header__menu .menu-item > span {
		display: block;
	}
	
	.header__menu .container-btn-header {
		margin: 1rem 0 0;
	}
	
	.header__menu .burger-menu-container .menu-container {
		display: flex;
		flex-direction: column;
	}
	
	.header__menu nav>a:not(:last-of-type),
	.header__menu nav>div:not(:last-of-type) {
		margin-right: 0;
	}
	
	.header .header__menu--secondary {
		margin-top: 1rem;
	}
	
	.header .header__menu--secondary .menu-item a {
    padding-bottom: 0.5rem;
	}
	
	.header.landing .header__menu,
	.header.landing .header__menu--secondary {
		display: none;
	}
}

/* Mobile toggles */

.hamburger-switch,
.menu-close {
    display: none;
}

.hamburger-switch svg,
.menu-close svg {
	  width: 2rem;
	  height: 2rem;
    transition: all 0.3s ease;
}

.header.scroll .hamburger-switch svg {
    width: 1.5rem;
    height: 1.5rem;
}

/* (max-width: 991px) */
@media (max-width: 1041px) {
    .hamburger-switch {
        display: block;
    }

    .hamburger-switch:hover {
        cursor: cursor;
    }

    /*.header__menu--main*/
    .burger-menu-container{
        display: none;
    }

    /* .js-menu-open .header__menu--main */
    .js-menu-open .burger-menu-container {
			  display: flex;
			  flex-direction: column;
        justify-content: center;
        position: absolute;
			  z-index: 1;
        top: -43px;
			  right: 0;
			  width: 50vw;
			  height: 100vh;
			  padding: 4rem 2rem;
            -webkit-box-shadow: 4px 4px 1rem rgba(0, 0, 0, .2);
            box-shadow: 4px 4px 1rem rgba(0, 0, 0, .2);
    }
	
		.js-menu-open .header.scroll .burger-menu-container {
      top: -10px;
		}

		.header__container_secondary .header__menu--secondary {
			display: none;
		}
	
    .header__menu--main,
	  .header__menu .header__menu--secondary {
        display: flex;
        flex-direction: column;
    }
	
	  .header__menu--secondary {
        font-size: 0.8rem;
    }

    .language-switcher {
        margin-left: 0;
        margin-top: 2rem;
    }

	
		.header__menu nav > a:not(:last-of-type) {
			margin-right: 0;
			margin-bottom: 2rem;
		}
	
		.js-menu-open .menu-close {
            display: block;
			position: absolute;
			z-index: 2;
			top: 1rem;
			right: 1rem;
		}
	
		.js-menu-open .menu-close:hover {
			cursor: pointer;
		}

    .header.scroll .header__menu nav > .btn-header {
        padding: 1rem 2rem;
    }
}

@media (max-width: 767px) {
    body.js-menu-open {
        overflow: hidden;
    }

    .js-menu-open .burger-menu-container {
      width: 100vw;
        overflow-y: scroll;
    }

}

@media screen and (max-height: 600px) {
    .js-menu-open .burger-menu-container {
        overflow-y: scroll;
    }
}

/* mega menu */
.header .menu-item .mega-menu {
	position: absolute;
	width: 100%;
	height: 0;
	left: 0;
	bottom: 0;
	transform: translateY(100%);
	z-index: -5;
	opacity: 0;
	overflow: hidden;
	transition: all 0.5s ease;
}

/*.header .menu-item.has-mega-menu:hover .mega-menu,
.header .menu-item.has-mega-menu:focus .mega-menu,
.header .menu-item.has-mega-menu:active .mega-menu*/

.header .menu-item.has-mega-menu.js-mega-menu-active .mega-menu {
	z-index: 2;
	height: auto;
	opacity: 1;
}

.header .menu-item.has-mega-menu .container-icon {
	display: inline-block;
	vertical-align: text-bottom;
}

.header .menu-item.has-mega-menu .mega-menu-icon {
	transition: all 0.5s ease;
}

.header .menu-item.has-mega-menu.js-mega-menu-active .mega-menu-icon {
	transform: rotate(-180deg);
}

/* mega menu styling */
.header.shadow .mega-menu {
	box-shadow: 0 8px 8px rgba(0,0,0,.2);
}

.header .mega-menu .mega-menu-col {
	width: 100%;
	padding: 1rem;
}

.header .mega-menu .mega-menu-col.image {
	width: 250px;
}

.header .mega-menu-col {
	font-size: 0.9rem;
}

.header .mega-menu-col .container-text {
	border-bottom: 8px solid #581ae8; /* TODO */
	padding: .5rem 0.25rem;
	min-height: 78px;
}

.header .mega-menu-col .heading {
	font-size: 1.2rem;
	margin: 0;
}

.header .mega-menu-col .subtitle {
	font-size: 0.8rem;
	margin: 0;
	font-weight: 300;
}

/* mega menu menu cols */
.header .mega-menu-col .container-menu ul li {
	padding-bottom: 0.75rem;
	line-height: 120%;
	width: fit-content;
}

.header .mega-menu-col .container-menu ul li:last-of-type,
.header .mega-menu-col .container-menu .submenu {
	padding-bottom: 0;
}

.header .mega-menu-col .container-menu .submenu a span {
	display: block;
	padding-bottom: 0.25rem;
}

.header .mega-menu-col .container-menu ul li a:after {
	display: block;
	content: '';
  border-bottom: solid 3px;  
  transform: scaleX(0);  
	transform-origin:  0% 50%;
  transition: transform 250ms ease-in-out;
}

.header .mega-menu-col .container-menu .submenu li.active a:after {
	transform: scaleX(1);
}



/* footer container */

.footer__content {
    padding-top: 5rem;
    padding-bottom: 4.5rem;
}

/* text styles */

.footer {
	/*font-weight: 400;*/
	position: relative;
	overflow-x: clip;
}

.footer-headline {
    margin-bottom: 1rem;
    padding-top: 2rem;
}

.footer-headline > span {
	color: #e8581a;
	text-decoration: underline;
	text-decoration-color: #581ae8;
	text-decoration-thickness: 15%;
	text-underline-offset: 10%;
}


@media (max-width: 991px) {
    .footer__content {
			padding-top: 2rem;
			padding-bottom: 2rem;
    }
}

/* layout classes */

.footer-col-3 {
    width: calc(100% / 3);
}

.footer-col-4 {
    width: 25%;
}

.footer-col-5 {
    width: 20%;
}

.footer-col-6 {
    width: calc(100% / 6);
}

@media (max-width: 991px) {
    .footer-col-3,
    .footer-col-4,
    .footer-col-5,
    .footer-col-6 {
        width: 50%
    }
}

@media (max-width: 767px) {
    .footer-col-3,
    .footer-col-4,
    .footer-col-5,
    .footer-col-6 {
        width: 100%
    }
}

/* footer menu */
ul.footer-menu {
	list-style-type: none;
	padding-inline-start: 0;
	margin: 0;
	position: relative;
	z-index: 2;
}

ul.footer-menu li:not(:last-of-type) {
    margin-bottom: 0.5rem;
}

ul.footer-menu a {
	width: fit-content;
	display: block;
}

ul.footer-menu a:hover,
.footer__content .richtext-container a:hover {
    cursor: pointer;
}

ul.footer-menu a:after,
.footer__content .richtext-container a:after,
ul.socket-menu a:after {
	display: block;
	content: '';
  border-bottom: solid 3px;  
  transform: scaleX(0);  
	transform-origin:  0% 50%;
  transition: transform 250ms ease-in-out;
}

ul.footer-menu a:hover:after,
.footer__content .richtext-container a:hover:after,
ul.socket-menu a:hover:after{
	transform: scaleX(1);
}

.footer__content .richtext-container p {
    margin-top: 0;
}

/* social media icons */
footer .socials-container .social-channel .icon-wrapper svg {
    width: 1.5rem;
    height: 1.5rem;
    transition: all 0.3s ease;
}

footer .socials-container .social-channel .icon-wrapper:hover svg {
    cursor: pointer;
    opacity: 0.7;
}

footer .socials-container .social-channel:not(:last-of-type) .icon-wrapper svg {
    margin-right: 0.5rem;
}

/* socket, lower footer */

.socket {
    padding: 1rem 0 0;
	  font-size: 0.8rem;
	  border-bottom: 18px solid;
	  border-image-slice: 1;
	  border-image-source: linear-gradient(to left, #581ae8, #e8581a);
	  z-index: 3;
    position: relative;
}

.socket > .content-wrapper {
		padding: 1.5rem 1rem;
}

.socket .logo-container {
	margin-bottom: 1rem;
}

ul.socket-menu {
	list-style-type: none;
	padding-inline-start: 0;
	margin: 0;
	position: relative;
	z-index: 2;
}

ul.socket-menu > li:not(:last-of-type),
.socket .logo-container img:not(:last-of-type) {
    margin-right: 1rem;
}

.socket .socials-container {
	margin-left: 2rem;
	position: relative;
	z-index: 2;
}

.socket .socials-container .social-channel .icon-wrapper svg {
    width: 1rem;
    height: 1rem;
    transition: all 0.3s ease;
}

@media (max-width: 991px) {
    .socket .copyright,
    .socket .socket-content {
        width: 100%;
    }

    .socket .copyright {
			margin-bottom: 1rem;
			position: relative;
			z-index: 2;
    }

    .socket .socket-content {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
	
	.socket > .content-wrapper {
		padding: 1.5rem 1rem;
		margin: 0;
	}
}

@media (max-width: 991px) {
    .socket .socket-content > * {
        width: 100%;
    }

    .socket .socials-container {
        margin-top: 1rem;
        margin-left: 0;
    }

    .socket .socials-container .social-channel .icon-wrapper svg {
        width: 1.5rem;
        height: 1.5rem;
    }

}

/* shapes */
.footer .shapes {
	position: absolute;
	width: 100%;
	height: 100%;
	bottom: 0;
}

.footer .shapes .shape1 {
	position: absolute;
	left: 0;
	transform: translate(-145%, 20%);
	z-index: 1;
}

.footer .shapes .shape2 {
	position: absolute;
	right: 0;
	bottom: -30px;
	transform: translate(63%, -30px);
	z-index: 1;
}
/* 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%;
}
@media screen and (max-width: 991px) {
    #hs-eu-cookie-confirmation-inner {
        font-size: 70% !important;
    }
}

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

/* For content that needs to be visually hidden but stay visible for screenreaders */

.show-for-sr {
    border: 0 !important;
    clip: rect(0, 0, 0, 0) !important;
    height: 1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    white-space: nowrap !important;
    width: 1px !important;
}

@media (max-width: 767px) {
    .show-for-sr--mobile {
        border: 0 !important;
        clip: rect(0, 0, 0, 0) !important;
        height: 1px !important;
        overflow: hidden !important;
        padding: 0 !important;
        position: absolute !important;
        white-space: nowrap !important;
        width: 1px !important;
    }
}