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


@import url('https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,200..1000;1,200..1000&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');
@font-face {
  font-family: 'DK Lemon Yellow Sun';
  src: url('https://144572039.fs1.hubspotusercontent-eu1.net/hubfs/144572039/Sprungraum-2024/Font/DKLemonYellowSun.woff2') format('woff2'),
    url('https://144572039.fs1.hubspotusercontent-eu1.net/hubfs/144572039/Sprungraum-2024/Font/DKLemonYellowSun.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}









:root {
  /* Theme Variable Styles */
  --body: #2C2C2C;
  --primary: #DE0082;
  --secondary: #000000;
  --tertiary: #2C2C2C;
  --quaternary: #F6F6F6;
  --quinary: #757575;
  --white: #fff;
  --black: #000;
  --bold: 700;
  --medium: 500;
  --regular: 400;
  --light: 300;
  --header-bg-color:#ffffff;
  --header-link-color:#000000;
  --footer-bg-color:#000000;
  --footer-text-color:#ffffff;
  --body-text-color: var(--body);
  --h1-color: var(--secondary);
  --h2-color: var(--secondary);
  --h3-color: var(--secondary);
  --h4-color: var(--secondary);
  --h5-color: var(--secondary);
  --h6-color: var(--secondary);
  --h1-weight: 700;
  --h2-weight: 700;
  --h3-weight: 700;
  --h4-weight: 700;
  --h5-weight: 700;
  --h6-weight: 700;
  --body-size: 1.0rem;
  --h1-size: 3.625rem;
  --h1-mobile-size: 2.5rem;
  --h2-size: 2.625rem;
  --h2-mobile-size: 1.875rem;
  --h3-size: 2.25rem;
  --h3-mobile-size: 1.5rem;
  --h4-size: 1.5rem;
  --h4-mobile-size: 1.25rem;
  --h5-size: 1.25rem;
  --h5-mobile-size: 1.125rem;
  --h6-size: 1.125rem;
  --h6-mobile-size: 1.0rem;
  --label-color: var(--body);
  --error-text-color: #FF0201;
  --form-background-color: var(--white);
  --form-border-color: var(--quinary);
  --container: 1290px;
  --container-small: px;
}
html.hs-inline-edit .site-common-section.site-geneal-popup-mdl {
  display: none !important;
}
html{
  font-size: 16px;
  color:var(--body-text-color);
}

body {
  font-family: "Raleway", sans-serif;
  background: #fff;
  word-break: break-word;
  font-weight: 500;
  font-style: normal;
  font-size: var(--body-size);
  line-height: 26px;
  color:var(--body-text-color);
}

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

/* Paragraphs */

p {
  font-size: var(--body-size);
  color:var(--body-text-color);
  font-weight: 500;
  line-height: 26px;
  margin: 0 0 15px;
}
p:last-child{
  margin:0;
}
p:first-child{
  margin: 0 0 15px;
}
/* Anchors */

a {
  color: var(--tertiary );
  cursor: pointer;
  text-decoration: none;
  transition: all .5s ease;
  -moz-transition: all .5s ease;
  -ms-transition: all .5s ease;
  -o-transition: all .5s ease;
  -webkit-transition: all .5s ease;
}

a:hover,
a:focus {
  text-decoration: underline;
}

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6,
small{
  color: var(--secondary);
  margin:0 0 15px;
}

h1, .h1 { 
  font-size: var(--h1-size);
  font-weight: var(--h1-weight);
  line-height: 1.1724137931;
  color:var(--h1-color);
  margin:0 0 23px;
}
h2, .h2 { 
  font-size: var(--h2-size);
  font-weight: var(--h2-weight);
  line-height: 1.2380952381;
  color:var(--h2-color);
  margin:0 0 15px;
}
h3, .h3 { 
  font-size: var(--h3-size);
  font-weight: var(--h3-weight);
  line-height: 1.27777777778;
  color:var(--h3-color);
}
h4, .h4 { 
  font-size: var(--h4-size);
  font-weight: var(--h4-weight);
  line-height: 1.41666666667;
  color:var(--h4-color);
  text-transform:none;
}
h5, .h5 { 
  font-size: var(--h5-size);
  font-weight: var(--h5-weight);
  line-height: 1.5;
  color:var(--h5-color);
}
h6, .h6 { 
  font-size: var(--h6-size);
  font-weight: var(--h6-weight);
  line-height: 1.55555555556;
  color:var(--h6-color);
}
small{
  display:block;
  font-size:14px;
  line-height:1.71428571429;
}
@media screen and (max-width: 991px) {
  h1, .h1 { font-size: var(--h1-mobile-size);line-height: 50px; }
  h2, .h2 { font-size: var(--h2-mobile-size);margin-bottom:24px;line-height: 40px; }
  h3, .h3 { font-size: var(--h3-mobile-size);line-height: normal; }
  h4, .h4 { font-size: var(--h4-mobile-size);line-height: normal; }
  h5, .h5 { font-size: var(--h5-mobile-size);line-height: normal; }
  h6, .h6 { font-size: var(--h6-mobile-size);line-height: normal; }
}
/* Lists */

ul,
ol {
  color: var(--body);
  margin: 0 0 1.5rem;
}
ul ul,
ol ul,
ul ol,
ol ol {
  margin: 0;
}

ul.no-list {
  list-style: none;
}

.site-common-section ul:not([class]) {
  padding: 0px;
}

.site-common-section ul li:not([class]) {
  font-weight: 400;
  padding-left: 26px;
  position: relative;
}

.site-common-section ul li:not([class]):before {
  background-image: url(https://144572039.fs1.hubspotusercontent-eu1.net/hubfs/144572039/Sprungraum-2024/Images/arrow-right.svg);
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  display: block;
  height: 14px;
  left: 0;
  position: absolute;
  top: 4px;
  width: 16px;
}

/* Code blocks */
pre {
  overflow: auto;
}
code {
  vertical-align: bottom;
}
/* Blockquotes */
blockquote {
  border-left: 2px solid;
  margin: 0 0 1.4rem;
  padding-left: 15px;
}
/* Horizontal rules */
hr {
  background-color: #CCC;
  border: none;
  color: #CCC;
  height: 1px;
}
/* Image alt text */
img {
  display:block;
  word-break: normal;
  vertical-align:middle;
}

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

html,body{
  overflow-x:hidden;
}
html.open-popup{
  overflow:hidden;
}
/* Sections
========================================================================== */

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

body {
  margin: 0;
}

/**
* Render the `main` element consistently in IE.
*/

main {
  display: block;
}

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


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

/**
* 1. Add the correct box sizing in Firefox.
* 2. Show the overflow in Edge and IE.
*/

hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

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

/**
* Remove the gray background on active links in IE 10.
*/

a {
  background-color: transparent;
}

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

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

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

b,
strong {
  font-weight: bolder;
}

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

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

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

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

/* Embedded content
========================================================================== */

/**
* Remove the border on images inside links in IE 10.
*/

img {
  border-style: none;
  display:block;
  width: 100%;
}

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

/**
* Show the overflow in IE.
* 1. Show the overflow in Edge.
*/

button,
input { /* 1 */
  overflow: visible;
}

/**
* Remove the inheritance of text transform in Edge, Firefox, and IE.
* 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;
}

/**
* 1. Correct the text wrapping in Edge and IE.
* 2. Correct the color inheritance from `fieldset` elements in IE.
* 3. Remove the padding so developers are not caught out when they zero out
*    `fieldset` elements in all browsers.
*/

legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

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

progress {
  vertical-align: baseline;
}

/**
* Remove the default vertical scrollbar in IE 10+.
*/

textarea {
  overflow: auto;
}

/**
* 1. Add the correct box sizing in IE 10.
* 2. Remove the padding in IE 10.
*/

[type="checkbox"],
[type="radio"] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
* 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, IE 10+, and Firefox.
*/

details {
  display: block;
}

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

summary {
  display: list-item;
}

/* Misc
========================================================================== */

/**
* Add the correct display in IE 10+.
*/

template {
  display: none;
}

/**
* Add the correct display in IE 10.
*/

[hidden] {
  display: none;
}

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

/* Responsive Grid */

.row-fluid {
    width: 100%;
    *zoom: 1;
}

.row-fluid:before, .row-fluid:after {
    display: table;
    content: "";
}

.row-fluid:after {
    clear: both;
}

.row-fluid [class*="span"] {
    display: block;
    float: left;
    width: 100%;
    min-height: 1px;
    margin-left: 2.127659574%;
    *margin-left: 2.0744680846382977%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}

.row-fluid [class*="span"]:first-child {
    margin-left: 0;
}

.row-fluid .span12 {
    width: 99.99999998999999%;
    *width: 99.94680850063828%;
}

.row-fluid .span11 {
    width: 91.489361693%;
    *width: 91.4361702036383%;
}

.row-fluid .span10 {
    width: 82.97872339599999%;
    *width: 82.92553190663828%;
}

.row-fluid .span9 {
    width: 74.468085099%;
    *width: 74.4148936096383%;
}

.row-fluid .span8 {
    width: 65.95744680199999%;
    *width: 65.90425531263828%;
}

.row-fluid .span7 {
    width: 57.446808505%;
    *width: 57.3936170156383%;
}

.row-fluid .span6 {
    width: 48.93617020799999%;
    *width: 48.88297871863829%;
}

.row-fluid .span5 {
    width: 40.425531911%;
    *width: 40.3723404216383%;
}

.row-fluid .span4 {
    width: 31.914893614%;
    *width: 31.8617021246383%;
}

.row-fluid .span3 {
    width: 23.404255317%;
    *width: 23.3510638276383%;
}

.row-fluid .span2 {
    width: 14.89361702%;
    *width: 14.8404255306383%;
}

.row-fluid .span1 {
    width: 6.382978723%;
    *width: 6.329787233638298%;
}

.container-fluid {
    *zoom: 1;
}

.container-fluid:before, .container-fluid:after {
    display: table;
    content: "";
}

.container-fluid:after {
    clear: both;
}

@media (max-width: 767px) {
    .row-fluid {
        width: 100%;
    }

    .row-fluid [class*="span"] {
        display: block;
        float: none;
        width: auto;
        margin-left: 0;
    }
}

@media (min-width: 768px) and (max-width: 1139px) {
    .row-fluid {
        width: 100%;
        *zoom: 1;
    }

    .row-fluid:before, .row-fluid:after {
        display: table;
        content: "";
    }

    .row-fluid:after {
        clear: both;
    }

    .row-fluid [class*="span"] {
        display: block;
        float: left;
        width: 100%;
        min-height: 1px;
        margin-left: 2.762430939%;
        *margin-left: 2.709239449638298%;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        -ms-box-sizing: border-box;
        box-sizing: border-box;
    }

    .row-fluid [class*="span"]:first-child {
        margin-left: 0;
    }

    .row-fluid .span12 {
        width: 99.999999993%;
        *width: 99.9468085036383%;
    }

    .row-fluid .span11 {
        width: 91.436464082%;
        *width: 91.38327259263829%;
    }

    .row-fluid .span10 {
        width: 82.87292817100001%;
        *width: 82.8197366816383%;
    }

    .row-fluid .span9 {
        width: 74.30939226%;
        *width: 74.25620077063829%;
    }

    .row-fluid .span8 {
        width: 65.74585634900001%;
        *width: 65.6926648596383%;
    }

    .row-fluid .span7 {
        width: 57.182320438000005%;
        *width: 57.129128948638304%;
    }

    .row-fluid .span6 {
        width: 48.618784527%;
        *width: 48.5655930376383%;
    }

    .row-fluid .span5 {
        width: 40.055248616%;
        *width: 40.0020571266383%;
    }

    .row-fluid .span4 {
        width: 31.491712705%;
        *width: 31.4385212156383%;
    }

    .row-fluid .span3 {
        width: 22.928176794%;
        *width: 22.874985304638297%;
    }

    .row-fluid .span2 {
        width: 14.364640883%;
        *width: 14.311449393638298%;
    }

    .row-fluid .span1 {
        width: 5.801104972%;
        *width: 5.747913482638298%;
    }
}

@media (min-width: 1280px) {
    .row-fluid {
        width: 100%;
        *zoom: 1;
    }

    .row-fluid:before, .row-fluid:after {
        display: table;
        content: "";
    }

    .row-fluid:after {
        clear: both;
    }

    .row-fluid [class*="span"] {
        display: block;
        float: left;
        width: 100%;
        min-height: 1px;
        margin-left: 2.564102564%;
        *margin-left: 2.510911074638298%;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        -ms-box-sizing: border-box;
        box-sizing: border-box;
    }

    .row-fluid [class*="span"]:first-child {
        margin-left: 0;
    }

    .row-fluid .span12 {
        width: 100%;
        *width: 99.94680851063829%;
    }

    .row-fluid .span11 {
        width: 91.45299145300001%;
        *width: 91.3997999636383%;
    }

    .row-fluid .span10 {
        width: 82.905982906%;
        *width: 82.8527914166383%;
    }

    .row-fluid .span9 {
        width: 74.358974359%;
        *width: 74.30578286963829%;
    }

    .row-fluid .span8 {
        width: 65.81196581200001%;
        *width: 65.7587743226383%;
    }

    .row-fluid .span7 {
        width: 57.264957265%;
        *width: 57.2117657756383%;
    }

    .row-fluid .span6 {
        width: 48.717948718%;
        *width: 48.6647572286383%;
    }

    .row-fluid .span5 {
        width: 40.170940171000005%;
        *width: 40.117748681638304%;
    }

    .row-fluid .span4 {
        width: 31.623931624%;
        *width: 31.5707401346383%;
    }

    .row-fluid .span3 {
        width: 23.076923077%;
        *width: 23.0237315876383%;
    }

    .row-fluid .span2 {
        width: 14.529914530000001%;
        *width: 14.4767230406383%;
    }

    .row-fluid .span1 {
        width: 5.982905983%;
        *width: 5.929714493638298%;
    }
}

/* Clearfix */

.clearfix {
    *zoom: 1;
}

.clearfix:before, .clearfix:after {
    display: table;
    content: "";
}

.clearfix:after {
    clear: both;
}

/* Visibilty Classes */

.hide {
    display: none;
}

.show {
    display: block;
}

.invisible {
    visibility: hidden;
}

.hidden {
    display: none;
    visibility: hidden;
}

/* Responsive Visibilty Classes */

.visible-phone {
    display: none !important;
}

.visible-tablet {
    display: none !important;
}

.hidden-desktop {
    display: none !important;
}

@media (max-width: 767px) {
    .visible-phone {
        display: inherit !important;
    }

    .hidden-phone {
        display: none !important;
    }

    .hidden-desktop {
        display: inherit !important;
    }

    .visible-desktop {
        display: none !important;
    }
}

@media (min-width: 768px) and (max-width: 1139px) {
    .visible-tablet {
        display: inherit !important;
    }

    .hidden-tablet {
        display: none !important;
    }

    .hidden-desktop {
        display: inherit !important;
    }

    .visible-desktop {
        display: none !important ;
    }
}
.container,.container-small, .content-wrapper {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}
.left-container {
  padding-left: calc(50% - (var(--container) - 20px) / 2);
}
.right-container {
  padding-right: calc(50% - (var(--container) - 20px) / 2);
}
@media screen and (min-width:1199px) and (max-width:1400px){
  .container,.container-small, .content-wrapper{
    max-width: var(--container-small);
    margin: 0 auto;
  }
  .left-container {
    padding-left: calc(50% - (var(--container-small) - 20px) / 2);
  }
  .right-container {
    padding-right: calc(50% - (var(--container-small) - 20px) / 2);
  }
}
@media screen and (min-width:992px) and (max-width:1198px){
  .left-container {
    padding-left:20px;
  }
  .right-container {
    padding-right:20px;
  }
}
@media screen and (max-width:991px) {
  .left-container {
    padding: 0 20px;
  }
  .right-container {
    padding:0 20px;
  }
}

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

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

.cta-wrap {
  display: inline-block;
}
.btn a{
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  line-height:1.625;
  letter-spacing: 0;
  padding: 7px 18.5px;
  border: 2px solid transparent;
  text-align: center;
  text-decoration: none;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  white-space: normal;
  cursor: pointer;
  text-transform: uppercase;
  position: relative;
  
  border-radius: 40px;
  
  
}

/*---- Primary Button Styles ----*/
.btn.btn--primary a{
  background: var(--primary );
  color: var(--white);
}
.btn.btn--primary a:hover,
.btn.btn--primary a:focus,
.btn.btn--primary a:active{
  color: var(--primary);
  text-decoration: none;
  /*   background: var(--white); */
  background: transparent;
  border-color: var(--primary);
}
/*---- Secondary Button Styles ----*/

.btn.btn--secondary a {
  background: var(--white);
  color: var(--primary);
} 
.btn.btn--secondary a:hover,
.btn.btn--secondary a:focus,
.btn.btn--secondary a:active{
  text-decoration: none;
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

@media screen and (min-width:992px) and (max-width:1700px){

}
@media screen and (max-width:991px){

}
/* Labels */

form label {
  display: block;
  font-size: 16px;
  margin-bottom: 5px;
  color:var(--body);
  line-height:1.625;
}

/* Help text - legends */

form legend {
  font-size: 0.875rem;
}

/* Inputs */

form .hs-form-field {
  position: relative;
  display: inline-block;
  width: 100%;
  margin: 14px 0;
}

.hs-form-field > label > span:first-child {
  color: var(--label-color);
}

/* Label Styles for Fields that can shift the label when filled */
.hs-form-field > label {
  display: block;
  font-size: 16px;
  font-weight: 400;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  color: var(--label-color);
  line-height:26px;
  margin-bottom: 5px
}

.hs-form-field > label span:first-child {
  color: var(--body);
  font-size:16px;

}







form input[type=text],
form input[type=email],
form input[type=password],
form input[type=tel],
form input[type=number],
form input[type=file],
form select,
form textarea {
  -webkit-appearance: none;
  appearance: none;
  background-color: var(--form-background-color);
  border:1px solid var(--form-border-color);
  width: 100%!important;
  height: 60px;
  outline:0;
  display: inline-block;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  text-align: left;
  padding: 8px 20px;
  
  
  border-radius: 5px;
  
  
  
  color:var(--body);
  

}


form select{
  
  padding: 0 55px 0 16px;
  color:var(--white);
  
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: url(https://144572039.fs1.hubspotusercontent-eu1.net/hubfs/144572039/Sprungraum-2024/Images/down.svg) #ffffff;
  background-position: 97% 50%;
  background-repeat: no-repeat;
  background-size: 14px;
  color:rgba(44, 44, 44, 1);
  line-height: 21px;
}


form input[type=text]::placeholder,
form input[type=email]::placeholder,
form input[type=password]::placeholder,
form input[type=tel]::placeholder,
form input[type=number]::placeholder,
form input[type=file]::placeholder,
form textarea::placeholder{
  
  color:var(--tertiary);
  

}
form textarea,.hs-fieldtype-textarea.hs-input {
  min-height: 108px;
  resize:none !important;
}
.submitted-message,
.submitted-message *{
  color: var(--body);
  font-size: 22px;
  font-weight: 700;
  text-align:center;
}
form fieldset {
  max-width: 100% !important;
}

form input[type=text]:focus,
form input[type=email]:focus,
form input[type=password]:focus,
form input[type=tel]:focus,
form input[type=number]:focus,
form input[type=file]:focus,
form select:focus,
form textarea:focus {
  border-color: var(--primary);
}

form input[type="radio"]:focus {
  border-color: var(--primary);
}

form fieldset.form-columns-2 > div {
  width: 100%!important;
}

form fieldset .input {
  margin-right: 0!important;
  display:flex;
  flex-wrap:wrap;
}


@media (min-width: 481px) {
  form .hs-form-field {
    margin: 0 0 20px;
  }

  form fieldset.form-columns-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 20px;
  }
}
@media (min-width: 992px) {
  form .hs-form-field {
    margin: 0 0 50px;
  }

}

/* Inputs - checkbox/radio */
form .hs-fieldtype-radio .hs-form-radio-display,
form .hs-fieldtype-checkbox .hs-form-checkbox-display {
  display: grid;
  grid-template-columns: 20px 1fr;
  column-gap: 5px;
}

form .hs-fieldtype-radio .hs-form-radio-display input[type="radio"],
form .hs-fieldtype-checkbox .hs-form-checkbox-display input[type="checkbox"] {
  position: relative;
  display: block;
  -webkit-appearance: none;
  appearance: none;
  margin: 4px 0 0;
  width: 16px !important;
  height: 16px !important;
  border-radius: 3px;
  border: 2px solid var(--form-border-color);
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

form .hs-fieldtype-radio .hs-form-radio-display input[type="radio"] {
  border-radius: 50%;
}
form .hs-fieldtype-radio .hs-form-radio-display input[type="radio"]:hover,
form .hs-fieldtype-checkbox .hs-form-checkbox-display input[type="checkbox"]:hover {
  background-color: var(--secondary);
}
form .hs-fieldtype-radio .hs-form-radio-display input[type="radio"]:checked,
form .hs-fieldtype-checkbox .hs-form-checkbox-display input[type="checkbox"]:checked {
  background-color: var(--body);
}

form .hs-fieldtype-checkbox .hs-form-checkbox-display input[type="checkbox"]:before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 9px;
  color: var(--white);
  position: absolute;
  top: 1px;
  left: 2.6px;
  opacity: 0;
  visibility: hidden;
  transition: all ease-in-out .3s;
}

form .hs-fieldtype-checkbox .hs-form-checkbox-display input[type="checkbox"]:checked:before {
  opacity: 1;
  visibility: visible;
}

form .hs-fieldtype-radio .hs-form-radio-display span,
form .hs-fieldtype-checkbox .hs-form-checkbox-display span {
  font-size: 16px;
}

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

form .inputs-list > li {
  display: block;
  margin: 16px 0;
}

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

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

/* Inputs - datepicker */

.hs-dateinput {
  position: relative;
}

.hs-dateinput:before {
  content:'\01F4C5';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}
.hs_error_rollup {
  display: none;
}
.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;
  color:transparent !important;
}

/* Headings and text */

form .hs-richtext,
{
  font-size: 15px;
  margin: 0 0 10px;
}
form .hs-richtext * {
  font-size:15px;
}
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;
  font-size:15px;
}

.legal-consent-container * {
  font-size: 15px;
  color: var(--body);
}

/* Validation */

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

.hs-input.invalid.error {
  border-color: var(--error-text-color);
}

form .inputs-list.hs-error-msgs > li {
  margin: 0;
}

form .inputs-list.hs-error-msgs > li:after {
  display:none;
}

.hs-error-msg {
  color: var(--error-text-color);
  margin-top: 0.35rem;
}

/* Submit button */
form .hs-submit .actions {
  display: inline-block;
  position: relative;
}
form input[type=submit],
form .hs-button{
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  line-height:1.625;
  letter-spacing: 0;
  padding: 7px 18.5px;
  background: var(--primary );
  color: var(--white);
  border: 2px solid transparent;
  text-align: center;
  text-decoration: none;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  white-space: normal;
  cursor: pointer;
  position: relative;
  
  border-radius: 40px;
  
  
}
form input[type=submit]:hover,
form .hs-button:hover{
  color: var(--primary);
  text-decoration: none;
/*   background: var(--white); */
   background: transparent;
  border-color: var(--primary);
}
.hs-error-msgs li label{
  color:var(--error-text-color);
  margin-bottom: 0;
  margin-top:10px;
  font-size:14px;
  line-height:normal;
}


@media screen and (max-width: 991px) {
  form .hs-submit .actions:after {
    height: 40px;
    right: 10px;
    width: 40px;
  }
  form .hs-submit .actions:before {
    background-size: 26px;
    height: 22px;
    right: 20px;
    width: 20px;
  }
}
/* Captcha */

.grecaptcha-badge {
  margin: 10px 0 0;
}




.hs-fieldtype-booleancheckbox:not(:last-child) { margin-bottom: 29px }
.hs-fieldtype-booleancheckbox label.hs-form-booleancheckbox-display { display: flex; flex-wrap: wrap; margin: 0; }
.hs-form-booleancheckbox-display .hs-input { display: none }
.hs-fieldtype-booleancheckbox label.hs-form-booleancheckbox-display input+span { align-items: center; cursor: pointer; display: flex; flex-wrap: wrap; padding-left: 35px; position: relative; width: calc(100% - 35px); }
.hs-fieldtype-booleancheckbox label.hs-form-booleancheckbox-display input+span:before { background-color: var(--white); border: 1px solid var(--body); border-radius: 3px; content: ""; display: inline-block; height: 20px; left: 0; margin-right: 10px; position: absolute; top: 2px; transition: all .5s ease; width: 20px; }
.hs-fieldtype-booleancheckbox label.hs-form-booleancheckbox-display input:checked+span:before { background-color: var(--white); border: 1px solid var(--body); }
.hs-fieldtype-booleancheckbox label.hs-form-booleancheckbox-display input:checked+span:after { background-color: transparent; background-image: url(https://26154702.fs1.hubspotusercontent-eu1.net/hubfs/26154702/Xtremepush%202024/Images/tick.svg); background-position: 50%; background-repeat: no-repeat; background-size: cover; border-radius: 100%; content: ""; height: 13px; left: 3px; position: absolute; top: 5px; transition: all .5s ease; width: 15px; }
li.hs-form-booleancheckbox { margin: 0 !important; }



@media(max-width:991px){
  form input[type=text],
  form input[type=email],
  form input[type=password],
  form input[type=tel],
  form input[type=number],
  form input[type=file],
  form select,
  form textarea { 
    height:40px;
  }
  .hs-fieldtype-textarea.hs-input, form textarea {
    height:80px;
  }
}


@media screen and (max-width:767px){
  form fieldset.form-columns-2 {
    margin: 0 -5px;
    max-width: unset !important;
    display: flex !important;
    flex-wrap: wrap;
    column-gap: unset !important;
  }
  form fieldset.form-columns-2>div {
    width: 100% !important;
    padding: 0 5px;
    display: block;
  }
  form label{margin-bottom:10px;}
}
/* Table */

table {
  border: 1px solid;
  margin-bottom: 1.4rem;
  overflow-wrap: break-word;
}

/* Table Cells */

th,
td {
  border: 1px solid;
  padding: 0.75rem;
  vertical-align: top;
}

/* Table Header */

thead th,
thead td {
  border-bottom: 2px solid;
  vertical-align: bottom;
}

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

header.header {
  background-color: var(--header-bg-color);
}
.top-bar-wrap { background: var(--primary); text-align: center; padding: 3px 0; } .top-bar-wrap p { color: var(--white); margin: 0; font-size: 16px; font-weight: 500; line-height: 24px; } .top-bar-wrap * { color: var(--white); }
.header-container{max-width:1400px;padding:0 20px;margin:0 auto}
header.header .top-header-row{align-items: center;display:flex;flex-wrap:wrap;margin:0 -15px}
header.header .top-header-logo{width:30%;padding:0 15px}
header.header .top-header-logo a{display:block;max-width:128px}
header.header .top-header-logo a img{width:100%}
header.header .top-header-inner{padding:9px 0;border-bottom:1px solid #75757533}
header.header .bottom-header-inner .bottom-header-logo{display:none;padding:0 15px}
header.header .bottom-header-inner .bottom-header-row{margin:0 -15px}
header.header .bottom-header-inner .bottom-header-row .bottom-header-menu{width:100%;padding:0 15px}
header.header .bottom-header-inner .bottom-header-row .bottom-header-menu ul{display:flex;align-items:center;justify-content:center}
header.header .bottom-header-inner .bottom-header-row .bottom-header-menu ul>.hs-menu-item.hs-menu-depth-1>a{font-size:16px;font-weight:500;line-height:50px;text-align:center;display:block;padding:20px 0;transition:all .5s ease-in-out;text-decoration:none;}
header.header .bottom-header-inner .bottom-header-row .bottom-header-menu ul>.hs-menu-item.hs-menu-depth-1{margin:0 25px}
header.header .bottom-header-inner .bottom-header-row .bottom-header-menu ul>.hs-menu-item.hs-menu-depth-1>a:hover{color:var(--primary)}
header.header .bottom-header-inner .bottom-header-row .bottom-header-menu ul>.hs-menu-item.hs-menu-depth-1 .hs-menu-children-wrapper{border-top:2px solid #de0082;padding:10px;border-radius:6px;background:#fff;z-index:2;width:270px;top:77%;align-items:flex-start;opacity: 0; visibility: hidden; transition: all 500ms ease-in-out;}
header.header .bottom-header-inner .bottom-header-row .bottom-header-menu ul>.hs-menu-item.hs-menu-depth-1:hover .hs-menu-children-wrapper { opacity: 1; visibility: visible; }
header.header .bottom-header-inner .bottom-header-row .bottom-header-menu ul>.hs-menu-item.hs-menu-depth-1 .hs-menu-children-wrapper .hs-menu-item{width:100%;padding:0}
header.header .bottom-header-inner .bottom-header-row .bottom-header-menu ul>.hs-menu-item.hs-menu-depth-1 .hs-menu-children-wrapper .hs-menu-item a{display:inline-block;width:100%;position:relative;padding:5px 5px 5px 26px;font-size:14px;font-weight:400;line-height:26px;text-decoration:none;transition:all .5s ease-in-out;border-radius:4px}
header.header .bottom-header-inner .bottom-header-row .bottom-header-menu ul>.hs-menu-item.hs-menu-depth-1 .hs-menu-children-wrapper .hs-menu-item a:after{filter: brightness(0%);content:'';position:absolute;left:5px;top:14px;width:13px;height:8px;background:url('https://144572039.fs1.hubspotusercontent-eu1.net/hubfs/144572039/Sprungraum-2024/Images/chevron-right-pink.svg');background-position:100% 50%;background-repeat:no-repeat;background-size:cover;transition:all .5s ease-in-out}
header.header .bottom-header-inner .bottom-header-row .bottom-header-menu ul>.hs-menu-item.hs-menu-depth-1 .hs-menu-children-wrapper .hs-menu-item a:hover{background:#de26820F;padding:5px 5px 5px 34px}
header.header .bottom-header-inner .bottom-header-row .bottom-header-menu ul>.hs-menu-item.hs-menu-depth-1 .hs-menu-children-wrapper .hs-menu-item a:hover:after{width:21px;filter: brightness(100%);}
header.header .bottom-header-inner .bottom-header-row .bottom-header-menu ul>.hs-menu-item.hs-menu-depth-1 .hs-menu-children-wrapper:after { content: ''; position: absolute; left: 30px; top: -11px; height: 0; border-left: 5px solid transparent; border-right: 5px solid transparent; border-bottom: 10px solid var(--primary); }
header.header .top-header-row .top-header-dropdown{width:70%;padding:0 15px}
header.header .top-header-row .top-header-dropdown .header-cta-select-group{display:flex;align-items:center;justify-content:flex-end}
header.header .bottom-header-inner .bottom-header-row .bottom-header-menu ul a {
  color: var(--header-link-color);
}
.cta-popup{transition: all 300ms ease-in-out;position:fixed;top:0;left:0;width:100%;height:100%;z-index:9999;display:block;opacity:0;visibility:hidden}
.cta-popup.active { opacity: 1; visibility: visible; }
.cta-popup .cta-popup-overlay { width: 100%; position: absolute; left: 0; top: 0; height: 100%; background: rgba(0,0,0,.5); z-index: 1; }
.cta-popup .cta-popup-inner{width:100%;height:100%;display:flex;align-items:center;justify-content:center}
.cta-popup .cta-popup-inner .cta-popup-inner-wrap{position: relative; z-index: 2;background:#fff;border:2px solid #de0082;padding:20px 18px;max-width:328px;border-radius:20px;width:100%}
.cta-popup .cta-popup-inner .cta-popup-inner-wrap .popup-title{font-size:20px;font-weight:700;line-height:30px;color:var(--primary);margin:0 0 20px}
.cta-popup .cta-popup-inner .popup-conetnt-item a{position:relative;padding:17px 17px 16px 55px;border-bottom:1px solid #f6f6f6;display:block;font-size:16px;font-weight:500;line-height:26px;text-decoration:none;transition:all .5s ease-in-out;color: var(--black);}
.cta-popup .cta-popup-inner .popup-conetnt-item:last-child a{border-bottom:0}
.cta-popup .cta-popup-inner .popup-conetnt-item a:after{content:'';position:absolute;left:10px;top:15px;width:30px;height:30px;background:#de00821A;border-radius:50%}
.cta-popup .cta-popup-inner .popup-conetnt-item a:before{content:'';position:absolute;left:21px;top:24px;width:9px;height:13px;background:url('https://144572039.fs1.hubspotusercontent-eu1.net/hubfs/144572039/Sprungraum-2024/Images/location-map.svg');background-position:center;background-repeat:no-repeat;background-size:contain}
.cta-popup .cta-popup-inner .popup-conetnt-item a:hover{color:var(--primary)}
html.popup-open,html.mobile-open { overflow: hidden; }
.header-select-wrap .select-menu{width: 223px; margin-right: 20px;}
.header-select-wrap .ticket-menu{width: 300px; margin-right: 20px;}
.header-select-wrap .select-menu .select-btn,
.header-select-wrap .ticket-menu .ticket-btn{align-items: center; background: url("https://144572039.fs1.hubspotusercontent-eu1.net/hubfs/144572039/Sprungraum-2024/Images/down.svg") #fff; border: 1px solid #757575; border-radius: 25px; color: #000; cursor: pointer; display: flex; font-size: 14px; font-weight: 500; height: 44px; justify-content: space-between; padding: 0 39px 0 49px; position: relative; background-position: calc(100% - 15px) 50%; background-repeat: no-repeat; background-size: 13px;}
.header-select-wrap .select-menu .options,
.header-select-wrap .ticket-menu .ticket-options{position:absolute;width:350px;overflow-y:auto;max-height:295px;padding:10px;margin-top:10px;border-radius:8px;background:#fff;box-shadow:0 0 10px rgba(0,0,0,.1);animation-name:fadeInDown;-webkit-animation-name:fadeInDown;animation-duration:.35s;animation-fill-mode:both;-webkit-animation-duration:.35s;-webkit-animation-fill-mode:both;visibility: hidden;}
.header-select-wrap .select-menu .options .option{align-items: center; background: #fff; border-radius: 8px; cursor: pointer; display: flex; height: 40px; padding: 0 16px;}
.header-select-wrap .ticket-menu .ticket-options .ticket-option{align-items: center; background: #fff; border-radius: 8px; cursor: pointer; display: flex; height: auto; padding: 6px 16px;}
.header-select-wrap .select-menu .options .option:hover,
.header-select-wrap .ticket-menu .ticket-options .ticket-option:hover{background:#f2f2f2}
.header-select-wrap .select-menu .options .option .option-text{
  width:100%;
}
.header-select-wrap .select-menu .options .option .option-text,
.header-select-wrap .ticket-menu .ticket-options .ticket-option .option-text{text-decoration: none;font-size:16px;}
.header-select-wrap .select-menu.active .options,
.header-select-wrap .ticket-menu.active .ticket-options{display:block;opacity:0;z-index:999;animation-name:fadeInUp;-webkit-animation-name:fadeInUp;animation-duration:.4s;animation-fill-mode:both;-webkit-animation-duration:.4s;-webkit-animation-fill-mode:both;visibility: visible;}
@keyframes fadeInUp{
  from{transform:translate3d(0,30px,0)}
  to{transform:translate3d(0,0,0);opacity:1}
}
@keyframes fadeInDown{
  from{transform:translate3d(0,0,0);opacity:1}
  to{transform:translate3d(0,20px,0);opacity:0}
}
.header-select-wrap .select-menu .select-btn:after{content:'';position:absolute;left:7px;top:6px;width:30px;height:30px;background:#de00821A;border-radius:50%}
.header-select-wrap .select-menu .select-btn:before{background:url(https://144572039.fs1.hubspotusercontent-eu1.net/hubfs/144572039/Sprungraum-2024/Images/location-map.svg);background-position:50%;background-repeat:no-repeat;background-size:contain;content:"";height:13px;left:18px;top:15px;width:9px;position:absolute}
header.header .top-header-row .top-header-dropdown .header-cta-select-group .header-select-wrap { display: flex; align-items: center; }
.header-select-wrap .ticket-menu .ticket-btn:after{content:'';position:absolute;left:7px;top:6px;width:30px;height:30px;background:#de00821A;border-radius:50%}
.header-select-wrap .ticket-menu .ticket-btn:before{background:url(https://144572039.fs1.hubspotusercontent-eu1.net/hubfs/144572039/Sprungraum-2024/Images/tickets.svg);background-position: 50%; background-repeat: no-repeat; background-size: contain; content: ""; height: 14px; left: 15px; position: absolute; top: 14px; width: 14px;}
.header-select-wrap .ticket-menu .ticket-options .ticket-option .option-text { margin: 0;height: auto;}
header.header.inner-header  .bottom-header-inner .bottom-header-row .bottom-header-menu ul>.hs-menu-item.hs-menu-depth-1 {margin: 0 15px;}
.header-select-wrap .ticket-menu .ticket-btn span.ticket-text { overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; }


.header-search-bar .header-search { width: 36px; height: 36px; background: #DE00821A; border-radius: 50%; border: 1px solid #DE008233; display: flex; align-items: center; justify-content: center; cursor: pointer; margin-left: 20px; } 
.header-search-bar .header-search img { width: 14px; height: 14px; display: block; }
.header-search-bar .hs-search-popup{display:block;height:100%;left:0;opacity:0;position:fixed;top:0;transition:all .5s ease-in-out;visibility:hidden;width:100%;z-index:9999}
.header-search-bar .hs-search-popup.open{opacity:1;visibility:visible}
.header-search-bar .hs-search-popup .hs-search-overlay{background:rgba(0,0,0,.5);height:100%;left:0;position:absolute;top:0;width:100%;z-index:1}
.header-search-bar .hs-search-popup .hs-search-field{align-items:center;display:flex;height:100%;justify-content:center;width:100%;}
.header-search-bar .hs-search-popup .hs-search-field .hs-search-field__bar .hs-search-field__suggestions-container{display:none}
.header-search-bar .hs-search-popup .hs-search-field .hs-search-field__bar .hs-search-field__button{border:2px solid transparent;border-radius:40px;cursor:pointer;font-size:16px;font-weight:700;letter-spacing:0;line-height:1.625;padding:7px 18.5px;position:relative;text-align:center;text-decoration:none;text-transform:uppercase;-webkit-transition:all .3s ease-in-out;transition:all .3s ease-in-out;white-space:normal;background:var(--primary);color:var(--white)}
.header-search-bar .hs-search-popup .hs-search-field .hs-search-field__bar .hs-search-field__button:hover{background:var(--white);border-color:var(--primary);color:var(--primary);text-decoration:none}
.header-search-bar .hs-search-popup .hs-search-field .hs-search-field__bar input{width:500px;background-color:var(--form-background-color);border:1px solid var(--form-border-color);border-radius:5px;color:var(--body);display:inline-block;font-size:16px;height:44px;line-height:26px;outline:0;padding:8px 20px;font-weight:500}
.header-search-bar .hs-search-popup .hs-search-field .hs-search-field__bar { z-index: 1; position:relative; }


.header-cta-select-group .header-lang-switcher{margin-left:20px}
.header-cta-select-group .header-lang-switcher .globe_class{width:auto;height:auto;background:0 0}
.header-cta-select-group .header-lang-switcher .globe_class .lang_list_class{list-style-type:none;width:65px}
.header-cta-select-group .header-lang-switcher .lang_switcher_class>li{list-style-type:none;padding-left:28px;position:relative}
.header-cta-select-group .header-lang-switcher .globe_class .lang_list_class li{margin:0}
.header-cta-select-group .header-lang-switcher .lang_switcher_class:hover .lang_list_class{display:block}
.header-cta-select-group .header-lang-switcher .lang_switcher_class>li .lang_switcher_link:after{content:'';position:absolute;left:0;top:2px;width:22px;height:22px;border-radius:50%}
.header-cta-select-group .header-lang-switcher .lang_switcher_class>li .lang_switcher_link[data-language=en]:after{background:url(https://144572039.fs1.hubspotusercontent-eu1.net/hubfs/144572039/Sprungraum-2024/Images/en.svg);background-position:center;background-repeat:no-repeat;background-size:cover}
.header-cta-select-group .header-lang-switcher .lang_switcher_class>li .lang_switcher_link[data-language=de]:after{background:url(https://144572039.fs1.hubspotusercontent-eu1.net/hubfs/144572039/Sprungraum-2024/Images/de.png);background-position:center;background-repeat:no-repeat;background-size:cover}
.header-cta-select-group .header-lang-switcher .lang_switcher_class { background: url('https://144572039.fs1.hubspotusercontent-eu1.net/hubfs/144572039/Sprungraum-2024/Images/arrow.svg'); background-position: 100% 50%; background-size: 12px; background-repeat: no-repeat; padding-right: 20px; }













@media screen and (min-width:992px){
  header.header .bottom-header-inner .bottom-header-row .bottom-header-menu .hs-menu-wrapper>ul { position: relative; } 
  header.header .bottom-header-inner .bottom-header-row .bottom-header-menu ul>.hs-menu-item.hs-menu-depth-1:hover>a { color: var(--primary); } 
  header.header .bottom-header-inner .bottom-header-row .bottom-header-menu ul>.hs-menu-item.hs-menu-depth-1 .hs-menu-children-wrapper .hs-menu-item a:hover { color: var(--primary); } 
  header.header .bottom-header-inner .bottom-header-row .bottom-header-menu ul .hs-menu-item.active-branch>a { color: var(--primary); }
  header.header .bottom-header-inner .bottom-header-row .bottom-header-menu .header-search {display: none;}
}


@media screen and (max-width:1100px){
  .header-select-wrap .ticket-menu { width: 250px; } 
  header.header .top-header-logo { width: 20%; } 
  header.header .top-header-row .top-header-dropdown { width: 80%; }
}

@media screen and (max-width:1360px) and (min-width:992px){
  header.header .top-header-row .top-header-dropdown .header-cta-select-group .header-select-wrap{width:51%}
  header.header .top-header-row .top-header-dropdown .header-cta-select-group{flex-wrap:wrap}
}

@media screen and (max-width:1045px) and (min-width:992px){
  header.header.inner-header .bottom-header-menu .custom-menu-primary .hs_cos_wrapper_type_menu>.hs-menu-wrapper>ul>li {
    margin: 0px 10px !important;
  }
}


@media screen and (max-width:991px) and (min-width:768px){
  .header-cta-select-group .header-lang-switcher{width:10%}
  header.header .top-header-row .top-header-dropdown .header-cta-select-group .header-select-wrap{width:57%}
  header.header .top-header-row .top-header-dropdown .header-cta-select-group .header-cta-group{width:30%}
  header.header .top-header-row .top-header-dropdown .header-cta-select-group{flex-wrap:wrap}
  header.header.general-home .custom-menu-primary .header-cta-group {
    display: none;
  }
}




@media screen and (max-width:991px){
  .top-bar-wrap .header-container p{font-size:14px;line-height:normal}
  .top-bar-wrap{padding:5px 0}
  header.header .bottom-header-inner .bottom-header-logo{display:block;width:40%}
  header.header .bottom-header-inner .bottom-header-row .bottom-header-menu{width:60%}
  header.header .bottom-header-inner .bottom-header-row{display:flex;flex-wrap:wrap}
  header.header .bottom-header-inner{padding:15px 0;position:relative}
  header.header .bottom-header-inner .bottom-header-logo img{width:130px}
  .bottom-header-menu .custom-menu-primary .hs_cos_wrapper_type_menu>.hs-menu-wrapper{background:var(--primary);border-radius:0;display:none;height:calc(100vh - 172px);left:-20px;max-width:calc(100% + 40px);overflow:auto;padding:30px 20px 150px;position:absolute;top:100%;width:calc(100% + 40px);z-index:99}
  .bottom-header-menu .cta_border_button{background:0 0;height:19px;position:absolute;right:0;top:32px;width:30px}
  .bottom-header-menu .cta_border_button .line{background:var(--primary);display:block;height:2px;position:absolute;transition:all .5s ease-in-out;width:100%}
  .bottom-header-menu .cta_border_button .line.line-2{top:8px}
  .bottom-header-menu .cta_border_button .line.line-1{top:0}
  .bottom-header-menu .cta_border_button .line.line-3{top:16px}
  .bottom-header-menu .cta_border_button.active-re .line.line-1{top:8px;transform:rotate(135deg)}
  .bottom-header-menu .cta_border_button.active-re .line.line-3{top:8px;transform:rotate(-135deg)}
  .bottom-header-menu .cta_border_button.active-re .line.line-2{opacity:0}
  header.header .top-header-logo{display:none}
  header.header .bottom-header-inner .bottom-header-row .bottom-header-menu ul>.hs-menu-item.hs-menu-depth-1{margin:0;width:100%;position:relative}
  header.header.inner-header .bottom-header-inner .bottom-header-row .bottom-header-menu ul>.hs-menu-item.hs-menu-depth-1{margin:0;}
  header.header .bottom-header-inner .bottom-header-row .bottom-header-menu ul>.hs-menu-item.hs-menu-depth-1>a{color:var(--white);line-height:normal;width:100%;text-align:left}
  header.header .bottom-header-inner .bottom-header-row .bottom-header-menu ul{flex-direction:column}
  header.header .bottom-header-inner .bottom-header-row .bottom-header-menu ul>.hs-menu-item.hs-menu-depth-1 .child-trigger{background:url('https://26289262.fs1.hubspotusercontent-eu1.net/hubfs/26289262/AtlasMapping-2023/Images/Group%20%281%29.svg');background-position:50%;background-repeat:no-repeat;background-size:10px;border-width:0 2px 2px 0;display:inline-block;height:30px;position:absolute;right:0;top:15px;transform:rotate(90deg);transition:all .5s ease-in-out;width:30px}
  header.header .bottom-header-inner .bottom-header-row .bottom-header-menu ul>.hs-menu-item.hs-menu-depth-1 .hs-menu-children-wrapper{width:100%;position:relative;transition:unset;border-top:2px solid #fff;border-radius:0;opacity: 1; visibility: visible;display:none;}
  html.mobile-open-scroll.mobile-open{overflow:hidden}
  header.header .top-header-row .top-header-dropdown { width: 100%; }
  header.header .bottom-header-inner .bottom-header-row .bottom-header-menu ul>.hs-menu-item.hs-menu-depth-1>a:hover { color: var(--white); }
  header.header .bottom-header-inner .bottom-header-row .bottom-header-menu ul>.hs-menu-item.hs-menu-depth-1 .hs-menu-children-wrapper:after { display: none; }
  header.header .custom-menu-primary>.hs_cos_wrapper_type_menu .header-search{align-items:center;background:#de00821a;border:1px solid #de008233;border-radius:50%;cursor:pointer;display:flex;height:36px;justify-content:center;width:36px;position:absolute;right:50px;top:23px} 
  header.header .custom-menu-primary>.hs_cos_wrapper_type_menu .header-search img{width:14px;height:14px} 
  .header-search-bar .hs-search-popup .hs-search-field .hs-search-field__bar{width:100%;text-align: center;}
  header.header .top-header-row .top-header-dropdown .header-search-bar .header-search { display: none; }
  header.header.inner-header .bottom-header-menu .custom-menu-primary .hs_cos_wrapper_type_menu>.hs-menu-wrapper .header-cta-group { display: none; }
}


@media screen and (max-width:767px){
  header.header .top-header-row .top-header-dropdown .header-cta-select-group,
  header.header .top-header-row .top-header-dropdown .header-cta-select-group .header-select-wrap { flex-wrap: wrap; width: 100%; } 
  .header-cta-group {display: none;} 
  .header-select-wrap .select-menu { width: 100%; margin: 0; position: relative; } 
  .header-select-wrap .select-menu .options { width: 100%; }
  .bottom-header-menu .custom-menu-primary .hs_cos_wrapper_type_menu>.hs-menu-wrapper .header-cta-group{display:block;margin-top:20px}
  .bottom-header-menu .custom-menu-primary .hs_cos_wrapper_type_menu>.hs-menu-wrapper .header-cta-group .header-cta-wrap .popup-open{background:var(--white);color:var(--primary)}
  .bottom-header-menu .custom-menu-primary .hs_cos_wrapper_type_menu>.hs-menu-wrapper .header-cta-group .header-cta-wrap .popup-open:hover{border-color:var(--white);background:0 0;color:var(--white)}
  .header-select-wrap .ticket-menu { width: 100%; margin-right: 0; margin-top: 10px; }
  .header-search-bar .hs-search-popup .hs-search-field{padding:20px}
  .header-search-bar .hs-search-popup .hs-search-field .hs-search-field__bar input{width:100%;margin-bottom:15px}
  .header-search-bar .hs-search-popup .hs-search-field .hs-search-field__bar .hs-search-field__button{margin:0 auto;display:block}
  header.header .top-header-row .top-header-dropdown .header-cta-select-group .header-select-wrap{width:100%}
  header.header .top-header-row .top-header-dropdown .header-cta-select-group{justify-content:space-between}
  header.header .top-header-row .top-header-dropdown .header-cta-select-group .header-lang-switcher{width:25%;display:flex;align-items:center;justify-content:flex-end}
  header.header.inner-header .header-cta-group { display: block; margin-top: 10px; } 

  header.header.inner-header .bottom-header-menu .custom-menu-primary .hs_cos_wrapper_type_menu>.hs-menu-wrapper { height: calc(100vh - 250px); }
}

@media (max-width:479px){
  .header-select-wrap .ticket-menu .ticket-options {
    width: auto;
    right: 0px;
    left: 20px;
    max-width: 300px;
  }
}
/* 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 {
  opacity: 0;
  position: absolute;
}

.hs-menu-wrapper.flyouts .hs-menu-children-wrapper a {
  display: block;
}

.hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
  opacity: 1;
  top: 69%;
  width: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;
  }
}
footer.footer{padding:60px 0 30px;background:var(--footer-bg-color)}
footer.footer .footer-row{display:flex;flex-wrap:wrap;margin:0 -15px;align-items:center}
footer.footer .footer-row .footer-first-col,footer.footer .footer-row .footer-last-col{width:50%;padding:0 15px}
footer.footer .footer-row .footer-social-media{padding:0;margin:0;display:flex;align-items:center;justify-content:flex-end;list-style-type:none}
footer.footer .footer-row .footer-social-media li{margin:0 0 0 20px}
footer.footer .footer-social-media li a{width:36px;height:36px;display:flex;background:var(--primary);border-radius:50%;align-items:center;justify-content:center;transition: all 500ms ease-in-out;}
footer.footer .footer-social-media li a:hover { transform: rotate(360deg); }
footer.footer .footer-row .footer-social-media li img{width:18px;height:18px!important;object-fit:contain;object-position:center}
footer.footer .footer-top-inner{border-bottom:1px dashed #fffFFF80;margin-bottom:50px;padding:0 25px 20px}
footer.footer .footer-row .footer-logo img{max-width:156px!important}
footer.footer .footer-middle-inner{border-bottom:1px dashed #ffffff80;margin-bottom:30px;padding:0 25px 50px}
footer.footer .footer-middle-inner .footer-quicklinks-col{width:25%;padding:0 15px}
footer.footer .footer-middle-inner .footer-row{align-items:flex-start}
footer.footer .footer-middle-inner .footer-ofchrs-col{width:42%;padding:0 15px}
footer.footer .footer-middle-inner .footer-newslettr-col{width:33%;padding:0 15px}
footer.footer .footer-title h4{font-size:16px;font-weight:700;line-height:26px;margin:0;color:var(--primary)}
footer.footer .footer-title{margin-bottom:20px}
footer.footer .footer-menu ul{display:flex;flex-direction:column;padding:0;margin:0;list-style-type:none}
footer.footer .footer-menu ul li:not(:last-child){margin-bottom:15px}
footer.footer .footer-menu ul li a{font-size:16px;font-weight:500;line-height:26px;color:var(--footer-text-color)}
footer.footer .footer-newslettr-col .footer-form-title p{color:var(--footer-text-color);font-size:16px;line-height:26px;margin:0;font-weight:400;}
footer.footer .footer-newslettr-col .footer-form-title{margin-bottom:20px}
footer.footer .footer-newslettr-col .footer-form label{margin-bottom:0}
footer.footer .footer-newslettr-col .footer-form .hs-form-field{margin:0 0 20px}
footer.footer .footer-newslettr-col .footer-form .hs_submit{margin-top:0}
footer.footer .footer-op-hrs-wrap{width:80%}
footer.footer .footer-form-group .footer-form .submitted-message p {color: #ffffff;font-size: 16px;}
footer.footer .footer-op-hrs-wrap .footer-op-hrs-item:not(:last-child){margin:0 0 15px}
footer.footer .footer-op-hrs-wrap .footer-op-hrs-item .footer-op-hrs{display:flex;flex-wrap:wrap;margin:0 -15px 15px;align-items:center}
footer.footer .footer-op-hrs-wrap .footer-op-hrs-item .footer-op-hrs .footer-op-hrs-ttl{width:50%;padding:0 15px;position:relative;font-size:16px;font-weight:400;line-height:26px;color:var(--footer-text-color)}
footer.footer .footer-op-hrs-wrap .footer-op-hrs-item .footer-op-hrs .footer-op-hrs-value{width:50%;padding:0 15px;text-align:right;color:var(--footer-text-color);font-size:16px;font-weight:400;line-height:26px}
footer.footer .footer-op-hrs-wrap .footer-op-hrs-item .footer-op-hrs:last-child{margin-bottom:0}
footer.footer .footer-op-hrs-wrap .footer-op-hrs-item .footer-op-hrs-title{font-size:16px;font-weight:600;line-height:28px;color:var(--footer-text-color);margin:0 0 15px}
footer.footer .footer-op-hrs-wrap .footer-op-hrs-item .footer-op-hrs .footer-op-hrs-ttl:after{content:'';position:absolute;right:-7px;top:50%;width:7px;height:2px;background:var(--footer-text-color);transform:translateY(-50%)}
footer.footer .footer-bottom-inner p{text-align:center;color:var(--white);font-size:16px;line-height:26px;margin:0;font-weight:400}
.footer-newslettr-col .footer-form form input.hs-input {
  font-family: "Mulish";
  font-weight: 400;
}
footer.footer .footer-form .submitted-message {
  color: var(--white);
  font-size: 18px;
  text-align: left;
}
footer.footer .footer-newslettr-col .footer-title h4 {
  font-size: 20px;
  line-height: 1.5;
}
footer.footer .footer-form .submitted-message * {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
}


@media screen and (max-width:1100px){
  footer.footer .footer-op-hrs-wrap {width: 100%;}
}



@media screen and (max-width:991px){
  footer.footer .footer-middle-inner .footer-quicklinks-col{width:50%}
  footer.footer .footer-middle-inner .footer-ofchrs-col{width:50%}
  footer.footer .footer-middle-inner .footer-newslettr-col{width:50%;padding-top:30px}
  footer.footer .footer-top-inner{padding:0 15px 20px}
  footer.footer .footer-middle-inner{padding:0 15px 50px}
}

@media screen and (max-width:767px){
  footer.footer{padding:50px 0}
  footer.footer .footer-top-inner{padding:0 0 20px;margin-bottom:30px}
  footer.footer .footer-row .footer-first-col,footer.footer .footer-row .footer-last-col{width:100%}
  footer.footer .footer-row .footer-logo img{margin:0 auto 30px}
  footer.footer .footer-row .footer-social-media{justify-content:center}
  footer.footer .footer-middle-inner{padding:0 10px 30px}
  footer.footer .footer-middle-inner .footer-ofchrs-col,footer.footer .footer-middle-inner .footer-quicklinks-col{width:100%;padding:0 15px 30px}
  footer.footer .footer-middle-inner .footer-newslettr-col{width:100%}
}

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