@charset "UTF-8";
/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
.hamburger {
  height: 25px;
  width: 30px;
  display: block;
  float: left;
  cursor: pointer;
  background: red;
  transition-property: opacity, -webkit-filter;
  transition-property: opacity, filter;
  transition-property: opacity, filter, -webkit-filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
}

.hamburger:hover {
  opacity: 0.8;
}

.hamburger-box {
  width: 100%;
  height: 100%;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
  width: 100%;
  height: 3px;
  background-color: #005EB8;
  border-radius: 2px;
  position: absolute;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}

.hamburger-inner::before, .hamburger-inner::after {
  content: "";
  display: block;
}

.hamburger-inner::before {
  top: -10px;
}

.hamburger-inner::after {
  bottom: -10px;
}

/*
 * Collapse
 */
.hamburger--collapse .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.15s;
  transition-delay: 0.15s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--collapse .hamburger-inner::after {
  top: -20px;
  transition: top 0.3s 0.3s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear;
}

.hamburger--collapse .hamburger-inner::before {
  transition: top 0.12s 0.3s cubic-bezier(0.33333, 0.66667, 0.66667, 1), -webkit-transform 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.12s 0.3s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.12s 0.3s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--collapse.is-active .hamburger-inner {
  -webkit-transform: translate3d(0, -10px, 0) rotate(-45deg);
  transform: translate3d(0, -10px, 0) rotate(-45deg);
  transition-delay: 0.32s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--collapse.is-active .hamburger-inner::after {
  top: 0;
  opacity: 0;
  transition: top 0.3s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.27s linear;
}

.hamburger--collapse.is-active .hamburger-inner::before {
  top: 0;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  transition: top 0.12s 0.18s cubic-bezier(0.33333, 0, 0.66667, 0.33333), -webkit-transform 0.15s 0.42s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.12s 0.18s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.15s 0.42s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.12s 0.18s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.15s 0.42s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.15s 0.42s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.modal-open {
  overflow: hidden;
}

.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: 0.5rem;
  pointer-events: none;
}

.modal.fade .modal-dialog {
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}

@media (prefers-reduced-motion: reduce) {
  .modal.fade .modal-dialog {
    transition: none;
  }
}
.modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}

.modal.modal-static .modal-dialog {
  -webkit-transform: scale(1.02);
  transform: scale(1.02);
}

.modal-dialog-scrollable {
  display: -ms-flexbox;
  display: flex;
  max-height: calc(100% - 1rem);
}

.modal-dialog-scrollable .modal-content {
  max-height: calc(100vh - 1rem);
  overflow: hidden;
}

.modal-dialog-scrollable .modal-header,
.modal-dialog-scrollable .modal-footer {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.modal-dialog-scrollable .modal-body {
  overflow-y: auto;
}

.modal-dialog-centered {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - 1rem);
}

.modal-dialog-centered::before {
  display: block;
  height: calc(100vh - 1rem);
  height: -webkit-min-content;
  height: -moz-min-content;
  height: min-content;
  content: "";
}

.modal-dialog-centered.modal-dialog-scrollable {
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: center;
  justify-content: center;
  height: 100%;
}

.modal-dialog-centered.modal-dialog-scrollable .modal-content {
  max-height: none;
}

.modal-dialog-centered.modal-dialog-scrollable::before {
  content: none;
}

.modal-content {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
  outline: 0;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}

.modal-backdrop.fade {
  opacity: 0.5;
}

.modal-backdrop.show {
  opacity: 0.5;
}

.modal-header {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem 1rem;
  border-bottom: 1px solid #dee2e6;
  border-top-left-radius: calc(0.3rem - 1px);
  border-top-right-radius: calc(0.3rem - 1px);
}

.modal-header .close {
  padding: 1rem 1rem;
  margin: -1rem -1rem -1rem auto;
}

.modal-title {
  margin-bottom: 0;
  line-height: 1.5;
}

.modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
}

.modal-footer {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding: 0.75rem;
  border-top: 1px solid #dee2e6;
  border-bottom-right-radius: calc(0.3rem - 1px);
  border-bottom-left-radius: calc(0.3rem - 1px);
}

.modal-footer > * {
  margin: 0.25rem;
}

.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}

#healthcareProOK, #healthcareProAcceptAll, #healthcareProOptions, #healthcareProSave, #healthcareProCancel {
  background-color: #005EB8;
}

#healthcareProOptions, #healthcareProCancel {
  font-size: 16px;
  line-height: 24px;
  padding: 12px 16px;
}

.cookieInfo3 {
  color: #3c404b;
}

#showCookieList1, #showCookieList2 {
  text-decoration: underline;
  cursor: pointer;
}

@media (min-width: 576px) {
  .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .modal-dialog-scrollable {
    max-height: calc(100% - 3.5rem);
  }
  .modal-dialog-scrollable .modal-content {
    max-height: calc(100vh - 3.5rem);
  }
  .modal-dialog-centered {
    min-height: calc(100% - 3.5rem);
  }
  .modal-dialog-centered::before {
    height: calc(100vh - 3.5rem);
    height: -webkit-min-content;
    height: -moz-min-content;
    height: min-content;
  }
  .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .modal-lg,
  .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .modal-xl {
    max-width: 1140px;
  }
}
/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS and IE text size adjust after device orientation change,
 *    without disabling user zoom.
 */
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/**
 * Remove default margin.
 */
body {
  margin: 0;
}

/* HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio,
canvas,
progress,
video {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/10/11, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none;
}

/* Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * Improve readability of focused elements when they are also in an
 * active/hover state.
 */
a:active,
a:hover {
  outline: 0;
}

/* Text-level semantics
   ========================================================================== */
/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted;
}

/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */
b,
strong {
  font-weight: bold;
}

/**
 * Address styling not present in Safari and Chrome.
 */
dfn {
  font-style: italic;
}

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/**
 * Address styling not present in IE 8/9.
 */
mark {
  background: #ff0;
  color: #000;
}

/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9/10.
 */
img {
  border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari.
 */
figure {
  margin: 1em 40px;
}

/**
 * Address differences between Firefox and other browsers.
 */
hr {
  box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */
pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

/* Forms
   ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 */
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  /* 1 */
  font: inherit;
  /* 2 */
  margin: 0;
  /* 3 */
}

/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */
button {
  overflow: visible;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */
button,
select {
  text-transform: none;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 * 4. CUSTOM FOR WEBFLOW: Removed the input[type="submit"] selector to reduce
 *    specificity and defer to the .w-button selector
 */
button,
html input[type=button],
input[type=reset] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */
}

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default;
}

/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
input {
  line-height: normal;
}

/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
input[type=checkbox],
input[type=radio] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. CUSTOM FOR WEBFLOW: changed from `textfield` to `none` to normalize iOS rounded input
 * 2. CUSTOM FOR WEBFLOW: box-sizing: content-box rule removed
 *    (similar to normalize.css >=4.0.0)
 */
input[type=search] {
  -webkit-appearance: none;
  /* 1 */
}

/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */
textarea {
  overflow: auto;
}

/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
optgroup {
  font-weight: bold;
}

/* Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

@font-face {
  font-family: "webflow-icons";
  src: url("data:application/x-font-ttf;charset=utf-8;base64,AAEAAAALAIAAAwAwT1MvMg8SBiUAAAC8AAAAYGNtYXDpP+a4AAABHAAAAFxnYXNwAAAAEAAAAXgAAAAIZ2x5ZmhS2XEAAAGAAAADHGhlYWQTFw3HAAAEnAAAADZoaGVhCXYFgQAABNQAAAAkaG10eCe4A1oAAAT4AAAAMGxvY2EDtALGAAAFKAAAABptYXhwABAAPgAABUQAAAAgbmFtZSoCsMsAAAVkAAABznBvc3QAAwAAAAAHNAAAACAAAwP4AZAABQAAApkCzAAAAI8CmQLMAAAB6wAzAQkAAAAAAAAAAAAAAAAAAAABEAAAAAAAAAAAAAAAAAAAAABAAADpAwPA/8AAQAPAAEAAAAABAAAAAAAAAAAAAAAgAAAAAAADAAAAAwAAABwAAQADAAAAHAADAAEAAAAcAAQAQAAAAAwACAACAAQAAQAg5gPpA//9//8AAAAAACDmAOkA//3//wAB/+MaBBcIAAMAAQAAAAAAAAAAAAAAAAABAAH//wAPAAEAAAAAAAAAAAACAAA3OQEAAAAAAQAAAAAAAAAAAAIAADc5AQAAAAABAAAAAAAAAAAAAgAANzkBAAAAAAEBIAAAAyADgAAFAAAJAQcJARcDIP5AQAGA/oBAAcABwED+gP6AQAABAOAAAALgA4AABQAAEwEXCQEH4AHAQP6AAYBAAcABwED+gP6AQAAAAwDAAOADQALAAA8AHwAvAAABISIGHQEUFjMhMjY9ATQmByEiBh0BFBYzITI2PQE0JgchIgYdARQWMyEyNj0BNCYDIP3ADRMTDQJADRMTDf3ADRMTDQJADRMTDf3ADRMTDQJADRMTAsATDSANExMNIA0TwBMNIA0TEw0gDRPAEw0gDRMTDSANEwAAAAABAJ0AtAOBApUABQAACQIHCQEDJP7r/upcAXEBcgKU/usBFVz+fAGEAAAAAAL//f+9BAMDwwAEAAkAABcBJwEXAwE3AQdpA5ps/GZsbAOabPxmbEMDmmz8ZmwDmvxmbAOabAAAAgAA/8AEAAPAAB0AOwAABSInLgEnJjU0Nz4BNzYzMTIXHgEXFhUUBw4BBwYjNTI3PgE3NjU0Jy4BJyYjMSIHDgEHBhUUFx4BFxYzAgBqXV6LKCgoKIteXWpqXV6LKCgoKIteXWpVSktvICEhIG9LSlVVSktvICEhIG9LSlVAKCiLXl1qal1eiygoKCiLXl1qal1eiygoZiEgb0tKVVVKS28gISEgb0tKVVVKS28gIQABAAABwAIAA8AAEgAAEzQ3PgE3NjMxFSIHDgEHBhUxIwAoKIteXWpVSktvICFmAcBqXV6LKChmISBvS0pVAAAAAgAA/8AFtgPAADIAOgAAARYXHgEXFhUUBw4BBwYHIxUhIicuAScmNTQ3PgE3NjMxOAExNDc+ATc2MzIXHgEXFhcVATMJATMVMzUEjD83NlAXFxYXTjU1PQL8kz01Nk8XFxcXTzY1PSIjd1BQWlJJSXInJw3+mdv+2/7c25MCUQYcHFg5OUA/ODlXHBwIAhcXTzY1PTw1Nk8XF1tQUHcjIhwcYUNDTgL+3QFt/pOTkwABAAAAAQAAmM7nP18PPPUACwQAAAAAANciZKUAAAAA1yJkpf/9/70FtgPDAAAACAACAAAAAAAAAAEAAAPA/8AAAAW3//3//QW2AAEAAAAAAAAAAAAAAAAAAAAMBAAAAAAAAAAAAAAAAgAAAAQAASAEAADgBAAAwAQAAJ0EAP/9BAAAAAQAAAAFtwAAAAAAAAAKABQAHgAyAEYAjACiAL4BFgE2AY4AAAABAAAADAA8AAMAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAADgCuAAEAAAAAAAEADQAAAAEAAAAAAAIABwCWAAEAAAAAAAMADQBIAAEAAAAAAAQADQCrAAEAAAAAAAUACwAnAAEAAAAAAAYADQBvAAEAAAAAAAoAGgDSAAMAAQQJAAEAGgANAAMAAQQJAAIADgCdAAMAAQQJAAMAGgBVAAMAAQQJAAQAGgC4AAMAAQQJAAUAFgAyAAMAAQQJAAYAGgB8AAMAAQQJAAoANADsd2ViZmxvdy1pY29ucwB3AGUAYgBmAGwAbwB3AC0AaQBjAG8AbgBzVmVyc2lvbiAxLjAAVgBlAHIAcwBpAG8AbgAgADEALgAwd2ViZmxvdy1pY29ucwB3AGUAYgBmAGwAbwB3AC0AaQBjAG8AbgBzd2ViZmxvdy1pY29ucwB3AGUAYgBmAGwAbwB3AC0AaQBjAG8AbgBzUmVndWxhcgBSAGUAZwB1AGwAYQByd2ViZmxvdy1pY29ucwB3AGUAYgBmAGwAbwB3AC0AaQBjAG8AbgBzRm9udCBnZW5lcmF0ZWQgYnkgSWNvTW9vbi4ARgBvAG4AdAAgAGcAZQBuAGUAcgBhAHQAZQBkACAAYgB5ACAASQBjAG8ATQBvAG8AbgAuAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==") format("truetype");
  font-weight: normal;
  font-style: normal;
}
[class^=w-icon-],
[class*=" w-icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "webflow-icons" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.w-icon-slider-right:before {
  content: "\e600";
}

.w-icon-slider-left:before {
  content: "\e601";
}

.w-icon-nav-menu:before {
  content: "\e602";
}

.w-icon-arrow-down:before,
.w-icon-dropdown-toggle:before {
  content: "\e603";
}

.w-icon-file-upload-remove:before {
  content: "\e900";
}

.w-icon-file-upload-icon:before {
  content: "\e903";
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  height: 100%;
}

body {
  margin: 0;
  min-height: 100%;
  background-color: #fff;
  font-family: Arial, sans-serif;
  font-size: 14px;
  line-height: 20px;
  color: #333;
}

img {
  max-width: 100%;
  vertical-align: middle;
  display: inline-block;
}

html.w-mod-touch * {
  background-attachment: scroll !important;
}

.w-block {
  display: block;
}

.w-inline-block {
  max-width: 100%;
  display: inline-block;
}

.w-clearfix:before,
.w-clearfix:after {
  content: " ";
  display: table;
  grid-column-start: 1;
  grid-row-start: 1;
  grid-column-end: 2;
  grid-row-end: 2;
}

.w-clearfix:after {
  clear: both;
}

.w-hidden {
  display: none;
}

.w-button {
  display: inline-block;
  padding: 9px 15px;
  background-color: #3898EC;
  color: white;
  border: 0;
  line-height: inherit;
  text-decoration: none;
  cursor: pointer;
  border-radius: 0;
}

input.w-button {
  -webkit-appearance: button;
}

html[data-w-dynpage] [data-w-cloak] {
  color: transparent !important;
}

.w-webflow-badge,
.w-webflow-badge * {
  position: static;
  left: auto;
  top: auto;
  right: auto;
  bottom: auto;
  z-index: auto;
  display: block;
  visibility: visible;
  overflow: visible;
  overflow-x: visible;
  overflow-y: visible;
  box-sizing: border-box;
  width: auto;
  height: auto;
  max-height: none;
  max-width: none;
  min-height: 0;
  min-width: 0;
  margin: 0;
  padding: 0;
  float: none;
  clear: none;
  border: 0 none transparent;
  border-radius: 0;
  background: none;
  background-image: none;
  background-position: 0% 0%;
  background-size: auto auto;
  background-repeat: repeat;
  background-origin: padding-box;
  background-clip: border-box;
  background-attachment: scroll;
  background-color: transparent;
  box-shadow: none;
  opacity: 1;
  transform: none;
  transition: none;
  direction: ltr;
  font-family: inherit;
  font-weight: inherit;
  color: inherit;
  font-size: inherit;
  line-height: inherit;
  font-style: inherit;
  font-variant: inherit;
  text-align: inherit;
  letter-spacing: inherit;
  text-decoration: inherit;
  text-indent: 0;
  text-transform: inherit;
  list-style-type: disc;
  text-shadow: none;
  font-smoothing: auto;
  vertical-align: baseline;
  cursor: inherit;
  white-space: inherit;
  word-break: normal;
  word-spacing: normal;
  word-wrap: normal;
}

.w-webflow-badge {
  position: fixed !important;
  display: inline-block !important;
  visibility: visible !important;
  opacity: 1 !important;
  z-index: 2147483647 !important;
  top: auto !important;
  right: 12px !important;
  bottom: 12px !important;
  left: auto !important;
  color: #AAADB0 !important;
  background-color: #fff !important;
  border-radius: 3px !important;
  padding: 6px 8px 6px 6px !important;
  font-size: 12px !important;
  opacity: 1 !important;
  line-height: 14px !important;
  text-decoration: none !important;
  transform: none !important;
  margin: 0 !important;
  width: auto !important;
  height: auto !important;
  overflow: visible !important;
  white-space: nowrap;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1), 0px 1px 3px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

.w-webflow-badge > img {
  display: inline-block !important;
  visibility: visible !important;
  opacity: 1 !important;
  vertical-align: middle !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: bold;
  margin-bottom: 10px;
}

h1 {
  font-size: 38px;
  line-height: 44px;
  margin-top: 20px;
}

h2 {
  font-size: 32px;
  line-height: 36px;
  margin-top: 20px;
}

h3 {
  font-size: 24px;
  line-height: 30px;
  margin-top: 20px;
}

h4 {
  font-size: 18px;
  line-height: 24px;
  margin-top: 10px;
}

h5 {
  font-size: 14px;
  line-height: 20px;
  margin-top: 10px;
}

h6 {
  font-size: 12px;
  line-height: 18px;
  margin-top: 10px;
}

p {
  margin-top: 0;
  margin-bottom: 10px;
}

blockquote {
  margin: 0 0 10px 0;
  padding: 10px 20px;
  border-left: 5px solid #E2E2E2;
  font-size: 18px;
  line-height: 22px;
}

figure {
  margin: 0;
  margin-bottom: 10px;
}

figcaption {
  margin-top: 5px;
  text-align: center;
}

ul,
ol {
  margin-top: 0px;
  margin-bottom: 10px;
  padding-left: 40px;
}

.w-list-unstyled {
  padding-left: 0;
  list-style: none;
}

.w-embed:before,
.w-embed:after {
  content: " ";
  display: table;
  grid-column-start: 1;
  grid-row-start: 1;
  grid-column-end: 2;
  grid-row-end: 2;
}

.w-embed:after {
  clear: both;
}

.w-video {
  width: 100%;
  position: relative;
  padding: 0;
}

.w-video iframe,
.w-video object,
.w-video embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

fieldset {
  padding: 0;
  margin: 0;
  border: 0;
}

button,
html input[type=button],
input[type=reset] {
  border: 0;
  cursor: pointer;
  -webkit-appearance: button;
}

.w-form {
  margin: 0 0 15px;
}

.w-form-done {
  display: none;
  padding: 20px;
  text-align: center;
  background-color: #dddddd;
}

.w-form-fail {
  display: none;
  margin-top: 10px;
  padding: 10px;
  background-color: #ffdede;
}

label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}

.w-input,
.w-select {
  display: block;
  width: 100%;
  height: 38px;
  padding: 8px 12px;
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 1.428571429;
  color: #333333;
  vertical-align: middle;
  background-color: #ffffff;
  border: 1px solid #cccccc;
}

.w-input:-moz-placeholder,
.w-select:-moz-placeholder {
  color: #999;
}

.w-input::-moz-placeholder,
.w-select::-moz-placeholder {
  color: #999;
  opacity: 1;
}

.w-input:-ms-input-placeholder,
.w-select:-ms-input-placeholder {
  color: #999;
}

.w-input::-webkit-input-placeholder,
.w-select::-webkit-input-placeholder {
  color: #999;
}

.w-input:focus,
.w-select:focus {
  border-color: #3898EC;
  outline: 0;
}

.w-input[disabled],
.w-select[disabled],
.w-input[readonly],
.w-select[readonly],
fieldset[disabled] .w-input,
fieldset[disabled] .w-select {
  cursor: not-allowed;
  background-color: #eeeeee;
}

textarea.w-input,
textarea.w-select {
  height: auto;
}

.w-select {
  background-color: #f3f3f3;
}

.w-select[multiple] {
  height: auto;
}

.w-form-label {
  display: inline-block;
  cursor: pointer;
  font-weight: normal;
  margin-bottom: 0px;
}

.w-radio {
  display: block;
  margin-bottom: 5px;
  padding-left: 20px;
}

.w-radio:before,
.w-radio:after {
  content: " ";
  display: table;
  grid-column-start: 1;
  grid-row-start: 1;
  grid-column-end: 2;
  grid-row-end: 2;
}

.w-radio:after {
  clear: both;
}

.w-radio-input {
  margin: 4px 0 0;
  margin-top: 1px \9 ;
  line-height: normal;
  float: left;
  margin-left: -20px;
}

.w-radio-input {
  margin-top: 3px;
}

.w-file-upload {
  display: block;
  margin-bottom: 10px;
}

.w-file-upload-input {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -100;
}

.w-file-upload-default,
.w-file-upload-uploading,
.w-file-upload-success {
  display: inline-block;
  color: #333333;
}

.w-file-upload-error {
  display: block;
  margin-top: 10px;
}

.w-file-upload-default.w-hidden,
.w-file-upload-uploading.w-hidden,
.w-file-upload-error.w-hidden,
.w-file-upload-success.w-hidden {
  display: none;
}

.w-file-upload-uploading-btn {
  display: flex;
  font-size: 14px;
  font-weight: normal;
  cursor: pointer;
  margin: 0;
  padding: 8px 12px;
  border: 1px solid #cccccc;
  background-color: #fafafa;
}

.w-file-upload-file {
  display: flex;
  flex-grow: 1;
  justify-content: space-between;
  margin: 0;
  padding: 8px 9px 8px 11px;
  border: 1px solid #cccccc;
  background-color: #fafafa;
}

.w-file-upload-file-name {
  font-size: 14px;
  font-weight: normal;
  display: block;
}

.w-file-remove-link {
  margin-top: 3px;
  margin-left: 10px;
  width: auto;
  height: auto;
  padding: 3px;
  display: block;
  cursor: pointer;
}

.w-icon-file-upload-remove {
  margin: auto;
  font-size: 10px;
}

.w-file-upload-error-msg {
  display: inline-block;
  color: #ea384c;
  padding: 2px 0;
}

.w-file-upload-info {
  display: inline-block;
  line-height: 38px;
  padding: 0 12px;
}

.w-file-upload-label {
  display: inline-block;
  font-size: 14px;
  font-weight: normal;
  cursor: pointer;
  margin: 0;
  padding: 8px 12px;
  border: 1px solid #cccccc;
  background-color: #fafafa;
}

.w-icon-file-upload-icon,
.w-icon-file-upload-uploading {
  display: inline-block;
  margin-right: 8px;
  width: 20px;
}

.w-icon-file-upload-uploading {
  height: 20px;
}

.w-container {
  margin-left: auto;
  margin-right: auto;
  max-width: 940px;
}

.w-container:before,
.w-container:after {
  content: " ";
  display: table;
  grid-column-start: 1;
  grid-row-start: 1;
  grid-column-end: 2;
  grid-row-end: 2;
}

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

.w-container .w-row {
  margin-left: -10px;
  margin-right: -10px;
}

.w-row:before,
.w-row:after {
  content: " ";
  display: table;
  grid-column-start: 1;
  grid-row-start: 1;
  grid-column-end: 2;
  grid-row-end: 2;
}

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

.w-row .w-row {
  margin-left: 0;
  margin-right: 0;
}

.w-col {
  position: relative;
  float: left;
  width: 100%;
  min-height: 1px;
  padding-left: 10px;
  padding-right: 10px;
}

.w-col .w-col {
  padding-left: 0;
  padding-right: 0;
}

.w-col-1 {
  width: 8.33333333%;
}

.w-col-2 {
  width: 16.66666667%;
}

.w-col-3 {
  width: 25%;
}

.w-col-4 {
  width: 33.33333333%;
}

.w-col-5 {
  width: 41.66666667%;
}

.w-col-6 {
  width: 50%;
}

.w-col-7 {
  width: 58.33333333%;
}

.w-col-8 {
  width: 66.66666667%;
}

.w-col-9 {
  width: 75%;
}

.w-col-10 {
  width: 83.33333333%;
}

.w-col-11 {
  width: 91.66666667%;
}

.w-col-12 {
  width: 100%;
}

.w-hidden-main {
  display: none !important;
}

@media screen and (max-width: 991px) {
  .w-container {
    max-width: 728px;
  }
  .w-hidden-main {
    display: inherit !important;
  }
  .w-hidden-medium {
    display: none !important;
  }
  .w-col-medium-1 {
    width: 8.33333333%;
  }
  .w-col-medium-2 {
    width: 16.66666667%;
  }
  .w-col-medium-3 {
    width: 25%;
  }
  .w-col-medium-4 {
    width: 33.33333333%;
  }
  .w-col-medium-5 {
    width: 41.66666667%;
  }
  .w-col-medium-6 {
    width: 50%;
  }
  .w-col-medium-7 {
    width: 58.33333333%;
  }
  .w-col-medium-8 {
    width: 66.66666667%;
  }
  .w-col-medium-9 {
    width: 75%;
  }
  .w-col-medium-10 {
    width: 83.33333333%;
  }
  .w-col-medium-11 {
    width: 91.66666667%;
  }
  .w-col-medium-12 {
    width: 100%;
  }
  .w-col-stack {
    width: 100%;
    left: auto;
    right: auto;
  }
}
@media screen and (max-width: 767px) {
  .w-hidden-main {
    display: inherit !important;
  }
  .w-hidden-medium {
    display: inherit !important;
  }
  .w-hidden-small {
    display: none !important;
  }
  .w-row,
  .w-container .w-row {
    margin-left: 0;
    margin-right: 0;
  }
  .w-col {
    width: 100%;
    left: auto;
    right: auto;
  }
  .w-col-small-1 {
    width: 8.33333333%;
  }
  .w-col-small-2 {
    width: 16.66666667%;
  }
  .w-col-small-3 {
    width: 25%;
  }
  .w-col-small-4 {
    width: 33.33333333%;
  }
  .w-col-small-5 {
    width: 41.66666667%;
  }
  .w-col-small-6 {
    width: 50%;
  }
  .w-col-small-7 {
    width: 58.33333333%;
  }
  .w-col-small-8 {
    width: 66.66666667%;
  }
  .w-col-small-9 {
    width: 75%;
  }
  .w-col-small-10 {
    width: 83.33333333%;
  }
  .w-col-small-11 {
    width: 91.66666667%;
  }
  .w-col-small-12 {
    width: 100%;
  }
}
@media screen and (max-width: 479px) {
  .w-container {
    max-width: none;
  }
  .w-hidden-main {
    display: inherit !important;
  }
  .w-hidden-medium {
    display: inherit !important;
  }
  .w-hidden-small {
    display: inherit !important;
  }
  .w-hidden-tiny {
    display: none !important;
  }
  .w-col {
    width: 100%;
  }
  .w-col-tiny-1 {
    width: 8.33333333%;
  }
  .w-col-tiny-2 {
    width: 16.66666667%;
  }
  .w-col-tiny-3 {
    width: 25%;
  }
  .w-col-tiny-4 {
    width: 33.33333333%;
  }
  .w-col-tiny-5 {
    width: 41.66666667%;
  }
  .w-col-tiny-6 {
    width: 50%;
  }
  .w-col-tiny-7 {
    width: 58.33333333%;
  }
  .w-col-tiny-8 {
    width: 66.66666667%;
  }
  .w-col-tiny-9 {
    width: 75%;
  }
  .w-col-tiny-10 {
    width: 83.33333333%;
  }
  .w-col-tiny-11 {
    width: 91.66666667%;
  }
  .w-col-tiny-12 {
    width: 100%;
  }
}
.w-widget {
  position: relative;
}

.w-widget-map {
  width: 100%;
  height: 400px;
}

.w-widget-map label {
  width: auto;
  display: inline;
}

.w-widget-map img {
  max-width: inherit;
}

.w-widget-map .gm-style-iw {
  text-align: center;
}

.w-widget-map .gm-style-iw > button {
  display: none !important;
}

.w-widget-twitter {
  overflow: hidden;
}

.w-widget-twitter-count-shim {
  display: inline-block;
  vertical-align: top;
  position: relative;
  width: 28px;
  height: 20px;
  text-align: center;
  background: white;
  border: #758696 solid 1px;
  border-radius: 3px;
}

.w-widget-twitter-count-shim * {
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.w-widget-twitter-count-shim .w-widget-twitter-count-inner {
  position: relative;
  font-size: 15px;
  line-height: 12px;
  text-align: center;
  color: #999;
  font-family: serif;
}

.w-widget-twitter-count-shim .w-widget-twitter-count-clear {
  position: relative;
  display: block;
}

.w-widget-twitter-count-shim.w--large {
  width: 36px;
  height: 28px;
}

.w-widget-twitter-count-shim.w--large .w-widget-twitter-count-inner {
  font-size: 18px;
  line-height: 18px;
}

.w-widget-twitter-count-shim:not(.w--vertical) {
  margin-left: 5px;
  margin-right: 8px;
}

.w-widget-twitter-count-shim:not(.w--vertical).w--large {
  margin-left: 6px;
}

.w-widget-twitter-count-shim:not(.w--vertical):before,
.w-widget-twitter-count-shim:not(.w--vertical):after {
  top: 50%;
  left: 0;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}

.w-widget-twitter-count-shim:not(.w--vertical):before {
  border-color: rgba(117, 134, 150, 0);
  border-right-color: #5d6c7b;
  border-width: 4px;
  margin-left: -9px;
  margin-top: -4px;
}

.w-widget-twitter-count-shim:not(.w--vertical).w--large:before {
  border-width: 5px;
  margin-left: -10px;
  margin-top: -5px;
}

.w-widget-twitter-count-shim:not(.w--vertical):after {
  border-color: rgba(255, 255, 255, 0);
  border-right-color: white;
  border-width: 4px;
  margin-left: -8px;
  margin-top: -4px;
}

.w-widget-twitter-count-shim:not(.w--vertical).w--large:after {
  border-width: 5px;
  margin-left: -9px;
  margin-top: -5px;
}

.w-widget-twitter-count-shim.w--vertical {
  width: 61px;
  height: 33px;
  margin-bottom: 8px;
}

.w-widget-twitter-count-shim.w--vertical:before,
.w-widget-twitter-count-shim.w--vertical:after {
  top: 100%;
  left: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}

.w-widget-twitter-count-shim.w--vertical:before {
  border-color: rgba(117, 134, 150, 0);
  border-top-color: #5d6c7b;
  border-width: 5px;
  margin-left: -5px;
}

.w-widget-twitter-count-shim.w--vertical:after {
  border-color: rgba(255, 255, 255, 0);
  border-top-color: white;
  border-width: 4px;
  margin-left: -4px;
}

.w-widget-twitter-count-shim.w--vertical .w-widget-twitter-count-inner {
  font-size: 18px;
  line-height: 22px;
}

.w-widget-twitter-count-shim.w--vertical.w--large {
  width: 76px;
}

.w-widget-gplus {
  overflow: hidden;
}

.w-background-video {
  position: relative;
  overflow: hidden;
  height: 500px;
  color: white;
}

.w-background-video > video {
  background-size: cover;
  background-position: 50% 50%;
  position: absolute;
  margin: auto;
  width: 100%;
  height: 100%;
  right: -100%;
  bottom: -100%;
  top: -100%;
  left: -100%;
  object-fit: cover;
  z-index: -100;
}

.w-background-video > video::-webkit-media-controls-start-playback-button {
  display: none !important;
  -webkit-appearance: none;
}

.w-slider {
  position: relative;
  height: 300px;
  text-align: center;
  background: #dddddd;
  clear: both;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  tap-highlight-color: rgba(0, 0, 0, 0);
}

.w-slider-mask {
  position: relative;
  display: block;
  overflow: hidden;
  z-index: 1;
  left: 0;
  right: 0;
  height: 100%;
  white-space: nowrap;
}

.w-slide {
  position: relative;
  display: inline-block;
  vertical-align: top;
  width: 100%;
  height: 100%;
  white-space: normal;
  text-align: left;
}

.w-slider-nav {
  position: absolute;
  z-index: 2;
  top: auto;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  padding-top: 10px;
  height: 40px;
  text-align: center;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  tap-highlight-color: rgba(0, 0, 0, 0);
}

.w-slider-nav.w-round > div {
  border-radius: 100%;
}

.w-slider-nav.w-num > div {
  width: auto;
  height: auto;
  padding: 0.2em 0.5em;
  font-size: inherit;
  line-height: inherit;
}

.w-slider-nav.w-shadow > div {
  box-shadow: 0 0 3px rgba(51, 51, 51, 0.4);
}

.w-slider-nav-invert {
  color: #fff;
}

.w-slider-nav-invert > div {
  background-color: rgba(34, 34, 34, 0.4);
}

.w-slider-nav-invert > div.w-active {
  background-color: #222;
}

.w-slider-dot {
  position: relative;
  display: inline-block;
  width: 1em;
  height: 1em;
  background-color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  margin: 0 3px 0.5em;
  transition: background-color 100ms, color 100ms;
}

.w-slider-dot.w-active {
  background-color: #fff;
}

.w-slider-dot:focus {
  outline: none;
  box-shadow: 0px 0px 0px 2px #fff;
}

.w-slider-dot:focus.w-active {
  box-shadow: none;
}

.w-slider-arrow-left,
.w-slider-arrow-right {
  position: absolute;
  width: 80px;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  cursor: pointer;
  overflow: hidden;
  color: white;
  font-size: 40px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.w-slider-arrow-left [class^=w-icon-],
.w-slider-arrow-right [class^=w-icon-],
.w-slider-arrow-left [class*=" w-icon-"],
.w-slider-arrow-right [class*=" w-icon-"] {
  position: absolute;
}

.w-slider-arrow-left:focus,
.w-slider-arrow-right:focus {
  outline: 0;
}

.w-slider-arrow-left {
  z-index: 3;
  right: auto;
}

.w-slider-arrow-right {
  z-index: 4;
  left: auto;
}

.w-icon-slider-left,
.w-icon-slider-right {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 1em;
  height: 1em;
}

.w-slider-aria-label {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.w-slider-force-show {
  display: block !important;
}

.w-dropdown {
  display: inline-block;
  position: relative;
  text-align: left;
  margin-left: auto;
  margin-right: auto;
  z-index: 900;
}

.w-dropdown-btn,
.w-dropdown-toggle,
.w-dropdown-link {
  position: relative;
  vertical-align: top;
  text-decoration: none;
  color: #222222;
  padding: 20px;
  text-align: left;
  margin-left: auto;
  margin-right: auto;
  white-space: nowrap;
}

.w-dropdown-toggle {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  display: inline-block;
  cursor: pointer;
  padding-right: 40px;
}

.w-dropdown-toggle:focus {
  outline: 0;
}

.w-icon-dropdown-toggle {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  margin-right: 20px;
  width: 1em;
  height: 1em;
}

.w-dropdown-list {
  position: absolute;
  background: #dddddd;
  display: none;
  min-width: 100%;
}

.w-dropdown-list.w--open {
  display: block;
}

.w-dropdown-link {
  padding: 10px 20px;
  display: block;
  color: #222222;
}

.w-dropdown-link.w--current {
  color: #0082f3;
}

.w-dropdown-link:focus {
  outline: 0;
}

@media screen and (max-width: 767px) {
  .w-nav-brand {
    padding-left: 10px;
  }
}
/**
 * ## Note
 * Safari (on both iOS and OS X) does not handle viewport units (vh, vw) well.
 * For example percentage units do not work on descendants of elements that
 * have any dimensions expressed in viewport units. It also doesn’t handle them at
 * all in `calc()`.
 */
/**
 * Wrapper around all lightbox elements
 *
 * 1. Since the lightbox can receive focus, IE also gives it an outline.
 * 2. Fixes flickering on Chrome when a transition is in progress
 *    underneath the lightbox.
 */
.w-lightbox-backdrop {
  color: #000;
  cursor: auto;
  font-family: serif;
  font-size: medium;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  letter-spacing: normal;
  line-height: normal;
  list-style: disc;
  text-align: start;
  text-indent: 0;
  text-shadow: none;
  text-transform: none;
  visibility: visible;
  white-space: normal;
  word-break: normal;
  word-spacing: normal;
  word-wrap: normal;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  color: #fff;
  font-family: "Helvetica Neue", Helvetica, Ubuntu, "Segoe UI", Verdana, sans-serif;
  font-size: 17px;
  line-height: 1.2;
  font-weight: 300;
  text-align: center;
  background: rgba(0, 0, 0, 0.9);
  z-index: 2000;
  outline: 0;
  /* 1 */
  opacity: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-transform: translate(0, 0);
  /* 2 */
}

/**
 * Neat trick to bind the rubberband effect to our canvas instead of the whole
 * document on iOS. It also prevents a bug that causes the document underneath to scroll.
 */
.w-lightbox-backdrop,
.w-lightbox-container {
  height: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.w-lightbox-content {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.w-lightbox-view {
  position: absolute;
  width: 100vw;
  height: 100vh;
  opacity: 0;
}

.w-lightbox-view:before {
  content: "";
  height: 100vh;
}

/* .w-lightbox-content */
.w-lightbox-group,
.w-lightbox-group .w-lightbox-view,
.w-lightbox-group .w-lightbox-view:before {
  height: 86vh;
}

.w-lightbox-frame,
.w-lightbox-view:before {
  display: inline-block;
  vertical-align: middle;
}

/*
 * 1. Remove default margin set by user-agent on the <figure> element.
 */
.w-lightbox-figure {
  position: relative;
  margin: 0;
  /* 1 */
}

.w-lightbox-group .w-lightbox-figure {
  cursor: pointer;
}

/**
 * IE adds image dimensions as width and height attributes on the IMG tag,
 * but we need both width and height to be set to auto to enable scaling.
 */
.w-lightbox-img {
  width: auto;
  height: auto;
  max-width: none;
}

/**
 * 1. Reset if style is set by user on "All Images"
 */
.w-lightbox-image {
  display: block;
  float: none;
  /* 1 */
  max-width: 100vw;
  max-height: 100vh;
}

.w-lightbox-group .w-lightbox-image {
  max-height: 86vh;
}

.w-lightbox-caption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 0.5em 1em;
  background: rgba(0, 0, 0, 0.4);
  text-align: left;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.w-lightbox-embed {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.w-lightbox-control {
  position: absolute;
  top: 0;
  width: 4em;
  background-size: 24px;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.w-lightbox-left {
  display: none;
  bottom: 0;
  left: 0;
  /* <svg xmlns="http://www.w3.org/2000/svg" viewBox="-20 0 24 40" width="24" height="40"><g transform="rotate(45)"><path d="m0 0h5v23h23v5h-28z" opacity=".4"/><path d="m1 1h3v23h23v3h-26z" fill="#fff"/></g></svg> */
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9Ii0yMCAwIDI0IDQwIiB3aWR0aD0iMjQiIGhlaWdodD0iNDAiPjxnIHRyYW5zZm9ybT0icm90YXRlKDQ1KSI+PHBhdGggZD0ibTAgMGg1djIzaDIzdjVoLTI4eiIgb3BhY2l0eT0iLjQiLz48cGF0aCBkPSJtMSAxaDN2MjNoMjN2M2gtMjZ6IiBmaWxsPSIjZmZmIi8+PC9nPjwvc3ZnPg==");
}

.w-lightbox-right {
  display: none;
  right: 0;
  bottom: 0;
  /* <svg xmlns="http://www.w3.org/2000/svg" viewBox="-4 0 24 40" width="24" height="40"><g transform="rotate(45)"><path d="m0-0h28v28h-5v-23h-23z" opacity=".4"/><path d="m1 1h26v26h-3v-23h-23z" fill="#fff"/></g></svg> */
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9Ii00IDAgMjQgNDAiIHdpZHRoPSIyNCIgaGVpZ2h0PSI0MCI+PGcgdHJhbnNmb3JtPSJyb3RhdGUoNDUpIj48cGF0aCBkPSJtMC0waDI4djI4aC01di0yM2gtMjN6IiBvcGFjaXR5PSIuNCIvPjxwYXRoIGQ9Im0xIDFoMjZ2MjZoLTN2LTIzaC0yM3oiIGZpbGw9IiNmZmYiLz48L2c+PC9zdmc+");
}

/*
 * Without specifying the with and height inside the SVG, all versions of IE render the icon too small.
 * The bug does not seem to manifest itself if the elements are tall enough such as the above arrows.
 * (http://stackoverflow.com/questions/16092114/background-size-differs-in-internet-explorer)
 */
.w-lightbox-close {
  right: 0;
  height: 2.6em;
  /* <svg xmlns="http://www.w3.org/2000/svg" viewBox="-4 0 18 17" width="18" height="17"><g transform="rotate(45)"><path d="m0 0h7v-7h5v7h7v5h-7v7h-5v-7h-7z" opacity=".4"/><path d="m1 1h7v-7h3v7h7v3h-7v7h-3v-7h-7z" fill="#fff"/></g></svg> */
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9Ii00IDAgMTggMTciIHdpZHRoPSIxOCIgaGVpZ2h0PSIxNyI+PGcgdHJhbnNmb3JtPSJyb3RhdGUoNDUpIj48cGF0aCBkPSJtMCAwaDd2LTdoNXY3aDd2NWgtN3Y3aC01di03aC03eiIgb3BhY2l0eT0iLjQiLz48cGF0aCBkPSJtMSAxaDd2LTdoM3Y3aDd2M2gtN3Y3aC0zdi03aC03eiIgZmlsbD0iI2ZmZiIvPjwvZz48L3N2Zz4=");
  background-size: 18px;
}

/**
 * 1. All IE versions add extra space at the bottom without this.
 */
.w-lightbox-strip {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0 1vh;
  line-height: 0;
  /* 1 */
  white-space: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
}

/*
 * 1. We use content-box to avoid having to do `width: calc(10vh + 2vw)`
 *    which doesn’t work in Safari anyway.
 * 2. Chrome renders images pixelated when switching to GPU. Making sure
 *    the parent is also rendered on the GPU (by setting translate3d for
 *    example) fixes this behavior.
 */
.w-lightbox-item {
  display: inline-block;
  width: 10vh;
  padding: 2vh 1vh;
  box-sizing: content-box;
  /* 1 */
  cursor: pointer;
  -webkit-transform: translate3d(0, 0, 0);
  /* 2 */
}

.w-lightbox-active {
  opacity: 0.3;
}

.w-lightbox-thumbnail {
  position: relative;
  height: 10vh;
  background: #222;
  overflow: hidden;
}

.w-lightbox-thumbnail-image {
  position: absolute;
  top: 0;
  left: 0;
}

.w-lightbox-thumbnail .w-lightbox-tall {
  top: 50%;
  width: 100%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

.w-lightbox-thumbnail .w-lightbox-wide {
  left: 50%;
  height: 100%;
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}

/*
 * Spinner
 *
 * Absolute pixel values are used to avoid rounding errors that would cause
 * the white spinning element to be misaligned with the track.
 */
.w-lightbox-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  box-sizing: border-box;
  width: 40px;
  height: 40px;
  margin-top: -20px;
  margin-left: -20px;
  border: 5px solid rgba(0, 0, 0, 0.4);
  border-radius: 50%;
  -webkit-animation: spin 0.8s infinite linear;
  animation: spin 0.8s infinite linear;
}

.w-lightbox-spinner:after {
  content: "";
  position: absolute;
  top: -4px;
  right: -4px;
  bottom: -4px;
  left: -4px;
  border: 3px solid transparent;
  border-bottom-color: #fff;
  border-radius: 50%;
}

/*
 * Utility classes
 */
.w-lightbox-hide {
  display: none;
}

.w-lightbox-noscroll {
  overflow: hidden;
}

@media (min-width: 768px) {
  .w-lightbox-content {
    height: 96vh;
    margin-top: 2vh;
  }
  .w-lightbox-view,
  .w-lightbox-view:before {
    height: 96vh;
  }
  /* .w-lightbox-content */
  .w-lightbox-group,
  .w-lightbox-group .w-lightbox-view,
  .w-lightbox-group .w-lightbox-view:before {
    height: 84vh;
  }
  .w-lightbox-image {
    max-width: 96vw;
    max-height: 96vh;
  }
  .w-lightbox-group .w-lightbox-image {
    max-width: 82.3vw;
    max-height: 84vh;
  }
  .w-lightbox-left,
  .w-lightbox-right {
    display: block;
    opacity: 0.5;
  }
  .w-lightbox-close {
    opacity: 0.8;
  }
  .w-lightbox-control:hover {
    opacity: 1;
  }
}
.w-lightbox-inactive,
.w-lightbox-inactive:hover {
  opacity: 0;
}

.w-richtext:before,
.w-richtext:after {
  content: " ";
  display: table;
  grid-column-start: 1;
  grid-row-start: 1;
  grid-column-end: 2;
  grid-row-end: 2;
}

.w-richtext:after {
  clear: both;
}

.w-richtext[contenteditable=true]:before,
.w-richtext[contenteditable=true]:after {
  white-space: initial;
}

.w-richtext ol,
.w-richtext ul {
  overflow: hidden;
}

.w-richtext .w-richtext-figure-selected.w-richtext-figure-type-video div:after,
.w-richtext .w-richtext-figure-selected[data-rt-type=video] div:after {
  outline: 2px solid #2895f7;
}

.w-richtext .w-richtext-figure-selected.w-richtext-figure-type-image div,
.w-richtext .w-richtext-figure-selected[data-rt-type=image] div {
  outline: 2px solid #2895f7;
}

.w-richtext figure.w-richtext-figure-type-video > div:after,
.w-richtext figure[data-rt-type=video] > div:after {
  content: "";
  position: absolute;
  display: none;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
}

.w-richtext figure {
  position: relative;
  max-width: 60%;
}

.w-richtext figure > div:before {
  cursor: default !important;
}

.w-richtext figure img {
  width: 100%;
}

.w-richtext figure figcaption.w-richtext-figcaption-placeholder {
  opacity: 0.6;
}

.w-richtext figure div {
  /* fix incorrectly sized selection border in the data manager */
  font-size: 0px;
  color: transparent;
}

.w-richtext figure.w-richtext-figure-type-image,
.w-richtext figure[data-rt-type=image] {
  display: table;
}

.w-richtext figure.w-richtext-figure-type-image > div,
.w-richtext figure[data-rt-type=image] > div {
  display: inline-block;
}

.w-richtext figure.w-richtext-figure-type-image > figcaption,
.w-richtext figure[data-rt-type=image] > figcaption {
  display: table-caption;
  caption-side: bottom;
}

.w-richtext figure.w-richtext-figure-type-video,
.w-richtext figure[data-rt-type=video] {
  width: 60%;
  height: 0;
}

.w-richtext figure.w-richtext-figure-type-video iframe,
.w-richtext figure[data-rt-type=video] iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.w-richtext figure.w-richtext-figure-type-video > div,
.w-richtext figure[data-rt-type=video] > div {
  width: 100%;
}

.w-richtext figure.w-richtext-align-center {
  margin-right: auto;
  margin-left: auto;
  clear: both;
}

.w-richtext figure.w-richtext-align-center.w-richtext-figure-type-image > div,
.w-richtext figure.w-richtext-align-center[data-rt-type=image] > div {
  max-width: 100%;
}

.w-richtext figure.w-richtext-align-normal {
  clear: both;
}

.w-richtext figure.w-richtext-align-fullwidth {
  width: 100%;
  max-width: 100%;
  text-align: center;
  clear: both;
  display: block;
  margin-right: auto;
  margin-left: auto;
}

.w-richtext figure.w-richtext-align-fullwidth > div {
  display: inline-block;
  /* padding-bottom is used for aspect ratios in video figures
      we want the div to inherit that so hover/selection borders in the designer-canvas
      fit right*/
  padding-bottom: inherit;
}

.w-richtext figure.w-richtext-align-fullwidth > figcaption {
  display: block;
}

.w-richtext figure.w-richtext-align-floatleft {
  float: left;
  margin-right: 15px;
  clear: none;
}

.w-richtext figure.w-richtext-align-floatright {
  float: right;
  margin-left: 15px;
  clear: none;
}

.w-nav {
  position: relative;
  background: #dddddd;
  z-index: 1000;
}

.w-nav:before,
.w-nav:after {
  content: " ";
  display: table;
  grid-column-start: 1;
  grid-row-start: 1;
  grid-column-end: 2;
  grid-row-end: 2;
}

.w-nav:after {
  clear: both;
}

.w-nav-brand {
  position: relative;
  float: left;
  text-decoration: none;
  color: #333333;
}

.w-nav-link {
  position: relative;
  display: inline-block;
  vertical-align: top;
  text-decoration: none;
  color: #222222;
  padding: 20px;
  text-align: left;
  margin-left: auto;
  margin-right: auto;
}

.w-nav-link.w--current {
  color: #0082f3;
}

.w-nav-menu {
  position: relative;
  float: right;
}

[data-nav-menu-open] {
  display: block !important;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #C8C8C8;
  text-align: center;
  overflow: visible;
  min-width: 200px;
}

.w--nav-link-open {
  display: block;
  position: relative;
}

.w-nav-overlay {
  position: absolute;
  overflow: hidden;
  display: none;
  top: 100%;
  left: 0;
  right: 0;
  width: 100%;
}

.w-nav-overlay [data-nav-menu-open] {
  top: 0;
}

.w-nav[data-animation=over-left] .w-nav-overlay {
  width: auto;
}

.w-nav[data-animation=over-left] .w-nav-overlay,
.w-nav[data-animation=over-left] [data-nav-menu-open] {
  right: auto;
  z-index: 1;
  top: 0;
}

.w-nav[data-animation=over-right] .w-nav-overlay {
  width: auto;
}

.w-nav[data-animation=over-right] .w-nav-overlay,
.w-nav[data-animation=over-right] [data-nav-menu-open] {
  left: auto;
  z-index: 1;
  top: 0;
}

.w-nav-button {
  position: relative;
  float: right;
  padding: 18px;
  font-size: 24px;
  display: none;
  cursor: pointer;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.w-nav-button:focus {
  outline: 0;
}

.w-nav-button.w--open {
  background-color: #C8C8C8;
  color: white;
}

.w-nav[data-collapse=all] .w-nav-menu {
  display: none;
}

.w-nav[data-collapse=all] .w-nav-button {
  display: block;
}

.w--nav-dropdown-open {
  display: block;
}

.w--nav-dropdown-toggle-open {
  display: block;
}

.w--nav-dropdown-list-open {
  position: static;
}

@media screen and (max-width: 991px) {
  .w-nav[data-collapse=medium] .w-nav-menu {
    display: none;
  }
  .w-nav[data-collapse=medium] .w-nav-button {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .w-nav[data-collapse=small] .w-nav-menu {
    display: none;
  }
  .w-nav[data-collapse=small] .w-nav-button {
    display: block;
  }
  .w-nav-brand {
    padding-left: 10px;
  }
}
@media screen and (max-width: 479px) {
  .w-nav[data-collapse=tiny] .w-nav-menu {
    display: none;
  }
  .w-nav[data-collapse=tiny] .w-nav-button {
    display: block;
  }
}
.w-tabs {
  position: relative;
}

.w-tabs:before,
.w-tabs:after {
  content: " ";
  display: table;
  grid-column-start: 1;
  grid-row-start: 1;
  grid-column-end: 2;
  grid-row-end: 2;
}

.w-tabs:after {
  clear: both;
}

.w-tab-menu {
  position: relative;
}

.w-tab-link {
  position: relative;
  display: inline-block;
  vertical-align: top;
  text-decoration: none;
  padding: 9px 30px;
  text-align: left;
  cursor: pointer;
  color: #222222;
  background-color: #dddddd;
}

.w-tab-link.w--current {
  background-color: #C8C8C8;
}

.w-tab-link:focus {
  outline: 0;
}

.w-tab-content {
  position: relative;
  display: block;
  overflow: hidden;
}

.w-tab-pane {
  position: relative;
  display: none;
}

.w--tab-active {
  display: block;
}

@media screen and (max-width: 479px) {
  .w-tab-link {
    display: block;
  }
}
.w-ix-emptyfix:after {
  content: "";
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.w-dyn-empty {
  padding: 10px;
  background-color: #dddddd;
}

.w-dyn-hide {
  display: none !important;
}

.w-dyn-bind-empty {
  display: none !important;
}

.w-condition-invisible {
  display: none !important;
}

.w-layout-grid {
  display: -ms-grid;
  display: grid;
  grid-auto-columns: 1fr;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: auto auto;
  grid-template-rows: auto auto;
  grid-row-gap: 16px;
  grid-column-gap: 16px;
}

.w-checkbox {
  display: block;
  margin-bottom: 5px;
  padding-left: 20px;
}

.w-checkbox::before {
  content: " ";
  display: table;
  -ms-grid-column-span: 1;
  grid-column-end: 2;
  -ms-grid-column: 1;
  grid-column-start: 1;
  -ms-grid-row-span: 1;
  grid-row-end: 2;
  -ms-grid-row: 1;
  grid-row-start: 1;
}

.w-checkbox::after {
  content: " ";
  display: table;
  -ms-grid-column-span: 1;
  grid-column-end: 2;
  -ms-grid-column: 1;
  grid-column-start: 1;
  -ms-grid-row-span: 1;
  grid-row-end: 2;
  -ms-grid-row: 1;
  grid-row-start: 1;
  clear: both;
}

.w-checkbox-input {
  float: left;
  margin-bottom: 0px;
  margin-left: -20px;
  margin-right: 0px;
  margin-top: 4px;
  line-height: normal;
}

.w-checkbox-input--inputType-custom {
  border-top-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-right-width: 1px;
  border-top-color: #ccc;
  border-bottom-color: #ccc;
  border-left-color: #ccc;
  border-right-color: #ccc;
  border-top-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-right-style: solid;
  width: 12px;
  height: 12px;
  border-bottom-left-radius: 2px;
  border-bottom-right-radius: 2px;
  border-top-left-radius: 2px;
  border-top-right-radius: 2px;
}

.w-checkbox-input--inputType-custom.w--redirected-checked {
  background-color: #3898ec;
  border-top-color: #3898ec;
  border-bottom-color: #3898ec;
  border-left-color: #3898ec;
  border-right-color: #3898ec;
  background-image: url("https://d3e54v103j8qbb.cloudfront.net/static/custom-checkbox-checkmark.589d534424.svg");
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
}

.w-checkbox-input--inputType-custom.w--redirected-focus {
  box-shadow: 0px 0px 3px 1px #3898ec;
}

.w-form-formradioinput--inputType-custom {
  border-top-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-right-width: 1px;
  border-top-color: #ccc;
  border-bottom-color: #ccc;
  border-left-color: #ccc;
  border-right-color: #ccc;
  border-top-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-right-style: solid;
  width: 12px;
  height: 12px;
  border-bottom-left-radius: 50%;
  border-bottom-right-radius: 50%;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
}

.w-form-formradioinput--inputType-custom.w--redirected-focus {
  box-shadow: 0px 0px 3px 1px #3898ec;
}

.w-form-formradioinput--inputType-custom.w--redirected-checked {
  border-top-width: 4px;
  border-bottom-width: 4px;
  border-left-width: 4px;
  border-right-width: 4px;
  border-top-color: #3898ec;
  border-bottom-color: #3898ec;
  border-left-color: #3898ec;
  border-right-color: #3898ec;
}

body {
  background-color: #fff;
  font-family: Inter, sans-serif;
  color: #0e0f11;
  font-size: 1rem;
  line-height: 1.5;
}

h1 {
  margin-top: 0px;
  margin-bottom: 1rem;
  font-size: 2.375rem;
  line-height: 1.25;
  font-weight: 700;
}

h2 {
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  font-size: 2rem;
  line-height: 1.25;
  font-weight: 700;
}

h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
  line-height: 1.25;
  font-weight: 700;
}

h4 {
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
  line-height: 1.5;
  font-weight: 700;
}

h5 {
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
  line-height: 1.5;
  font-weight: 700;
}

h6 {
  margin-top: 1rem;
  margin-bottom: 0.25rem;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 700;
}

p {
  margin-bottom: 1rem;
  color: #3c404b;
}

a {
  color: #2f54eb;
  text-decoration: underline;
}

ul {
  margin-bottom: 1rem;
  padding-left: 2rem;
  color: #3c404b;
}

ol {
  margin-bottom: 1rem;
  padding-left: 2rem;
  color: #3c404b;
}

li {
  margin-bottom: 0.25rem;
}

strong {
  font-weight: 700;
}

blockquote {
  margin-bottom: 1rem;
  padding: 0.75rem 1.5rem;
  border-left: 1px solid #d0d4d9;
  color: #3c404b;
  font-size: 1rem;
  font-style: italic;
}

.container {
  max-width: 1248px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 80px;
  padding-left: 80px;
}

.container.container-navbar {
  position: relative;
  top: 0px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  max-width: 1320px;
  padding: 8px 40px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.container.sg {
  width: 100%;
}

.container.mobile.groups {
  padding-bottom: 25rem;
}

.container.info {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.heading {
  color: #0e0f11;
}

.heading.xl {
  margin-top: 0px;
  margin-bottom: 1rem;
  font-size: 2.375rem;
  line-height: 1.25;
  font-weight: 700;
}

.heading.l {
  margin-top: 0px;
  margin-bottom: 0.75rem;
  font-size: 2rem;
  line-height: 1.25;
  font-weight: 700;
}

.heading.m {
  margin-top: 0px;
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
  line-height: 1.25;
  font-weight: 700;
}

.heading.s {
  margin-top: 0px;
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
  line-height: 1.5;
  font-weight: 700;
}

.heading.xs {
  margin-top: 0px;
  margin-bottom: 0.25rem;
  font-size: 1.125rem;
  line-height: 1.5;
  font-weight: 700;
}

.heading.xxs {
  margin-top: 0px;
  margin-bottom: 0.25rem;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 700;
}

.body-text {
  margin-top: 0px;
  color: #3c404b;
}

.body-text.color-inverse {
  color: #f9fafb;
}

.body-text.m.paragraph-margin-0 {
  margin-bottom: 0px;
}

.body-text.m.bold {
  font-weight: 700;
}

.body-text.m.inline {
  display: inline;
}

.body-text.l {
  font-size: 1.125rem;
  line-height: 1.75;
}

.body-text.s {
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
}

.section-title {
  width: 50%;
  margin-bottom: 48px;
}

.section-title.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.wrapper-m {
  max-width: 1030px;
  margin-right: auto;
  margin-left: auto;
  padding-top: 190px;
  padding-bottom: 190px;
}

.wrapper-m.info {
  max-width: 1240px;
  padding-top: 3.75rem;
  padding-bottom: 6.25rem;
}

.l-g-3-col {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

.feature-block.flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.feature-block.centered {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

.l-g-4-col {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  -ms-grid-columns: 1fr 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

.link-icon {
  display: inline-block;
  font-weight: 700;
  text-decoration: none;
}

.link-icon:hover {
  color: #597ef7;
}

.link-icon:active {
  color: #1d39c4;
}

.link-icon:focus {
  color: #597ef7;
}

.link-icon.icon-right {
  -webkit-align-self: flex-start;
  -ms-flex-item-align: start;
  align-self: flex-start;
  color: #2f54eb;
}

.link-icon-text {
  display: inline-block;
  font-weight: 700;
}

.button {
  position: relative;
  display: inline-block;
  padding: 12px 16px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #2f54eb;
  -webkit-transform: scale3d(1none, 1none, 1none);
  transform: scale3d(1none, 1none, 1none);
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
  color: #fff;
  text-align: center;
  text-decoration: none;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.button:hover {
  background-color: #597ef7;
}

.button:active {
  background-color: #1d39c4;
}

.button:focus {
  background-color: #597ef7;
}

.button.secondary {
  background-color: #f0f5ff;
  box-shadow: inset 0 0 0 1px #adc6ff;
  -webkit-transition: box-shadow 250ms ease, color 250ms ease, background-color 250ms ease;
  transition: box-shadow 250ms ease, color 250ms ease, background-color 250ms ease;
  color: #2f54eb;
}

.button.secondary:hover {
  box-shadow: inset 0 0 0 1px #2f54eb;
  color: #1d39c4;
}

.button.outline {
  background-color: #fff;
  box-shadow: inset 0 0 0 1px #d0d4d9;
  color: #0e0f11;
}

.button.outline:hover {
  background-color: #edf0f3;
}

.button.medium {
  max-width: 266px;
  padding: 9px 24px 4px;
  border-radius: 1.3925rem;
  background-color: #fff;
}

.button.medium.icon-only {
  padding: 14px;
}

.button.medium.secondary {
  background-color: #f0f5ff;
  box-shadow: none;
  color: #2f54eb;
}

.button.medium.secondary:hover {
  background-color: #f0f5ff;
  color: #597ef7;
}

.button.medium.secondary:active {
  background-color: #d6e4ff;
  color: #1d39c4;
}

.button.medium.secondary:focus {
  color: #597ef7;
}

.button.medium.outline:hover {
  background-color: #edf0f3;
}

.button.medium.outline:active {
  background-color: #e0e3e6;
}

.button.medium.outline:focus {
  background-color: #f9fafb;
}

.button.medium.form-button {
  width: 100%;
  margin-bottom: 12px;
}

.button.medium.form-button.s-m-0 {
  margin-bottom: 0px;
}

.button.medium.ghost {
  width: 152px;
  max-width: 152px;
  padding: 9px 22px 4px;
  border-style: solid;
  border-width: 1.52px;
  border-color: #fff;
  border-radius: 22.28px;
  background-color: transparent;
  -webkit-transform: scale3d(1none, 1none, 1none);
  transform: scale3d(1none, 1none, 1none);
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.button.medium.ghost:hover {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
  color: #fff;
}

.button.medium.ghost:active {
  box-shadow: inset 0 0 0 1px #1d39c4;
  color: #fff;
}

.button.medium.ghost:focus {
  box-shadow: inset 0 0 0 1px #597ef7;
}

.button.medium.presentbutton {
  width: 266px;
}

.button.medium.presentbutton:hover {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}

.button.small {
  padding: 8px 12px;
  font-size: 14px;
  line-height: 20px;
}

.button.small.icon-only {
  padding: 8px 12px;
}

.button.small.secondary {
  background-color: #f0f5ff;
  box-shadow: none;
  color: #2f54eb;
}

.button.small.secondary:hover {
  background-color: #f0f5ff;
  color: #597ef7;
}

.button.small.secondary:active {
  background-color: #d6e4ff;
  color: #1d39c4;
}

.button.small.secondary:focus {
  color: #597ef7;
}

.button.small.outline:hover {
  background-color: #edf0f3;
}

.button.small.outline:active {
  background-color: #e0e3e6;
}

.button.small.outline:focus {
  background-color: #f9fafb;
}

.button.small.ghost {
  background-color: transparent;
  box-shadow: 0 0 0 1px #fff;
}

.button.small.ghost:hover {
  box-shadow: 0 0 0 1px #597ef7;
  color: #597ef7;
}

.button.small.ghost:active {
  box-shadow: 0 0 0 1px #1d39c4;
  color: #1d39c4;
}

.button.small.ghost:focus {
  box-shadow: 0 0 0 1px #597ef7;
}

.button.small.cookies {
  margin-left: 16px;
}

.button-text {
  display: inline-block;
  font-family: komu-a, sans-serif;
  font-size: 23.17px;
  line-height: 1.75rem;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.button-text.colored {
  color: #0094c8;
  line-height: 1.75rem;
  letter-spacing: 1.25px;
}

.link-icon-right {
  display: inline-block;
  margin-left: 4px;
  font-size: 14px;
  line-height: 22px;
}

.dropdown-menu-navbar {
  z-index: 8;
}

.dropdown-menu-navbar.w--open {
  overflow: hidden;
  width: 200px;
  margin-top: 8px;
  background-color: #fff;
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.2);
  color: #3c404b;
}

.dropdown-menu-navbar.dark.w--open {
  background-color: #0e0f11;
  color: #fff;
}

.dropdown-menu-item {
  padding: 8px 16px;
  background-color: #fff;
}

.dropdown-menu-item:hover {
  background-color: #f0f5ff;
}

.dropdown-menu-item.w--current {
  background-color: #2f54eb;
  color: #fff;
}

.breadcrumbs-link {
  color: #5e6875;
  text-decoration: none;
}

.breadcrumbs-link:hover {
  color: #597ef7;
}

.breadcrumbs-link:active {
  color: #1d39c4;
}

.breadcrumbs-link:focus {
  color: #597ef7;
}

.breadcrumbs-link.w--current {
  color: #0e0f11;
}

.breadcrumbs-separator {
  display: inline-block;
  padding-right: 8px;
  padding-left: 8px;
  color: #838d95;
  line-height: 24px;
}

.l-g-2-col {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

.inline-link {
  color: #2f54eb;
  font-weight: 700;
  text-decoration: none;
}

.input {
  margin-bottom: 0.75rem;
  border-style: solid;
  border-width: 1px;
  border-color: #d0d4d9;
  border-radius: 0px;
  background-color: #f9fafb;
  font-size: 1rem;
}

.input:hover {
  border-color: #597ef7;
}

.input:active {
  border-color: #1d39c4;
}

.input:focus {
  border-color: #2f54eb;
  background-color: #fff;
}

.input.medium {
  height: 48px;
  max-width: 292px;
  border-width: 2px;
  border-color: #fff;
  border-radius: 6px;
}

.input.medium.horizontal {
  margin-right: 8px;
  margin-bottom: 0px;
}

.input.medium.bg-dark {
  border-color: #3c404b;
  background-color: #0e0f11;
}

.input.medium.bg-dark:hover {
  border-color: #fff;
}

.input.medium.bg-dark:focus {
  border-color: #2f54eb;
}

.input.medium.bg-dark::-webkit-input-placeholder {
  color: #f9fafb;
}

.input.medium.bg-dark:-ms-input-placeholder {
  color: #f9fafb;
}

.input.medium.bg-dark::-ms-input-placeholder {
  color: #f9fafb;
}

.input.medium.bg-dark::placeholder {
  color: #f9fafb;
}

.input.medium.icon-left {
  position: relative;
  margin-bottom: 0px;
  padding-left: 36px;
}

.input.medium.icon-right {
  position: relative;
  margin-bottom: 0px;
  padding-right: 36px;
  padding-left: 12px;
}

.input.textarea {
  min-height: 96px;
  box-shadow: inset 1px 1px 2px 0 rgba(14, 15, 17, 0.15);
}

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

.form.form-horizontal {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 8px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.cta-wrapper {
  width: 50%;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section.beginners {
  background-image: url("/images/Background-Erlebnis.jpg");
  background-position: 50% 0%;
  background-size: cover;
}

.section.beginners.toppadding.xmas {
  padding-top: 3rem;
}

.section.beginners.xmas {
  padding-top: 3rem;
}

.section.twopersons {
  padding-top: 5.5rem;
  background-image: url("/images/Background-Erlebnis.jpg");
  background-position: 50% 0%;
  background-size: cover;
}

.section.kidsandfamily {
  padding-top: 6.25rem;
  background-image: url("/images/Background-Erlebnis.jpg");
  background-position: 50% 100%;
  background-size: cover;
}

.section.contact {
  display: none;
}

.section.contact.airlebnis {
  display: block;
  padding-bottom: 6.25rem;
}

.section.events {
  padding-top: 9.375rem;
  padding-bottom: 5rem;
  background-image: url("/images/firmenevent.png");
  background-position: 0px 0px;
  background-size: cover;
}

.section.flightclub {
  padding-bottom: 5rem;
}

.tagline {
  margin-bottom: 0.5rem;
  color: #2f54eb;
  font-size: 0.875rem;
  line-height: 1.25;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.feature-text-wrapper {
  padding-top: 8px;
  padding-left: 24px;
}

.card {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-transition: color 250ms ease, border-color 250ms ease;
  transition: color 250ms ease, border-color 250ms ease;
  color: #0e0f11;
  text-decoration: none;
}

.card:hover {
  color: #2f54eb;
}

.card:focus {
  color: #2f54eb;
}

.card.card-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  background-color: #fff;
  box-shadow: 0 4px 8px 0 rgba(93, 99, 112, 0.15);
  -webkit-transition: box-shadow 250ms ease, color 250ms ease, border-color 250ms ease;
  transition: box-shadow 250ms ease, color 250ms ease, border-color 250ms ease;
}

.card.card-box:hover {
  border-color: #2f54eb;
  box-shadow: 0 6px 10px 0 rgba(93, 99, 112, 0.2);
  color: #2f54eb;
}

.card.card-box:active {
  box-shadow: 0 2px 6px 0 rgba(93, 99, 112, 0.2);
}

.card.card-horizontal {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  padding: 24px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  background-color: #fff;
  box-shadow: 0 4px 8px 0 rgba(93, 99, 112, 0.15);
  -webkit-transition: box-shadow 250ms ease, color 250ms ease, border-color 250ms ease;
  transition: box-shadow 250ms ease, color 250ms ease, border-color 250ms ease;
}

.card.card-horizontal:hover {
  box-shadow: 0 6px 10px 0 rgba(93, 99, 112, 0.2);
}

.card.card-horizontal:active {
  box-shadow: 0 2px 6px 0 rgba(93, 99, 112, 0.2);
}

.card-image {
  height: 320px;
  margin-bottom: 24px;
  -o-object-fit: cover;
  object-fit: cover;
}

.card-image.card-image-box {
  margin-bottom: 0px;
}

.card-text-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.card-text-wrapper.centered {
  text-align: center;
}

.card-horizontal-text-wrapper {
  margin-left: 16px;
  -webkit-align-self: stretch;
  -ms-flex-item-align: stretch;
  -ms-grid-row-align: stretch;
  align-self: stretch;
}

.button-separator {
  display: inline-block;
  width: 12px;
  height: 8px;
}

.side-nav-menu {
  position: -webkit-sticky;
  position: sticky;
  top: 24px;
}

.side-nav-menu-item {
  display: block;
  padding: 8px 16px;
  border-radius: 4px;
  color: #5e6875;
  text-decoration: none;
}

.side-nav-menu-item:hover {
  background-color: #f0f5ff;
}

.side-nav-menu-item:active {
  color: #1d39c4;
}

.side-nav-menu-item:focus {
  color: #597ef7;
}

.side-nav-menu-item.w--current {
  color: #2f54eb;
}

.side-nav-menu-item.w--current:hover {
  background-color: #f0f5ff;
}

.tab {
  padding: 12px 16px;
  background-color: #fff;
  box-shadow: inset 0 -1px 0 0 #d0d4d9;
  color: #5e6875;
}

.tab.w--current {
  padding: 12px 16px;
  background-color: #fff;
  box-shadow: inset 0 -2px 0 0 #2f54eb;
  color: #2f54eb;
}

.tag {
  display: inline-block;
  padding: 2px 4px;
  border-style: solid;
  border-width: 1px;
  border-color: #adc6ff;
  background-color: #f0f5ff;
  color: #2f54eb;
  font-size: 0.875rem;
  font-weight: 400;
}

.input-label {
  margin-bottom: 4px;
  font-weight: 400;
}

.form-footer-links {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.footer {
  padding-top: 0px;
  padding-right: 0px;
  padding-left: 0px;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  border-top: 1px none #e0e3e6;
  background-color: #0094c8;
  text-align: left;
}

.footer.dark {
  border-top-color: #3c404b;
  background-color: #0e0f11;
  color: #fff;
}

.material-icons.icon-right {
  margin-left: 4px;
}

.material-icons.icon-right.icon-dropdown {
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
}

.material-icons.icon-left {
  margin-right: 4px;
}

.material-icons.icon-left.icon-list-item {
  margin-top: 2px;
  margin-right: 4px;
}

.material-icons.icon-left.icon-list-item.error {
  color: #f5222d;
}

.material-icons.icon-left.icon-list-item.warning {
  color: #faad14;
}

.material-icons.icon-left.icon-list-item.success {
  color: #52c41a;
}

.material-icons.icon-left.icon-list-item.info {
  color: #1890ff;
}

.material-icons.icon-left.icon-collapse {
  margin-right: 0px;
}

.material-icons.icon-left.icon-alert-banner {
  margin-top: 2px;
}

.material-icons.icon-left.contact-icon {
  margin-top: 3px;
}

.material-icons.small {
  font-size: 16px;
}

.material-icons.small.icon-right {
  margin-top: 1px;
  margin-left: 4px;
}

.material-icons.small.icon-left {
  margin-top: 1px;
  margin-right: 4px;
}

.material-icons.icon-input-left {
  position: absolute;
  left: 12px;
  top: 50%;
  -webkit-transform: translate(0px, -50%);
  -ms-transform: translate(0px, -50%);
  transform: translate(0px, -50%);
  color: #838d95;
}

.material-icons.icon-input-right {
  position: absolute;
  left: auto;
  top: 50%;
  right: 12px;
  -webkit-transform: translate(0px, -50%);
  -ms-transform: translate(0px, -50%);
  transform: translate(0px, -50%);
  color: #838d95;
}

.material-icons.icon-close {
  cursor: pointer;
}

.material-icons.icon-close:hover {
  opacity: 0.5;
}

.material-icons.feature-icon-small {
  width: 1.5rem;
  height: 1.5rem;
  margin-bottom: 0.5rem;
  color: #2f54eb;
  font-size: 1.5rem;
}

.icon-list-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 0.25rem;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.grid-table {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  -ms-grid-columns: 1fr 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  -ms-grid-rows: auto auto auto auto auto auto;
  grid-template-rows: auto auto auto auto auto auto;
}

.grid-table.headings-table {
  margin-bottom: 48px;
  -ms-grid-columns: 0.4fr 0.3fr 0.3fr 1fr;
  grid-template-columns: 0.4fr 0.3fr 0.3fr 1fr;
  -ms-grid-rows: auto auto auto auto auto auto auto;
  grid-template-rows: auto auto auto auto auto auto auto;
}

.grid-table.body-text-table {
  margin-bottom: 48px;
  -ms-grid-columns: 0.4fr 0.3fr 0.3fr 1fr;
  grid-template-columns: 0.4fr 0.3fr 0.3fr 1fr;
  -ms-grid-rows: auto auto auto auto;
  grid-template-rows: auto auto auto auto;
}

.table-cell {
  padding: 12px;
  box-shadow: inset 0 -1px 0 0 #e0e3e6;
  color: #3c404b;
}

.table-header {
  padding: 12px;
  background-color: #f9fafb;
  box-shadow: inset 0 -1px 0 0 #d0d4d9;
  font-weight: 700;
}

.navbar {
  position: relative;
  background-color: #fff;
}

.navbar.dark {
  position: relative;
  z-index: 10;
  max-width: 1240px;
  margin-top: -29px;
  margin-right: auto;
  margin-left: auto;
  background-color: transparent;
}

.navbar-menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.navbar-menu.dark {
  width: 100%;
  margin-bottom: -0.2rem;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 0;
  -webkit-flex: 0 auto;
  -ms-flex: 0 auto;
  flex: 0 auto;
}

.nav-link {
  padding: 16px;
  color: #3c404b;
  text-decoration: none;
}

.nav-link:hover {
  color: #597ef7;
}

.nav-link.w--current {
  color: #597ef7;
}

.nav-link.nav-link-dropdown {
  padding-right: 36px;
}

.nav-link.nav-link-dropdown.w--open {
  color: #2f54eb;
}

.nav-link.nav-link-dropdown.color-inverse.w--open {
  color: #2f54eb;
}

.nav-link.color-inverse {
  display: block;
  padding: 8px 0px;
  -webkit-align-self: auto;
  -ms-flex-item-align: auto;
  -ms-grid-row-align: auto;
  align-self: auto;
  font-family: obvia, sans-serif;
  color: #fff;
  font-size: 18px;
  line-height: 1.4375rem;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.nav-link.color-inverse:hover {
  color: #6ad5cb;
}

.nav-link.color-inverse.last {
  display: none;
  padding-right: 1rem;
}

.dropdown-icon {
  margin-right: 16px;
}

.footer-grid {
  -ms-grid-columns: 1fr 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

.brand-logo {
  height: 100%;
  max-height: 80px;
  margin-right: 50px;
}

.navbar-menu-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.footer-logo {
  padding-bottom: 0px;
}

.vertical-menu-title {
  margin-bottom: 12px;
  color: #fff;
  font-size: 1.25rem;
  line-height: 1.375rem;
  font-weight: 400;
  text-align: right;
}

.vertical-menu-list-item {
  margin-bottom: 0px;
}

.footer-top {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 32px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.footer-social-media {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-align-self: flex-start;
  -ms-flex-item-align: start;
  align-self: flex-start;
}

.footer-bottom {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 32px;
  padding-top: 32px;
  padding-bottom: 32px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  color: #5e6875;
}

.footer-bottom.color-inverse {
  color: #838d95;
}

.vertical-menu-link {
  margin-bottom: 0px;
  color: #fff;
  font-size: 1.25rem;
  line-height: 3.125rem;
  text-decoration: none;
  text-transform: uppercase;
}

.vertical-menu-link:hover {
  color: #597ef7;
  text-decoration: none;
}

.vertical-menu-link.color-inverse {
  color: #838d95;
}

.vertical-menu-link.color-inverse:hover {
  color: #597ef7;
}

.vertical-menu-link.small {
  font-size: 1rem;
  line-height: 1.875rem;
  letter-spacing: 0.36px;
  text-transform: capitalize;
}

.social-media-icon {
  display: inline-block;
  padding-right: 0px;
  padding-left: 0px;
  opacity: 0.35;
  color: #fff;
  font-size: 1.5rem;
  line-height: 1.5rem;
}

.social-media-icon:hover {
  opacity: 1;
}

.sm-icon-link {
  margin-right: 12px;
  color: #fff;
}

.footer-grid-2 {
  -ms-grid-columns: 1.5fr 1fr 1fr 1fr;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

.footer-logo-2 {
  position: static;
  display: block;
  margin-bottom: 16px;
  float: none;
}

.footer-grid-3 {
  margin-bottom: 2rem;
  grid-column-gap: 24px;
  -ms-grid-columns: 2.75fr 0.25fr 1.75fr;
  grid-template-columns: 2.75fr 0.25fr 1.75fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  text-align: left;
}

.footer-top-2 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.footer-bottom-2 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 32px;
  padding-top: 24px;
  padding-bottom: 24px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-top: 1px solid #e0e3e6;
  color: #5e6875;
}

.footer-bottom-2.color-inverse {
  border-top-color: #3c404b;
  color: #838d95;
}

.footer-2 {
  padding-top: 32px;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  border-top: 1px solid #e0e3e6;
  background-color: #fff;
  text-align: left;
}

.footer-2.dark {
  background-color: #0e0f11;
}

.sm-icons-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 24px;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
}

.grid-cta {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  -ms-grid-columns: 0.75fr 1fr;
  grid-template-columns: 0.75fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

.cta-section-form-wrapper {
  width: 480px;
}

.cta-section-form-wrapper.center {
  margin-right: auto;
  margin-left: auto;
}

.footer-menu-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.navbar-menu-right {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.navbar-menu-mobile {
  display: none;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
}

.breadcrumbs {
  display: block;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  color: #5e6875;
}

.text-icon-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.text-icon-wrapper.centered {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.text-icon-wrapper.align-top {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.alert-info {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 16px;
  border-style: solid;
  border-width: 1px;
  border-color: #91d5ff;
  background-color: #e6f7ff;
  color: #3c404b;
}

.popup-title {
  margin-bottom: 8px;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  color: #0e0f11;
  font-weight: 700;
}

.popup-title.color-inverse {
  color: #fff;
}

.toast {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  max-width: 640px;
  padding: 16px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  border-style: solid;
  border-width: 1px;
  border-color: #d0d4d9;
  background-color: #fff;
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.15);
  color: #3c404b;
}

.toast.dark {
  border-color: #3c404b;
  background-color: #0e0f11;
  color: #fff;
}

.toast-header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-align-self: stretch;
  -ms-flex-item-align: stretch;
  align-self: stretch;
}

.modal {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  max-width: 480px;
  margin-right: auto;
  margin-left: auto;
  padding: 0px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  border-style: solid;
  border-width: 1px;
  border-color: #d0d4d9;
  background-color: #fff;
  box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.15);
  color: #3c404b;
}

.checkbox {
  width: 16px;
  height: 16px;
  margin-top: 0px;
  margin-right: 8px;
  border-style: solid;
  border-width: 1px;
  border-color: #d0d4d9;
  border-radius: 2px;
  background-color: #fff;
  -webkit-transition: background-color 200ms ease;
  transition: background-color 200ms ease;
  cursor: pointer;
}

.checkbox:hover {
  border-color: #597ef7;
}

.checkbox.w--redirected-checked {
  border-color: #2f54eb;
  background-color: #2f54eb;
  background-image: url("/images/check.svg");
  background-size: 12px 12px;
}

.checkbox.w--redirected-focus {
  border-color: #597ef7;
  box-shadow: none;
}

.checkbox-label {
  margin-bottom: 0px;
  color: #3c404b;
  font-weight: 400;
}

.checkbox-field {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 8px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.radio-button-label {
  margin-bottom: 0px;
  color: #3c404b;
}

.radio-button {
  width: 16px;
  height: 16px;
  margin-top: 0px;
  margin-right: 8px;
  border-color: #d0d4d9;
  background-color: #fff;
  cursor: pointer;
}

.radio-button:hover {
  border-color: #597ef7;
}

.radio-button.w--redirected-checked {
  width: 16px;
  height: 16px;
  border-color: #2f54eb;
  background-color: #fff;
}

.radio-button.w--redirected-focus {
  border-color: #597ef7;
}

.radio-button-field {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 8px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.switch-field {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 8px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.switch {
  width: 32px;
  height: 20px;
  margin-top: 0px;
  margin-right: 8px;
  border-style: solid;
  border-width: 1px;
  border-color: #d0d4d9;
  border-radius: 10px;
  background-color: #e0e3e6;
  background-image: url("/images/Switch-Handle.svg");
  background-position: 2px 50%;
  background-size: 14px;
  background-repeat: no-repeat;
  -webkit-transition: background-color 200ms ease;
  transition: background-color 200ms ease;
  cursor: pointer;
}

.switch:hover {
  border-color: #597ef7;
}

.switch.w--redirected-checked {
  border-width: 0px;
  border-color: #2f54eb;
  background-color: #2f54eb;
  background-image: url("/images/Switch-Handle.svg");
  background-position: 15px 50%;
  background-size: 14px;
}

.switch.w--redirected-focus {
  border-color: #597ef7;
  box-shadow: none;
}

.switch-label {
  margin-bottom: 0px;
  color: #3c404b;
  font-weight: 400;
}

.input-caption {
  margin-top: -0.25rem;
  margin-bottom: 0.5rem;
  color: #5e6875;
  font-size: 0.875rem;
}

.input-caption.color-inverse {
  color: #838d95;
}

.input-icon-wrapper {
  position: relative;
  margin-bottom: 12px;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.tooltip {
  position: absolute;
  left: 24%;
  top: auto;
  right: 0%;
  bottom: 36px;
  display: none;
  width: 240px;
  margin-bottom: 8px;
  padding: 8px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #0e0f11;
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.15);
  -webkit-transform: translate(-50%, 0px);
  -ms-transform: translate(-50%, 0px);
  transform: translate(-50%, 0px);
  color: #fff;
  font-size: 0.875rem;
  line-height: 1.25;
  text-align: center;
}

.tooltip-arrow {
  position: absolute;
  left: 50%;
  top: auto;
  right: 50%;
  bottom: -6px;
  width: 12px;
  height: 12px;
  background-color: #0e0f11;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.text-block {
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
}

.tooltip-trigger-content {
  position: relative;
  bottom: -4px;
  display: inline-block;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
}

.tooltip-trigger {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
}

.modal-wrapper {
  position: fixed;
  z-index: 9999;
  display: none;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  text-align: center;
}

.modal-header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 12px 24px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-self: stretch;
  -ms-flex-item-align: stretch;
  align-self: stretch;
  border-bottom: 1px solid #d0d4d9;
}

.modal-header-title {
  margin-bottom: 0px;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  color: #0e0f11;
  font-weight: 700;
}

.modal-content {
  padding: 16px 24px;
}

.collapse-item {
  padding-right: 16px;
  padding-left: 16px;
  border-bottom: 1px solid #d0d4d9;
  background-color: #f9fafb;
  cursor: pointer;
}

.collapse-text {
  display: none;
  padding-top: 0px;
  padding-bottom: 12px;
  padding-left: 32px;
  opacity: 0;
  color: #3c404b;
}

.collapse-trigger {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-top: 12px;
  padding-bottom: 12px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.collapse-title {
  display: inline-block;
  margin-left: 12px;
  font-weight: 700;
}

.collapse {
  overflow: hidden;
}

.alert-error {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 16px;
  border-style: solid;
  border-width: 1px;
  border-color: #ffa39e;
  background-color: #fff1f0;
  color: #3c404b;
}

.alert-warning {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 16px;
  border-style: solid;
  border-width: 1px;
  border-color: #ffe58f;
  background-color: #fffbe6;
  color: #3c404b;
}

.alert-success {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 16px;
  border-style: solid;
  border-width: 1px;
  border-color: #b7eb8f;
  background-color: #f6ffed;
  color: #3c404b;
}

.select {
  margin-bottom: 12px;
  border-style: solid;
  border-width: 1px;
  border-color: #d0d4d9;
  background-color: #f9fafb;
}

.select:hover {
  border-color: #597ef7;
}

.select:focus {
  border-color: #1d39c4;
  background-color: #fff;
}

.select.medium {
  height: 48px;
  box-shadow: inset 1px 1px 2px 0 rgba(14, 15, 17, 0.15);
  cursor: pointer;
}

.component-wrapper {
  position: relative;
  margin-top: 0px;
  margin-bottom: 0px;
  padding: 0px 0px 4rem;
  border-style: none;
  border-width: 1px;
  border-color: #d0d4d9;
  border-radius: 4px;
}

.component-wrapper.dark {
  background-color: #0e0f11;
  color: #fff;
}

.component-wrapper.two {
  background-color: #e9eff3;
}

.component-wrapper.three {
  background-color: #d6e4ec;
}

.component-wrapper.four {
  background-color: #bcd6e4;
}

.component-wrapper-label {
  position: absolute;
  left: 0%;
  top: -40px;
  right: auto;
  bottom: auto;
  display: block;
  padding: 4px 16px 4px 36px;
  border-radius: 4px;
  background-color: #edf0f3;
  color: #3c404b;
  font-size: 0.875rem;
  line-height: 1.5;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
}

.component-wrapper-label:hover {
  opacity: 0.8;
}

.style-guide-page-header {
  background-color: #f9fafb;
  color: #0e0f11;
}

.grid-styleguide---buttons {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  -ms-grid-columns: 1fr 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  text-align: center;
}

.dropdown-inline {
  padding: 0px;
  color: #5e6875;
}

.dropdown-inline:hover {
  color: #597ef7;
}

.dropdown-inline:active {
  color: #1d39c4;
}

.dropdown-inline:focus {
  color: #597ef7;
}

.dropdown-inline.w--open {
  color: #2f54eb;
}

.style-guide-page-header-text {
  width: 65%;
  padding-top: 48px;
  padding-bottom: 32px;
}

.style-guide-page-header-navigation {
  position: -webkit-sticky;
  position: sticky;
  top: 0px;
  z-index: 50;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  background-color: #f9fafb;
}

.divider {
  width: 100%;
  height: 1px;
  margin-top: 64px;
  margin-bottom: 64px;
  background-color: #e0e3e6;
}

.button-fluid {
  position: relative;
  display: inline-block;
  width: 100%;
  padding: 12px 16px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #2f54eb;
  -webkit-transition: background-color 250ms ease;
  transition: background-color 250ms ease;
  color: #fff;
  text-align: center;
  text-decoration: none;
}

.button-fluid:hover {
  background-color: #597ef7;
}

.button-fluid:active {
  background-color: #1d39c4;
}

.button-fluid.secondary {
  background-color: #f0f5ff;
  box-shadow: inset 0 0 0 1px #adc6ff;
  -webkit-transition: box-shadow 250ms ease, color 250ms ease, background-color 250ms ease;
  transition: box-shadow 250ms ease, color 250ms ease, background-color 250ms ease;
  color: #2f54eb;
}

.button-fluid.secondary:hover {
  box-shadow: inset 0 0 0 1px #2f54eb;
  color: #1d39c4;
}

.button-fluid.outline {
  background-color: #fff;
  box-shadow: inset 0 0 0 1px #d0d4d9;
  color: #0e0f11;
}

.button-fluid.outline:hover {
  background-color: #edf0f3;
}

.button-fluid.medium {
  width: 100%;
  text-align: center;
}

.button-fluid.medium.icon-only {
  padding: 14px;
  font-size: 22px;
}

.button-fluid.medium.secondary {
  background-color: #f0f5ff;
  box-shadow: none;
  color: #2f54eb;
}

.button-fluid.medium.secondary:hover {
  background-color: #f0f5ff;
  color: #597ef7;
}

.button-fluid.medium.secondary:active {
  background-color: #d6e4ff;
  color: #1d39c4;
}

.button-fluid.medium.secondary:focus {
  color: #597ef7;
}

.button-fluid.medium.outline:active {
  background-color: #e0e3e6;
}

.button-fluid.medium.outline:focus {
  background-color: #f9fafb;
}

.button-fluid.medium.ghost {
  background-color: transparent;
  box-shadow: inset 0 0 0 1px #fff;
}

.button-fluid.medium.ghost:hover {
  box-shadow: inset 0 0 0 1px #597ef7;
  color: #597ef7;
}

.button-fluid.medium.ghost:active {
  box-shadow: inset 0 0 0 1px #1d39c4;
  color: #1d39c4;
}

.button-fluid.medium.ghost:focus {
  box-shadow: inset 0 0 0 1px #597ef7;
}

.button-fluid.medium.s-m-b-8.organization {
  background-color: #fa541c;
}

.button-fluid.medium.s-m-b-8.organization:hover {
  background-color: #d4380d;
}

.button-fluid.small {
  width: 100%;
  padding-top: 8px;
  padding-bottom: 8px;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
}

.button-fluid.small.icon-only {
  padding: 8px 14px;
}

.button-fluid.small.secondary {
  background-color: #f0f5ff;
  box-shadow: none;
  color: #2f54eb;
}

.button-fluid.small.secondary:hover {
  background-color: #f0f5ff;
  color: #597ef7;
}

.button-fluid.small.secondary:active {
  background-color: #d6e4ff;
  color: #1d39c4;
}

.button-fluid.small.secondary:focus {
  color: #597ef7;
}

.button-fluid.small.outline:active {
  background-color: #e0e3e6;
}

.button-fluid.small.outline:focus {
  background-color: #f9fafb;
}

.button-fluid.small.ghost {
  background-color: transparent;
  box-shadow: inset 0 0 0 1px #fff;
}

.button-fluid.small.ghost:hover {
  box-shadow: inset 0 0 0 1px #597ef7;
  color: #597ef7;
}

.button-fluid.small.ghost:active {
  box-shadow: inset 0 0 0 1px #1d39c4;
  color: #1d39c4;
}

.button-fluid.small.ghost:focus {
  box-shadow: inset 0 0 0 1px #597ef7;
}

.navbar-vertical {
  position: static;
  left: 0%;
  top: 0%;
  right: auto;
  bottom: 0%;
  display: block;
  width: 280px;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  background-color: #fff;
  box-shadow: inset -1px 0 0 0 #d0d4d9;
  color: #0e0f11;
  text-align: left;
}

.navbar-vertical-link {
  position: relative;
  display: block;
  padding: 8px 32px;
  color: #3c404b;
  text-decoration: none;
}

.navbar-vertical-link:hover {
  background-color: #f0f5ff;
  box-shadow: inset -1px 0 0 0 #d0d4d9;
  color: #1d39c4;
}

.navbar-vertical-link.w--current {
  background-color: #f0f5ff;
  box-shadow: inset -2px 0 0 0 #2f54eb;
  color: #2f54eb;
}

.navbar-vetrical-menu-title {
  margin-top: 24px;
  margin-bottom: 16px;
  padding-right: 24px;
  padding-left: 24px;
  color: #0e0f11;
  font-weight: 600;
}

.navbar-vetrical-menu-title-2 {
  margin-bottom: 8px;
  padding-right: 24px;
  padding-left: 24px;
  color: #838d95;
  font-weight: 400;
}

.navbar-vertical-brand {
  width: 100%;
  padding: 24px;
}

.style-guide-content {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.style-guide-page-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.navbar-vertical---mobile {
  position: relative;
  display: none;
  background-color: #fff;
}

.navbar-vertical-overlay {
  display: block;
  margin-bottom: 128px;
}

.navbar-vertical-bg {
  display: none;
}

.nav-tabs-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  max-width: 1232px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 8px;
  padding-left: 8px;
}

.nav-tab {
  padding: 16px;
}

.nav-tab:hover {
  color: #597ef7;
}

.nav-tab:active {
  color: #1d39c4;
}

.nav-tab.w--current {
  box-shadow: inset 0 -2px 0 0 #2f54eb;
  color: #2f54eb;
}

.style-guide-nav-tabs {
  background-color: transparent;
  box-shadow: inset 0 -1px 0 0 #d0d4d9;
}

.footer-3 {
  padding-bottom: 64px;
}

.footer-3.style-guide-footer {
  margin-top: auto;
  padding-bottom: 32px;
  border-top: 1px solid #d0d4d9;
  background-color: #f9fafb;
}

.nav-tabs {
  background-color: transparent;
  box-shadow: inset 0 -1px 0 0 #d0d4d9;
}

.container-fluid {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 24px;
  padding-left: 24px;
}

.alert-content {
  padding-left: 4px;
}

.s-p-8 {
  padding: 8px;
}

.s-p-y-8 {
  padding-top: 8px;
  padding-bottom: 8px;
}

.s-p-x-8 {
  padding-right: 8px;
  padding-left: 8px;
}

.s-p-t-8 {
  padding-top: 8px;
}

.s-p-r-8 {
  padding-right: 8px;
}

.s-p-b-8 {
  padding-bottom: 8px;
}

.s-p-l-8 {
  padding-left: 8px;
}

.s-p-12 {
  padding: 12px;
}

.s-p-y-12 {
  padding-top: 12px;
  padding-bottom: 12px;
}

.s-p-x-12 {
  padding-right: 12px;
  padding-left: 12px;
}

.s-p-t-12 {
  padding-top: 12px;
}

.s-p-r-12 {
  padding-right: 12px;
}

.s-p-b-12 {
  padding-bottom: 12px;
}

.s-p-l-12 {
  padding-left: 12px;
}

.s-p-16 {
  padding: 16px;
}

.s-p-y-16 {
  padding-top: 16px;
  padding-bottom: 16px;
}

.s-p-x-16 {
  padding-right: 12px;
  padding-left: 12px;
}

.s-p-t-16 {
  padding-top: 16px;
}

.s-p-r-16 {
  padding-right: 16px;
}

.s-p-b-16 {
  padding-bottom: 16px;
}

.s-p-l-16 {
  padding-left: 16px;
}

.s-p-24 {
  padding: 24px;
}

.s-p-y-24 {
  padding-top: 24px;
  padding-bottom: 24px;
}

.s-p-x-24 {
  padding-right: 24px;
  padding-left: 24px;
}

.s-p-t-24 {
  padding-top: 24px;
}

.s-p-r-24 {
  padding-right: 24px;
}

.s-p-b-24 {
  padding-bottom: 24px;
}

.s-p-l-24 {
  padding-left: 24px;
}

.s-p-32 {
  padding: 32px;
}

.s-p-y-32 {
  padding-top: 32px;
  padding-bottom: 32px;
}

.s-p-x-32 {
  padding-right: 32px;
  padding-left: 32px;
}

.s-p-t-32 {
  padding-top: 32px;
}

.s-p-r-32 {
  padding-right: 32px;
}

.s-p-b-32 {
  padding-bottom: 32px;
}

.s-p-l-32 {
  padding-left: 32px;
}

.s-p-48 {
  padding: 48px;
}

.s-p-y-48 {
  padding-top: 48px;
  padding-bottom: 48px;
}

.s-p-x-48 {
  padding-right: 48px;
  padding-left: 48px;
}

.s-p-t-48 {
  padding-top: 48px;
}

.s-p-r-48 {
  padding-right: 48px;
}

.s-p-b-48 {
  padding-bottom: 48px;
}

.s-p-l-48 {
  padding-left: 48px;
}

.s-p-64 {
  padding: 64px;
}

.s-p-y-64 {
  padding-top: 64px;
  padding-bottom: 64px;
}

.s-p-x-64 {
  padding-right: 64px;
  padding-left: 64px;
}

.s-p-t-64 {
  padding-top: 64px;
}

.s-p-r-64 {
  padding-right: 64px;
}

.s-p-b-64 {
  padding-bottom: 64px;
}

.s-p-l-64 {
  padding-left: 64px;
}

.s-p-128 {
  padding: 128px;
}

.s-p-y-128 {
  padding-top: 128px;
  padding-bottom: 128px;
}

.s-p-t-128 {
  padding-top: 128px;
}

.s-p-x-128 {
  padding-right: 128px;
  padding-left: 128px;
}

.s-p-r-128 {
  padding-right: 128px;
}

.s-p-b-128 {
  padding-bottom: 128px;
}

.s-p-l-128 {
  padding-left: 128px;
}

.s-p-0 {
  padding: 0px;
}

.s-p-y-0 {
  padding-top: 0px;
  padding-bottom: 0px;
}

.s-p-x-0 {
  padding-right: 0px;
  padding-left: 0px;
}

.s-p-t-0 {
  padding-top: 0px;
}

.s-p-r-0 {
  padding-right: 0px;
}

.s-p-b-0 {
  padding-bottom: 0px;
}

.s-p-l-0 {
  padding-left: 0px;
}

.s-p-4 {
  padding: 4px;
}

.s-p-y-4 {
  padding-top: 4px;
  padding-bottom: 4px;
}

.s-p-x-4 {
  padding-right: 4px;
  padding-left: 4px;
}

.s-p-t-4 {
  padding-top: 4px;
}

.s-p-r-4 {
  padding-right: 4px;
}

.s-p-b-4 {
  padding-bottom: 4px;
}

.s-p-l-4 {
  padding-left: 4px;
}

.s-m-0 {
  margin: 0px;
}

.s-m-y-0 {
  margin-top: 0px;
  margin-bottom: 0px;
}

.s-m-x-0 {
  margin-right: 0px;
  margin-left: 0px;
}

.s-m-t-0 {
  margin-top: 0px;
}

.s-m-r-0 {
  margin-right: 0px;
}

.s-m-b-0 {
  margin-bottom: 0px;
}

.s-m-l-0 {
  margin-left: 0px;
}

.s-m-4 {
  margin: 4px;
}

.s-m-y-4 {
  margin-top: 4px;
  margin-bottom: 4px;
}

.s-m-x-4 {
  margin-right: 4px;
  margin-left: 4px;
}

.s-m-t-4 {
  margin-top: 4px;
}

.s-m-r-4 {
  margin-right: 4px;
}

.s-m-b-4 {
  margin-bottom: 4px;
}

.s-m-l-4 {
  margin-left: 4px;
}

.s-m-8 {
  margin: 8px;
}

.s-m-y-8 {
  margin-top: 8px;
  margin-bottom: 8px;
}

.s-m-x-8 {
  margin-right: 8px;
  margin-left: 8px;
}

.s-m-t-8 {
  margin-top: 8px;
}

.s-m-r-8 {
  margin-right: 8px;
}

.s-m-b-8 {
  margin-bottom: 8px;
}

.s-m-l-8 {
  margin-left: 8px;
}

.s-m-12 {
  margin: 12px;
}

.s-m-y-12 {
  margin-top: 12px;
  margin-bottom: 12px;
}

.s-m-x-12 {
  margin-right: 12px;
  margin-left: 12px;
}

.s-m-t-12 {
  margin-top: 12px;
}

.s-m-r-12 {
  margin-right: 12px;
}

.s-m-b-12 {
  margin-bottom: 12px;
}

.s-m-l-12 {
  margin-left: 12px;
}

.s-m-16 {
  margin: 16px;
}

.s-m-y-16 {
  margin-top: 16px;
  margin-bottom: 16px;
}

.s-m-x-16 {
  margin-right: 16px;
  margin-left: 16px;
}

.s-m-t-16 {
  margin-top: 16px;
}

.s-m-r-16 {
  margin-right: 16px;
}

.s-m-b-16 {
  margin-bottom: 16px;
}

.s-m-l-16 {
  margin-left: 16px;
}

.s-m-24 {
  margin: 24px;
}

.s-m-y-24 {
  margin-top: 24px;
  margin-bottom: 24px;
}

.s-m-x-24 {
  margin-right: 24px;
  margin-left: 24px;
}

.s-m-t-24 {
  margin-top: 24px;
}

.s-m-r-24 {
  margin-right: 24px;
}

.s-m-b-24 {
  margin-bottom: 24px;
}

.s-m-l-24 {
  margin-left: 24px;
}

.s-m-32 {
  margin: 32px;
}

.s-m-y-32 {
  margin-top: 32px;
  margin-bottom: 32px;
}

.s-m-x-32 {
  margin-right: 32px;
  margin-left: 32px;
}

.s-m-t-32 {
  margin-top: 32px;
}

.s-m-r-32 {
  margin-right: 32px;
}

.s-m-b-32 {
  margin-bottom: 32px;
}

.s-m-l-32 {
  margin-left: 32px;
}

.s-m-48 {
  margin: 48px;
}

.s-m-y-48 {
  margin-top: 48px;
  margin-bottom: 48px;
}

.s-m-x-48 {
  margin-right: 48px;
  margin-left: 48px;
}

.s-m-t-48 {
  margin-top: 48px;
}

.s-m-r-48 {
  margin-right: 48px;
}

.s-m-b-48 {
  margin-bottom: 48px;
}

.s-m-l-48 {
  margin-left: 48px;
}

.s-m-64 {
  margin: 64px;
}

.s-m-y-64 {
  margin-top: 64px;
  margin-bottom: 64px;
}

.s-m-x-64 {
  margin-right: 64px;
  margin-left: 64px;
}

.s-m-t-64 {
  margin-top: 64px;
}

.s-m-r-64 {
  margin-right: 64px;
}

.s-m-b-64 {
  margin-bottom: 64px;
}

.s-m-l-64 {
  margin-left: 64px;
}

.s-m-128 {
  margin: 128px;
}

.s-m-y-128 {
  margin-top: 128px;
  margin-bottom: 128px;
}

.s-m-x-128 {
  margin-right: 128px;
  margin-left: 128px;
}

.s-m-t-128 {
  margin-top: 128px;
}

.s-m-r-128 {
  margin-right: 128px;
}

.s-m-b-128 {
  margin-bottom: 128px;
}

.s-m-l-128 {
  margin-left: 128px;
}

.c-b-neutral-10 {
  background-color: #fff;
}

.c-b-neutral-20 {
  background-color: #f9fafb;
}

.c-b-neutral-30 {
  background-color: #edf0f3;
}

.c-b-neutral-40 {
  background-color: #e0e3e6;
}

.c-b-neutral-50 {
  background-color: #d0d4d9;
}

.c-b-neutral-60 {
  background-color: #aaafb6;
}

.c-b-neutral-70 {
  background-color: #838d95;
}

.c-b-neutral-80 {
  background-color: #5e6875;
}

.c-b-neutral-90 {
  background-color: #3c404b;
}

.c-b-neutral-100 {
  background-color: #0e0f11;
}

.c-b-primary-10 {
  background-color: #f0f5ff;
}

.c-b-primary-20 {
  background-color: #d6e4ff;
}

.c-b-primary-30 {
  background-color: #adc6ff;
}

.c-b-primary-40 {
  background-color: #85a5ff;
}

.c-b-primary-50 {
  background-color: #597ef7;
}

.c-b-primary-60 {
  background-color: #2f54eb;
}

.c-b-primary-70 {
  background-color: #1d39c4;
}

.c-b-primary-80 {
  background-color: #10239e;
}

.c-b-primary-90 {
  background-color: #061178;
}

.c-b-primary-100 {
  background-color: #030852;
}

.c-b-secondary-10 {
  background-color: #fff2e8;
}

.c-b-secondary-20 {
  background-color: #ffd8bf;
}

.c-b-secondary-30 {
  background-color: #ffbb96;
}

.c-b-secondary-40 {
  background-color: #ff9c6e;
}

.c-b-secondary-50 {
  background-color: #ff7a45;
}

.c-b-secondary-60 {
  background-color: #fa541c;
}

.c-b-secondary-70 {
  background-color: #d4380d;
}

.c-b-secondary-80 {
  background-color: #ad2102;
}

.c-b-secondary-90 {
  background-color: #871400;
}

.c-b-secondary-100 {
  background-color: #610b00;
}

.c-b-success-10 {
  background-color: #f6ffed;
}

.c-b-warning-10 {
  background-color: #fffbe6;
}

.c-b-error-10 {
  background-color: #fff1f0;
}

.c-b-info-10 {
  background-color: #e6f7ff;
}

.c-b-success-20 {
  background-color: #d9f7be;
}

.c-b-success-30 {
  background-color: #b7eb8f;
}

.c-b-success-40 {
  background-color: #95de64;
}

.c-b-success-50 {
  background-color: #73d13d;
}

.c-b-success-60 {
  background-color: #52c41a;
}

.c-b-success-70 {
  background-color: #389e0d;
}

.c-b-success-80 {
  background-color: #237804;
}

.c-b-success-90 {
  background-color: #135200;
}

.c-b-success-100 {
  background-color: #092b00;
}

.c-b-warning-20 {
  background-color: #fff1b8;
}

.c-b-warning-30 {
  background-color: #ffe58f;
}

.c-b-warning-40 {
  background-color: #ffd666;
}

.c-b-warning-50 {
  background-color: #ffc53d;
}

.c-b-warning-60 {
  background-color: #faad14;
}

.c-b-warning-70 {
  background-color: #d48806;
}

.c-b-warning-80 {
  background-color: #ad6800;
}

.c-b-warning-90 {
  background-color: #874d00;
}

.c-b-warning-100 {
  background-color: #613400;
}

.c-b-error-20 {
  background-color: #ffccc7;
}

.c-b-error-30 {
  background-color: #ffa39e;
}

.c-b-error-40 {
  background-color: #ff7875;
}

.c-b-error-50 {
  background-color: #ff4d4f;
}

.c-b-error-60 {
  background-color: #f5222d;
}

.c-b-error-70 {
  background-color: #cf1322;
}

.c-b-error-80 {
  background-color: #a8071a;
}

.c-b-error-90 {
  background-color: #820014;
}

.c-b-error-100 {
  background-color: #5c0011;
}

.c-b-info-20 {
  background-color: #bae7ff;
}

.c-b-info-30 {
  background-color: #91d5ff;
}

.c-b-info-40 {
  background-color: #69c0ff;
}

.c-b-info-50 {
  background-color: #40a9ff;
}

.c-b-info-60 {
  background-color: #1890ff;
}

.c-b-info-70 {
  background-color: #096dd9;
}

.c-b-info-80 {
  background-color: #0050b3;
}

.c-b-info-90 {
  background-color: #003a8c;
}

.c-b-info-100 {
  background-color: #002766;
}

.c-t-neutral-10 {
  color: #fff;
}

.c-t-neutral-20 {
  color: #f9fafb;
}

.c-t-neutral-30 {
  color: #edf0f3;
}

.c-t-neutral-40 {
  color: #e0e3e6;
}

.c-t-neutral-50 {
  color: #d0d4d9;
}

.c-t-neutral-60 {
  color: #aaafb6;
}

.c-t-neutral-70 {
  color: #838d95;
}

.c-t-neutral-80 {
  color: #5e6875;
}

.c-t-neutral-90 {
  color: #3c404b;
}

.c-t-neutral-100 {
  color: #0e0f11;
}

.c-t-primary-10 {
  color: #f0f5ff;
}

.c-t-primary-20 {
  color: #d6e4ff;
}

.c-t-primary-30 {
  color: #adc6ff;
}

.c-t-primary-40 {
  color: #85a5ff;
}

.c-t-primary-50 {
  color: #597ef7;
}

.c-t-primary-60 {
  color: #2f54eb;
}

.c-t-primary-70 {
  color: #1d39c4;
}

.c-t-primary-80 {
  color: #10239e;
}

.c-t-primary-90 {
  color: #061178;
}

.c-t-primary-100 {
  color: #030852;
}

.c-t-secondary-10 {
  color: #fff2e8;
}

.c-t-secondary-20 {
  color: #ffd8bf;
}

.c-t-secondary-30 {
  color: #ffbb96;
}

.c-t-secondary-40 {
  color: #ff9c6e;
}

.c-t-secondary-50 {
  color: #ff7a45;
}

.c-t-secondary-60 {
  color: #fa541c;
}

.c-t-secondary-70 {
  color: #d4380d;
}

.c-t-secondary-80 {
  color: #ad2102;
}

.c-t-secondary-90 {
  color: #871400;
}

.c-t-secondary-100 {
  color: #610b00;
}

.c-t-success-10 {
  color: #f6ffed;
}

.c-t-warning-10 {
  color: #fffbe6;
}

.c-t-error-10 {
  color: #fff1f0;
}

.c-t-info-10 {
  color: #e6f7ff;
}

.c-t-success-20 {
  color: #d9f7be;
}

.c-t-success-30 {
  color: #b7eb8f;
}

.c-t-success-40 {
  color: #95de64;
}

.c-t-success-50 {
  color: #73d13d;
}

.c-t-success-60 {
  color: #52c41a;
}

.c-t-success-70 {
  color: #389e0d;
}

.c-t-success-80 {
  color: #237804;
}

.c-t-success-90 {
  color: #135200;
}

.c-t-success-100 {
  color: #092b00;
}

.c-t-warning-20 {
  color: #fff1b8;
}

.c-t-warning-30 {
  color: #ffe58f;
}

.c-t-warning-40 {
  color: #ffd666;
}

.c-t-warning-50 {
  color: #ffc53d;
}

.c-t-warning-60 {
  color: #faad14;
}

.c-t-warning-70 {
  color: #d48806;
}

.c-t-warning-80 {
  color: #ad6800;
}

.c-t-warning-90 {
  color: #874d00;
}

.c-t-warning-100 {
  color: #613400;
}

.c-t-error-20 {
  color: #ffccc7;
}

.c-t-error-30 {
  color: #ffa39e;
}

.c-t-error-40 {
  color: #ff7875;
}

.c-t-error-50 {
  color: #ff4d4f;
}

.c-t-error-60 {
  color: #f5222d;
}

.c-t-error-70 {
  color: #cf1322;
}

.c-t-error-80 {
  color: #a8071a;
}

.c-t-error-90 {
  color: #820014;
}

.c-t-error-100 {
  color: #5c0011;
}

.c-t-info-20 {
  color: #bae7ff;
}

.c-t-info-30 {
  color: #91d5ff;
}

.c-t-info-40 {
  color: #69c0ff;
}

.c-t-info-50 {
  color: #40a9ff;
}

.c-t-info-60 {
  color: #1890ff;
}

.c-t-info-70 {
  color: #096dd9;
}

.c-t-info-80 {
  color: #0050b3;
}

.c-t-info-90 {
  color: #003a8c;
}

.c-t-info-100 {
  color: #002766;
}

.breadcrumbs-dropdown {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.breadcrumbs-dropdown:hover {
  color: #597ef7;
}

.breadcrumbs-dropdown:active {
  color: #1d39c4;
}

.dropdown-button-text {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.t-a-l {
  text-align: left;
}

.t-a-c {
  text-align: center;
}

.t-a-r {
  text-align: right;
}

.t-a-j {
  text-align: justify;
}

.feature-grid {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  grid-column-gap: 69px;
  grid-row-gap: 24px;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

.feature-grid-2 {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  -ms-grid-columns: 1fr 1.5fr;
  grid-template-columns: 1fr 1.5fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

.feature-grid-3 {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  -ms-grid-columns: 1.5fr 1fr;
  grid-template-columns: 1.5fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

.hero-grid {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  -ms-grid-columns: 0.75fr 1fr;
  grid-template-columns: 0.75fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

.hero-grid-2 {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  grid-column-gap: 48px;
  grid-row-gap: 24px;
  -ms-grid-columns: 1fr 1.5fr;
  grid-template-columns: 1fr 1.5fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

.hero-title-centered {
  width: 65%;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.wrapper-l {
  position: relative;
  z-index: 20;
  padding-top: 21.875rem;
  padding-bottom: 128px;
}

.wrapper-l.notoppadding {
  z-index: 1;
  padding-top: 0px;
}

.wrapper-l.notoppadding.nobottompadding {
  padding-bottom: 0px;
}

.wrapper-l.notoppadding.nobottompadding.alignmiddle {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.wrapper-l.gifsection {
  padding-top: 7.8125rem;
  padding-bottom: 7.8125rem;
}

.wrapper-l.topmargin {
  padding-top: 15rem;
}

.wrapper-l.topmargin.reducedz {
  z-index: 1;
}

.ctas-wrapper {
  margin-top: 24px;
}

.faq-item-wrapper {
  margin-bottom: 24px;
}

.faq-item-wrapper-2 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-top: 24px;
  padding-bottom: 24px;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  border-top: 1px solid #d0d4d9;
}

.faq-col-1 {
  width: 40%;
  padding-right: 16px;
}

.faq-col-2 {
  width: 60%;
}

.faq-question {
  margin-bottom: 8px;
  font-weight: 600;
}

.pricing-1 {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  -ms-grid-columns: 1fr 1.25fr 1fr;
  grid-template-columns: 1fr 1.25fr 1fr;
  -ms-grid-rows: auto auto auto;
  grid-template-rows: auto auto auto;
}

.pricing-card-1 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-radius: 8px;
  background-color: #f9fafb;
  box-shadow: 0 4px 12px 0 rgba(85, 87, 105, 0.3);
}

.pricing-card-1.main {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-style: solid;
  border-width: 2px;
  border-color: #2f54eb;
}

.pricing-card-1.left {
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
}

.pricing-card-1.right {
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
}

.pricing-card-header {
  padding: 32px 24px 24px;
  border-bottom: 1px solid #d0d4d9;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  background-color: #fff;
  text-align: center;
}

.price {
  font-size: 2.75rem;
  line-height: 1.25;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.pricing-card-title {
  margin-bottom: 4px;
  font-size: 1rem;
  font-weight: 700;
}

.pricing-card-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 32px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  border-radius: 4px;
}

.pricing-main-tag {
  position: absolute;
  left: 50%;
  top: -14px;
  right: auto;
  z-index: 4;
  padding: 2px 8px;
  border-radius: 4px;
  background-color: #2f54eb;
  -webkit-transform: translate(-50%, 0px);
  -ms-transform: translate(-50%, 0px);
  transform: translate(-50%, 0px);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 500;
  text-align: center;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.currency-span {
  padding-right: 4px;
  color: #5e6875;
  font-size: 1.75rem;
  font-weight: 400;
}

.price-2 {
  font-size: 32px;
  line-height: 40px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.price-title {
  line-height: 40px;
  font-weight: 600;
}

.currency-span-2 {
  padding-right: 4px;
  color: #5e6875;
  font-size: 24px;
  font-weight: 400;
}

.pricing-2 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  -ms-grid-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  -ms-grid-rows: auto auto auto auto auto auto auto auto auto;
  grid-template-rows: auto auto auto auto auto auto auto auto auto;
}

.pricing-3 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  -ms-grid-rows: auto auto auto auto auto auto auto auto auto auto auto auto auto auto auto auto;
  grid-template-rows: auto auto auto auto auto auto auto auto auto auto auto auto auto auto auto auto;
  border-style: solid;
  border-width: 1px;
  border-color: #d0d4d9;
  background-color: #fff;
  text-align: center;
}

.tooltip-text {
  display: inline-block;
  margin-right: 4px;
}

.testimonials-logos-grid {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  -ms-grid-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

.pricing-card-header-2 {
  padding: 24px;
  border-top: 4px solid #2f54eb;
  border-bottom: 1px solid #e0e3e6;
  background-color: #f9fafb;
  text-align: center;
}

.pricing-card-header-2.starter {
  border-top-color: #d0d4d9;
}

.pricing-card-header-2.organization {
  border-top-color: #fa541c;
}

.pricing-card-2 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  background-color: #fff;
  box-shadow: 0 4px 8px 0 rgba(89, 98, 116, 0.16);
}

.pricing-span {
  font-size: 22px;
}

.testimonial-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 48px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  background-color: #f9fafb;
}

.testimonial-box-2 {
  padding: 48px 128px;
  background-color: #f9fafb;
  text-align: center;
}

.alert-banner {
  padding-top: 8px;
  padding-bottom: 8px;
  background-color: #fff2e8;
}

.alert-content-2 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.contact-link {
  position: relative;
  display: block;
  margin-bottom: 16px;
  color: #3c404b;
  font-weight: 400;
  text-decoration: none;
}

.contact-link:hover {
  color: #2f54eb;
}

.contact-grid-1 {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

.contact-image {
  -o-object-fit: cover;
  object-fit: cover;
}

.collapse-item-2 {
  padding-right: 16px;
  padding-left: 16px;
  cursor: pointer;
}

.modal-buttons-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 16px;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.testimonial-logo-wrapper {
  padding: 16px;
  opacity: 0.35;
  -webkit-filter: saturate(0%);
  filter: saturate(0%);
}

.hero-video {
  border-radius: 6px;
  box-shadow: 0 8px 16px 4px rgba(117, 125, 139, 0.2);
}

.wrapper-s {
  padding-top: 32px;
  padding-bottom: 32px;
}

.hero-grid-3 {
  padding-top: 64px;
  padding-bottom: 64px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  -ms-grid-columns: 1fr 1.5fr;
  grid-template-columns: 1fr 1.5fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

.hero-form-wrapper {
  margin-right: 64px;
  margin-left: 64px;
  padding: 48px;
  border-style: solid;
  border-width: 1px;
  border-color: #d0d4d9;
  background-color: #fff;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.15);
}

.grid-long-content-1 {
  -webkit-box-align: start;
  -webkit-align-items: start;
  -ms-flex-align: start;
  align-items: start;
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  -ms-grid-columns: 0.5fr 1.5fr;
  grid-template-columns: 0.5fr 1.5fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

.long-content-center {
  max-width: 800px;
  margin-right: auto;
  margin-left: auto;
}

.utility-page-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100vw;
  height: 100vh;
  max-height: 100%;
  max-width: 100%;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.utility-page-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 260px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  text-align: center;
}

.class-label {
  display: inline-block;
  padding-right: 4px;
  padding-left: 4px;
  border-style: solid;
  border-width: 1px;
  border-color: #0566be;
  border-radius: 2px;
  background-color: #1a8ef7;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 400;
}

.class-label.body {
  border-color: #86285f;
  background-color: #b5518c;
}

.class-label-wrapper {
  padding-top: 16px;
  padding-bottom: 16px;
  text-align: center;
}

.backtotop-wrapper {
  position: fixed;
  left: auto;
  top: auto;
  right: 16px;
  bottom: 48px;
  z-index: 999;
}

.hidden {
  display: none;
}

.overview-section {
  margin-bottom: 48px;
}

.card-image-overview-page {
  height: 200px;
  margin-bottom: 24px;
  border-style: solid;
  border-width: 1px;
  border-color: #d0d4d9;
  border-radius: 4px;
  background-color: #edf0f3;
  -o-object-fit: contain;
  object-fit: contain;
}

.color-block {
  width: 100%;
  height: 48px;
}

.alert-banner-2 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-top: 8px;
  padding-bottom: 8px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: #2f54eb;
  text-align: center;
}

.footer-sg-bottom {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-top: 32px;
  padding-bottom: 32px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  color: #5e6875;
}

.brand-logo-image {
  -webkit-transform: scale3d(1none, 1none, 1none);
  transform: scale3d(1none, 1none, 1none);
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.customize-page-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.customize-instructions {
  width: 35%;
  height: 100vh;
  border-right: 1px solid #d0d4d9;
}

.customize-preview {
  width: 75%;
  height: 100vh;
}

.style-wrapper {
  position: relative;
  margin-bottom: 24px;
  padding: 24px;
  border-style: dashed;
  border-width: 1px;
  border-color: #d0d4d9;
  border-radius: 4px;
  background-color: #f9fafb;
}

.component-wrapper-2 {
  position: relative;
  margin-top: 64px;
  padding: 24px;
  border-style: dashed;
  border-width: 2px;
  border-color: #d0d4d9;
  border-radius: 4px;
  background-color: #fff;
}

.component-wrapper-label-2 {
  position: absolute;
  left: 0%;
  top: -40px;
  right: auto;
  bottom: auto;
  display: block;
  padding: 4px 16px;
  border-radius: 4px;
  background-color: #0e0f11;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
}

.component-wrapper-label-2:hover {
  opacity: 0.8;
}

.navbar-vertical-link-2 {
  position: relative;
  display: block;
  padding: 8px 32px;
  color: #3c404b;
  text-decoration: none;
}

.navbar-vertical-link-2:hover {
  background-color: #f0f5ff;
  box-shadow: inset -1px 0 0 0 #d0d4d9;
  color: #1d39c4;
}

.navbar-vertical-link-2.w--current {
  background-color: #f0f5ff;
  box-shadow: inset -2px 0 0 0 #2f54eb;
  color: #2f54eb;
}

.tabs-menu {
  box-shadow: inset 0 -1px 0 0 #d0d4d9;
}

.docsui {
  display: block;
}

.hero-section {
  background-image: url("/images/Woman-Air-Flying.jpg");
  background-position: 0px 0px;
  background-size: cover;
}

.hero-section.hero-gradient {
  background-image: -webkit-gradient(linear, left top, left bottom, from(#f0f5ff), color-stop(62%, #fff));
  background-image: linear-gradient(180deg, #f0f5ff, #fff 62%);
}

.hero-section.hero-big {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 800px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.6)), to(rgba(0, 0, 0, 0.6))), url("/images/contact-img.jpg");
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("/images/contact-img.jpg");
  background-position: 0px 0px, 100% 50%;
  background-size: auto, cover;
}

.feature-section.checkin {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  background-image: none;
}

.feature-section.flying {
  background-image: url("/images/Woman-Air-Flying.jpg");
  background-position: 0% 50%;
  background-size: cover;
}

.grid {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  -ms-grid-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  -ms-grid-rows: auto auto auto auto auto auto auto auto;
  grid-template-rows: auto auto auto auto auto auto auto auto;
}

.color-table-label {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 48px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

.color-table-label.color-group-name {
  padding-right: 8px;
  padding-left: 8px;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  text-align: right;
}

.color-table-swatch {
  height: 48px;
}

.row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-right: -12px;
  margin-left: -12px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
}

.column {
  width: 50%;
  padding-right: 12px;
  padding-left: 12px;
}

.utility-page-form {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.lightbox-centered {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-right: auto;
  margin-left: auto;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.section-box-wrapper {
  padding: 64px;
  background-color: #f9fafb;
}

.feature-content-wrapper.right {
  padding-left: 64px;
}

.feature-content-wrapper.left {
  padding-right: 64px;
}

.dropdown-fluid {
  display: block;
}

.dropdown-menu-1 {
  z-index: 8;
}

.dropdown-menu-1.w--open {
  overflow: hidden;
  width: 200px;
  margin-top: 8px;
  background-color: #fff;
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.2);
  color: #3c404b;
}

.dropdown-menu-item---navbar {
  padding: 8px 16px;
  background-color: transparent;
}

.dropdown-menu-item---navbar:hover {
  background-color: #f0f5ff;
}

.dropdown-menu-item---navbar.w--current {
  background-color: #2f54eb;
  color: #fff;
}

.dropdown-menu-item---navbar.dark {
  color: #fff;
}

.dropdown-menu-item---navbar.dark:hover {
  background-color: #030852;
}

.feature-icon-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  border-radius: 8px;
  background-color: #f0f5ff;
  color: #2f54eb;
}

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

.navbar-buttons {
  margin-left: 8px;
}

.navbar-buttons.mobile {
  display: none;
}

.avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  -o-object-fit: cover;
  object-fit: cover;
}

.avatar.default {
  width: 32px;
  height: 32px;
  border-style: solid;
  border-width: 2px;
  border-color: #fff;
}

.avatar.default.group {
  margin-right: -8px;
}

.avatar.small {
  width: 24px;
  height: 24px;
  border-style: solid;
  border-width: 1px;
  border-color: #fff;
}

.avatar.small.group {
  margin-right: -8px;
}

.avatar.large {
  border-style: solid;
  border-width: 2px;
  border-color: #fff;
}

.avatar.large.group {
  margin-right: -16px;
}

.avatar-wrapper.horizontal {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.avatar-wrapper.vertical {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.avatar-label-text {
  margin-left: 12px;
}

.avatar-label-text.centered {
  text-align: center;
}

.div-block {
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.code-span {
  display: inline-block;
  padding-right: 4px;
  padding-left: 4px;
  border-style: solid;
  border-width: 1px;
  border-color: #d0d4d9;
  border-radius: 4px;
  background-color: #edf0f3;
  font-family: Inconsolata, monospace;
  color: #0e0f11;
}

.custom-code-embeds {
  display: none;
}

.lc-countdown {
  display: inline;
  margin-left: 4px;
}

.lc-countdown.big {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.lc-countdown-wrapper {
  display: inline-block;
}

.lc-countdown-wrapper.vertical {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-right: 12px;
  padding-left: 12px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.lc-countdown-count {
  display: inline-block;
  margin-right: 2px;
  font-weight: 700;
}

.lc-countdown-count.big {
  font-size: 2.375rem;
  line-height: 1.25;
}

.lc-countdown-label {
  display: inline-block;
  margin-right: 4px;
}

.confetti-script {
  display: none;
}

.cookie-notification {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 8px 16px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-style: solid;
  border-width: 1px;
  border-color: #d0d4d9;
  background-color: #fff;
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.15);
  color: #3c404b;
}

.countdown-banner {
  padding-top: 12px;
  padding-bottom: 12px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #fff1f0;
  text-align: center;
}

.countdown-card-image {
  width: 65%;
  margin-bottom: 24px;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
}

.dropdown-menu-breadcrumbs {
  z-index: 8;
}

.dropdown-menu-breadcrumbs.w--open {
  overflow: hidden;
  width: 200px;
  margin-top: 8px;
  background-color: #fff;
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.2);
  color: #3c404b;
}

.navbar-2 {
  max-width: 1280px;
}

.body-2 {
  overflow: visible;
  max-width: none;
  margin-right: auto;
  margin-left: auto;
  font-family: obvia, sans-serif;
}

.container-2 {
  max-height: 37px;
  max-width: 100%;
}

.div-block-2 {
  position: relative;
  z-index: 15;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  max-height: 37px;
  max-width: 1240px;
  margin-right: auto;
  margin-left: auto;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: transparent;
}

.div-block-3 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.languagebutton {
  display: none;
  width: 40px;
  height: 40px;
  margin-right: auto;
  margin-left: auto;
  padding-top: 16px;
  padding-right: 10px;
  padding-left: 10px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 auto;
  -ms-flex: 0 auto;
  flex: 0 auto;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  background-color: #fff;
  font-family: obvia, sans-serif;
  color: #0094c8;
  font-size: 0.9rem;
  line-height: 1.125;
  font-weight: 800;
}

.languagebutton.en {
  margin-left: 5px;
  border-style: none solid solid;
  border-width: 1px;
  border-color: #fff;
  background-color: transparent;
  color: #fff;
}

.text-block-2 {
  margin-right: 1.875rem;
  margin-left: 0.625rem;
  color: #fff;
  font-size: 0.9rem;
  line-height: 1.125rem;
  font-weight: 800;
  letter-spacing: 0.32px;
  text-transform: uppercase;
}

.div-block-4 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 10px;
}

.mainsectionheader {
  position: relative;
  top: 0px;
  height: auto;
  margin-bottom: 0px;
  padding-right: 40px;
  padding-bottom: 150px;
  padding-left: 40px;
  background-image: url("/images/hero-main-desktop.webp");
  background-position: 0px 0px;
  background-size: cover;
  background-repeat: no-repeat;
}

.div-block-5 {
  position: fixed;
  top: 0px;
  z-index: 10;
  width: 100%;
}

.div-block-6 {
  max-width: 1240px;
  margin-right: auto;
  margin-left: auto;
  padding-top: 220px;
  padding-right: 90px;
  padding-left: 90px;
}

.headertextright.viernheim {
  width: 100%;
  max-width: 1030px;
  margin-right: auto;
  margin-left: auto;
}

.heading-2 {
  font-family: komu-a, sans-serif;
  color: #fff;
  font-size: 4.375rem;
  line-height: 1;
  font-weight: 400;
  text-align: right;
}

.coloredheadline {
  background-color: transparent;
  color: #d8d8d8;
}

.coloredheadline.diffcolor {
  color: #6ad5cb;
}

.heading-3 {
  font-family: komu-a, sans-serif;
  color: #fff;
  font-size: 13.125rem;
  line-height: 10.25rem;
  font-weight: 400;
  text-align: right;
}

.headlink {
  margin-right: 3rem;
  margin-left: 0.5rem;
  font-family: obvia, sans-serif;
  color: #fff;
  font-size: 0.9rem;
  line-height: 1.125rem;
  font-weight: 800;
  text-decoration: none;
}

.div-block-7 {
  position: absolute;
  left: 0%;
  top: 18%;
  right: auto;
  bottom: auto;
  max-height: 271px;
  max-width: 245px;
  padding: 50px 40px;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#0094c8), to(#6ad5cb));
  background-image: linear-gradient(180deg, #0094c8, #6ad5cb);
  box-shadow: 0 0 17px 4px rgba(0, 0, 0, 0.4);
  -webkit-transform: scale3d(1none, 1none, 1none);
  transform: scale3d(1none, 1none, 1none);
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
  text-decoration: none;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.div-block-7:hover {
  -webkit-transform: scale(1.025);
  -ms-transform: scale(1.025);
  transform: scale(1.025);
}

.div-block-7.viernheim {
  display: block;
}

/*
.div-block-7.viernheim.xmas {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-top: 0px;
  padding-right: 20px;
  padding-left: 20px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
 */
/*
.div-block-7.viernheim.xmas {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-top: 120px;
  padding-right: 20px;
  padding-left: 20px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-image: url('/images/EesterEasrv2.png');
  background-size: 100%;
  box-shadow: none;
}
 */
/*
.div-block-7.viernheim.xmas {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-right: 20px;
  padding-left: 20px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-size: 100%;
  box-shadow: none;
}
*/
.text-block-3 {
  display: block;
  margin-bottom: 1rem;
  font-family: komu-a, sans-serif;
  color: #6ad5cb;
  font-size: 1.72125rem;
  line-height: 1.51875rem;
  font-weight: 400;
  text-align: center;
  text-decoration: none;
}

.heading-4 {
  margin-top: 0rem;
  font-family: komu-a, sans-serif;
  color: #fff;
  font-size: 3.375rem;
  line-height: 2.6325rem;
  font-weight: 400;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}

.mainsectionvoucher {
  display: block;
  overflow: visible;
  height: auto;
  margin-bottom: 0rem;
  margin-left: 0px;
  padding-right: 0px;
  padding-left: 0px;
  -o-object-fit: fill;
  object-fit: fill;
}

.div-block-8 {
  max-width: 1050px;
  margin-right: auto;
  margin-left: auto;
}

.grid-2 {
  max-width: none;
  margin-right: auto;
  margin-left: auto;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

.gridlinkblock {
  margin-left: 2rem;
  padding-right: 2rem;
}

.gridlinkblock.left {
  height: 300px;
  margin-left: 0rem;
  padding-right: 0rem;
  background-image: url("/images/box-left.png");
  background-position: 50% 100%;
  background-size: cover;
  background-repeat: no-repeat;
  text-align: right;
  text-decoration: none;
}

.gridlinkblock.middle {
  margin-left: 0rem;
  padding-right: 0rem;
  background-image: url("/images/box-center.png");
  background-position: 50% 120%;
  background-size: cover;
  background-repeat: no-repeat;
  text-align: center;
  text-decoration: none;
}

.gridlinkblock.right {
  margin-left: 0rem;
  padding-right: 0rem;
  background-image: url("/images/box-right.png");
  background-position: 50% 100%;
  background-size: cover;
  text-align: left;
  text-decoration: none;
}

.text-block-4 {
  position: relative;
  top: 120px;
  right: 70px;
  font-family: komu-a, sans-serif;
  color: #000;
  font-size: 3.125rem;
  line-height: 2.75rem;
  letter-spacing: 1px;
}

.text-block-5 {
  position: relative;
  top: 80px;
  max-width: 70%;
  margin-right: auto;
  margin-left: auto;
  font-family: komu-a, sans-serif;
  color: #fff;
  font-size: 3.75rem;
  line-height: 3.25rem;
  letter-spacing: 1.2px;
}

.text-block-6 {
  position: relative;
  left: 70px;
  top: 120px;
  font-family: komu-a, sans-serif;
  color: #0e0f11;
  font-size: 3.125rem;
  line-height: 2.75rem;
  letter-spacing: 1px;
}

.div-block-9 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 280px;
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.div-block-10 {
  width: 33%;
  background-image: url("/images/box-right.png");
  background-position: 50% 100%;
  background-size: cover;
  -webkit-transform: scale3d(1none, 1none, 1none);
  transform: scale3d(1none, 1none, 1none);
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
  text-decoration: none;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.div-block-10:hover {
  -webkit-transform: scale(1.025);
  -ms-transform: scale(1.025);
  transform: scale(1.025);
}

.div-block-10.left {
  background-image: url("/images/box-left.png");
  background-position: 50% 100%;
  background-size: cover;
  -webkit-transform: scale3d(1none, 1none, 1none);
  transform: scale3d(1none, 1none, 1none);
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
  text-align: right;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.div-block-10.left:hover {
  -webkit-transform: scale(1.025);
  -ms-transform: scale(1.025);
  transform: scale(1.025);
}

.div-block-10.middle {
  background-image: url("/images/box-center.png");
  background-position: 50% 129%;
  background-size: cover;
  background-repeat: no-repeat;
  -webkit-transform: scale3d(1none, 1none, 1none);
  transform: scale3d(1none, 1none, 1none);
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
  text-align: center;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.div-block-10.middle:hover {
  -webkit-transform: scale(1.025);
  -ms-transform: scale(1.025);
  transform: scale(1.025);
}

.mainsectionair {
  margin-bottom: 8.75rem;
}

.mainsectionair.desktop {
  display: block;
}

.textblockseparate {
  position: static;
  top: -499px;
  max-width: 750px;
  margin-right: auto;
  margin-left: auto;
}

.textblockseparate.marginbottom {
  margin-bottom: 6.25rem;
}

.textblockseparate.marginbottom.diffsized {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  max-width: 960px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.textblockseparate.moved {
  position: relative;
  top: -200px;
}

.textblockseparate.moved.wider {
  max-width: 1000px;
}

.textblockseparate.moved.wider.mobile.modalview {
  top: 0px;
  margin-bottom: 4rem;
  padding-right: 20px;
  padding-left: 20px;
}

.textblockseparate.zindex {
  position: relative;
  top: 0px;
  z-index: 3;
}

.textblockseparate.padding {
  padding-top: 6.25rem;
}

.textblockseparate.padding.alignright {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.textblockseparate.padding.alignright.marginbottombig {
  margin-bottom: 10rem;
}

.textblockseparate.padding.alignright.marginbottombig.mobile {
  margin-bottom: 0rem;
}

.textblockseparate.nowmaxwidth {
  max-width: none;
}

.textblockseparate.diffwidth {
  max-width: 950px;
  margin-bottom: 3rem;
}

.textblockseparate.diffwidth.alignright {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  max-width: 50%;
  margin-right: 0px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
  text-align: right;
}

.textblockseparate.diffwidth.alignright.nobottommargin {
  margin-bottom: 0rem;
}

.textblockseparate.diffwidth.alignmiddle.nobottommargin {
  display: block;
}

.textblockseparate.diffwidth.alignleft {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.textblockseparate.diffwidth.alignleft.groups {
  width: 100%;
  max-width: 750px;
  margin-right: 0px;
  margin-bottom: 0rem;
  margin-left: 0px;
}

.textblockseparate.diffwidth.nobottommargin {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 0rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.textblockseparate.diffwidth.diff {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 15rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.textblockseparate.morewidth {
  max-width: 700px;
}

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

.textblockseparate.lesswidth {
  max-width: 70%;
  margin-right: 0px;
}

.textblockseparate.lesswidth.alignleft {
  margin-right: auto;
  margin-left: 0px;
}

.textblockseparate.lesswidth.alignleft.viernheim {
  width: 100%;
  max-width: 70%;
}

.textblockseparate.lesswidth.proflyersite {
  width: 100%;
  max-width: 100%;
  margin-right: auto;
}

.textcolored {
  margin-bottom: 0.5rem;
  font-family: komu-a, sans-serif;
  color: #6ad5cb;
  font-size: 2.5rem;
  line-height: 3rem;
  text-align: center;
  letter-spacing: 2px;
}

.textcolored.alignleft {
  text-align: left;
}

.textcolored.white {
  color: #fff;
}

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

.textcolored.black {
  color: #000;
}

.h2separate {
  margin-top: 0rem;
  margin-bottom: 1.6rem;
  font-family: komu-a, sans-serif;
  font-size: 5.625rem;
  line-height: 5rem;
  font-weight: 400;
  text-align: center;
}

.h2separate.alignleft {
  text-align: left;
}

.h2separate.alignleft.white {
  margin-bottom: 1.3rem;
  color: #fff;
}

.h2separate.white {
  color: #fff;
}

.h2separate.white.difmargin {
  margin-bottom: 2rem;
}

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

.text-block-7 {
  font-family: obvia, sans-serif;
  font-size: 1.75rem;
  line-height: 2.125rem;
  text-align: center;
}

.text-block-7.alignleft {
  text-align: left;
}

.text-block-7.alignleft.white {
  color: #fff;
}

.text-block-7.alignleft.white.diffsized {
  max-width: none;
  font-size: 1.5rem;
  line-height: 1.8125rem;
}

.text-block-7.alignleft.white.diffsized.notfullwidth {
  max-width: 59%;
  margin-left: 0px;
}

.text-block-7.alignleft.difffont {
  font-size: 1.5rem;
  line-height: 1.8125rem;
}

.text-block-7.alignleft.difffont.diffsized {
  max-width: 75%;
  margin-bottom: 3.75rem;
}

.text-block-7.alignleft.smalltext {
  width: 100%;
  font-size: 1.25rem;
  line-height: 1.8125rem;
}

.text-block-7.white {
  color: #fff;
}

.text-block-7.white.diffsized {
  max-width: 87%;
  margin-right: auto;
  margin-left: auto;
}

.text-block-7.white.diffsized.wider {
  max-width: 90%;
}

.text-block-7.white.marginbottom {
  margin-bottom: 3.125rem;
}

.text-block-7.alignright {
  text-align: right;
}

.text-block-7.alignright.diffsized {
  font-size: 1.5rem;
  line-height: 1.8125rem;
}

.text-block-7.alignright.diffsized.smaller {
  max-width: 90%;
}

.text-block-7.alignright.diffsized.smaller.marginbottom {
  margin-bottom: 3.125rem;
}

.text-block-7.alignright.white.diffsized {
  max-width: 71%;
  margin-right: 0px;
}

.text-block-7.alignright.white.diffsized.bottommargin {
  max-width: 81%;
  margin-bottom: 3.125rem;
}

.text-block-7.alignright.white.diffsized.bottommargin.alignleft {
  margin-right: auto;
  margin-left: 0px;
  text-align: left;
}

.text-block-7.alignright.white.diffsized.bottommargin.proflyersite {
  max-width: 86%;
  margin-right: auto;
  text-align: center;
}

.text-block-7.alignright.white.diffsized.bottommargin.proflyersite.black {
  color: #000;
}

.text-block-7.bottommargin {
  margin-bottom: 3.5rem;
}

.text-block-7.xmas {
  margin-bottom: 5rem;
}

.bold-text {
  font-family: obvia, sans-serif;
  font-weight: 400;
}

.bold-text.bolder {
  font-weight: 800;
}

.imagetextsection {
  display: block;
  padding: 11.25rem 40px 10.9375rem;
  background-image: url("/images/Woman-Air-Flying.jpg");
  background-position: 70% 50%;
  background-size: cover;
}

.div-block-11 {
  max-width: 1030px;
  margin-right: auto;
  margin-left: auto;
}

.mainsectiondream {
  padding: 150px 40px 5rem;
  background-image: url("/images/Background-Dream-Section.jpg");
  background-position: 50% 0;
  background-size: cover;
  background-repeat: no-repeat;
}

.mainsectiondream.mobile {
  display: none;
}

.mainsectiondream.airlebnis {
  padding-top: 2rem;
  background-image: url("/images/Airlebnis-Background.png");
  background-position: 50% -200px;
  background-size: cover;
  background-attachment: scroll;
}

.grid-3 {
  max-width: 1030px;
  margin-right: auto;
  margin-bottom: 90px;
  margin-left: auto;
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
}

.grid-3.desktop.nobottommargin {
  margin-bottom: 0px;
}

.grid-3.desktop.diffbottommargin {
  margin-bottom: 45px;
}

.grid-3.desktop.diffbottommargin.hotelgrid {
  margin-bottom: 5rem;
}

.dreamdiv {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-top: 4.375rem;
  padding-bottom: 5.9375rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 2px 0 7px 4px rgba(0, 0, 0, 0.45);
}

.dreamdiv.diffpadding {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.dreamdiv.hotelbackground {
  padding-top: 4.0625rem;
  padding-bottom: 4.0625rem;
}

.dreamdiv.hotelbackground.gladbeck {
  background-image: url("/images/Hotel-Gladbeck.png");
  background-position: 0px 0px;
  background-size: cover;
}

.dreamdiv.hotelbackground.moers {
  background-image: url("/images/Hotel-Moers.png");
  background-position: 0px 0px;
  background-size: cover;
  background-repeat: no-repeat;
}

.dreamdiv.hotelbackground.chillten {
  background-image: url("/images/Hotel-Chillten.png");
  background-position: 0px 0px;
  background-size: cover;
}

.dreamdiv.hotelbackground.parkhotel {
  background-image: url("/images/parkhotel.png");
  background-position: 0px 0px;
  background-size: cover;
}

.dreamdiv.hotelbackground.schmudde {
  background-image: url("/images/Hotel-Schmudde.png");
  background-position: 0px 0px;
  background-size: cover;
}

.dreamdiv.hotelbackground.rheinruhr {
  background-image: url("/images/Hotel-Rhein-Ruhr.png");
  background-position: 0px 0px;
  background-size: cover;
}

.heading-5 {
  font-family: komu-a, sans-serif;
  font-size: 3.125rem;
  line-height: 2.75rem;
  font-weight: 400;
  text-align: center;
}

.heading-5.white {
  color: #fff;
}

.heading-5.white.notopmargin {
  margin-top: 0rem;
}

.heading-5.white.alignleft {
  text-align: left;
}

.heading-5.white.alignleft.bottommargin {
  margin-bottom: 2rem;
}

.text-block-8 {
  max-width: 90%;
  margin-bottom: 2rem;
  font-family: obvia, sans-serif;
  font-size: 1.5rem;
  line-height: 1.8125rem;
  text-align: center;
}

.text-block-8.divsized.alignleft {
  text-align: left;
}

.text-block-8.diffsized {
  max-width: 80%;
  margin-right: auto;
  margin-left: auto;
  font-size: 1.25rem;
  line-height: 1.5rem;
}

.text-block-8.diffsized.white {
  color: #fff;
}

.text-block-8.diffsized.white.bottommargin {
  margin-bottom: 2.5rem;
}

.text-block-8.wider {
  max-width: 80%;
}

.text-block-8.marginbottom {
  margin-bottom: 2rem;
}

.text-block-8.white {
  color: #fff;
}

.div-block-12 {
  height: 100%;
  max-height: 138px;
}

.div-block-12.diffsized {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  max-height: 131px;
}

.image {
  display: block;
  width: 100%;
  max-width: 950px;
  margin-right: auto;
  margin-left: auto;
}

.mainctablue {
  display: inline-block;
  height: 97px;
  max-height: 97px;
  margin-right: auto;
  margin-left: auto;
  padding-top: 22px;
  padding-right: 4.0625rem;
  padding-left: 4.0625rem;
  border-radius: 3.00125rem;
  background-color: #0094c8;
  -webkit-transform: scale3d(1none, 1none, 1none);
  transform: scale3d(1none, 1none, 1none);
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
  font-family: komu-a, sans-serif;
  font-size: 3.15rem;
  line-height: 3.8125rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.mainctablue:hover {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}

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

.div-block-13 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.newssection {
  position: relative;
  padding: 6.25rem 0px 3.125rem;
}

.gridcontainer {
  position: relative;
}

.grid-4 {
  position: relative;
  max-width: 1280px;
  margin-right: auto;
  margin-left: auto;
  grid-column-gap: 31px;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

.div-block-14 {
  max-width: 685px;
  padding-top: 100px;
  padding-right: 2rem;
  padding-left: 3.75rem;
  background-image: url("/images/Junior-Fight-Club-Background.jpg");
  background-position: 0px 0px;
  background-size: auto;
  -webkit-transform: scale3d(1none, 1none, 1none);
  transform: scale3d(1none, 1none, 1none);
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
  text-decoration: none;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.div-block-14:hover {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}

.h2grid {
  margin-top: 0rem;
  margin-bottom: 1rem;
  font-family: komu-a, sans-serif;
  color: #fff;
  font-size: 5rem;
  line-height: 4.375rem;
  font-weight: 400;
  text-decoration: none;
  text-transform: uppercase;
}

.text-block-9 {
  font-size: 1.5rem;
  line-height: 1.8125rem;
  font-weight: 400;
}

.bold-text-2 {
  font-weight: 400;
}

.text-block-10 {
  max-width: 89%;
  font-size: 1.5rem;
  line-height: 1.8125rem;
}

.text-block-10.white {
  margin-bottom: 5rem;
  padding-bottom: 45px;
  color: #fff;
}

.div-block-15 {
  padding-left: 1.25rem;
  color: #000;
  text-decoration: none;
}

/*
.div-block-16 {
  position: relative;
  height: 100%;
  max-width: 685px;
  background-image: url('/images/handicap-kachel.webp');


  background-position: 0px 0px;
  background-size: cover;
  -webkit-transform: scale3d(1none, 1none, 1none);
  transform: scale3d(1none, 1none, 1none);
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}
*/
.div-block-16 {
  max-width: 685px;
  padding-top: 100px;
  padding-right: 2rem;
  padding-left: 3.75rem;
  background-image: url("/images/handicap-kachel.webp");
  background-position: center;
  background-size: cover;
  -webkit-transform: scale3d(1 none, 1 none, 1 none);
  transform: scale3d(1 none, 1 none, 1 none);
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
  text-decoration: none;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.div-block-16:hover {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}

.textcontainer {
  position: absolute;
  left: 0%;
  top: auto;
  right: auto;
  bottom: 0%;
  padding-left: 5rem;
}

.text-block-11 {
  padding-left: 0.5rem;
  font-family: komu-b, sans-serif;
  color: #fff;
  font-size: 2.5rem;
  letter-spacing: 2px;
}

.div-block-17 {
  max-width: 130px;
  padding-top: 10px;
  background-color: #13294b;
}

.booknow {
  height: 55px;
  margin-bottom: 5rem;
  padding-top: 14px;
  padding-right: 2.375rem;
  padding-left: 2.375rem;
  border-radius: 27.44px;
  background-color: #0e0f11;
  -webkit-transform: scale3d(1none, 1none, 1none);
  transform: scale3d(1none, 1none, 1none);
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
  font-family: komu-a, sans-serif;
  font-size: 1.8rem;
  line-height: 2.1875rem;
  font-weight: 400;
  letter-spacing: 3px;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.booknow:hover {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}

.booknow.diffmargin {
  margin-bottom: 0rem;
}

.booknow.modalbutton {
  width: 50%;
  max-width: 250px;
  margin-right: 1rem;
  margin-bottom: 0rem;
}

.booknow.modalbutton.last {
  margin-right: 0rem;
}

.booknow.bigger {
  height: 70px;
  margin-bottom: 0rem;
  padding-top: 21px;
  border-radius: 2.1875rem;
  font-size: 2.3125rem;
  line-height: 2.375rem;
  letter-spacing: 3.5px;
}

.booknow.bigger.morepadding {
  padding-right: 5rem;
  padding-left: 5rem;
}

.booknow.bigger.morepadding.mobile.same.bluecolored {
  background-color: #0094c8;
}

.booknow.blue {
  height: 3.75rem;
  margin-bottom: 0rem;
  padding-top: 21px;
  background-color: #0094c8;
  font-size: 2rem;
  line-height: 1.5rem;
}

.booknow.blue.height {
  height: 55px;
  padding-top: 14px;
  font-size: 1.8rem;
  line-height: 2.187rem;
}

.booknow.blue.height.left {
  margin-right: 2rem;
}

.booknow.blue.height.left.inverse.border {
  border-style: solid;
  border-width: 1px;
  border-color: #0094c8;
}

.booknow.blue.height.left.black {
  background-color: #000;
}

.booknow.blue.shadow.same {
  height: 4.375rem;
  padding-right: 5rem;
  padding-left: 5rem;
}

.booknow.inverse {
  margin-right: 1rem;
  margin-bottom: 0rem;
  background-color: #fff;
  color: #0094c8;
}

.reviewssection {
  padding: 6.25rem 40px;
}

.mainuniqueadventure {
  padding-bottom: 8.75rem;
  background-color: #0094c8;
}

.div-block-18 {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 0px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  grid-auto-columns: 1fr;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: auto auto;
  grid-template-rows: auto auto;
  background-color: #0094c8;
}

.div-block-18.adventurecontainer {
  margin-bottom: -100px;
  padding-right: 40px;
  padding-left: 40px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: transparent;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(22%, #fff), color-stop(0, #0094c8));
  background-image: linear-gradient(180deg, #fff 22%, #0094c8 0);
}

.image-2 {
  position: relative;
  top: -291px;
  max-width: 884px;
}

.div-block-19 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.image-3 {
  max-width: 840px;
}

.grid-5 {
  position: relative;
  z-index: 1;
  max-width: 1110px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 40px;
  padding-left: 40px;
  grid-column-gap: 30px;
  grid-row-gap: 31px;
}

.grid-5.mobile {
  display: none;
}

.div-block-20 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 3.75rem 1.875rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  border-style: solid;
  border-width: 4px;
  border-color: #fff;
  border-radius: 10px;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#007ca8), to(#0094c8));
  background-image: linear-gradient(180deg, #007ca8, #0094c8);
  text-align: center;
}

.bold-text-3 {
  font-weight: 400;
}

.newslettersection {
  position: relative;
  overflow: visible;
  padding: 9.375rem 40px 8.125rem;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#d8eaf2), to(#b2c8d3));
  background-image: linear-gradient(180deg, #d8eaf2, #b2c8d3);
  box-shadow: inset 0 0 20px 1px rgba(0, 0, 0, 0.4);
}

.form-2 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  max-width: 85%;
}

.text-field {
  height: 55px;
  margin-right: 1.5625rem;
  border-style: solid;
  border-width: 2px;
  border-color: #c1c1c1;
  border-radius: 6px;
  background-color: hsla(0, 0%, 100%, 0.7);
}

.submitbutton {
  height: 55px;
  padding-top: 12px;
  padding-right: 2.5rem;
  padding-left: 2.5rem;
  border-radius: 1.715rem;
  background-color: #0094c8;
  -webkit-transform: scale3d(1none, 1none, 1none);
  transform: scale3d(1none, 1none, 1none);
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
  font-family: komu-a, sans-serif;
  font-size: 1.8rem;
  line-height: 2.1875rem;
  letter-spacing: 3px;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.submitbutton:hover {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}

.image-4 {
  position: absolute;
  left: auto;
  top: 100px;
  right: 0px;
  bottom: 0%;
  z-index: 1;
  max-width: 472px;
}

.image-4.smaller {
  max-width: 300px;
}

.image-4.diffpos {
  top: -57px;
}

.image-4.hotels {
  top: -50px;
}

.div-block-21 {
  position: relative;
}

.mainsectiontechnical {
  margin-top: 2.8125rem;
  padding-right: 2.5rem;
  padding-left: 2.5rem;
}

.grid-6 {
  max-width: 1095px;
  margin-right: auto;
  margin-left: auto;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

.moreinfos {
  height: 69px;
  padding-top: 18px;
  padding-right: 2.5rem;
  padding-left: 2.5rem;
  border-radius: 34.3px;
  background-color: #0094c8;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
  font-family: komu-a, sans-serif;
  font-size: 2.25rem;
  line-height: 2.6875rem;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.moreinfos:hover {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}

.image-5 {
  max-width: 130%;
  -o-object-fit: contain;
  object-fit: contain;
}

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

.footersocialtext {
  margin-right: 2rem;
  color: #fff;
  font-size: 1.25rem;
  line-height: 1.875rem;
  text-transform: uppercase;
}

.bold-text-4 {
  font-weight: 400;
}

.bold-text-5 {
  font-weight: 400;
}

.text-block-12 {
  color: #999;
}

.text-block-13 {
  height: 35px;
  margin-top: 0rem;
  margin-bottom: 0.3rem;
  color: #fff;
  font-size: 1.25rem;
  line-height: 1.875rem;
  text-transform: uppercase;
}

.div-block-22 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 2rem;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.link {
  margin-right: 1rem;
  color: #fff;
  font-size: 1.25rem;
  line-height: 3.125rem;
  text-decoration: none;
}

.link-2 {
  margin-left: 1rem;
  color: #fff;
  font-size: 1.25rem;
  line-height: 3.125rem;
  text-decoration: none;
}

.text-block-14 {
  color: #fff;
  font-size: 1.25rem;
  line-height: 3.125rem;
}

.div-block-23 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-top: 0.6rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.footerbutton {
  height: 55px;
  padding-top: 12px;
  padding-right: 30px;
  padding-left: 30px;
  border-style: solid;
  border-width: 2.4px;
  border-color: #fff;
  border-radius: 27.7px;
  background-color: transparent;
  -webkit-transform: scale3d(1none, 1none, 1none);
  transform: scale3d(1none, 1none, 1none);
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
  font-family: komu-a, sans-serif;
  color: #fff;
  font-size: 1.8rem;
  line-height: 2.1875rem;
  letter-spacing: 3px;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.footerbutton:hover {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}

.bold-text-6 {
  font-weight: 400;
}

.text-block-15 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 auto;
  -ms-flex: 0 auto;
  flex: 0 auto;
}

.link-3 {
  margin-right: 2rem;
  color: #fff;
  line-height: 1.875rem;
  text-decoration: none;
}

.link-3.last {
  margin-right: 0rem;
}

.text-block-16 {
  color: #fff;
  line-height: 2rem;
  letter-spacing: 0.36px;
}

.payicon {
  margin-right: 1.5rem;
}

.div-block-24 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.bold-text-7 {
  font-weight: 400;
}

.div-block-25 {
  position: relative;
  display: none;
  height: 100%;
  max-height: 880px;
}

.div-block-26 {
  width: 100%;
  max-width: 30px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 auto;
  -ms-flex: 0 auto;
  flex: 0 auto;
}

.div-block-27 {
  position: relative;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  background-color: #6ad5cb;
}

.div-block-28 {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#0094c8), to(#6ad5cb));
  background-image: linear-gradient(180deg, #0094c8, #6ad5cb);
}

.headersection {
  position: relative;
  top: 0px;
  margin-bottom: 0rem;
  padding: 14.625rem 40px 7.25rem;
  background-color: #fff;
  background-image: url("/images/Header-Image.jpg");
  background-position: 0px 0px;
  background-size: cover;
}

.headersection.beginners {
  margin-bottom: 2rem;
  background-image: url("/images/Header-Image-Groups.png");
  background-position: 50% 100%;
  background-size: cover;
  background-repeat: no-repeat;
}

.headersection.contact {
  background-image: url("/images/Header-Image-Contact.png");
  background-position: 0% 100%;
  background-size: cover;
  background-repeat: no-repeat;
}

.headersection.generalinfo {
  padding-bottom: 10.25rem;
  background-image: url("/images/Info-Header-Background.png");
  background-position: 0px 0px;
  background-size: cover;
}

.headersection.faq {
  background-image: url("/images/FAQ-Header-Image.jpg");
  background-position: 0% 100%;
  background-size: cover;
}

.headersection.contact-form {
  background-image: url("/images/Header-Image-Contact.png");
  background-position: 0% 100%;
  background-size: cover;
  background-repeat: no-repeat;
}

.headersection.groups {
  margin-bottom: 2rem;
  background-image: url("/images/Header-Image-Groups_1.png");
  background-position: 50% 100%;
  background-repeat: no-repeat;
}

.headersection.proflyermain {
  margin-bottom: 2rem;
  background-image: url("/images/Header-Image-Proflyer.png");
  background-position: 50% 100%;
  background-repeat: no-repeat;
}

.headersection.viernheim {
  background-image: url("/images/Indoor-Skydiving-Header-Main.jpg");
  background-position: 50% 0%;
}

.headersection.airlebnis {
  background-image: url("/images/Header-Image-Airlebnis.png");
  background-position: 50% 70%;
  background-size: cover;
  background-repeat: no-repeat;
}

.headersection.flightclub {
  background-image: url("/images/Header-Image-Flight-Club.png");
  background-position: 50% -50px;
  background-size: cover;
  background-repeat: no-repeat;
}

.headersection.xmas {
  background-image: url("/images/hero-main-desktop_2023.webp");
}

.div-block-29 {
  max-width: 1030px;
  margin-right: auto;
  margin-left: auto;
  text-align: right;
}

.text-block-17 {
  font-family: komu-a, sans-serif;
  color: #fff;
  font-size: 3.125rem;
  line-height: 5rem;
}

.text-block-17.shadow.centered {
  text-align: center;
}

.text-block-17.shadow.diffheight {
  line-height: 3rem;
}

.heading-6 {
  font-family: komu-a, sans-serif;
  color: #fff;
  font-size: 9.375rem;
  line-height: 8.125rem;
  font-weight: 400;
}

.heading-6.shadow.centered {
  text-align: center;
}

.buyticketsectiondesktop {
  position: relative;
  margin-right: auto;
  margin-left: auto;
}

.tabs-menu-2 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  max-width: 1280px;
  margin-right: auto;
  margin-left: auto;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.tabs {
  background-color: #fff;
}

.tablink {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-right: 0px;
  padding-left: 0px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  background-color: #fff;
  font-family: komu-a, sans-serif;
}

.tablink.w--current {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-bottom: 6px solid #0094c8;
  background-color: transparent;
  color: #0094c8;
  font-size: 1.65rem;
  line-height: 2rem;
  letter-spacing: 1.32px;
}

.text-block-18 {
  padding-top: 0.4rem;
  font-family: komu-a, sans-serif;
  color: #0e0f11;
  font-size: 1.375rem;
  line-height: 1.75rem;
  letter-spacing: 1.1px;
}

.body-3 {
  font-family: obvia, sans-serif;
}

.image-6 {
  margin-right: 1rem;
}

.image-7 {
  margin-right: 1rem;
}

.text-block-19 {
  font-family: komu-a, sans-serif;
  font-size: 1.5375rem;
  line-height: 1rem;
}

.text-block-20 {
  font-family: komu-a, sans-serif;
  font-size: 1.375rem;
  line-height: 1rem;
  letter-spacing: 1.32px;
}

.tabs-menu-3 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 90px;
  max-width: 1280px;
  margin-right: auto;
  margin-left: auto;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.tabs-2 {
  background-color: #fff;
}

.image-8 {
  max-height: 24px;
  margin-right: 1rem;
}

.image-9 {
  max-height: 24px;
  margin-right: 1rem;
}

.text-block-21 {
  font-size: 1.375rem;
  line-height: 1.75rem;
  letter-spacing: 1.1px;
}

.tabs-menu-4 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 90px;
  max-width: 1240px;
  margin-right: auto;
  margin-left: auto;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.tabs-menu-4.faq {
  max-width: none;
  border-bottom: 1px none #d0d4d9;
}

.tablinkselect {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  margin-right: 2rem;
  padding-right: 0px;
  padding-left: 0px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-bottom: 6px solid #fff;
  background-color: #fff;
  font-family: komu-a, sans-serif;
}

.tablinkselect.w--current {
  height: 100%;
  margin-right: 2rem;
  padding-right: 0px;
  padding-left: 0px;
  border-bottom: 6px solid #0094c8;
  background-color: #fff;
  color: #0094c8;
}

.image-10 {
  margin-right: 0.9375rem;
}

.text-block-22 {
  font-size: 1.375rem;
  line-height: 1.75rem;
  letter-spacing: 1.1px;
}

.text-block-22.flightclub {
  font-size: 3.125rem;
  line-height: 5rem;
}

.image-11 {
  margin-right: 0.9375rem;
}

.text-block-23 {
  font-size: 1.375rem;
  line-height: 1.75rem;
  letter-spacing: 1.32px;
}

.text-block-23.flightclub {
  font-size: 3.125rem;
  line-height: 5rem;
}

.button-2 {
  position: absolute;
  left: auto;
  top: 0%;
  right: 0%;
  bottom: auto;
}

.tabcontent {
  padding-top: 50px;
  padding-bottom: 100px;
  background-image: url("/images/Background-Erlebnis.jpg");
  background-position: 50% 100%;
  background-size: cover;
  background-repeat: no-repeat;
}

.tabcontent.nobackground {
  background-image: none;
}

.grid-7 {
  max-width: 1240px;
  margin-right: auto;
  margin-left: auto;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
}

.div-block-30 {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  max-width: 1240px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 40px;
  padding-left: 40px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.bookingcard {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: auto;
  max-height: none;
  max-width: 318px;
  margin-right: 20px;
  margin-left: 20px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-radius: 10px;
}

.bookingcard.first {
  height: auto;
  max-height: none;
  margin-right: 0px;
  margin-left: 0px;
  background-color: #0094c8;
}

.bookingcard.second {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-right: 0px;
  margin-left: 0px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  background-color: #00759e;
}

.bookingcard.second.highlighted {
  position: relative;
  z-index: 3;
}

.bookingcard.third {
  margin-right: 0px;
  margin-left: 0px;
  background-color: #13294b;
}

.div-block-31 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-top: 5px;
  padding-right: 20px;
  padding-left: 20px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.text-block-24 {
  font-family: komu-a, sans-serif;
  color: #fff;
  font-size: 3.5rem;
  line-height: 2.75rem;
}

.text-span {
  color: #6ad5cb;
}

.div-block-32 {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  margin-right: 3px;
  margin-bottom: 3px;
  margin-left: 3px;
  padding-top: 1.25rem;
  padding-right: 1.25rem;
  padding-left: 1.25rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  border-radius: 10px;
  background-color: #fff;
}

.text-block-25 {
  font-family: komu-a, sans-serif;
  font-size: 2rem;
  line-height: 2.375rem;
  letter-spacing: 1.6px;
}

.text-block-26 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 0rem;
  font-size: 1.125rem;
  line-height: 1.4375rem;
  font-weight: 400;
  white-space: break-spaces;
}

.div-block-33 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-top: 1rem;
  padding-bottom: 0.5rem;
}

.currency {
  margin-right: 0.5rem;
  font-family: komu-a, sans-serif;
  font-size: 1.875rem;
  line-height: 3rem;
}

.moneyamount {
  font-family: komu-a, sans-serif;
  font-size: 3.125rem;
  line-height: 2.3125rem;
}

.appointmentbutton {
  height: 38px;
  margin-right: 0rem;
  margin-bottom: 0.5rem;
  padding: 11px 13px 0px;
  border-style: solid;
  border-width: 1px;
  border-color: #0094c8;
  border-radius: 18.89px;
  background-color: transparent;
  -webkit-transform: scale3d(1none, 1none, 1none);
  transform: scale3d(1none, 1none, 1none);
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
  font-family: komu-a, sans-serif;
  color: #0094c8;
  font-size: 1.259375rem;
  line-height: 0.95625;
  letter-spacing: 0.59px;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.appointmentbutton:hover {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}

.buyvoucherbutton {
  height: 38px;
  padding: 14px 13px 0px;
  border-radius: 18.89px;
  background-color: #0094c8;
  -webkit-transform: scale3d(1none, 1none, 1none);
  transform: scale3d(1none, 1none, 1none);
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
  font-family: komu-a, sans-serif;
  color: #fff;
  font-size: 1.259375rem;
  line-height: 0.95625rem;
  letter-spacing: 0.59px;
  text-transform: uppercase;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.buyvoucherbutton:hover {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}

.div-block-34 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 2rem;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.div-block-35 {
  margin-top: 0.5rem;
}

.allinclusivesection {
  padding-top: 9.375rem;
  padding-bottom: 9.375rem;
  background-color: #0094c8;
  box-shadow: inset 0 0 20px 8px rgba(0, 0, 0, 0.3);
}

.grid-8 {
  max-width: 1110px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 40px;
  padding-left: 40px;
  grid-column-gap: 26px;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

.div-block-36 {
  padding-top: 2.5rem;
  padding-right: 1.25rem;
  padding-left: 2rem;
  border-style: solid;
  border-width: 4px;
  border-color: #fff;
  border-radius: 10px;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#007ca8), to(#0094c8));
  background-image: linear-gradient(180deg, #007ca8, #0094c8);
}

.list {
  padding-left: 0rem;
  list-style-type: none;
}

.list.flightclub {
  text-align: left;
}

.list-item {
  min-height: 30px;
  margin-bottom: 2rem;
  padding-left: 2.5rem;
  background-image: url("/images/Air-Icon.svg");
  background-position: 0% 0%;
  background-size: auto;
  background-repeat: no-repeat;
  color: #fff;
  font-size: 1.5rem;
  line-height: 1.375rem;
}

.list-item.proflyersite {
  background-image: url("/images/air-colored.svg");
  background-position: 0% 0%;
}

.list-item.proflyersite.last {
  margin-bottom: 0rem;
}

.list-item.proflyersite.white {
  margin-bottom: 2rem;
  background-image: url("/images/Air-Icon.svg");
}

.list-item.proflyersite.white.last {
  margin-bottom: 2rem;
}

.bold-text-8 {
  line-height: 1.5rem;
  font-weight: 400;
}

.bold-text-8.proflyersite {
  color: #000;
}

.bold-text-9 {
  font-weight: 400;
}

.div-block-37 {
  position: absolute;
  left: 33%;
  top: -21%;
  right: 33%;
  bottom: -17%;
  z-index: 1;
  background-image: url("/images/Bestseller.svg");
  background-position: 0px 0px;
  background-size: contain;
  background-repeat: no-repeat;
}

.div-block-38 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: auto;
  padding-top: 60px;
  padding-right: 10px;
  padding-left: 10px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.div-block-38.nobackground {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: auto;
  padding-right: 10px;
  padding-left: 10px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-image: none;
}

.div-block-38.background {
  background-image: url("/images/Bestseller.svg");
  background-position: 50% 0%;
  background-size: contain;
  background-repeat: no-repeat;
}

.div-block-39.mobile {
  display: none;
}

.vouchersectionmobile {
  display: none;
}

.grid-9.mobile {
  display: none;
}

.sectiondreammobile {
  display: none;
}

.div-block-59 {
  margin-top: 0px;
}

.div-block-57 {
  height: 1px;
  background-color: #d0d4d9;
}

.question {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-top: 20px;
  padding-bottom: 20px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-decoration: none;
}

.heading-faq {
  max-width: 90%;
  margin-top: 0rem;
  margin-bottom: 0rem;
  color: #000;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 800;
  text-decoration: none;
}

.hidden-text {
  overflow: hidden;
}

.paragraph-small {
  overflow: hidden;
  font-size: 19px;
  line-height: 1.3;
}

.paragraph-small._3 {
  margin-bottom: 2rem;
  font-size: 18px;
}

.paragraph-small._3 {
  margin-bottom: 2rem;
  font-size: 18px;
}

.newslettersectionmobile {
  display: none;
}

.image-18 {
  display: none;
}

.footermobile {
  display: none;
}

.container-3 {
  max-width: 1248px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 24px;
  padding-left: 24px;
}

.container-3.container-navbar {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  max-width: 1170px;
  padding: 8px 0px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.div-block-73 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.navbar-buttons-2 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-left: 8px;
}

.container-26 {
  height: auto;
  max-width: 1170px;
  margin-top: 110px;
  padding-top: 0px;
}

.image-25 {
  width: 250px;
  height: auto;
}

.div-block-74 {
  height: 1px;
  background-color: #e0e3e6;
}

.button-text-2 {
  display: inline-block;
  font-family: obvia-expanded, sans-serif;
  color: #fff;
  font-size: 27px;
  line-height: 27px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: normal;
}

.button-text-2.secondary {
  font-size: 16px;
  line-height: 16px;
  letter-spacing: 0px;
}

.rich-text-block-3 {
  margin-top: 50px;
}

.brand-logo-2 {
  width: 255px;
  margin-right: 24px;
}

.section-9 {
  position: relative;
  top: -210px;
  margin-top: -1px;
  margin-bottom: -210px;
  padding-top: 200px;
  padding-right: 40px;
  padding-left: 40px;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#0094c8), to(#6ad5cb));
  background-image: linear-gradient(180deg, #0094c8, #6ad5cb);
}

.div-block-75 {
  margin-right: 60px;
}

.button-3 {
  position: relative;
  display: inline-block;
  padding: 12px 16px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #dac3a4;
  -webkit-transition: background-color 250ms ease;
  transition: background-color 250ms ease;
  color: #fff;
  text-align: center;
  text-decoration: none;
}

.button-3:hover {
  background-color: #eee7db;
}

.button-3:active {
  background-color: #c3a986;
}

.button-3:focus {
  background-color: #eee7db;
}

.button-3.medium {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 570px;
  height: 110px;
  margin-top: 6px;
  margin-right: auto;
  margin-left: auto;
  padding-top: 0px;
  padding-bottom: 0px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: transparent;
  background-image: url("/images/button-probetraining.svg");
  background-position: 50% 50%;
  background-size: 100%;
  background-repeat: no-repeat;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}

.button-3.medium:hover {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
  color: transparent;
}

.button-3.medium.menu {
  display: none;
}

.button-3.medium.secondary {
  width: 188px;
  height: 47px;
  padding-right: 0px;
  padding-left: 0px;
  background-image: url("/images/button-secondary.svg");
  box-shadow: none;
  font-family: obvia-expanded, sans-serif;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
}

.button-3.medium.secondary:hover {
  background-color: transparent;
  color: #eee7db;
}

.button-3.medium.secondary:active {
  background-color: #d6e4ff;
  color: #c3a986;
}

.button-3.medium.secondary:focus {
  color: #eee7db;
}

.button-3.medium.secondary.menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  grid-auto-columns: 1fr;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: auto auto;
  grid-template-rows: auto auto;
}

.brand-logo-image-2 {
  height: 1.5rem;
}

.navbar-3 {
  position: fixed;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: auto;
  z-index: 999999999;
  display: block;
  padding: 16px 10px 20px;
  background-color: #fff;
}

.nav-link-2 {
  padding: 10px 25px 10px 0px;
  color: #3c404b;
  font-size: 16px;
  line-height: 17px;
  font-weight: 400;
  text-decoration: none;
  text-transform: uppercase;
}

.nav-link-2:hover {
  color: #93c23c;
}

.nav-link-2.w--current {
  color: #93c23c;
}

.nav-link-2._2 {
  padding-right: 0px;
}

.navbar-menu-2 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.body-4 {
  font-family: obvia, sans-serif;
}

.container-27 {
  height: 100vh;
  max-width: 1170px;
  margin-top: 110px;
  padding-top: 200px;
}

.section-10 {
  position: relative;
  top: -250px;
  margin-top: -1px;
  padding-right: 40px;
  padding-left: 40px;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#eee7db), to(#fff));
  background-image: linear-gradient(180deg, #eee7db, #fff);
}

.container-28 {
  height: auto;
  max-width: 1130px;
  margin-top: 110px;
  padding-top: 0px;
}

.section-11 {
  position: relative;
  top: 0px;
  margin-top: -1px;
  margin-bottom: 0px;
  padding: 150px 40px 5rem;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#0094c8), to(#6ad5cb));
  background-image: linear-gradient(180deg, #0094c8, #6ad5cb);
}

.div-block-76 {
  width: 100%;
}

.buyticketsectionmobile {
  display: none;
}

.div-block-78 {
  display: none;
}

.slider {
  display: none;
}

.submit-button {
  width: 100%;
  height: 55px;
  border-radius: 28px;
  background-color: #0094c8;
  font-family: komu-a, sans-serif;
  font-size: 1.625rem;
  line-height: 1.875rem;
  font-weight: 400;
  text-transform: uppercase;
}

.submit-button.dropshadow {
  -webkit-transition: -webkit-transform 200ms ease;
  transition: -webkit-transform 200ms ease;
  transition: transform 200ms ease;
  transition: transform 200ms ease, -webkit-transform 200ms ease;
}

.submit-button.dropshadow:hover {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.column-3 {
  padding-top: 20px;
}

.div-block-49 {
  width: 335px;
  margin-top: 20px;
}

.div-block-49._2 {
  margin-top: 20px;
}

.column-2 {
  padding-right: 100px;
}

.column-2._2 {
  padding-right: 60px;
}

.form-block-3 {
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.text-agb {
  font-size: 18px;
  line-height: 1.5rem;
}

.text-agb.newsletter {
  margin-top: 40px;
}

.columns {
  padding-right: 0px;
  padding-left: 0px;
}

.section-12 {
  margin-top: -1px;
  padding-right: 40px;
  padding-left: 40px;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#eee7db), to(#fff));
  background-image: linear-gradient(180deg, #eee7db, #fff);
}

.success-message {
  background-color: #93c23c;
}

.heading-8 {
  margin-bottom: 0rem;
  font-size: 28px;
}

.container-19 {
  max-width: 1170px;
}

.container-19.newsletter {
  position: relative;
  top: -100px;
}

.image-28 {
  width: 70px;
}

.div-block-82 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 30px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.text-block-30 {
  color: #fff;
}

.div-block-52 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.bullet-number {
  width: 70px;
  margin-right: 20px;
}

.text-bullet-number {
  width: 70%;
  margin-bottom: 0rem;
  font-weight: 400;
}

.text-field-2 {
  height: 50px;
  margin-bottom: 15px;
  padding-left: 1rem;
  border-style: solid;
  border-width: 1px;
  border-color: transparent transparent #838d95;
  background-color: transparent;
  font-size: 22px;
}

.text-field-2.half {
  width: 100%;
  margin-bottom: 15px;
  padding-left: 1rem;
  font-size: 22px;
}

.text-field-2.third {
  width: 40%;
  margin-right: 25px;
}

.text-field-2.message {
  height: 250px;
  border-top-color: #838d95;
  border-right-color: #838d95;
  border-left-color: #838d95;
  border-radius: 3px;
}

.error-message-2 {
  margin-top: 20px;
  background-color: #ff7a45;
}

.text-block-31 {
  color: #fff;
  text-align: center;
}

.html-embed {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: auto;
  height: auto;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.div-block-83 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.div-block-84 {
  width: 50%;
}

.div-block-85 {
  width: 50%;
}

.input-2 {
  margin-bottom: 0.75rem;
  border-style: solid;
  border-width: 1px;
  border-color: #d0d4d9;
  border-radius: 0px;
  background-color: #f9fafb;
  font-size: 1rem;
}

.input-2:hover {
  border-color: #597ef7;
}

.input-2:active {
  border-color: #1d39c4;
}

.input-2:focus {
  border-color: #2f54eb;
  background-color: #fff;
}

.input-2.medium {
  height: 48px;
  max-width: 292px;
  border-width: 2px;
  border-color: #fff;
  border-radius: 6px;
}

.text-block-32 {
  color: #fff;
  line-height: 2rem;
  letter-spacing: 0.36px;
}

.footerbutton-2 {
  height: 55px;
  padding-top: 12px;
  padding-right: 30px;
  padding-left: 30px;
  border-style: solid;
  border-width: 2.4px;
  border-color: #fff;
  border-radius: 27.7px;
  background-color: transparent;
  -webkit-transform: scale3d(1none, 1none, 1none);
  transform: scale3d(1none, 1none, 1none);
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
  font-family: komu-a, sans-serif;
  color: #fff;
  font-size: 1.8rem;
  line-height: 2.1875rem;
  letter-spacing: 3px;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.footerbutton-2:hover {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}

.link-4 {
  margin-right: 2rem;
  color: #fff;
  line-height: 1.875rem;
  text-decoration: none;
}

.link-4.last {
  margin-right: 0rem;
}

.text-block-33 {
  height: 35px;
  margin-top: 0rem;
  margin-bottom: 0.3rem;
  color: #fff;
  font-size: 1.25rem;
  line-height: 1.875rem;
  text-transform: uppercase;
}

.footer-bottom-3 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 32px;
  padding-top: 32px;
  padding-bottom: 32px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  color: #5e6875;
}

.text-block-34 {
  color: #fff;
  font-size: 1.25rem;
  line-height: 3.125rem;
}

.link-5 {
  margin-right: 1rem;
  color: #fff;
  font-size: 1.25rem;
  line-height: 3.125rem;
  text-decoration: none;
}

.booknow-2 {
  height: 55px;
  margin-bottom: 5rem;
  padding-top: 14px;
  padding-right: 2.375rem;
  padding-left: 2.375rem;
  border-radius: 27.44px;
  background-color: #0e0f11;
  -webkit-transform: scale3d(1none, 1none, 1none);
  transform: scale3d(1none, 1none, 1none);
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
  font-family: komu-a, sans-serif;
  font-size: 1.8rem;
  line-height: 2.1875rem;
  font-weight: 400;
  letter-spacing: 3px;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.booknow-2:hover {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}

.booknow-2.diffmargin {
  margin-bottom: 0rem;
}

.footersocialtext-2 {
  margin-right: 2rem;
  color: #fff;
  font-size: 1.25rem;
  line-height: 1.875rem;
  text-transform: uppercase;
}

.footer-4 {
  padding-top: 0px;
  padding-right: 0px;
  padding-left: 0px;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  border-top: 1px none #e0e3e6;
  background-color: #0094c8;
  text-align: left;
}

.component-wrapper-3 {
  position: relative;
  margin-top: 0px;
  margin-bottom: 64px;
  padding: 24px;
  border-style: none;
  border-width: 1px;
  border-color: #d0d4d9;
  border-radius: 4px;
}

.vertical-menu-link-2 {
  margin-bottom: 0px;
  color: #fff;
  font-size: 1.25rem;
  line-height: 3.125rem;
  text-decoration: none;
  text-transform: uppercase;
}

.vertical-menu-link-2:hover {
  color: #597ef7;
  text-decoration: none;
}

.sm-icon-link-2 {
  width: 25px;
  margin-right: 12px;
  background-image: url("/images/instagram.svg");
  background-position: 0px 0px;
  background-size: auto;
  color: #fff;
}

.sm-icon-link-2.facebook {
  width: 25px;
  background-image: url("/images/Facebook-logo-Mobile.svg");
  background-position: 50% 50%;
  background-size: contain;
  background-repeat: no-repeat;
}

.sm-icon-link-2.instagram {
  background-position: 50% 50%;
  background-size: contain;
  background-repeat: no-repeat;
}

.sm-icon-link-2.youtube {
  width: 34px;
  background-image: url("/images/YT.svg");
  background-position: 50% 50%;
  background-size: contain;
  background-repeat: no-repeat;
}

.footer-grid-4 {
  margin-bottom: 2rem;
  grid-column-gap: 24px;
  -ms-grid-columns: 1fr 2.75fr 0.25fr 1.75fr;
  grid-template-columns: 1fr 2.75fr 0.25fr 1.75fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  text-align: left;
}

.link-6 {
  margin-left: 1rem;
  color: #fff;
  font-size: 1.25rem;
  line-height: 3.125rem;
  text-decoration: none;
}

.vertical-menu-title-2 {
  margin-bottom: 12px;
  color: #fff;
  font-size: 1.25rem;
  line-height: 1.375rem;
  font-weight: 400;
  text-align: right;
}

.mobile-overlay {
  display: none;
}

.button-5 {
  display: none;
}

.div-block-90 {
  display: none;
}

.tabs-3 {
  background-color: #fff;
}

.tabs-3.background {
  background-image: url("/images/Info-Header-Background.png");
  background-position: 50% 218%;
  background-size: auto;
  background-repeat: no-repeat;
}

.location-wrapper {
  position: relative;
  width: 100%;
  max-width: 750px;
  margin: auto;
  padding-top: 11.5625rem;
  padding-bottom: 9.375rem;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#0094c8), to(#6ad5cb));
  background-image: linear-gradient(180deg, #0094c8, #6ad5cb);
}

.heading-9 {
  margin-bottom: 3rem;
  font-size: 2rem;
  font-weight: 800;
  text-transform: uppercase;
}

.div-block-97 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.link-block-3 {
  width: 50%;
  margin-right: 1rem;
  border-style: solid;
  border-width: 1px;
  border-color: #5e6875;
  -webkit-transform: scale3d(1none, 1none, 1none);
  transform: scale3d(1none, 1none, 1none);
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.link-block-3:hover {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}

.link-block-4 {
  width: 50%;
  border-style: solid;
  border-width: 1px;
  border-color: #5e6875;
}

.image-30 {
  width: 100%;
  max-width: 250px;
}

.image-31 {
  width: 100%;
  max-width: 250px;
}

.div-block-98 {
  position: absolute;
  left: auto;
  top: 0%;
  right: 0%;
  bottom: auto;
  display: block;
  width: 25px;
  height: 25px;
  margin-top: 1rem;
  margin-right: 1rem;
  background-image: url("/images/close.svg");
  background-position: 0px 0px;
  background-size: cover;
  background-repeat: no-repeat;
}

.div-block-99 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  max-width: 90%;
  margin-right: auto;
  margin-left: auto;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.div-block-100 {
  padding-bottom: 16.875rem;
}

.div-block-100.lessmargin {
  padding-bottom: 12.5rem;
}

.div-block-100.bottommargin {
  padding-bottom: 20rem;
}

.div-block-100.lessbottompadding.groups {
  padding-bottom: 9.375rem;
}

.div-block-100.lessbottompadding.proflyercards {
  padding-bottom: 6.25rem;
}

.giftsection {
  position: relative;
  top: -8.125rem;
  margin-bottom: -8.125rem;
  padding-top: 8.125rem;
  padding-bottom: 8.125rem;
}

.div-block-101 {
  position: relative;
  z-index: 5;
  margin-right: auto;
  margin-left: auto;
}

.div-block-102 {
  position: absolute;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: 0%;
  z-index: 2;
  background-image: url("/images/Gift-Section-Background.png");
  background-position: 0px 0px;
  background-size: contain;
  background-repeat: no-repeat;
}

.div-block-103 {
  position: absolute;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: 0%;
  z-index: 1;
  margin-top: 8.125rem;
  margin-bottom: 8.125rem;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#0094c8), to(#6ad5cb));
  background-image: linear-gradient(180deg, #0094c8, #6ad5cb);
}

.imagetextctasection {
  padding-top: 6.25rem;
  padding-bottom: 6.25rem;
  background-image: url("/images/Background-Group-Section.jpg");
  background-position: 0px 0px;
  background-size: cover;
  background-repeat: no-repeat;
}

.imagetextctasection.bottrop {
  padding-bottom: 13.4375rem;
  background-image: url("/images/kontakt-bottrop_1.jpg");
}

.imagetextctasection.viernheim {
  padding-bottom: 13.4375rem;
  background-image: url("/images/Viernheim-neues-Bild.jpg");
  background-position: 0px 0px;
  background-size: cover;
}

.imagetextctasection.viernheim.diffmargin {
  padding-bottom: 6.25rem;
  background-image: url("/images/Viernheim-neues-Bild.jpg");
  background-size: cover;
  background-repeat: no-repeat;
}

.imagetextctasection.groups {
  padding-top: 9.375rem;
  padding-bottom: 9.375rem;
  background-image: url("/images/gemeinsam-hoch-hinaus.jpg");
  background-position: 0px 0px;
  background-size: cover;
}

.imagetextctasection.proflyersite {
  padding-top: 32.1875rem;
  padding-bottom: 15rem;
  background-image: url("/images/ausbildung-background.jpg");
}

.imagetextctasection.viernheimpage {
  background-image: none;
}

.bookgroupcontainer {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 1030px;
  margin-right: auto;
  margin-left: auto;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  text-align: right;
}

.bookgroupcontainer.alignleft {
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  text-align: left;
}

.bookgroupcontainer.middle {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}

.proflyer {
  position: relative;
  background-image: url("/images/Proflyer-Background-New.jpg");
  background-position: 0% 0%;
  background-size: contain;
  background-repeat: no-repeat;
}

.proflyerbackgroundcontainer {
  position: static;
  top: -130px;
  background-image: url("/images/Proflyer-Background-new.png");
  background-position: 0px 0px;
  background-size: cover;
}

.image-32 {
  position: absolute;
  left: auto;
  top: -16%;
  right: 0%;
  bottom: auto;
  max-width: 900px;
}

.imagetextctasectionmobile {
  display: none;
}

.text-span-3 {
  font-weight: 800;
  text-transform: uppercase;
}

.locationcontainer {
  max-width: 1030px;
  margin-right: auto;
  margin-left: auto;
}

.locationcontainer.shadow {
  position: relative;
  top: -150px;
  padding: 6.235rem;
  border-radius: 10px;
  background-color: #fff;
}

.locationcontainer.shadow.proflyersite {
  padding-bottom: 2rem;
}

.locationtextcontainer {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 5rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.locationtextcontainer.last {
  margin-bottom: 0rem;
}

.locationtextcontainer.alignmiddle {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.heading-10 {
  margin-bottom: 0rem;
  font-family: komu-a, sans-serif;
  font-size: 3.125rem;
  line-height: 5rem;
  font-weight: 400;
}

.heading-10.notopmargin {
  margin-top: 0rem;
  margin-bottom: 2rem;
}

.heading-10.notopmargin.white {
  color: #fff;
}

.heading-11 {
  margin-top: 0rem;
  margin-bottom: 0rem;
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 400;
}

.heading-11.marginbottom {
  margin-bottom: 2rem;
}

.text-block-37 {
  margin-bottom: 2rem;
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 400;
}

.text-block-37.last {
  margin-bottom: 0rem;
}

.text-block-37.centered {
  margin-bottom: 4rem;
  text-align: center;
}

.textlink {
  color: #0e0f11;
  text-decoration: underline;
}

.mailcontactsection {
  display: block;
  padding-top: 12.5rem;
  padding-bottom: 9.375rem;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#0094c8), to(#6ad5cb));
  background-image: linear-gradient(180deg, #0094c8, #6ad5cb);
}

.openinghourssection {
  padding-top: 9.375rem;
  padding-bottom: 9.375rem;
}

.div-block-105 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 6.25rem;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.div-block-105.fligjtclub {
  margin-bottom: 0rem;
}

.openinghours {
  width: 50%;
  margin-right: 1.875rem;
  padding-top: 3.4375px;
  padding-left: 3.4375px;
  text-align: center;
}

.openinghours.shadow {
  padding-top: 3.5rem;
  padding-right: 3.5rem;
  padding-left: 3.5rem;
  border-radius: 10px;
}

.openinghours.shadow.right {
  margin-right: 0rem;
  background-color: #6ad5cb;
}

.openinghours.shadow.right.flightclub {
  padding-right: 2rem;
  padding-left: 2rem;
  background-image: url("/images/Bottom-graphic.png");
  background-position: 50% 100%;
  background-size: contain;
  background-repeat: no-repeat;
}

.openinghours.shadow.border {
  background-color: #fefdfb;
}

.image-38 {
  max-width: 100%;
}

.image-39 {
  width: 100%;
  max-width: 90px;
}

.text-span-4 {
  text-transform: lowercase;
}

.text-span-5 {
  text-transform: lowercase;
}

.image-41 {
  display: none;
}

.image-42 {
  display: none;
}

.image-44 {
  display: none;
}

.image-46 {
  display: none;
}

.faqsection {
  background-image: -webkit-gradient(linear, left top, left bottom, from(#0094c8), to(#fff));
  background-image: linear-gradient(180deg, #0094c8, #fff);
}

.tabs-menu-5 {
  box-shadow: inset 0 -1px 0 0 #d0d4d9;
}

.tab-2 {
  padding: 12px 16px;
  background-color: #fff;
  box-shadow: inset 0 -1px 0 0 #d0d4d9;
  color: #5e6875;
}

.tab-2.w--current {
  padding: 12px 16px;
  background-color: #fff;
  box-shadow: inset 0 -2px 0 0 #2f54eb;
  color: #2f54eb;
}

.tabs-4 {
  max-width: 1240px;
  margin-right: auto;
  margin-left: auto;
}

.faqs {
  position: relative;
  max-width: 1170px;
  padding-right: 0px;
  padding-left: 0px;
}

.hidden-text-2 {
  overflow: hidden;
}

.div-block-58 {
  margin-top: 60px;
}

.div-block-58.faq {
  margin-top: 0px;
}

.question-2 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-top: 20px;
  padding-bottom: 20px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-decoration: none;
}

.contactformsection {
  padding-top: 6.25rem;
  padding-bottom: 6.25rem;
}

.contactformcontainer {
  width: 100%;
  max-width: 1030px;
  margin-right: auto;
  margin-left: auto;
}

.checkbox-label-2 {
  font-family: obvia, sans-serif;
  font-weight: 500;
}

.select-field-2 {
  height: 50px;
  margin-bottom: 20px;
  border-radius: 3px;
  background-color: transparent;
  font-size: 22px;
}

.checkbox-2 {
  width: 27px;
  height: 22px;
  margin-right: 10px;
}

.div-block-53 {
  margin-top: 60px;
  margin-bottom: 20px;
}

.text-block-38 {
  padding-top: 0px;
  padding-bottom: 8px;
  padding-left: 1rem;
  color: #333;
  font-size: 1.375rem;
}

.textarea-2 {
  max-width: 100%;
  min-height: 200px;
  font-size: 22px;
}

.text-block-39 {
  width: 100%;
  max-width: 1000px;
  margin-right: auto;
  margin-left: auto;
}

.div-block-106 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 1000px;
  margin-right: auto;
  margin-left: auto;
  padding-bottom: 6.25rem;
}

.div-block-106.lessbottom {
  padding-bottom: 0rem;
}

.image-48 {
  margin-right: 2rem;
}

.link-7 {
  color: #0e0f11;
}

.link-8 {
  color: #fff;
}

.listcontainer {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.div-block-107 {
  width: 50%;
}

.div-block-107.left {
  border-right: 1px solid #979797;
}

.div-block-107.right {
  padding-left: 5.625rem;
}

.videocontainer {
  padding-top: 6.25rem;
  padding-bottom: 6.25rem;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#0094c8), to(#6ad5cb));
  background-image: linear-gradient(180deg, #0094c8, #6ad5cb);
}

.div-block-108 {
  max-width: 1030px;
  margin-right: auto;
  margin-left: auto;
}

.partnersection {
  background-image: url("/images/Partner-Section-Background.png");
  background-position: 50% 0px;
  background-size: contain;
  background-repeat: no-repeat;
}

.backgroundsectionpartner {
  padding-top: 6.25rem;
  padding-bottom: 10.625rem;
}

.hotelcontainer {
  margin-bottom: 9.375rem;
  padding-top: 1rem;
}

.covinfo {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  max-width: 790px;
  margin-top: 2rem;
  margin-right: auto;
  margin-left: auto;
  padding: 1rem;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 8px;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#0094c8), to(#6ad5cb));
  background-image: linear-gradient(180deg, #0094c8, #6ad5cb);
}

.covinfo.shadow {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.text-block-40 {
  max-width: 80%;
  font-family: komu-a, sans-serif;
  color: #fff;
  font-size: 1.75rem;
  line-height: 1.75rem;
}

.image-49 {
  padding-right: 2rem;
}

.dropdown-3 {
  margin-right: 0px;
  margin-left: 0px;
  color: #fff;
  font-size: 18px;
  line-height: 1.437rem;
}

.dropdown-toggle-2 {
  padding: 0px 20px;
}

.text-block-41 {
  color: #fff;
}

.menuelink {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 5px;
  padding-top: 5px;
  padding-bottom: 0px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-style: solid;
  border-width: 1.5px;
  border-color: #fff;
  border-radius: 27px;
  background-color: #00759e;
  -webkit-transform: scale3d(1none, 1none, 1none);
  transform: scale3d(1none, 1none, 1none);
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
  font-family: komu-a, sans-serif;
  color: #fff;
  font-size: 20px;
  line-height: 1.5rem;
  letter-spacing: 2px;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.menuelink:hover {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}

.dropdown-list-2 {
  padding-top: 30px;
  background-color: transparent;
}

.dropdown-list-2.w--open {
  left: -59px;
}

.image-50 {
  max-width: 90px;
  margin-bottom: 1rem;
}

html.w-mod-js *[data-ix=tooltip-hover] {
  display: inline-block;
}

@media screen and (max-width: 991px) {
  .container {
    padding-top: 0rem;
    padding-right: 40px;
    padding-left: 40px;
  }
  .container.container-navbar {
    margin-top: 29px;
    padding-top: 0px;
    padding-bottom: 0px;
  }
  .section-title {
    width: 100%;
    margin-bottom: 32px;
  }
  .section-title.centered {
    width: 75%;
  }
  .wrapper-m.diffmargin {
    padding-top: 0px;
    padding-bottom: 0px;
  }
  .l-g-3-col {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
  }
  .l-g-3-col.lt-g-2-col {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
  .l-g-3-col.lt-g-1-col {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .l-g-4-col {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    -ms-grid-rows: auto;
    grid-template-rows: auto;
  }
  .button.medium.presentbutton {
    padding-top: 11px;
  }
  .button.small.cookies {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }
  .dropdown-menu-navbar {
    position: relative;
  }
  .dropdown-menu-navbar.w--open {
    position: relative;
    margin-top: 0px;
    background-color: #f9fafb;
    box-shadow: none;
    text-align: center;
  }
  .l-g-2-col {
    grid-column-gap: 16px;
    grid-row-gap: 24px;
  }
  .l-g-2-col.lt-g-1-col {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .input.medium {
    max-width: none;
    margin-bottom: 3rem;
  }
  .input.medium.mobile {
    max-width: 70%;
  }
  .form.centered {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
  }
  .cta-wrapper {
    width: 80%;
  }
  .section {
    display: none;
  }
  .section.beginners {
    display: block;
    padding-top: 5rem;
    padding-right: 40px;
    padding-left: 40px;
  }
  .section.beginners.toppadding {
    padding-top: 5rem;
  }
  .section.twopersons {
    display: block;
    padding-top: 5rem;
  }
  .section.kidsandfamily {
    display: block;
    padding-top: 5rem;
  }
  .section.contact {
    display: none;
  }
  .section.events {
    display: block;
    padding-top: 5rem;
    background-position: 50% 50%;
  }
  .section.flightclub {
    display: block;
    padding-top: 5rem;
  }
  .card.card-horizontal {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .card-horizontal-text-wrapper {
    margin-left: 0px;
    padding: 0px;
  }
  .side-nav-menu {
    position: static;
  }
  .footer {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding-right: 0px;
    padding-left: 0px;
  }
  .navbar.dark {
    margin-top: -33px;
    padding-bottom: 50px;
  }
  .navbar-menu {
    padding-right: 16px;
    padding-bottom: 16px;
    padding-left: 16px;
    background-color: #fff;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.19);
    text-align: center;
  }
  .navbar-menu.dark {
    display: none;
    height: auto;
    padding-right: 0px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
    background-color: #0e0f11;
    box-shadow: none;
  }
  .nav-link {
    text-align: center;
  }
  .nav-link.nav-link-dropdown {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding-right: 16px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
  }
  .brand-logo {
    max-width: none;
    margin-right: 0px;
    padding-left: 0px;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
  .vertical-menu-title {
    margin-bottom: 8px;
  }
  .vertical-menu-title.centered {
    margin-bottom: 1.5rem;
    line-height: 1.5rem;
    text-align: center;
  }
  .sm-icon-link {
    margin-right: 2rem;
  }
  .sm-icon-link.last {
    margin-right: 0px;
  }
  .footer-top-2 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .footer-2 {
    padding-right: 20px;
    padding-bottom: 32px;
    padding-left: 20px;
  }
  .sm-icons-wrapper {
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-align-self: flex-end;
    -ms-flex-item-align: end;
    align-self: flex-end;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }
  .grid-cta {
    justify-items: stretch;
    grid-column-gap: 16px;
    grid-row-gap: 0px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    -ms-grid-rows: auto auto;
    grid-template-rows: auto auto;
    text-align: center;
  }
  .cta-section-text-wrapper {
    padding-right: 0px;
  }
  .cta-section-form-wrapper {
    width: 480px;
    margin-right: auto;
    margin-left: auto;
  }
  .footer-menu-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .menu-button.w--open {
    background-color: #0e0f11;
  }
  .menu-button.color-inverse {
    top: -40px;
    z-index: 500;
    width: 40px;
    height: 40px;
    padding: 0px;
    color: #fff;
  }
  .menu-button.color-inverse.w--open {
    background-color: #10239e;
  }
  .navbar-menu-right {
    z-index: -5000;
    display: none;
    padding-right: 16px;
    padding-bottom: 16px;
    padding-left: 16px;
    background-color: #fff;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.19);
    text-align: center;
  }
  .navbar-menu-mobile {
    display: block;
  }
  .modal-wrapper {
    display: none;
  }
  .component-wrapper {
    display: none;
  }
  .component-wrapper.two {
    display: block;
  }
  .component-wrapper.one {
    display: block;
  }
  .component-wrapper.three {
    display: block;
  }
  .component-wrapper.four {
    display: block;
  }
  .style-guide-page-header {
    padding: 31px 0px 0px;
  }
  .grid-styleguide---buttons {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
  }
  .style-guide-page-header-text {
    width: 100%;
    padding-top: 88px;
    padding-bottom: 24px;
  }
  .style-guide-page-header-navigation {
    top: 64px;
  }
  .navbar-vertical {
    position: fixed;
    left: 0%;
    top: 0%;
    right: 0%;
    bottom: auto;
    z-index: 5000;
    width: 100%;
    padding-right: 0px;
    padding-left: 0px;
    background-color: transparent;
  }
  .navbar-vertical-brand {
    display: none;
  }
  .navbar-vertical-content-wrapper {
    display: block;
    overflow: scroll;
    width: 70%;
    padding-top: 8px;
    padding-bottom: 200px;
    background-color: #fff;
  }
  .navbar-vertical---mobile {
    display: block;
    padding-top: 8px;
    padding-bottom: 8px;
    border-bottom: 1px solid #d0d4d9;
  }
  .navbar-vertical-overlay {
    position: relative;
    z-index: 5000;
    display: none;
    width: 100%;
    height: 100vh;
  }
  .navbar-vertical-bg {
    display: block;
    width: 30%;
    height: 100vh;
    -webkit-align-self: stretch;
    -ms-flex-item-align: stretch;
    -ms-grid-row-align: stretch;
    align-self: stretch;
    background-color: rgba(0, 0, 0, 0.5);
  }
  .nav-tabs-container {
    overflow: scroll;
  }
  .nav-tab {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }
  .container-fluid {
    padding-right: 16px;
    padding-left: 16px;
  }
  .st-p-0 {
    padding: 0px;
  }
  .st-p-y-0 {
    padding-top: 0px;
    padding-bottom: 0px;
  }
  .st-p-x-0 {
    padding-right: 0px;
    padding-left: 0px;
  }
  .st-p-t-0 {
    padding-top: 0px;
  }
  .st-p-r-0 {
    padding-right: 0px;
  }
  .st-p-b-0 {
    padding-bottom: 0px;
  }
  .st-p-l-0 {
    padding-left: 0px;
  }
  .st-p-4 {
    padding: 4px;
  }
  .st-p-y-4 {
    padding-top: 4px;
    padding-bottom: 4px;
  }
  .st-p-x-4 {
    padding-right: 4px;
    padding-left: 4px;
  }
  .st-p-t-4 {
    padding-top: 4px;
  }
  .st-p-r-4 {
    padding-right: 4px;
  }
  .st-p-b-4 {
    padding-bottom: 4px;
  }
  .st-p-l-4 {
    padding-left: 4px;
  }
  .st-p-8 {
    padding: 8px;
  }
  .st-p-y-8 {
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .st-p-x-8 {
    padding-right: 8px;
    padding-left: 8px;
  }
  .st-p-t-8 {
    padding-top: 8px;
  }
  .st-p-r-8 {
    padding-right: 8px;
  }
  .st-p-b-8 {
    padding-bottom: 8px;
  }
  .st-p-l-8 {
    padding-left: 8px;
  }
  .st-p-12 {
    padding: 12px;
  }
  .st-p-y-12 {
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .st-p-x-12 {
    padding-right: 12px;
    padding-left: 12px;
  }
  .st-p-t-12 {
    padding-top: 12px;
  }
  .st-p-r-12 {
    padding-right: 12px;
  }
  .st-p-b-12 {
    padding-bottom: 12px;
  }
  .st-p-l-12 {
    padding-left: 12px;
  }
  .st-p-16 {
    padding: 16px;
  }
  .st-p-y-16 {
    padding-top: 16px;
    padding-bottom: 16px;
  }
  .st-p-x-16 {
    padding-right: 16px;
    padding-left: 16px;
  }
  .st-p-t-16 {
    padding-top: 16px;
  }
  .st-p-r-16 {
    padding-right: 16px;
  }
  .st-p-b-16 {
    padding-bottom: 16px;
  }
  .st-p-l-16 {
    padding-left: 16px;
  }
  .st-p-24 {
    padding: 24px;
  }
  .st-p-y-24 {
    padding-top: 24px;
    padding-bottom: 24px;
  }
  .st-p-x-24 {
    padding-right: 24px;
    padding-left: 24px;
  }
  .st-p-t-24 {
    padding-top: 24px;
  }
  .st-p-r-24 {
    padding-right: 24px;
  }
  .st-p-b-24 {
    padding-bottom: 24px;
  }
  .st-p-l-24 {
    padding-left: 24px;
  }
  .st-p-32 {
    padding: 32px;
  }
  .st-p-y-32 {
    padding-top: 32px;
    padding-bottom: 32px;
  }
  .st-p-x-32 {
    padding-right: 32px;
    padding-left: 32px;
  }
  .st-p-t-32 {
    padding-top: 32px;
  }
  .st-p-r-32 {
    padding-right: 32px;
  }
  .st-p-b-32 {
    padding-bottom: 32px;
  }
  .st-p-l-32 {
    padding-left: 32px;
  }
  .st-p-48 {
    padding: 48px;
  }
  .st-p-y-48 {
    padding-top: 48px;
    padding-bottom: 48px;
  }
  .st-p-x-48 {
    padding-right: 48px;
    padding-left: 48px;
  }
  .st-p-t-48 {
    padding-top: 48px;
  }
  .st-p-r-48 {
    padding-right: 48px;
  }
  .st-p-b-48 {
    padding-bottom: 48px;
  }
  .st-p-l-48 {
    padding-left: 48px;
  }
  .st-p-64 {
    padding: 64px;
  }
  .st-p-y-64 {
    padding-top: 64px;
    padding-bottom: 64px;
  }
  .st-p-x-64 {
    padding-right: 64px;
    padding-left: 64px;
  }
  .st-p-t-64 {
    padding-top: 64px;
  }
  .st-p-r-64 {
    padding-right: 64px;
  }
  .st-p-b-64 {
    padding-bottom: 64px;
  }
  .st-p-l-64 {
    padding-left: 64px;
  }
  .st-p-128 {
    padding: 128px;
  }
  .st-p-y-128 {
    padding-top: 128px;
    padding-bottom: 128px;
  }
  .st-p-x-128 {
    padding-right: 128px;
    padding-left: 128px;
  }
  .st-p-t-128 {
    padding-top: 128px;
  }
  .st-p-r-128 {
    padding-right: 128px;
  }
  .st-p-b-128 {
    padding-bottom: 128px;
  }
  .st-p-l-128 {
    padding-left: 128px;
  }
  .st-m-0 {
    margin: 0px;
  }
  .st-m-y-0 {
    margin-top: 0px;
    margin-bottom: 0px;
  }
  .st-m-x-0 {
    margin-right: 0px;
    margin-left: 0px;
  }
  .st-m-t-0 {
    margin-top: 0px;
  }
  .st-m-r-0 {
    margin-right: 0px;
  }
  .st-m-b-0 {
    margin-bottom: 0px;
  }
  .st-m-l-0 {
    margin-left: 0px;
  }
  .st-m-4 {
    margin: 4px;
  }
  .st-m-y-4 {
    margin-top: 4px;
    margin-bottom: 4px;
  }
  .st-m-x-4 {
    margin-right: 4px;
    margin-left: 4px;
  }
  .st-m-t-4 {
    margin-top: 4px;
  }
  .st-m-r-4 {
    margin-right: 4px;
  }
  .st-m-b-4 {
    margin-bottom: 4px;
  }
  .st-m-l-4 {
    margin-left: 4px;
  }
  .st-m-8 {
    margin: 8px;
  }
  .st-m-y-8 {
    margin-top: 8px;
    margin-bottom: 8px;
  }
  .st-m-x-8 {
    margin-right: 8px;
    margin-left: 8px;
  }
  .st-m-t-8 {
    margin-top: 8px;
  }
  .st-m-r-8 {
    margin-right: 8px;
  }
  .st-m-b-8 {
    margin-bottom: 8px;
  }
  .st-m-l-8 {
    margin-left: 8px;
  }
  .st-m-12 {
    margin: 12px;
  }
  .st-m-y-12 {
    margin-top: 12px;
    margin-bottom: 12px;
  }
  .st-m-x-12 {
    margin-right: 12px;
    margin-left: 12px;
  }
  .st-m-t-12 {
    margin-top: 12px;
  }
  .st-m-r-12 {
    margin-right: 12px;
  }
  .st-m-b-12 {
    margin-bottom: 12px;
  }
  .st-m-l-12 {
    margin-left: 12px;
  }
  .st-m-16 {
    margin: 16px;
  }
  .st-m-y-16 {
    margin-top: 16px;
    margin-bottom: 16px;
  }
  .st-m-x-16 {
    margin-right: 16px;
    margin-left: 16px;
  }
  .st-m-t-16 {
    margin-top: 16px;
  }
  .st-m-r-16 {
    margin-right: 16px;
  }
  .st-m-b-16 {
    margin-bottom: 16px;
  }
  .st-m-l-16 {
    margin-left: 16px;
  }
  .st-m-24 {
    margin: 24px;
  }
  .st-m-y-24 {
    margin-top: 24px;
    margin-bottom: 24px;
  }
  .st-m-x-24 {
    margin-right: 24px;
    margin-left: 24px;
  }
  .st-m-t-24 {
    margin-top: 24px;
  }
  .st-m-r-24 {
    margin-right: 24px;
  }
  .st-m-b-24 {
    margin-bottom: 24px;
  }
  .st-m-l-24 {
    margin-left: 24px;
  }
  .st-m-32 {
    margin: 32px;
  }
  .st-m-y-32 {
    margin-top: 32px;
    margin-bottom: 32px;
  }
  .st-m-x-32 {
    margin-right: 32px;
    margin-left: 32px;
  }
  .st-m-t-32 {
    margin-top: 32px;
  }
  .st-m-r-32 {
    margin-right: 32px;
  }
  .st-m-b-32 {
    margin-bottom: 32px;
  }
  .st-m-l-32 {
    margin-left: 32px;
  }
  .st-m-48 {
    margin: 48px;
  }
  .st-m-y-48 {
    margin-top: 48px;
    margin-bottom: 48px;
  }
  .st-m-x-48 {
    margin-right: 48px;
    margin-left: 48px;
  }
  .st-m-t-48 {
    margin-top: 48px;
  }
  .st-m-r-48 {
    margin-right: 48px;
  }
  .st-m-b-48 {
    margin-bottom: 48px;
  }
  .st-m-l-48 {
    margin-left: 48px;
  }
  .st-m-64 {
    margin: 64px;
  }
  .st-m-y-64 {
    margin-top: 64px;
    margin-bottom: 64px;
  }
  .st-m-x-64 {
    margin-right: 64px;
    margin-left: 64px;
  }
  .st-m-t-64 {
    margin-top: 64px;
  }
  .st-m-r-64 {
    margin-right: 64px;
  }
  .st-m-b-64 {
    margin-bottom: 64px;
  }
  .st-m-l-64 {
    margin-left: 64px;
  }
  .st-m-128 {
    margin: 128px;
  }
  .st-m-y-128 {
    margin-top: 128px;
    margin-bottom: 128px;
  }
  .st-m-x-128 {
    margin-right: 128px;
    margin-left: 128px;
  }
  .st-m-t-128 {
    margin-top: 128px;
  }
  .st-m-r-128 {
    margin-right: 128px;
  }
  .st-m-b-128 {
    margin-bottom: 128px;
  }
  .st-m-l-128 {
    margin-left: 128px;
  }
  .breadcrumbs-dropdown {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .feature-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .feature-grid-2 {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .feature-grid-3 {
    grid-row-gap: 48px;
    -ms-grid-columns: 1.5fr;
    grid-template-columns: 1.5fr;
  }
  .hero-grid {
    grid-column-gap: 48px;
    grid-row-gap: 48px;
    -ms-grid-columns: 1.25fr;
    grid-template-columns: 1.25fr;
    text-align: center;
  }
  .hero-grid-2 {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-title-centered {
    width: 100%;
  }
  .wrapper-l {
    padding: 10rem 40px 5rem;
  }
  .wrapper-l.gifsection {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
  .wrapper-l.topmargin {
    padding-top: 20rem;
  }
  .pricing-1 {
    grid-row-gap: 16px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .pricing-card-1 {
    border-radius: 4px;
  }
  .pricing-card-1.main {
    z-index: 0;
  }
  .pricing-card-1.left {
    border-radius: 4px;
  }
  .pricing-card-1.right {
    overflow: hidden;
    border-radius: 4px;
  }
  .testimonials-logos-grid {
    grid-column-gap: 48px;
    grid-row-gap: 48px;
    -ms-grid-columns: 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr;
  }
  .pricing-card-header-2 {
    text-align: left;
  }
  .testimonial-box {
    padding: 32px;
  }
  .testimonial-box-2 {
    padding-right: 48px;
    padding-left: 48px;
  }
  .feature-section-list {
    text-align: left;
  }
  .contact-grid-1 {
    grid-column-gap: 16px;
    grid-row-gap: 32px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .contact-image {
    width: 100%;
    height: 320px;
  }
  .hero-grid-3 {
    grid-column-gap: 48px;
    grid-row-gap: 48px;
    -ms-grid-columns: 1.25fr;
    grid-template-columns: 1.25fr;
    text-align: center;
  }
  .grid-long-content-1 {
    -ms-grid-columns: 1.5fr;
    grid-template-columns: 1.5fr;
  }
  .card-image-overview-page {
    background-color: #edf0f3;
    -o-object-fit: contain;
    object-fit: contain;
  }
  .nav-menu {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .customize-instructions {
    padding-right: 16px;
    padding-left: 16px;
  }
  .feature-section.flying {
    padding-top: 40rem;
    padding-bottom: 6.25rem;
    background-image: url("/images/Woman-Skydiving.png");
    background-position: 50% 0%;
  }
  .row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .column {
    width: 100%;
  }
  .section-box-wrapper {
    padding: 24px;
  }
  .feature-content-wrapper.right {
    padding-left: 0px;
  }
  .feature-content-wrapper.left {
    padding-right: 0px;
  }
  .dropdown-menu-1.w--open {
    position: absolute;
    margin-top: 4px;
    background-color: #f9fafb;
    text-align: center;
  }
  .dropdown-menu-item---navbar {
    padding-top: 12px;
    padding-bottom: 12px;
    text-align: center;
  }
  .navbar-buttons {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-top: 8px;
    margin-left: 0px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .navbar-buttons.mobile {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .footer-navigation {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-top: 16px;
    margin-bottom: 16px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .dropdown-menu-breadcrumbs.w--open {
    margin-top: 0px;
    background-color: #f9fafb;
    text-align: center;
  }
  .div-block-2.desktop {
    display: none;
  }
  .languagebutton.mobile {
    display: block;
  }
  .mainsectionheader {
    z-index: 1;
    padding-bottom: 70px;
    background-image: url("/images/hero-main-mobile.webp");
    background-position: 50% 60%;
  }
  .div-block-6 {
    margin-bottom: 250px;
    padding-top: 141px;
    padding-right: 0px;
  }
  .heading-2 {
    font-size: 3.2rem;
  }
  .heading-3 {
    font-size: 9rem;
    line-height: 8rem;
  }
  .div-block-7 {
    top: 22%;
    padding: 30px 10px;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    -webkit-transition-property: none;
    transition-property: none;
  }
  .div-block-7.viernheim {
    left: auto;
    top: 15%;
    right: 0px;
    display: block;
    border-radius: 8px 0px 0px 8px;
  }
  .div-block-7.weekday {
    left: auto;
    top: 50%;
    right: 0px;
    display: block;
    border-radius: 8px 0px 0px 8px;
  }
  .div-block-7.viernheim.xmas {
    left: 0px;
    right: auto;
    padding-top: 120px;
  }
  .mainsectionvoucher.desktop {
    display: none;
  }
  .mainsectionair.desktop {
    display: none;
    overflow: visible;
  }
  .textblockseparate {
    max-width: none;
  }
  .textblockseparate.zindex {
    max-width: none;
  }
  .textblockseparate.padding.alignright.marginbottombig {
    max-width: 100%;
    margin-bottom: 5rem;
    padding-top: 5rem;
  }
  .textblockseparate.padding.alignright.marginbottombig.mobile {
    margin-bottom: 0rem;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
  }
  .textblockseparate.flexed {
    max-width: none;
  }
  .textblockseparate.diffwidth.alignmiddle {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 5rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .textblockseparate.diffwidth.alignmiddle.groups {
    margin-bottom: 0rem;
  }
  .textblockseparate.diffwidth.alignmiddle.viernheimpage {
    margin-bottom: 0rem;
  }
  .textblockseparate.diffwidth.alignmiddle.viernheimpage.diffsized {
    width: 100%;
    max-width: none;
  }
  .textblockseparate.diffwidth.diff {
    margin-bottom: 10rem;
  }
  .textblockseparate.diffwidth.diffmargin {
    margin-bottom: 0rem;
  }
  .textcolored.viernheimpage {
    max-width: 80%;
    margin-right: auto;
    margin-left: auto;
  }
  .h2separate.alignright {
    width: 100%;
  }
  .text-block-7 {
    margin-bottom: 2rem;
    font-size: 1.5rem;
    line-height: 1.812rem;
  }
  .text-block-7.alignleft.white.diffsized.notfullwidth {
    max-width: none;
    text-align: left;
  }
  .text-block-7.alignleft.difffont.diffsized {
    max-width: none;
  }
  .text-block-7.white.diffsized.wider.mobile {
    max-width: none;
    margin-bottom: 0rem;
  }
  .text-block-7.alignright.diffsized.smaller.marginbottom {
    text-align: center;
  }
  .text-block-7.diffsized {
    width: 100%;
    max-width: 61%;
  }
  .text-block-7.diffsized.addwhite {
    color: #fff;
  }
  .text-block-7.diffsized.addwhite.fullwidth {
    max-width: 100%;
  }
  .text-block-7.diffsized.addwhite.groups {
    max-width: none;
    margin-bottom: 0rem;
  }
  .text-block-7.nomargin {
    margin-bottom: 0rem;
  }
  .imagetextsection {
    padding-top: 30rem;
    padding-bottom: 5rem;
    padding-left: 40px;
    background-image: url("/images/Woman-Skydiving.png");
    background-position: 100% 27%;
  }
  .mainsectiondream {
    margin-bottom: 0rem;
    padding-top: 5rem;
    padding-bottom: 5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    background-position: 50% 0%;
    background-size: 100%;
    background-attachment: scroll;
  }
  .grid-3.desktop {
    display: none;
    grid-auto-columns: 1fr;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    -ms-grid-rows: auto auto;
    grid-template-rows: auto auto;
  }
  .grid-3.desktop.nobottommargin {
    display: block;
    max-width: 500px;
  }
  .grid-3.desktop.diffbottommargin {
    display: block;
  }
  .grid-3.desktop.diffbottommargin.hotelgrid {
    max-width: 500px;
  }
  .dreamdiv.diffpadding {
    margin-bottom: 1rem;
  }
  .dreamdiv.hotelbackground {
    margin-bottom: 1rem;
  }
  .dreamdiv.hotelbackground.gladbeck {
    margin-bottom: 1rem;
    padding-right: 10px;
    padding-left: 10px;
  }
  .dreamdiv.hotelbackground.moers {
    margin-bottom: 1rem;
    padding-right: 10px;
    padding-left: 10px;
  }
  .dreamdiv.hotelbackground.chillten {
    margin-bottom: 1rem;
    padding-right: 10px;
    padding-left: 10px;
  }
  .dreamdiv.hotelbackground.parkhotel {
    margin-bottom: 1rem;
    padding-right: 10px;
    padding-left: 10px;
  }
  .dreamdiv.hotelbackground.schmudde {
    margin-bottom: 1rem;
    padding-right: 10px;
    padding-left: 10px;
  }
  .dreamdiv.hotelbackground.rheinruhr {
    padding-right: 10px;
    padding-left: 10px;
  }
  .image {
    margin-bottom: 2rem;
  }
  .mainctablue {
    height: 70px;
    padding-top: 20px;
    padding-bottom: 8px;
    font-size: 2.4rem;
    line-height: 2.187rem;
  }
  .mainctablue.mobile {
    text-align: center;
  }
  .mainctablue.mobile.diffsized {
    height: 56px;
    max-width: 414px;
    padding-top: 15px;
    font-size: 1.75rem;
    line-height: 2.1875rem;
  }
  .div-block-13 {
    max-width: 70%;
    margin-right: auto;
    margin-left: auto;
  }
  .newssection {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
  .grid-4 {
    padding-right: 40px;
    padding-left: 40px;
    grid-auto-flow: row;
    grid-row-gap: 30px;
    grid-template-areas: ".";
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    -ms-grid-rows: auto 30px auto;
    grid-template-rows: auto auto;
  }
  .div-block-14 {
    overflow: hidden;
    width: 100%;
    max-width: none;
    padding-right: 50px;
    padding-left: 50px;
  }
  .bold-text-2 {
    text-align: center;
  }
  .text-block-10 {
    max-width: none;
  }
  .text-block-10.white {
    max-width: none;
  }
  .div-block-15 {
    padding-left: 0px;
  }
  .div-block-16 {
    width: 100%;
    height: auto;
    max-width: none;
    padding-bottom: 20rem;
    background-position: bottom;
  }
  .textcontainer {
    position: static;
    padding-right: 50px;
    padding-left: 50px;
  }
  .text-block-11 {
    text-align: center;
  }
  .text-block-11.date {
    text-align: left;
  }
  .booknow {
    margin-bottom: 0rem;
  }
  .booknow.bigger.morepadding.mobile.same {
    height: 55px;
    padding-top: 14px;
    font-size: 1.8rem;
    line-height: 2.187rem;
  }
  .booknow.blue {
    text-align: center;
  }
  .booknow.blue.mobile {
    height: 55px;
    padding-top: 14px;
    font-size: 1.8rem;
    line-height: 2.187rem;
  }
  .booknow.blue.mobile.info {
    width: 100%;
    max-width: 300px;
    margin-right: auto;
    margin-left: auto;
  }
  .booknow.blue.height.mobilemargin {
    margin-bottom: 2rem;
  }
  .booknow.blue.shadow.same {
    height: 3.4375rem;
    padding-top: 14px;
    font-size: 1.8rem;
    line-height: 2.187rem;
  }
  .booknow.inverse.mobile {
    margin-right: 0rem;
    margin-bottom: 0.5rem;
    text-align: center;
  }
  .booknow.inverse.mobile.border {
    border-style: solid;
    border-width: 1px;
    border-color: #0094c8;
  }
  .booknow.inverse.mobile.info {
    width: 100%;
    max-width: 300px;
    margin-right: auto;
    margin-left: auto;
  }
  .booknow.inverse.mobile.info.viernheim {
    border-style: solid;
    border-width: 1px;
    border-color: #0094c8;
  }
  .booknow.mobilemargin {
    margin-bottom: 2rem;
  }
  .reviewssection {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
  .mainuniqueadventure {
    padding-bottom: 15rem;
  }
  .mainuniqueadventure.hotel {
    padding-bottom: 5rem;
  }
  .div-block-18.adventurecontainer {
    margin-bottom: -150px;
  }
  .image-3 {
    width: 100%;
  }
  .grid-5.desktop {
    display: none;
  }
  .grid-5.mobile {
    display: -ms-grid;
    display: grid;
    grid-auto-columns: 1fr;
    grid-column-gap: 30px;
    grid-row-gap: 31px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    -ms-grid-rows: auto auto;
    grid-template-rows: auto auto;
  }
  .div-block-20.mobile {
    position: relative;
    margin-bottom: 2rem;
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  .newslettersection {
    display: none;
  }
  .form-2 {
    max-width: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .submitbutton {
    display: inline;
    width: 100%;
    height: 70px;
    padding-top: 20px;
    padding-bottom: 8px;
    font-size: 2.4rem;
  }
  .mainsectiontechnical {
    padding-bottom: 5rem;
  }
  .grid-6 {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .moreinfos {
    width: 60%;
    text-align: center;
  }
  .image-5 {
    max-width: 90%;
  }
  .image-5.desktop {
    display: none;
  }
  .form-block.marginbottom {
    margin-bottom: 4.5rem;
  }
  .footersocialtext.alignright {
    margin-right: 0rem;
    text-align: right;
  }
  .text-block-13.diffheight {
    height: auto;
    font-size: 1.5rem;
  }
  .text-block-13.diffheight.mobile {
    text-align: left;
  }
  .div-block-22 {
    margin-bottom: 1.5rem;
  }
  .div-block-23.diffaligned {
    padding-top: 0rem;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .div-block-23.diffaligned {
    padding-top: 0rem;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
  }
  .footerbutton {
    text-align: center;
  }
  .footerbutton.diffsized {
    max-width: 100%;
    margin-bottom: 3.125rem;
  }
  .footerbutton.diffsized.mobile {
    width: 100%;
    max-width: 70%;
    margin-right: auto;
    margin-left: auto;
  }
  .text-block-16.centered {
    padding-top: 1rem;
    border-top: 1px solid #fff;
    text-align: center;
  }
  .div-block-24.mobile {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .headersection {
    padding-top: 20rem;
    padding-bottom: 5rem;
    background-image: url("/images/Header-Image-Appointment_1Header Image Appointment.png");
  }
  .headersection.beginners {
    margin-bottom: 0rem;
    padding-top: 20rem;
    background-image: url("/images/Mobile-Header.png");
    background-size: cover;
  }
  .headersection.groups {
    margin-bottom: 0rem;
    padding-top: 15rem;
    background-position: 0% 100%;
  }
  .headersection.proflyermain {
    margin-bottom: 0rem;
    background-position: 0% 0%;
  }
  .headersection.flightclub {
    background-position: 30% 50%;
  }
  .div-block-29 {
    position: relative;
    top: 50px;
  }
  .buyticketsectiondesktop {
    display: none;
  }
  .tabcontent.nobackground {
    padding-top: 0px;
  }
  .div-block-30 {
    display: none;
  }
  .allinclusivesection {
    padding: 5rem 40px;
  }
  .grid-8 {
    grid-row-gap: 30px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .div-block-38 {
    width: auto;
  }
  .div-block-38.nobackground {
    width: auto;
  }
  .icon {
    width: 50px;
    height: 50px;
  }
  .image-13 {
    position: relative;
    z-index: 500;
    width: 100%;
    height: auto;
    max-width: none;
    -o-object-fit: fill;
    object-fit: fill;
  }
  .div-block-39 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    max-width: 70%;
    margin-right: auto;
    margin-left: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .div-block-39.mobile {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding-top: 150px;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }
  .topbutton {
    width: 100%;
    height: 70px;
    max-width: none;
    margin-bottom: 1rem;
    padding-top: 18px;
    border-style: solid;
    border-width: 3px;
    border-color: #fff;
    border-radius: 27.72px;
    background-color: transparent;
    font-family: komu-a, sans-serif;
    font-size: 2.4rem;
    line-height: 2.1875rem;
    text-align: center;
    letter-spacing: 1.87px;
  }
  .topbutton.colored {
    background-color: #fff;
    color: #0094c8;
  }
  .div-block-40 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    text-decoration: none;
  }
  .vouchertext {
    color: #fff;
    font-size: 2rem;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
  }
  .image-14 {
    width: 29px;
    margin-right: 1rem;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    -ms-flex: 0 auto;
    flex: 0 auto;
  }
  .bold-text-10 {
    font-size: 1.8rem;
    font-weight: 800;
  }
  .vouchersectionmobile {
    display: block;
    margin: 5rem 40px;
    background-color: #fff;
  }
  .div-block-41 {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .div-block-42 {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    padding-right: 0px;
    padding-bottom: 0px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .div-block-43 {
    width: 48%;
    padding-top: 187px;
    background-image: url("/images/voucher-right-shadowless.png");
    background-position: 0px 0px;
    background-size: cover;
  }
  .div-block-43.shadow {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    background-image: none;
  }
  .div-block-44 {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    height: auto;
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .div-block-45 {
    position: relative;
    max-width: 70%;
    margin-right: auto;
    margin-left: auto;
  }
  .text-block-27 {
    position: absolute;
    left: 0%;
    top: 45%;
    right: 0%;
    bottom: 0%;
    margin-right: auto;
    margin-left: auto;
    font-family: komu-a, sans-serif;
    color: #fff;
    font-size: 3.5rem;
    line-height: 2rem;
    text-align: center;
  }
  .text-block-28 {
    position: absolute;
    left: auto;
    top: auto;
    right: 22%;
    bottom: 30%;
    font-family: komu-a, sans-serif;
    color: #0e0f11;
    font-size: 2.5rem;
    line-height: 2.3rem;
    text-align: right;
  }
  .text-block-28.right {
    left: 22%;
    top: auto;
    right: 0%;
    bottom: 30%;
    text-align: left;
  }
  .grid-9 {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .grid-9.mobile {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-right: auto;
    margin-left: auto;
    grid-auto-columns: 1fr;
    -ms-grid-columns: 1.5fr;
    grid-template-columns: 1.5fr;
    -ms-grid-rows: auto auto;
    grid-template-rows: auto auto;
  }
  .sectiondreammobile {
    display: inline-block;
    grid-auto-columns: 1fr;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    -ms-grid-rows: auto auto;
    grid-template-rows: auto auto;
  }
  .div-block-59.skydive {
    margin-bottom: 2rem;
    border-radius: 7.04px;
    background-color: #fff;
    box-shadow: 1px 1px 20px 6px rgba(0, 0, 0, 0.3);
  }
  .div-block-59.skydive.last {
    margin-bottom: 5rem;
  }
  .question {
    padding: 2rem;
  }
  .heading-faq {
    width: 90%;
    font-size: 20px;
  }
  .heading-faq.skydive {
    margin-right: 2rem;
    font-family: komu-a, sans-serif;
    color: #0e0f11;
    font-size: 2.5rem;
    line-height: 2rem;
    font-weight: 400;
  }
  .heading-faq.menue {
    font-family: komu-a, sans-serif;
    color: #fff;
    font-size: 4rem;
    line-height: 4.5rem;
  }
  .hidden-text {
    padding-top: 0rem;
    padding-right: 0rem;
    padding-left: 0rem;
    border-top: 1px none #979797;
  }
  .paragraph-small._3 {
    font-size: 1.5rem;
    line-height: 1.812rem;
  }
  .paragraph-small._3 {
    width: 90%;
    font-size: 16px;
  }
  .image-15 {
    width: 100%;
    max-width: 80px;
    margin-right: 2rem;
  }
  .image-15.diffsized {
    max-width: 90px;
  }
  .div-block-60 {
    padding-top: 20px;
    padding-right: 2rem;
    padding-left: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.2);
  }
  .div-block-61 {
    position: absolute;
    left: 0%;
    top: auto;
    right: 0%;
    bottom: -30px;
  }
  .div-block-62 {
    position: absolute;
    left: 0%;
    top: auto;
    right: 0%;
    bottom: -30px;
  }
  .div-block-63 {
    position: absolute;
    left: 0%;
    top: auto;
    right: 0%;
    bottom: -30px;
  }
  .div-block-64 {
    position: absolute;
    left: 0%;
    top: auto;
    right: 0%;
    bottom: -30px;
  }
  .image-16 {
    width: 97%;
    margin-right: auto;
    margin-left: auto;
  }
  .newslettersectionmobile {
    position: relative;
    display: block;
    padding-right: 40px;
    padding-bottom: 5rem;
    padding-left: 40px;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#b2c8d3), to(#d8eaf2));
    background-image: linear-gradient(180deg, #b2c8d3, #d8eaf2);
  }
  .newslettersectionmobile.contact {
    padding-top: 5rem;
  }
  .image-17 {
    position: static;
    left: 2%;
    top: -120px;
    right: 0%;
    bottom: 0%;
    margin-left: 2rem;
  }
  .image-17.smaller {
    display: block;
  }
  .formcontainermobile {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .form-block-2 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 70%;
    max-width: none;
    margin-right: auto;
    margin-bottom: 0px;
    margin-left: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .error-message {
    position: relative;
  }
  .div-block-65 {
    position: relative;
    top: -150px;
    margin-bottom: -150px;
    padding-bottom: 2rem;
    padding-left: 0px;
  }
  .div-block-66 {
    width: 100%;
    height: auto;
    max-width: 80px;
    margin-right: 2rem;
    padding-right: 0px;
    padding-bottom: 0px;
  }
  .div-block-67 {
    width: 100%;
    height: auto;
    max-width: 80px;
    margin-right: 2rem;
  }
  .div-block-68 {
    width: 100%;
    height: auto;
    max-width: 80px;
    margin-right: 2rem;
  }
  .div-block-69 {
    width: 100%;
    height: auto;
    max-width: 80px;
    margin-right: 2rem;
  }
  .image-18 {
    display: inline;
  }
  .footermobile {
    display: block;
  }
  .footertop {
    padding: 2.5rem 40px;
    background-color: #0094c8;
    box-shadow: inset 8px 8px 20px -8px rgba(0, 0, 0, 0.2);
  }
  .footermiddle {
    padding: 4rem 40px;
    background-color: #00759e;
  }
  .footerbottom {
    padding: 4rem 40px;
    background-color: #0094c8;
  }
  .div-block-70 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .div-block-71 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 3rem;
    padding-bottom: 2.5rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    border-bottom: 1px solid #fff;
  }
  .div-block-72 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 600px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }
  .grid-10 {
    -ms-grid-columns: 0.75fr 1fr;
    grid-template-columns: 0.75fr 1fr;
    -ms-grid-rows: auto;
    grid-template-rows: auto;
  }
  .bold-text-11 {
    font-weight: 800;
  }
  .text-span-2 {
    font-size: 1.5rem;
    font-weight: 800;
    text-transform: uppercase;
  }
  .bottomlinksmobile {
    margin-bottom: 2.5rem;
    text-align: center;
  }
  .image-19 {
    width: 100%;
    max-width: 100px;
  }
  .image-20 {
    width: 100%;
    max-width: 100px;
  }
  .image-21 {
    width: 100%;
    max-width: 100px;
  }
  .image-22 {
    width: 100px;
    max-width: 100px;
  }
  .image-24 {
    position: relative;
    left: -50px;
  }
  .menu-button-2:hover {
    color: #93c23c;
  }
  .menu-button-2.w--open {
    background-color: transparent;
    color: #93c23c;
  }
  .container-3 {
    padding-right: 24px;
    padding-left: 24px;
  }
  .container-3.container-navbar {
    padding: 0px 10px 0px 30px;
  }
  .div-block-73 {
    display: block;
    padding-top: 20px;
  }
  .navbar-buttons-2 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-left: 0px;
    padding-top: 20px;
    padding-bottom: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .container-26 {
    margin-top: 60px;
  }
  .div-block-74 {
    margin-top: 60px;
  }
  .button-text-2 {
    font-size: 24px;
    line-height: 24px;
  }
  .brand-logo-2 {
    margin-right: 0px;
    padding-left: 0px;
  }
  .div-block-75 {
    margin-right: 0px;
  }
  .button-3.medium {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 500px;
  }
  .button-3.medium.menu {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .button-3.medium.secondary {
    display: none;
    margin-right: auto;
    margin-left: auto;
  }
  .button-3.medium.secondary.menu {
    display: none;
  }
  .nav-link-2 {
    margin-right: 0px;
    padding-top: 20px;
    padding-right: 0px;
    font-size: 24px;
    line-height: 24px;
    text-align: center;
  }
  .icon-7 {
    color: #0b4f6b;
    font-size: 40px;
  }
  .navbar-menu-2 {
    padding-right: 16px;
    padding-bottom: 16px;
    padding-left: 16px;
    background-color: #fff;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.19);
    text-align: center;
  }
  .container-27 {
    margin-top: 60px;
  }
  .container-28 {
    margin-top: 60px;
  }
  .buyticketsectionmobile {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding: 5rem 40px;
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    background-image: url("/images/Mobile-Ticket-Container_1Mobile Ticket Container.png");
    background-position: 0px 0px;
    background-size: cover;
  }
  .div-block-77 {
    display: block;
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    grid-auto-columns: 1fr;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    -ms-grid-rows: auto auto;
    grid-template-rows: auto auto;
  }
  .div-block-78 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding-top: 0rem;
    padding-bottom: 5rem;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .div-block-78.background {
    background-image: url("/images/Bestseller.svg");
    background-position: 50% 0%;
    background-size: 199px;
    background-repeat: no-repeat;
  }
  .slider {
    display: block;
    height: auto;
    background-color: transparent;
  }
  .div-block-79 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding-top: 0px;
    padding-bottom: 5rem;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .div-block-79.background {
    background-image: url("/images/Bestseller.svg");
    background-position: 50% 0%;
    background-size: 50%;
    background-repeat: no-repeat;
  }
  .dropdown {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    max-width: 90%;
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    border-style: solid;
    border-width: 1px;
    border-color: #13294b;
    border-radius: 5px;
  }
  .dropdown-toggle {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    border-style: solid;
    border-width: 1px;
    border-color: #13294b;
    border-radius: 5px;
  }
  .dropdown-toggle.w--open {
    border-style: solid;
    border-width: 1px;
    border-color: #13294b;
    border-radius: 5px;
  }
  .text-block-29 {
    clear: none;
    font-family: komu-a, sans-serif;
    font-size: 2rem;
    letter-spacing: 1.5px;
  }
  .div-block-80 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .image-26 {
    height: 35px;
    margin-right: 1rem;
  }
  .dropdown-list {
    top: 91px;
    border-style: solid;
    border-width: 1px;
    border-color: #13294b;
    border-radius: 5px;
    background-color: #fff;
  }
  .dropdown-link {
    padding-left: 75px;
    font-family: komu-a, sans-serif;
    font-size: 2rem;
    letter-spacing: 1.5px;
  }
  .dropdown-link.one {
    background-image: url("/images/Icon-Person.svg");
    background-position: 3% 50%;
    background-size: 35px;
    background-repeat: no-repeat;
  }
  .dropdown-link.two {
    background-image: url("/images/Icon-two-Persons.svg");
    background-position: 2% 41%;
    background-size: 50px;
    background-repeat: no-repeat;
  }
  .dropdown-link.family {
    background-image: url("/images/Icon-Family.svg");
    background-position: 2% 50%;
    background-size: 50px;
    background-repeat: no-repeat;
  }
  .dropdown-link.courses {
    background-image: url("/images/Icon-Courses.svg");
    background-position: 3% 50%;
    background-size: 40px;
    background-repeat: no-repeat;
  }
  .dropdown-link.groups {
    background-image: url("/images/Icon-Groups.svg");
    background-position: 3% 50%;
    background-size: 40px;
    background-repeat: no-repeat;
  }
  .dropdown-link.proflyer {
    background-image: url("/images/Icon-Proflyer.svg");
    background-position: 3% 50%;
    background-size: 40px;
    background-repeat: no-repeat;
  }
  .dropdown-link.friday {
    background-image: url("/images/Icon-Friday-new.svg");
    background-position: 3% 50%;
    background-size: 40px;
    background-repeat: no-repeat;
  }
  .dropdown-link.friday {
    background-image: url("/images/icon-weekday.svg");
    background-position: 3% 50%;
    background-size: 40px;
    background-repeat: no-repeat;
  }
  .dropdown-2 {
    width: 100%;
  }
  .mask {
    width: 100%;
    max-width: none;
    margin-right: auto;
    margin-left: auto;
  }
  .right-arrow {
    display: block;
  }
  .div-block-81 {
    padding-top: 0px;
    padding-bottom: 5rem;
  }
  .column-3 {
    padding-top: 60px;
    padding-right: 0px;
    padding-left: 0px;
  }
  .div-block-49 {
    margin-top: 20px;
  }
  .column-2 {
    padding-right: 0px;
    padding-left: 0px;
  }
  .text-agb {
    font-size: 16px;
  }
  .columns {
    padding-right: 10px;
    padding-left: 10px;
  }
  .section-12.newsletter {
    margin-bottom: -100px;
  }
  .heading-8 {
    font-size: 24px;
  }
  .text-field-2 {
    font-size: 18px;
  }
  .text-field-2.half {
    font-size: 18px;
  }
  .div-block-83 {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .input-2.medium {
    max-width: none;
    margin-bottom: 3rem;
  }
  .input-2.medium.mobile {
    max-width: 70%;
  }
  .text-block-32.centered {
    padding-top: 1rem;
    border-top: 1px solid #fff;
    text-align: center;
  }
  .footerbutton-2 {
    text-align: center;
  }
  .footerbutton-2.diffsized {
    max-width: 100%;
    margin-bottom: 3.125rem;
  }
  .footerbutton-2.diffsized.mobile {
    width: 100%;
    max-width: 70%;
    margin-right: auto;
    margin-left: auto;
  }
  .text-block-33.diffheight {
    height: auto;
    font-size: 1.5rem;
  }
  .text-block-33.diffheight.mobile {
    text-align: right;
  }
  .booknow-2 {
    margin-bottom: 0rem;
  }
  .footersocialtext-2.alignright {
    margin-right: 0rem;
    text-align: right;
  }
  .footer-4 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding-right: 0px;
    padding-left: 0px;
  }
  .component-wrapper-3 {
    display: none;
  }
  .sm-icon-link-2 {
    margin-right: 2rem;
  }
  .sm-icon-link-2.last {
    height: 30px;
    margin-right: 0px;
  }
  .sm-icon-link-2.last.youtube {
    width: 35px;
    background-image: url("/images/YT_new.svg");
    background-size: contain;
  }
  .sm-icon-link-2.facebook {
    width: 25px;
    height: 30px;
    margin-right: 1rem;
    padding-right: 0px;
    padding-bottom: 0px;
    background-image: url("/images/Facebook-logo-Mobile.svg");
    background-position: 50% 50%;
    background-size: contain;
    background-repeat: no-repeat;
  }
  .sm-icon-link-2.instagram {
    height: 30px;
    margin-right: 1rem;
  }
  .vertical-menu-title-2 {
    margin-bottom: 8px;
  }
  .vertical-menu-title-2.centered {
    margin-bottom: 1.5rem;
    line-height: 1.5rem;
    text-align: center;
  }
  .mobile-overlay {
    position: fixed;
    left: 0%;
    top: 0%;
    right: 0%;
    bottom: 0%;
    z-index: 500;
    display: block;
    overflow: hidden;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#0094c8), to(#6ad5cb));
    background-image: linear-gradient(180deg, #0094c8, #6ad5cb);
  }
  .div-block-87 {
    width: auto;
    height: 100%;
    margin-right: auto;
    margin-left: auto;
    padding-right: 40px;
    padding-left: 40px;
    font-size: 0rem;
    line-height: 0;
  }
  .div-block-88 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .div-block-89 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .navbutton-close {
    width: 50px;
    height: 50px;
    background-color: transparent;
    background-image: url("/images/close.svg");
    background-position: 0px 0px;
    background-size: cover;
  }
  .link-block {
    position: relative;
    z-index: 500;
    background-image: url("/images/close.svg");
    background-position: 0px 0px;
    background-size: cover;
  }
  .button-4 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 40px;
    height: 30px;
    margin-top: 29px;
    padding: 0px;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    background-color: transparent;
    background-image: url("/images/close.svg");
    background-position: 0px 0px;
    background-size: contain;
    background-repeat: no-repeat;
  }
  .button-5 {
    position: absolute;
    left: auto;
    top: 40px;
    right: 40px;
    bottom: auto;
    z-index: 900;
    display: block;
    width: 40px;
    height: 30px;
    padding: 0px;
    background-color: transparent;
    background-image: url("/images/Hamburger.svg");
    background-position: 50% 50%;
    background-size: contain;
    background-repeat: no-repeat;
  }
  .div-block-90 {
    position: fixed;
    left: auto;
    top: 40px;
    right: 40px;
    bottom: auto;
    z-index: 900;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 40px;
    height: 30px;
    padding-right: 0px;
    padding-bottom: 0px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }
  .div-block-91 {
    width: 40px;
    height: 5px;
    padding-right: 0px;
    padding-bottom: 0px;
    background-image: url("/images/hamburger-line.svg");
    background-position: 0px 0px;
    background-size: contain;
    background-repeat: no-repeat;
  }
  .list-2 {
    padding-left: 0rem;
  }
  .div-block-92 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    padding-top: 10%;
    padding-bottom: 10%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .list-item-2 {
    list-style-type: none;
  }
  .mobilelink {
    margin-bottom: 0.5rem;
    font-family: komu-a, sans-serif;
    color: #fff;
    font-size: 4rem;
    line-height: 4.5rem;
    text-decoration: none;
    text-transform: uppercase;
  }
  .mobilelink.last {
    display: none;
    margin-bottom: 1.5rem;
  }
  .div-block-93 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    border-bottom: 1px solid #fff;
  }
  .div-block-94 {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
  .text-block-35 {
    color: #fff;
    font-size: 1.7rem;
    line-height: 2.1875rem;
    font-weight: 800;
    text-transform: uppercase;
  }
  .div-block-95 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 1rem;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    text-decoration: none;
  }
  .image-29 {
    width: 25px;
    margin-right: 1rem;
  }
  .text-block-36 {
    margin-bottom: 0.5rem;
    color: #fff;
    font-size: 1.25rem;
    line-height: 1.25rem;
    font-weight: 400;
    text-align: right;
    text-transform: uppercase;
  }
  .div-block-96 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
  .link-block-2 {
    width: 25px;
    height: 30px;
    margin-left: 2rem;
    padding-right: 0px;
    padding-bottom: 0px;
    background-image: url("https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg");
    background-position: 0px 0px;
    background-size: auto;
  }
  .link-block-2.facebook {
    background-image: url("/images/Facebook-logo-Mobile.svg");
    background-position: 50% 50%;
    background-size: contain;
    background-repeat: no-repeat;
  }
  .link-block-2.instagram {
    background-image: url("/images/instagram.svg");
    background-position: 50% 50%;
    background-size: contain;
    background-repeat: no-repeat;
  }
  .link-block-2.youtube {
    background-image: url("/images/YT.svg");
    background-position: 50% 50%;
    background-size: contain;
    background-repeat: no-repeat;
  }
  .location-wrapper {
    max-width: 90%;
    padding: 5rem 20px 4.5rem;
  }
  .div-block-99 {
    max-width: 60%;
  }
  .div-block-100.lessmargin {
    padding-right: 40px;
    padding-bottom: 5rem;
    padding-left: 40px;
  }
  .div-block-100.bottommargin {
    padding-bottom: 15rem;
  }
  .div-block-100.lessbottompadding {
    padding-bottom: 5rem;
  }
  .div-block-100.lessbottompadding.groups {
    padding-bottom: 5rem;
  }
  .giftsection {
    padding-right: 40px;
    padding-left: 40px;
  }
  .div-block-102 {
    background-position: 50% 50%;
    background-size: cover;
  }
  .imagetextctasection {
    display: none;
  }
  .proflyer {
    background-image: url("/images/Proflyer-Mobile-Background-New.jpg");
    background-position: 0px 0px;
    background-size: cover;
  }
  .image-32 {
    top: -13%;
    max-width: 90%;
  }
  .imagetextctasectionmobile {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding: 5rem 40px;
    background-image: url("/images/Friends-Windtunnel.jpg");
    background-position: 50% 50%;
    background-size: cover;
    background-repeat: no-repeat;
  }
  .imagetextctasectionmobile.bottrop {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-image: url("/images/kontakt-bottrop.jpg");
    background-position: 70% 50%;
  }
  .imagetextctasectionmobile.viernheim {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-image: url("/images/Viernheim-neues-Bild.jpg"), url("/images/Friends-Windtunnel.jpg");
    background-position: 100% 0%, 50% 50%;
    background-size: 1600px, cover;
    background-repeat: repeat, no-repeat;
  }
  .imagetextctasectionmobile.groups {
    background-image: url("/images/gemeinsam-hoch-hinaus.jpg");
    background-position: 100% 50%;
    background-size: cover;
  }
  .imagetextctasectionmobile.proflyersite {
    padding-top: 20rem;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-image: url("/images/ausbildung-background.jpg");
  }
  .imagetextctasectionmobile.viernheimmainpage {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-image: none;
  }
  .div-block-104 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .bolder {
    font-weight: 800;
  }
  .locationcontainer.shadow {
    top: 0px;
  }
  .locationcontainer.shadow.proflyersite {
    border-radius: 0px;
  }
  .div-block-105 {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .openinghours.shadow.right {
    width: 100%;
  }
  .openinghours.shadow.border {
    width: 100%;
    margin-right: 0rem;
    margin-bottom: 2rem;
  }
  .image-40 {
    display: none;
  }
  .image-41 {
    display: block;
  }
  .image-42 {
    display: block;
  }
  .image-43 {
    display: none;
  }
  .image-44 {
    display: block;
  }
  .image-45 {
    display: none;
  }
  .image-46 {
    display: block;
  }
  .image-47 {
    display: none;
  }
  .faqs {
    padding-right: 40px;
    padding-left: 40px;
  }
  .hidden-text-2.menue {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding-left: 40px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .div-block-58.faq {
    padding-right: 0px;
    padding-left: 0px;
  }
  .question-2.menue {
    padding-top: 0px;
  }
  .contactformsection {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
  .contactformcontainer {
    padding-right: 40px;
    padding-left: 40px;
  }
  .select-field-2 {
    font-size: 18px;
  }
  .text-block-38 {
    font-size: 18px;
  }
  .textarea-2 {
    font-size: 18px;
  }
  .div-block-106 {
    padding-right: 40px;
    padding-left: 40px;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .listcontainer {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .div-block-107.left {
    width: 100%;
    margin-bottom: 1rem;
    border-right-style: none;
  }
  .div-block-107.right {
    width: 100%;
    padding-left: 0rem;
  }
  .link-9 {
    color: #fff;
  }
  .div-block-108 {
    padding-right: 40px;
    padding-left: 40px;
  }
  .partnersection {
    background-size: cover;
  }
  .backgroundsectionpartner {
    padding-right: 80px;
    padding-left: 80px;
  }
  .hotelcontainer {
    margin-bottom: 5rem;
  }
  .covinfo.shadow {
    margin-bottom: 2rem;
  }
  .dropdown-4 {
    left: auto;
    width: 100%;
    font-family: komu-a, sans-serif;
    color: #fff;
    font-size: 4rem;
    line-height: 4.5rem;
  }
  .icon-8 {
    max-height: 4px;
    max-width: 40px;
    color: #fff;
  }
  .dropdown-toggle-3 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-left: 0px;
    padding: 0px;
  }
  .text-block-42 {
    margin-right: 1rem;
    color: #fff;
  }
  .dropdown-list-3 {
    background-color: transparent;
  }
  .dropdown-list-3.w--open {
    background-image: -webkit-gradient(linear, left top, left bottom, from(#0094c8), to(#69d5cb));
    background-image: linear-gradient(180deg, #0094c8, #69d5cb);
  }
  .mobilelinknav {
    padding-left: 40px;
    color: #fff;
    font-size: 3rem;
    line-height: 3.5rem;
  }
  .link-10 {
    font-family: komu-a, sans-serif;
    color: #fff;
    font-size: 3rem;
    line-height: 3.5rem;
    text-decoration: none;
  }
  .icon-9 {
    color: #aaafb6;
  }
  .icon-10 {
    color: #838d95;
  }
}
@media screen and (max-width: 767px) {
  .headersection.easter {
    background-position: 20% 0px;
  }
  h3 {
    margin-top: 16px;
    margin-bottom: 8px;
  }
  h4 {
    margin-top: 16px;
    margin-bottom: 8px;
  }
  h5 {
    margin-top: 12px;
    margin-bottom: 4px;
  }
  .container {
    padding-right: 40px;
    padding-left: 40px;
  }
  .container.container-navbar {
    padding-top: 0px;
    padding-bottom: 0px;
  }
  .container.container-box-section {
    max-width: none;
    padding-right: 0px;
    padding-left: 0px;
  }
  .heading.xl {
    margin-bottom: 12px;
  }
  .heading.l {
    margin-bottom: 8px;
  }
  .section-title {
    width: 100%;
  }
  .section-title.centered {
    width: 100%;
  }
  .wrapper-m {
    padding-bottom: 0px;
  }
  .wrapper-m.info {
    padding-bottom: 0rem;
  }
  .l-g-3-col {
    grid-row-gap: 24px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    -ms-grid-rows: auto auto auto;
    grid-template-rows: auto auto auto;
  }
  .l-g-3-col.lt-g-2-col {
    grid-row-gap: 16px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .l-g-4-col {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .button.small.cookies {
    margin-top: 16px;
    margin-left: 0px;
    -webkit-align-self: stretch;
    -ms-flex-item-align: stretch;
    -ms-grid-row-align: stretch;
    align-self: stretch;
  }
  .l-g-2-col {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .cta-wrapper {
    width: 100%;
  }
  .section.beginners {
    padding-right: 0px;
    padding-left: 0px;
  }
  .section.events {
    background-position: 80% 50%;
    background-repeat: no-repeat;
  }
  .section.flightclub {
    padding-top: 5rem;
  }
  .footer {
    display: none;
    padding: 48px 0px 0px;
  }
  .footer-grid {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    -ms-grid-rows: auto auto;
    grid-template-rows: auto auto;
  }
  .footer-logo {
    padding-left: 0px;
  }
  .footer-bottom {
    margin-top: 24px;
    padding-top: 24px;
    padding-bottom: 24px;
  }
  .footer-grid-2 {
    -ms-grid-columns: 1.5fr 1fr;
    grid-template-columns: 1.5fr 1fr;
    -ms-grid-rows: auto auto;
    grid-template-rows: auto auto;
  }
  .footer-logo-2 {
    padding-left: 0px;
  }
  .footer-grid-3 {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    -ms-grid-rows: auto auto;
    grid-template-rows: auto auto;
  }
  .footer-top-2 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .footer-2 {
    padding: 32px 0px;
  }
  .feature-block-actions-wrapper {
    padding-bottom: 16px;
  }
  .cta-section-form-wrapper {
    width: 360px;
    margin-right: auto;
    margin-left: auto;
  }
  .footer-menu-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .component-wrapper {
    margin-top: 0px;
    margin-bottom: 0px;
    padding: 0px;
  }
  .component-wrapper-label {
    top: -32px;
  }
  .style-guide-page-header {
    padding: 24px 0px 0px;
  }
  .grid-styleguide---buttons {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    -ms-grid-rows: auto auto;
    grid-template-rows: auto auto;
  }
  .style-guide-page-header-text {
    padding-bottom: 16px;
  }
  .style-guide-page-header-navigation {
    top: 60px;
  }
  .style-guide-page-header-navigation.docsui {
    top: 60px;
  }
  .navbar-vertical-content-wrapper {
    width: 85%;
  }
  .navbar-vertical-bg {
    width: 25%;
  }
  .nav-tab {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }
  .sh-p-0 {
    padding: 0px;
  }
  .sh-p-y-0 {
    padding-top: 0px;
    padding-bottom: 0px;
  }
  .sh-p-x-0 {
    padding-right: 0px;
    padding-left: 0px;
  }
  .sh-p-t-0 {
    padding-top: 0px;
  }
  .sh-p-r-0 {
    padding-right: 0px;
  }
  .sh-p-b-0 {
    padding-bottom: 0px;
  }
  .sh-p-l-0 {
    padding-left: 0px;
  }
  .sh-p-4 {
    padding: 4px;
  }
  .sh-p-y-4 {
    padding-top: 4px;
    padding-bottom: 4px;
  }
  .sh-p-x-4 {
    padding-right: 4px;
    padding-left: 4px;
  }
  .sh-p-t-4 {
    padding-top: 4px;
  }
  .sh-p-r-4 {
    padding-right: 4px;
  }
  .sh-p-b-4 {
    padding-bottom: 4px;
  }
  .sh-p-l-4 {
    padding-left: 4px;
  }
  .sh-p-8 {
    padding: 8px;
  }
  .sh-p-y-8 {
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .sh-p-x-8 {
    padding-right: 8px;
    padding-left: 8px;
  }
  .sh-p-t-8 {
    padding-top: 8px;
  }
  .sh-p-r-8 {
    padding-right: 8px;
  }
  .sh-p-b-8 {
    padding-bottom: 8px;
  }
  .sh-p-l-8 {
    padding-left: 8px;
  }
  .sh-p-12 {
    padding: 12px;
  }
  .sh-p-y-12 {
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .sh-p-x-12 {
    padding-right: 12px;
    padding-left: 12px;
  }
  .sh-p-t-12 {
    padding-top: 12px;
  }
  .sh-p-r-12 {
    padding-right: 12px;
  }
  .sh-p-b-12 {
    padding-bottom: 12px;
  }
  .sh-p-l-12 {
    padding-left: 12px;
  }
  .sh-p-16 {
    padding: 16px;
  }
  .sh-p-y-16 {
    padding-top: 16px;
    padding-bottom: 16px;
  }
  .sh-p-x-16 {
    padding-right: 16px;
    padding-left: 16px;
  }
  .sh-p-t-16 {
    padding-top: 16px;
  }
  .sh-p-r-16 {
    padding-right: 16px;
  }
  .sh-p-b-16 {
    padding-bottom: 16px;
  }
  .sh-p-l-16 {
    padding-left: 16px;
  }
  .sh-p-24 {
    padding: 24px;
  }
  .sh-p-y-24 {
    padding-top: 24px;
    padding-bottom: 24px;
  }
  .sh-p-x-24 {
    padding-right: 24px;
    padding-left: 24px;
  }
  .sh-p-t-24 {
    padding-top: 24px;
  }
  .sh-p-r-24 {
    padding-right: 24px;
  }
  .sh-p-l-24 {
    padding-left: 24px;
  }
  .sh-p-b-24 {
    padding-bottom: 24px;
  }
  .sh-p-32 {
    padding: 32px;
  }
  .sh-p-y-32 {
    padding-top: 32px;
    padding-bottom: 32px;
  }
  .sh-p-x-32 {
    padding-right: 32px;
    padding-left: 32px;
  }
  .sh-p-t-32 {
    padding-top: 32px;
  }
  .sh-p-r-32 {
    padding-right: 32px;
  }
  .sh-p-b-32 {
    padding-bottom: 32px;
  }
  .sh-p-l-32 {
    padding-left: 32px;
  }
  .sh-p-48 {
    padding: 48px;
  }
  .sh-p-y-48 {
    padding-top: 48px;
    padding-bottom: 48px;
  }
  .sh-p-x-48 {
    padding-right: 48px;
    padding-left: 48px;
  }
  .sh-p-t-48 {
    padding-top: 48px;
  }
  .sh-p-r-48 {
    padding-right: 48px;
  }
  .sh-p-b-48 {
    padding-bottom: 48px;
  }
  .sh-p-l-48 {
    padding-left: 48px;
  }
  .sh-p-64 {
    padding: 64px;
  }
  .sh-p-y-64 {
    padding-top: 64px;
    padding-bottom: 64px;
  }
  .sh-p-x-64 {
    padding-right: 64px;
    padding-left: 64px;
  }
  .sh-p-t-64 {
    padding-top: 64px;
  }
  .sh-p-r-64 {
    padding-right: 64px;
  }
  .sh-p-l-64 {
    padding-left: 64px;
  }
  .sh-p-b-64 {
    padding-bottom: 64px;
  }
  .sh-p-128 {
    padding: 128px;
  }
  .sh-p-y-128 {
    padding-top: 128px;
    padding-bottom: 128px;
  }
  .sh-p-x-128 {
    padding-right: 128px;
    padding-left: 128px;
  }
  .sh-p-t-128 {
    padding-top: 128px;
  }
  .sh-p-r-128 {
    padding-right: 128px;
  }
  .sh-p-b-128 {
    padding-bottom: 128px;
  }
  .sh-p-l-128 {
    padding-left: 128px;
  }
  .sh-m-0 {
    margin: 0px;
  }
  .sh-m-y-0 {
    margin-top: 0px;
    margin-bottom: 0px;
  }
  .sh-m-x-0 {
    margin-right: 0px;
    margin-left: 0px;
  }
  .sh-m-t-0 {
    margin-top: 0px;
  }
  .sh-m-r-0 {
    margin-right: 0px;
  }
  .sh-m-b-0 {
    margin-bottom: 0px;
  }
  .sh-m-l-0 {
    margin-left: 0px;
  }
  .sh-m-4 {
    margin: 4px;
  }
  .sh-m-y-4 {
    margin-top: 4px;
    margin-bottom: 4px;
  }
  .sh-m-x-4 {
    margin-right: 4px;
    margin-left: 4px;
  }
  .sh-m-t-4 {
    margin-top: 4px;
  }
  .sh-m-r-4 {
    margin-right: 4px;
  }
  .sh-m-b-4 {
    margin-bottom: 4px;
  }
  .sh-m-l-4 {
    margin-left: 4px;
  }
  .sh-m-8 {
    margin: 8px;
  }
  .sh-m-y-8 {
    margin-top: 8px;
    margin-bottom: 8px;
  }
  .sh-m-x-8 {
    margin-right: 8px;
    margin-left: 8px;
  }
  .sh-m-t-8 {
    margin-top: 8px;
  }
  .sh-m-r-8 {
    margin-right: 8px;
  }
  .sh-m-b-8 {
    margin-bottom: 8px;
  }
  .sh-m-l-8 {
    margin-left: 8px;
  }
  .sh-m-12 {
    margin: 12px;
  }
  .sh-m-y-12 {
    margin-top: 12px;
    margin-bottom: 12px;
  }
  .sh-m-x-12 {
    margin-right: 12px;
    margin-left: 12px;
  }
  .sh-m-t-12 {
    margin-top: 12px;
  }
  .sh-m-r-12 {
    margin-right: 12px;
  }
  .sh-m-b-12 {
    margin-bottom: 12px;
  }
  .sh-m-l-12 {
    margin-left: 12px;
  }
  .sh-m-16 {
    margin: 16px;
  }
  .sh-m-y-16 {
    margin-top: 16px;
    margin-bottom: 16px;
  }
  .sh-m-x-16 {
    margin-right: 16px;
    margin-left: 16px;
  }
  .sh-m-t-16 {
    margin-top: 16px;
  }
  .sh-m-r-16 {
    margin-right: 16px;
  }
  .sh-m-b-16 {
    margin-bottom: 16px;
  }
  .sh-m-l-16 {
    margin-left: 16px;
  }
  .sh-m-24 {
    margin: 24px;
  }
  .sh-m-y-24 {
    margin-top: 24px;
    margin-bottom: 24px;
  }
  .sh-m-x-24 {
    margin-right: 24px;
    margin-left: 24px;
  }
  .sh-m-t-24 {
    margin-top: 24px;
  }
  .sh-m-r-24 {
    margin-right: 24px;
  }
  .sh-m-l-24 {
    margin-left: 24px;
  }
  .sh-m-b-24 {
    margin-bottom: 24px;
  }
  .sh-m-32 {
    margin: 32px;
  }
  .sh-m-y-32 {
    margin-top: 32px;
    margin-bottom: 32px;
  }
  .sh-m-x-32 {
    margin-right: 32px;
    margin-left: 32px;
  }
  .sh-m-t-32 {
    margin-top: 32px;
  }
  .sh-m-r-32 {
    margin-right: 32px;
  }
  .sh-m-b-32 {
    margin-bottom: 32px;
  }
  .sh-m-l-32 {
    margin-left: 32px;
  }
  .sh-m-48 {
    margin: 48px;
  }
  .sh-m-y-48 {
    margin-top: 48px;
    margin-bottom: 48px;
  }
  .sh-m-x-48 {
    margin-right: 48px;
    margin-left: 48px;
  }
  .sh-m-t-48 {
    margin-top: 48px;
  }
  .sh-m-r-48 {
    margin-right: 48px;
  }
  .sh-m-b-48 {
    margin-bottom: 48px;
  }
  .sh-m-l-48 {
    margin-left: 48px;
  }
  .sh-m-64 {
    margin: 64px;
  }
  .sh-m-y-64 {
    margin-top: 64px;
    margin-bottom: 64px;
  }
  .sh-m-x-64 {
    margin-right: 64px;
    margin-left: 64px;
  }
  .sh-m-t-64 {
    margin-top: 64px;
  }
  .sh-m-r-64 {
    margin-right: 64px;
  }
  .sh-m-b-64 {
    margin-bottom: 64px;
  }
  .sh-m-l-64 {
    margin-left: 64px;
  }
  .sh-m-128 {
    margin: 128px;
  }
  .sh-m-y-128 {
    margin-top: 128px;
    margin-bottom: 128px;
  }
  .sh-m-x-128 {
    margin-right: 128px;
    margin-left: 128px;
  }
  .sh-m-t-128 {
    margin-top: 128px;
  }
  .sh-m-r-128 {
    margin-right: 128px;
  }
  .sh-m-b-128 {
    margin-bottom: 128px;
  }
  .sh-m-l-128 {
    margin-left: 128px;
  }
  .feature-grid {
    text-align: left;
  }
  .feature-grid-2 {
    text-align: left;
  }
  .wrapper-l.notoppadding.nobottompadding {
    padding-right: 0px;
    padding-left: 0px;
  }
  .wrapper-l.topmargin {
    padding-top: 15rem;
  }
  .faq-item-wrapper-2 {
    padding-top: 16px;
    padding-bottom: 16px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .faq-col-1 {
    width: 100%;
  }
  .faq-col-2 {
    width: 100%;
  }
  .pricing-2 {
    width: 1024px;
  }
  .pricing-3 {
    width: 800px;
  }
  .testimonials-logos-grid {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
  }
  .testimonial-box-2 {
    padding: 48px 32px;
  }
  .alert-banner {
    padding-top: 4px;
    padding-bottom: 4px;
  }
  .contact-grid-1 {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .pricing-table-wrapper {
    overflow: scroll;
  }
  .hero-form-wrapper {
    margin-right: 0px;
    margin-left: 0px;
    padding: 32px;
  }
  .nav-menu {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .alert-banner-2 {
    padding-top: 4px;
    padding-bottom: 4px;
  }
  .footer-sg-bottom {
    margin-top: 24px;
    padding-top: 24px;
    padding-bottom: 24px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
  }
  .style-wrapper {
    margin-top: 48px;
    margin-bottom: 48px;
    padding: 16px;
  }
  .component-wrapper-2 {
    margin-top: 48px;
    margin-bottom: 48px;
    padding: 16px;
  }
  .component-wrapper-label-2 {
    top: -32px;
    font-size: 14px;
    line-height: 16px;
  }
  .feature-section {
    padding-bottom: 5rem;
  }
  .feature-section.flying {
    padding-top: 35rem;
    padding-bottom: 5rem;
  }
  .section-box-wrapper {
    padding: 16px;
  }
  .footer-navigation {
    margin-top: 8px;
  }
  .cookie-notification {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    text-align: center;
  }
  .countdown-banner {
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .div-block-6 {
    margin-bottom: 100px;
  }
  .heading-2 {
    font-size: 2.5rem;
  }
  .heading-3 {
    font-size: 6rem;
    line-height: 5rem;
  }
  .div-block-7 {
    max-width: 170px;
    padding-right: 5px;
    padding-left: 5px;
  }
  .div-block-7.viernheim.xmas {
    padding-top: 100px;
    border-radius: 0px 8px 8px 0px;
  }
  .text-block-3 {
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
    line-height: 1rem;
  }
  .heading-4 {
    font-size: 2rem;
    line-height: 1;
  }
  .textblockseparate.moved.wider {
    top: -100px;
  }
  .textblockseparate.moved.wider.mobile {
    margin-bottom: 7rem;
  }
  .textblockseparate.padding.alignright.marginbottombig.mobile {
    padding-top: 2.5rem;
  }
  .textblockseparate.diffwidth.alignmiddle {
    margin-bottom: 0rem;
  }
  .textblockseparate.diffwidth.alignmiddle.nobottommargin {
    margin-bottom: 0rem;
  }
  .textblockseparate.diffwidth.diff {
    margin-bottom: 5rem;
  }
  .textcolored {
    font-size: 2.3rem;
    line-height: 2.8rem;
  }
  .textcolored.alignleft {
    font-size: 2.3rem;
    line-height: 2.8rem;
  }
  .h2separate {
    font-size: 4.5rem;
    line-height: 4rem;
  }
  .h2separate.alignleft.white {
    font-size: 4.5rem;
    line-height: 4rem;
  }
  .text-block-7 {
    font-size: 1.3rem;
    line-height: 1.7rem;
  }
  .text-block-7.alignleft.white.diffsized {
    margin-bottom: 0rem;
  }
  .text-block-7.alignleft.white.diffsized.notfullwidth {
    font-size: 1.3rem;
    line-height: 1.7rem;
  }
  .text-block-7.alignleft.difffont.diffsized.mobile {
    font-size: 1.3rem;
    line-height: 1.7rem;
  }
  .text-block-7.alignright.diffsized.smaller.marginbottom {
    font-size: 1.3rem;
    line-height: 1.7rem;
  }
  .imagetextsection {
    padding-top: 25rem;
  }
  .mainsectiondream {
    background-position: 50% -20%;
    background-size: cover;
    background-image: none;
    background-color: #B2C8D3;
  }
  .dreamdiv.hotelbackground.gladbeck {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  .dreamdiv.hotelbackground.moers {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  .dreamdiv.hotelbackground.chillten {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  .dreamdiv.hotelbackground.parkhotel {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  .dreamdiv.hotelbackground.schmudde {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  .dreamdiv.hotelbackground.rheinruhr {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  .heading-5.white.alignleft.bottommargin.notopmargin {
    font-size: 3rem;
    line-height: 2.5rem;
  }
  .mainctablue.mobile {
    height: 100%;
    max-height: 55px;
    padding: 14px 2rem 9px;
    font-size: 2rem;
    line-height: 2rem;
  }
  .div-block-13 {
    max-width: 100%;
  }
  .h2grid {
    font-size: 4.5rem;
    line-height: 4rem;
  }
  .text-block-10 {
    font-size: 1.3rem;
    line-height: 1.7rem;
  }
  .submitbutton {
    height: 100%;
    max-height: 55px;
    padding-top: 14px;
    padding-bottom: 9px;
    font-size: 2rem;
    line-height: 2rem;
  }
  .moreinfos {
    width: 60%;
    height: 100%;
    max-height: 55px;
    padding-top: 14px;
    font-size: 2rem;
    line-height: 2rem;
    text-align: center;
  }
  .footerbutton.diffsized.mobile {
    max-width: 100%;
  }
  .div-block-24.mobile {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .text-block-17 {
    font-size: 2.8rem;
    line-height: 4.5rem;
  }
  .heading-6 {
    font-size: 6rem;
    line-height: 5rem;
  }
  .tabcontent.nobackground {
    padding-top: 0px;
  }
  .allinclusivesection {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
  .grid-8 {
    padding-right: 0px;
    padding-left: 0px;
  }
  .div-block-36 {
    width: 100%;
    padding-right: 1rem;
    padding-left: 1rem;
  }
  .div-block-39.mobile {
    max-width: 100%;
    padding-top: 100px;
  }
  .topbutton {
    height: 100%;
    max-height: 55px;
    padding-top: 12px;
    font-size: 2rem;
    line-height: 2rem;
  }
  .vouchertext {
    font-size: 1.5rem;
  }
  .bold-text-10 {
    font-size: 1.5rem;
  }
  .vouchersectionmobile {
    margin-bottom: 4.5rem;
  }
  .div-block-45 {
    max-width: 100%;
  }
  .text-block-27 {
    font-size: 3.2rem;
  }
  .text-block-28 {
    font-size: 2.2rem;
  }
  .heading-faq {
    font-size: 20px;
    line-height: 1.2;
  }
  .heading-faq.skydive {
    line-height: 2.2rem;
  }
  .paragraph-small._3 {
    font-size: 1.3rem;
    line-height: 1.7rem;
  }
  .form-block-2 {
    width: 100%;
  }
  .container-3 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding-right: 16px;
    padding-left: 16px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .container-3.container-navbar {
    padding-top: 0px;
    padding-bottom: 0px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .div-block-78.background {
    background-size: 60%;
  }
  .column-2 {
    padding-left: 0px;
  }
  .text-agb {
    line-height: 1.3;
  }
  .columns {
    padding-right: 0px;
    padding-left: 0px;
  }
  .heading-8 {
    font-size: 22px;
  }
  .text-field-2 {
    font-size: 16px;
  }
  .text-field-2.half {
    font-size: 16px;
  }
  .div-block-83 {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .div-block-84 {
    width: 100%;
  }
  .div-block-85 {
    width: 100%;
  }
  .footerbutton-2.diffsized.mobile {
    max-width: 100%;
  }
  .footer-bottom-3 {
    margin-top: 24px;
    padding-top: 24px;
    padding-bottom: 24px;
  }
  .footer-4 {
    display: none;
    padding: 48px 0px 0px;
  }
  .component-wrapper-3 {
    margin-top: 48px;
    margin-bottom: 48px;
    padding: 16px;
  }
  .footer-grid-4 {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    -ms-grid-rows: auto auto;
    grid-template-rows: auto auto;
  }
  .mobile-overlay {
    display: none;
  }
  .location-wrapper {
    max-width: 90%;
  }
  .div-block-99 {
    max-width: 90%;
  }
  .image-32 {
    top: -10%;
  }
  .imagetextctasectionmobile.viernheim {
    background-position: 100% 50%, 50% 50%;
    background-size: 1200px, cover;
  }
  .imagetextctasectionmobile.groups {
    background-position: 50% 0%;
    background-size: cover;
  }
  .locationcontainer.shadow {
    padding: 5rem 40px;
  }
  .heading-10 {
    line-height: 2.9rem;
  }
  .text-block-37 {
    font-size: 1.3rem;
    line-height: 1.7rem;
  }
  .mailcontactsection {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
  .openinghourssection {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
  .image-33 {
    margin-bottom: 2rem;
  }
  .image-34 {
    margin-bottom: 2rem;
  }
  .image-35 {
    max-width: 120px;
  }
  .image-36 {
    max-width: 120px;
  }
  .image-37 {
    max-width: 120px;
  }
  .select-field-2 {
    font-size: 16px;
  }
  .text-block-38 {
    font-size: 16px;
  }
  .textarea-2 {
    font-size: 16px;
  }
  .backgroundsectionpartner {
    padding-right: 40px;
    padding-left: 40px;
  }
  .hotelcontainer {
    padding-right: 40px;
    padding-left: 40px;
  }
  .text-block-40 {
    font-size: 1.3rem;
    line-height: 1.7rem;
  }
  .section-13 {
    padding-right: 20px;
    padding-left: 20px;
  }
  .image-50 {
    max-width: 60px;
  }
}
@media screen and (max-width: 479px) {
  .container {
    padding-right: 20px;
    padding-left: 20px;
  }
  .container.container-navbar {
    padding-right: 20px;
    padding-left: 20px;
  }
  .container.mobile {
    padding-right: 20px;
    padding-left: 20px;
  }
  .wrapper-m.info {
    padding-top: 1rem;
    padding-bottom: 0rem;
  }
  .feature-block.flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .l-g-4-col {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    -ms-grid-rows: auto auto auto auto;
    grid-template-rows: auto auto auto auto;
  }
  .button.medium {
    -webkit-align-self: stretch;
    -ms-flex-item-align: stretch;
    -ms-grid-row-align: stretch;
    align-self: stretch;
  }
  .l-g-2-col {
    grid-row-gap: 24px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    -ms-grid-rows: auto auto;
    grid-template-rows: auto auto;
  }
  .input.medium.horizontal {
    margin-right: 0px;
    margin-bottom: 8px;
  }
  .form.form-horizontal {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .section.beginners {
    padding-top: 3.125rem;
  }
  .section.beginners.toppadding {
    padding-top: 3.125rem;
  }
  .section.twopersons {
    padding-top: 3.125rem;
  }
  .section.kidsandfamily {
    padding-top: 3.125rem;
    padding-bottom: 3rem;
  }
  .section.contact.airlebnis {
    padding-bottom: 3.125rem;
  }
  .section.events {
    padding-top: 3.125rem;
  }
  .section.flightclub {
    padding-top: 3.125rem;
    padding-bottom: 3.125rem;
  }
  .tagline {
    margin-bottom: 4px;
    font-size: 12px;
    line-height: 20px;
  }
  .feature-text-wrapper {
    padding-left: 0px;
  }
  .tab {
    display: block;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }
  .footer {
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
    text-align: left;
  }
  .nav-link {
    padding-right: 10px;
    padding-left: 10px;
  }
  .footer-grid {
    justify-items: center;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    -ms-grid-rows: auto auto auto auto;
    grid-template-rows: auto auto auto auto;
    text-align: center;
  }
  .brand-logo {
    padding-left: 0px;
  }
  .footer-logo {
    padding-left: 0px;
  }
  .footer-top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .footer-social-media {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .footer-bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
  }
  .vertical-menu-link {
    text-decoration: none;
  }
  .footer-grid-2 {
    -ms-grid-columns: 1.5fr;
    grid-template-columns: 1.5fr;
    -ms-grid-rows: auto auto auto auto;
    grid-template-rows: auto auto auto auto;
    text-align: center;
  }
  .footer-logo-2 {
    margin-right: auto;
    margin-left: auto;
    padding-left: 0px;
  }
  .footer-grid-3 {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    -ms-grid-rows: auto auto auto auto;
    grid-template-rows: auto auto auto auto;
    text-align: center;
  }
  .footer-bottom-2 {
    margin-top: 24px;
    padding-top: 16px;
    padding-bottom: 16px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
  }
  .footer-bottom-2.color-inverse {
    color: #838d95;
  }
  .footer-2 {
    padding-right: 0px;
    padding-left: 0px;
    text-align: left;
  }
  .sm-icons-wrapper {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .grid-cta {
    grid-row-gap: 16px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    -ms-grid-rows: auto auto;
    grid-template-rows: auto auto;
  }
  .cta-section-form-wrapper {
    width: 100%;
  }
  .menu-button.color-inverse {
    top: -40px;
    width: 30px;
    height: 30px;
  }
  .radio-button {
    margin-top: 0px;
  }
  .radio-button-field {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .switch-field {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .select {
    font-size: 16rem;
  }
  .select.medium {
    font-size: 16rem;
  }
  .grid-styleguide---buttons {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    -ms-grid-rows: auto auto auto auto;
    grid-template-rows: auto auto auto auto;
  }
  .navbar-vertical {
    text-align: left;
  }
  .sm-p-0 {
    padding: 0px;
  }
  .sm-p-y-0 {
    padding-top: 0px;
    padding-bottom: 0px;
  }
  .sm-p-x-0 {
    padding-right: 0px;
    padding-left: 0px;
  }
  .sm-p-t-0 {
    padding-top: 0px;
  }
  .sm-p-r-0 {
    padding-right: 0px;
  }
  .sm-p-b-0 {
    padding-bottom: 0px;
  }
  .sm-p-l-0 {
    padding-left: 0px;
  }
  .sm-p-4 {
    padding: 4px;
  }
  .sm-p-8 {
    padding: 8px;
  }
  .sm-p-12 {
    padding: 12px;
  }
  .sm-p-16 {
    padding: 16px;
  }
  .sm-p-24 {
    padding: 24px;
  }
  .sm-p-32 {
    padding: 32px;
  }
  .sm-p-48 {
    padding: 48px;
  }
  .sm-p-64 {
    padding: 64px;
  }
  .sm-p-128 {
    padding: 129px;
  }
  .sm-m-0 {
    margin: 0px;
  }
  .sm-m-8 {
    margin: 8px;
  }
  .sm-m-12 {
    margin: 12px;
  }
  .sm-m-16 {
    margin: 16px;
  }
  .sm-m-24 {
    margin: 24px;
  }
  .sm-m-32 {
    margin: 32px;
  }
  .sm-m-48 {
    margin: 48px;
  }
  .sm-m-64 {
    margin: 64px;
  }
  .sm-m-128 {
    margin: 128px;
  }
  .sm-p-y-4 {
    padding-top: 4px;
    padding-bottom: 4px;
  }
  .sm-p-y-8 {
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .sm-p-y-12 {
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .sm-p-y-16 {
    padding-top: 16px;
    padding-bottom: 16px;
  }
  .sm-p-y-24 {
    padding-top: 24px;
    padding-bottom: 24px;
  }
  .sm-p-y-32 {
    padding-top: 32px;
    padding-bottom: 32px;
  }
  .sm-p-y-48 {
    padding-top: 48px;
    padding-bottom: 48px;
  }
  .sm-p-y-64 {
    padding-top: 64px;
    padding-bottom: 64px;
  }
  .sm-p-y-128 {
    padding-top: 128px;
    padding-bottom: 128px;
  }
  .sm-m-y-0 {
    margin-top: 0px;
    margin-bottom: 0px;
  }
  .sm-m-x-0 {
    margin-right: 0px;
    margin-left: 0px;
  }
  .sm-m-y-4 {
    margin-top: 4px;
    margin-bottom: 4px;
  }
  .sm-m-4 {
    margin: 4px;
  }
  .sm-m-y-8 {
    margin-top: 8px;
    margin-bottom: 8px;
  }
  .sm-m-y-12 {
    margin-top: 12px;
    margin-bottom: 12px;
  }
  .sm-m-y-16 {
    margin-top: 16px;
    margin-bottom: 16px;
  }
  .sm-m-y-24 {
    margin-top: 24px;
    margin-bottom: 24px;
  }
  .sm-m-y-32 {
    margin-top: 32px;
    margin-bottom: 32px;
  }
  .sm-m-y-48 {
    margin-top: 48px;
    margin-bottom: 48px;
  }
  .sm-m-y-64 {
    margin-top: 64px;
    margin-bottom: 64px;
  }
  .sm-m-y-128 {
    margin-top: 128px;
    margin-bottom: 128px;
  }
  .sm-m-x-4 {
    margin-right: 4px;
    margin-left: 4px;
  }
  .sm-m-x-8 {
    margin-right: 8px;
    margin-left: 8px;
  }
  .sm-m-x-12 {
    margin-right: 12px;
    margin-left: 12px;
  }
  .sm-m-x-16 {
    margin-right: 16px;
    margin-left: 16px;
  }
  .sm-m-x-24 {
    margin-right: 24px;
    margin-left: 24px;
  }
  .sm-m-x-32 {
    margin-right: 32px;
    margin-left: 32px;
  }
  .sm-m-x-48 {
    margin-right: 48px;
    margin-left: 48px;
  }
  .sm-m-x-64 {
    margin-right: 64px;
    margin-left: 64px;
  }
  .sm-m-x-128 {
    margin-right: 128px;
    margin-left: 128px;
  }
  .sm-m-t-0 {
    margin-top: 0px;
  }
  .sm-m-t-4 {
    margin-top: 4px;
  }
  .sm-m-t-8 {
    margin-top: 8px;
  }
  .sm-m-t-12 {
    margin-top: 12px;
  }
  .sm-m-t-16 {
    margin-top: 16px;
  }
  .sm-m-t-24 {
    margin-top: 24px;
  }
  .sm-m-t-32 {
    margin-top: 32px;
  }
  .sm-m-t-48 {
    margin-top: 48px;
  }
  .sm-m-t-64 {
    margin-top: 64px;
  }
  .sm-m-t-128 {
    margin-top: 128px;
  }
  .sm-m-r-0 {
    margin-right: 0px;
  }
  .sm-m-r-4 {
    margin-right: 4px;
  }
  .sm-m-r-8 {
    margin-right: 8px;
  }
  .sm-m-r-12 {
    margin-right: 12px;
  }
  .sm-m-r-16 {
    margin-right: 16px;
  }
  .sm-m-r-24 {
    margin-right: 24px;
  }
  .sm-m-r-32 {
    margin-right: 32px;
  }
  .sm-m-r-48 {
    margin-right: 48px;
  }
  .sm-m-r-64 {
    margin-right: 64px;
  }
  .sm-m-r-128 {
    margin-right: 128px;
  }
  .sm-m-b-0 {
    margin-bottom: 0px;
  }
  .sm-m-b-4 {
    margin-bottom: 4px;
  }
  .sm-m-b-8 {
    margin-bottom: 8px;
  }
  .sm-m-b-12 {
    margin-bottom: 12px;
  }
  .sm-m-b-16 {
    margin-bottom: 16px;
  }
  .sm-m-b-24 {
    margin-bottom: 24px;
  }
  .sm-m-b-32 {
    margin-bottom: 32px;
  }
  .sm-m-b-48 {
    margin-bottom: 48px;
  }
  .sm-m-b-64 {
    margin-bottom: 64px;
  }
  .sm-m-b-128 {
    margin-bottom: 128px;
  }
  .sm-m-l-0 {
    margin-left: 0px;
  }
  .sm-m-l-4 {
    margin-left: 4px;
  }
  .sm-m-l-8 {
    margin-left: 8px;
  }
  .sm-m-l-12 {
    margin-left: 12px;
  }
  .sm-m-l-16 {
    margin-left: 16px;
  }
  .sm-m-l-24 {
    margin-left: 24px;
  }
  .sm-m-l-32 {
    margin-left: 32px;
  }
  .sm-m-l-48 {
    margin-left: 48px;
  }
  .sm-m-l-64 {
    margin-left: 64px;
  }
  .sm-m-l-128 {
    margin-left: 128px;
  }
  .sm-p-x-4 {
    padding-right: 4px;
    padding-left: 4px;
  }
  .sm-p-x-8 {
    padding-right: 8px;
    padding-left: 8px;
  }
  .sm-p-x-12 {
    padding-right: 12px;
    padding-left: 12px;
  }
  .sm-p-x-16 {
    padding-right: 16px;
    padding-left: 16px;
  }
  .sm-p-x-24 {
    padding-right: 24px;
    padding-left: 24px;
  }
  .sm-p-x-32 {
    padding-right: 32px;
    padding-left: 32px;
  }
  .sm-p-x-48 {
    padding-right: 48px;
    padding-left: 48px;
  }
  .sm-p-x-64 {
    padding-right: 64px;
    padding-left: 64px;
  }
  .sm-p-x-128 {
    padding-right: 128px;
    padding-left: 128px;
  }
  .sm-p-t-4 {
    padding-top: 4px;
  }
  .sm-p-t-8 {
    padding-top: 8px;
  }
  .sm-p-t-12 {
    padding-top: 12px;
  }
  .sm-p-t-16 {
    padding-top: 16px;
  }
  .sm-p-t-24 {
    padding-top: 24px;
  }
  .sm-p-t-32 {
    padding-top: 32px;
  }
  .sm-p-t-48 {
    padding-top: 48px;
  }
  .sm-p-t-64 {
    padding-top: 64px;
  }
  .sm-p-t-128 {
    padding-top: 128px;
  }
  .sm-p-r-4 {
    padding-right: 4px;
  }
  .sm-p-r-8 {
    padding-right: 8px;
  }
  .sm-p-r-12 {
    padding-right: 12px;
  }
  .sm-p-r-16 {
    padding-right: 16px;
  }
  .sm-p-r-24 {
    padding-right: 24px;
  }
  .sm-p-r-32 {
    padding-right: 32px;
  }
  .sm-p-r-48 {
    padding-right: 48px;
  }
  .sm-p-r-64 {
    padding-right: 64px;
  }
  .sm-p-r-128 {
    padding-right: 128px;
  }
  .sm-p-b-4 {
    padding-bottom: 4px;
  }
  .sm-p-b-8 {
    padding-bottom: 8px;
  }
  .sm-p-b-12 {
    padding-bottom: 12px;
  }
  .sm-p-b-16 {
    padding-bottom: 16px;
  }
  .sm-p-b-24 {
    padding-bottom: 24px;
  }
  .sm-p-b-32 {
    padding-bottom: 32px;
  }
  .sm-p-b-48 {
    padding-bottom: 48px;
  }
  .sm-p-b-64 {
    padding-bottom: 64px;
  }
  .sm-p-b-128 {
    padding-bottom: 128px;
  }
  .sm-p-l-4 {
    padding-left: 4px;
  }
  .sm-p-l-8 {
    padding-left: 8px;
  }
  .sm-p-l-12 {
    padding-left: 12px;
  }
  .sm-p-l-16 {
    padding-left: 16px;
  }
  .sm-p-l-24 {
    padding-left: 24px;
  }
  .sm-p-l-32 {
    padding-left: 32px;
  }
  .sm-p-l-48 {
    padding-left: 48px;
  }
  .sm-p-l-64 {
    padding-left: 64px;
  }
  .sm-p-l-128 {
    padding-left: 128px;
  }
  .feature-grid {
    grid-row-gap: 52px;
  }
  .wrapper-l {
    padding: 3.125rem 20px;
  }
  .wrapper-l.notoppadding.nobottompadding {
    padding-right: 0px;
  }
  .wrapper-l.gifsection {
    padding-top: 3.125rem;
    padding-bottom: 3.125rem;
  }
  .wrapper-l.topmargin {
    padding-top: 10rem;
  }
  .ctas-wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .pricing-card-content {
    padding: 24px;
  }
  .testimonials-logos-grid {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
  .testimonial-box-2 {
    padding: 32px 16px;
  }
  .alert-banner {
    padding-bottom: 4px;
  }
  .contact-grid-1 {
    grid-row-gap: 16px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    -ms-grid-rows: auto auto;
    grid-template-rows: auto auto;
  }
  .alert-banner-2 {
    padding-bottom: 4px;
    text-align: left;
  }
  .footer-sg-bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
  }
  .brand-logo-image {
    width: 100%;
    max-width: 136px;
  }
  .tabs-menu {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    overflow: auto;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .feature-section {
    padding-bottom: 3.125rem;
  }
  .feature-section.flying {
    padding-top: 20rem;
    padding-bottom: 3.125rem;
  }
  .avatar-wrapper.horizontal {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .footer-navigation {
    margin-top: 0px;
  }
  .mainsectionheader {
    padding-right: 20px;
    padding-bottom: 50px;
    padding-left: 20px;
    background-position: 50% 100%;
    background-size: cover;
  }
  .div-block-6 {
    padding-left: 40px;
  }
  .heading-2 {
    margin-bottom: 0rem;
    font-size: 1.75rem;
  }
  .heading-3 {
    margin-top: 0.5rem;
    font-size: 5.3125rem;
    line-height: 4.5rem;
  }
  .div-block-7 {
    top: 28%;
    max-width: 100px;
    padding-top: 20px;
    padding-bottom: 10px;
  }
  .div-block-7.viernheim.xmas {
    top: 20%;
    padding-top: 70px;
    max-width: 150px;
  }
  .text-block-3 {
    font-size: 1.2rem;
  }
  .heading-4 {
    font-size: 1.5rem;
  }
  .textblockseparate.moved.wider.mobile {
    top: 0px;
  }
  .textblockseparate.moved.wider.mobile.modalview {
    margin-bottom: 2rem;
    padding-top: 3rem;
  }
  .textblockseparate.zindex {
    top: 50px;
  }
  .textblockseparate.zindex.pos {
    top: 0px;
  }
  .textblockseparate.padding.alignright.marginbottombig.mobile {
    width: 100%;
    margin-bottom: 0rem;
    padding-top: 2.5rem;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
  }
  .textblockseparate.diffwidth.alignmiddle {
    margin-bottom: 0rem;
  }
  .textblockseparate.diffwidth.diffmargin {
    margin-bottom: 0rem;
  }
  .textcolored {
    font-size: 1.625rem;
    line-height: 1.875rem;
  }
  .textcolored.alignleft {
    font-size: 1.625rem;
    line-height: 1.875rem;
    text-align: left;
  }
  .h2separate {
    font-size: 3.4rem;
    line-height: 3.125rem;
  }
  .h2separate.alignleft.white {
    font-size: 3.4rem;
    line-height: 3.125rem;
    text-align: left;
  }
  .h2separate.alignleft.mobile {
    width: 80%;
    text-align: left;
  }
  .h2separate.alignright {
    text-align: right;
    white-space: break-spaces;
  }
  .text-block-7 {
    font-size: 1.125rem;
    line-height: 1.4375rem;
  }
  .text-block-7.alignleft.white.diffsized.notfullwidth {
    margin-bottom: 0rem;
    font-size: 1.125rem;
    line-height: 1.4375rem;
    text-align: left;
  }
  .text-block-7.alignleft.difffont.diffsized.mobile {
    text-align: left;
  }
  .text-block-7.alignright.diffsized.smaller.marginbottom {
    max-width: 85%;
    font-size: 1.125rem;
    line-height: 1.437rem;
    text-align: right;
  }
  .text-block-7.diffsized.addwhite {
    max-width: 100%;
  }
  .bold-text {
    font-size: 1.125rem;
    line-height: 1.437rem;
  }
  .imagetextsection {
    padding: 20rem 20px 3.125rem;
    background-position: 50% 50%;
  }
  .mainsectiondream {
    padding: 3.125rem 20px;
    background-position: 50% 0%;
    background-size: cover;
    background-attachment: fixed;
  }
  .dreamdiv.diffpadding {
    padding-right: 10px;
    padding-left: 10px;
  }
  .heading-5.white.notopmargin {
    font-size: 2.125rem;
    line-height: 1.875rem;
  }
  .heading-5.white.alignleft.bottommargin.notopmargin {
    font-size: 2.125rem;
    line-height: 3.4375rem;
  }
  .mainctablue.mobile {
    padding-right: 1.2rem;
    padding-left: 1.2rem;
    font-size: 1.75rem;
    line-height: 2.187rem;
  }
  .mainctablue.mobile.diffsized {
    height: 40px;
    max-width: 200px;
    padding-top: 12px;
    font-size: 1.312rem;
    line-height: 1.562rem;
  }
  .newssection {
    padding-top: 3.125rem;
    padding-bottom: 3.125rem;
  }
  .grid-4 {
    padding-right: 20px;
    padding-left: 20px;
  }
  .div-block-14 {
    padding-top: 50px;
    padding-right: 50px;
    padding-left: 50px;
  }
  .h2grid {
    font-size: 2.75rem;
    line-height: 2.4375rem;
    text-align: left;
  }
  .bold-text-2 {
    font-size: 0.9375rem;
    line-height: 1.013rem;
    text-align: left;
  }
  .text-block-10 {
    font-size: 1.125rem;
    line-height: 1.4375rem;
    text-align: left;
  }
  .text-block-10.white {
    padding-bottom: 20px;
    line-height: 1rem;
    text-align: left;
  }
  .div-block-16 {
    padding-top: 50px;
    padding-right: 50px;
    padding-left: 50px;
    padding-bottom: 12rem;
  }
  .textcontainer {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding-right: 50px;
    padding-left: 50px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .text-block-11.date {
    font-size: 1.5625rem;
    line-height: 2.445rem;
    text-align: left;
  }
  .booknow {
    height: 40px;
    padding-top: 9px;
    padding-bottom: 7px;
    font-size: 1.3125rem;
    line-height: 1.5625rem;
    text-align: center;
  }
  .booknow.diffmargin {
    height: 40px;
    padding-top: 10px;
    font-size: 1.3125rem;
    line-height: 1.5625rem;
  }
  .booknow.modalbutton {
    width: 100%;
    margin-right: 0rem;
    margin-bottom: 0.5rem;
    padding-top: 10px;
  }
  .booknow.modalbutton.last {
    padding-top: 10px;
  }
  .booknow.bigger {
    height: 40px;
    padding-top: 12px;
    font-size: 1.312rem;
    line-height: 1.562rem;
  }
  .booknow.bigger.morepadding.mobile.same {
    height: 40px;
    padding-top: 9px;
    font-size: 1.312rem;
    line-height: 1.562rem;
  }
  .booknow.bigger.morepadding.mobile.same.nopadding {
    padding-right: 2rem;
    padding-left: 2rem;
  }
  .booknow.blue.mobile {
    height: 40px;
    padding-top: 9px;
    font-size: 1.3125rem;
    line-height: 1.562rem;
  }
  .booknow.blue.height.mobilemargin {
    height: 40px;
    padding-top: 9px;
    font-size: 1.312rem;
    line-height: 1.562rem;
  }
  .booknow.blue.height.diffpadding {
    padding-right: 1rem;
    padding-left: 1rem;
  }
  .booknow.inverse.mobile {
    margin-bottom: 0.5rem;
  }
  .booknow.mobilemargin {
    margin-bottom: 3.125rem;
  }
  .reviewssection {
    padding-top: 3.125rem;
    padding-bottom: 2rem;
  }
  .mainuniqueadventure {
    padding-bottom: 10rem;
  }
  .mainuniqueadventure.hotel {
    padding-bottom: 3.125rem;
  }
  .div-block-18.adventurecontainer {
    margin-bottom: -50px;
    padding-right: 20px;
    padding-left: 20px;
  }
  .grid-5.mobile {
    padding-right: 20px;
    padding-left: 20px;
  }
  .div-block-20.mobile {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  .submitbutton {
    font-size: 1.75rem;
    line-height: 2.1875rem;
  }
  .mainsectiontechnical {
    margin-top: 3.125rem;
    padding-right: 20px;
    padding-bottom: 3.125rem;
    padding-left: 20px;
  }
  .moreinfos {
    width: 60%;
    padding-right: 1.2rem;
    padding-left: 1.2rem;
    font-size: 1.75rem;
    line-height: 2.1875rem;
  }
  .text-block-13.diffheight.mobile {
    text-align: left;
  }
  .div-block-23.diffaligned {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .div-block-23.diffaligned {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .footerbutton.diffsized.mobile {
    height: 40px;
    max-width: 320px;
    padding-top: 14px;
    padding-bottom: 9px;
    font-size: 1.312rem;
    line-height: 1.562rem;
  }
  .payicon {
    padding-bottom: 1rem;
  }
  .headersection {
    padding-top: 10rem;
    padding-right: 20px;
    padding-left: 20px;
    background-position: 50% 50%;
    background-size: cover;
  }
  .headersection.beginners {
    padding-top: 8.125rem;
    padding-bottom: 3.125rem;
    background-position: 50% 100%;
  }
  .headersection.flightclub {
    background-position: 20% 50%;
  }
  .headersection.xmas {
    background-position: 17% 50%;
  }
  .div-block-29 {
    top: 40px;
    padding-top: 100px;
  }
  .text-block-17 {
    font-size: 1.75rem;
    line-height: 2.5rem;
  }
  .text-block-17.shadow.diffheight {
    line-height: 1.7rem;
  }
  .heading-6 {
    font-size: 4.375rem;
    line-height: 3.9375rem;
  }
  .tabs-menu-4 {
    padding-right: 10px;
    padding-left: 10px;
  }
  .tablinkselect {
    margin-right: 1rem;
  }
  .tablinkselect.w--current {
    margin-right: 1rem;
  }
  .text-block-22.flightclub {
    font-size: 2rem;
    line-height: 1.75rem;
  }
  .text-block-23.flightclub {
    font-size: 2rem;
    line-height: 1.75rem;
  }
  .text-block-24 {
    font-size: 3.2rem;
  }
  .allinclusivesection {
    padding: 3.125rem 20px;
  }
  .grid-8 {
    width: 100%;
  }
  .list {
    width: 100%;
  }
  .list-item {
    font-size: 1.125rem;
    line-height: 1.437rem;
  }
  .topbutton {
    padding-top: 11px;
    font-size: 1.75rem;
    line-height: 2.187rem;
  }
  .topbutton.colored {
    max-height: 55px;
  }
  .vouchertext {
    font-size: 0.9rem;
  }
  .image-14 {
    width: 20px;
  }
  .bold-text-10 {
    font-size: 0.9rem;
  }
  .vouchersectionmobile {
    margin: 3.125rem 0px;
    padding-right: 20px;
    padding-left: 20px;
  }
  .text-block-27 {
    font-size: 2.5rem;
    line-height: 1rem;
  }
  .text-block-28 {
    font-size: 1.5rem;
    line-height: 1.4rem;
  }
  .question {
    padding-right: 1rem;
    padding-left: 1rem;
  }
  .heading-faq.skydive {
    width: 50%;
    max-width: 60%;
    font-size: 1.8rem;
    line-height: 1.7rem;
  }
  .heading-faq.menue {
    font-size: 3.125rem;
    line-height: 3.1rem;
    font-weight: 400;
  }
  .paragraph-small._3 {
    font-size: 1.125rem;
    line-height: 1.4375rem;
  }
  .paragraph-small._3 {
    font-size: 15px;
  }
  .div-block-61 {
    bottom: -21px;
  }
  .div-block-62 {
    bottom: -21px;
  }
  .div-block-63 {
    bottom: -21px;
  }
  .div-block-64 {
    bottom: -21px;
  }
  .newslettersectionmobile {
    padding-right: 20px;
    padding-bottom: 6.2rem;
    padding-left: 20px;
  }
  .newslettersectionmobile.contact.mobile {
    padding-top: 3.125rem;
    padding-bottom: 3.125rem;
  }
  .image-17 {
    max-width: 130%;
    margin-left: 0rem;
  }
  .div-block-65 {
    top: -99px;
  }
  .div-block-66 {
    max-width: 60px;
    margin-right: 1rem;
  }
  .div-block-67 {
    margin-right: 1rem;
  }
  .div-block-68 {
    margin-right: 1rem;
  }
  .div-block-69 {
    margin-right: 1rem;
  }
  .image-18 {
    width: 100%;
  }
  .footertop {
    padding-right: 20px;
    padding-left: 20px;
  }
  .footermiddle {
    padding-right: 20px;
    padding-left: 20px;
  }
  .footerbottom {
    padding-right: 20px;
    padding-left: 20px;
  }
  .div-block-72 {
    width: auto;
    max-width: 100%;
  }
  .grid-10 {
    -ms-grid-columns: 0.75fr;
    grid-template-columns: 0.75fr;
  }
  .image-23 {
    width: 40%;
  }
  .image-23.bottom-image {
    width: 100%;
    max-width: 120px;
  }
  .image-24 {
    position: relative;
    left: -50px;
  }
  .menu-button-2 {
    padding-right: 10px;
  }
  .menu-button-2.w--open {
    padding-right: 10px;
  }
  .container-3.container-navbar {
    padding-right: 0px;
    padding-left: 10px;
  }
  .navbar-buttons-2 {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .container-26 {
    margin-top: 40px;
  }
  .button-text-2 {
    font-size: 20px;
  }
  .brand-logo-2 {
    width: 200px;
    padding-bottom: 5px;
  }
  .section-9 {
    padding-right: 25px;
    padding-left: 25px;
  }
  .button-3.medium {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-self: stretch;
    -ms-flex-item-align: stretch;
    align-self: stretch;
  }
  .button-3.medium.secondary {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .button-3.medium.secondary.menu {
    display: none;
  }
  .navbar-3 {
    padding-top: 5px;
    padding-bottom: 7px;
  }
  .nav-link-2 {
    padding-right: 10px;
    padding-left: 10px;
    font-size: 22px;
  }
  .navbar-menu-2 {
    padding-right: 20px;
    padding-left: 20px;
  }
  .container-27 {
    margin-top: 40px;
  }
  .section-10 {
    padding-right: 25px;
    padding-left: 25px;
  }
  .container-28 {
    margin-top: 40px;
  }
  .section-11 {
    padding-right: 20px;
    padding-left: 20px;
  }
  .buyticketsectionmobile {
    padding: 3.125rem 20px;
  }
  .div-block-78 {
    padding-bottom: 3rem;
  }
  .div-block-79 {
    padding-bottom: 3rem;
  }
  .dropdown-link.xmas {
    background-image: url("/images/Icon-x-mas.svg");
    background-position: 3% 50%;
    background-size: 40px;
    background-repeat: no-repeat;
  }
  .dropdown-link.easter {
    background-image: url("/images/Icon-Easter.svg");
    background-position: 3% 50%;
    background-size: 40px;
    background-repeat: no-repeat;
  }
  .dropdown-link.summer {
    background-image: url("/images/Icon-Summer.svg");
    background-position: 3% 50%;
    background-size: 40px;
    background-repeat: no-repeat;
  }
  .div-block-81 {
    padding-bottom: 3rem;
  }
  .submit-button {
    height: 80px;
    background-size: 100%;
    font-size: 24px;
  }
  .image-27 {
    width: 60px;
  }
  .div-block-49 {
    width: 100%;
    margin-top: 0px;
  }
  .div-block-49._2 {
    margin-top: 0px;
  }
  .column-2 {
    padding-left: 0px;
  }
  .column-2._2 {
    padding-right: 0px;
  }
  .text-agb {
    font-size: 14px;
    line-height: 1.3;
  }
  .section-12 {
    padding-right: 25px;
    padding-left: 25px;
  }
  .section-12.newsletter {
    margin-bottom: -100px;
  }
  .heading-8 {
    font-size: 20px;
  }
  .container-19.newsletter {
    top: -150px;
  }
  .image-28 {
    width: 60px;
  }
  .div-block-52 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .bullet-number {
    margin-right: 10px;
  }
  .text-field-2 {
    height: 40px;
    font-size: 14px;
  }
  .text-field-2.half {
    width: 100%;
    height: 40px;
    font-size: 14px;
  }
  .text-field-2.third {
    width: 100%;
  }
  .text-field-2.message {
    height: auto;
  }
  .html-embed {
    height: 100%;
  }
  .footerbutton-2.diffsized.mobile {
    font-size: 1.4rem;
  }
  .text-block-33.diffheight.mobile {
    text-align: left;
  }
  .footer-bottom-3 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
  }
  .booknow-2 {
    height: 40px;
    padding-top: 9px;
    font-size: 1.3125rem;
    line-height: 1.5625rem;
    text-align: center;
  }
  .booknow-2.diffmargin {
    height: 40px;
    padding-top: 10px;
    font-size: 1.3125rem;
    line-height: 1.5625rem;
  }
  .footer-4 {
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
    text-align: left;
  }
  .vertical-menu-link-2 {
    text-decoration: none;
  }
  .footer-grid-4 {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    -ms-grid-rows: auto auto auto auto;
    grid-template-rows: auto auto auto auto;
    text-align: center;
  }
  .div-block-92 {
    padding-top: 15%;
  }
  .mobilelink {
    margin-bottom: 1rem;
    font-size: 3.125rem;
    line-height: 3.1rem;
  }
  .text-block-35 {
    font-size: 1.0625rem;
    line-height: 1.25rem;
  }
  .image-29 {
    width: 20px;
  }
  .text-block-36 {
    font-size: 1rem;
  }
  .location-wrapper {
    padding-top: 3.125rem;
    padding-bottom: 3.125rem;
  }
  .div-block-99 {
    max-width: 80%;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .div-block-100 {
    padding-right: 20px;
    padding-bottom: 5rem;
    padding-left: 20px;
  }
  .div-block-100.lessmargin {
    padding-right: 20px;
    padding-bottom: 3.125rem;
    padding-left: 20px;
  }
  .div-block-100.bottommargin {
    padding-bottom: 5rem;
  }
  .div-block-100.lessbottompadding.groups {
    padding-bottom: 3.125rem;
  }
  .giftsection {
    padding-right: 0px;
    padding-left: 0px;
  }
  .proflyer {
    padding-top: 5rem;
  }
  .image-32 {
    top: -5%;
    max-width: 98%;
  }
  .imagetextctasectionmobile {
    padding: 3.125rem 20px;
  }
  .imagetextctasectionmobile.bottrop {
    background-position: 60% 50%;
  }
  .imagetextctasectionmobile.viernheim {
    background-position: 70% 25%, 50% 50%;
    background-size: 800px, cover;
  }
  .locationcontainer.shadow {
    padding: 3.125rem 20px;
  }
  .heading-10 {
    margin-bottom: 1rem;
    line-height: 2.7rem;
  }
  .heading-10.middle {
    text-align: center;
  }
  .heading-11 {
    margin-bottom: 1rem;
    line-height: 1.6rem;
  }
  .text-block-37 {
    margin-bottom: 1rem;
    font-size: 1.125rem;
    line-height: 1.437rem;
  }
  .mailcontactsection {
    padding-top: 3.125rem;
    padding-bottom: 3.125rem;
  }
  .openinghourssection {
    padding-top: 3.125rem;
    padding-bottom: 3.125rem;
  }
  .div-block-105 {
    margin-bottom: 3.125rem;
  }
  .openinghours.shadow.border {
    padding-right: 20px;
    padding-left: 20px;
    border-style: none;
  }
  .image-33 {
    margin-bottom: 2rem;
  }
  .image-34 {
    margin-bottom: 2rem;
  }
  .image-39 {
    max-width: 45px;
  }
  .tabs-menu-5 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    overflow: auto;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .tab-2 {
    display: block;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }
  .faqs {
    top: 0px;
    padding-right: 20px;
    padding-left: 20px;
  }
  .div-block-58 {
    margin-top: 40px;
  }
  .contactformsection {
    padding-top: 3.125rem;
    padding-bottom: 3.125rem;
  }
  .contactformcontainer {
    padding-right: 20px;
    padding-left: 20px;
  }
  .checkbox-label-2 {
    font-size: 19px;
    line-height: 1;
  }
  .select-field-2 {
    font-size: 14px;
  }
  .checkbox-field-2 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .checkbox-2 {
    margin-top: -3px;
    background-image: none;
  }
  .text-block-38 {
    font-size: 14px;
  }
  .textarea-2 {
    font-size: 14px;
  }
  .div-block-106 {
    padding-right: 20px;
    padding-left: 20px;
  }
  .videocontainer {
    padding-top: 3.125rem;
    padding-bottom: 3.125rem;
  }
  .div-block-108 {
    padding-right: 20px;
    padding-left: 20px;
  }
  .backgroundsectionpartner {
    padding-top: 3.125rem;
    padding-right: 20px;
    padding-left: 20px;
  }
  .hotelcontainer {
    padding-right: 20px;
    padding-left: 20px;
  }
  .text-block-42 {
    font-size: 3.125rem;
    line-height: 3.1rem;
  }
  .link-10 {
    font-size: 2.5rem;
    line-height: 3rem;
  }
}
#w-node-_3ceec1c7-a853-a728-f0a3-11110cf65490-4cb53a31 {
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
  -ms-grid-column: span 1;
  grid-column-start: span 1;
  -ms-grid-column-span: 1;
  grid-column-end: span 1;
}

#w-node-_227aa4c4-1cc8-d34a-f605-25e2fac2b0b7-4cb53a31 {
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
  -ms-grid-column: span 1;
  grid-column-start: span 1;
  -ms-grid-column-span: 1;
  grid-column-end: span 1;
}

#w-node-_31cb8a00-da38-4f1e-a2e9-554aa6d3b530-a6d3b518 {
  -webkit-align-self: stretch;
  -ms-flex-item-align: stretch;
  -ms-grid-row-align: stretch;
  align-self: stretch;
}

#w-node-d1a9e73a-4bc3-3b42-2960-6ae9a8e3cedf-a8e3cea2 {
  -webkit-align-self: stretch;
  -ms-flex-item-align: stretch;
  -ms-grid-row-align: stretch;
  align-self: stretch;
}

#w-node-_12043139-7844-c569-f011-516ccb0704c1-cb0704b6 {
  -ms-grid-column-align: end;
  justify-self: end;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
}

#w-node-_54e8e409-857f-b3ac-67b0-2e65cced7566-cced755b {
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  -ms-grid-column-align: end;
  justify-self: end;
}

#w-node-_7927aa13-4373-63e1-11ff-744df68f286a-f68f285f {
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  -ms-grid-column-align: end;
  justify-self: end;
}

#w-node-_64eab522-06c3-455a-7cbc-fe80e0238624-e0238619 {
  -webkit-align-self: stretch;
  -ms-flex-item-align: stretch;
  -ms-grid-row-align: stretch;
  align-self: stretch;
}

#w-node-_8ca58d2a-d600-6121-b59f-70cee829647f-e829644c {
  -ms-grid-column-align: end;
  justify-self: end;
}

#w-node-fbba13b3-03db-72fc-e9da-5476548ac42c-548ac3f9 {
  -ms-grid-column-align: end;
  justify-self: end;
}

#w-node-_4e5b2621-2259-9f4c-9499-a8b160c89c33-60c89bfd {
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
  -ms-grid-column: span 3;
  grid-column-start: span 3;
  -ms-grid-column-span: 3;
  grid-column-end: span 3;
}

#w-node-_4e5b2621-2259-9f4c-9499-a8b160c89c50-60c89bfd {
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
  -ms-grid-column: span 3;
  grid-column-start: span 3;
  -ms-grid-column-span: 3;
  grid-column-end: span 3;
}

#w-node-_4e5b2621-2259-9f4c-9499-a8b160c89c64-60c89bfd {
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
  -ms-grid-column: span 3;
  grid-column-start: span 3;
  -ms-grid-column-span: 3;
  grid-column-end: span 3;
}

#w-node-_4e5b2621-2259-9f4c-9499-a8b160c89c81-60c89bfd {
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
  -ms-grid-column: span 3;
  grid-column-start: span 3;
  -ms-grid-column-span: 3;
  grid-column-end: span 3;
}

#w-node-_0b655a15-fb92-283d-db7a-339fa05eeb76-a05eeb6b {
  -ms-grid-row: 2;
  grid-row-start: 2;
  -ms-grid-row-span: 1;
  grid-row-end: 3;
  -ms-grid-column: 1;
  grid-column-start: 1;
  -ms-grid-column-span: 1;
  grid-column-end: 2;
}

#w-node-_0b655a15-fb92-283d-db7a-339fa05eeb9c-a05eeb6b {
  -ms-grid-row: 1;
  grid-row-start: 1;
  -ms-grid-row-span: 3;
  grid-row-end: 4;
  -ms-grid-column: 2;
  grid-column-start: 2;
  -ms-grid-column-span: 1;
  grid-column-end: 3;
  -ms-grid-row-align: stretch;
  align-self: stretch;
}

#w-node-_0b655a15-fb92-283d-db7a-339fa05eebd8-a05eeb6b {
  -ms-grid-row: 2;
  grid-row-start: 2;
  -ms-grid-row-span: 1;
  grid-row-end: 3;
  -ms-grid-column: 3;
  grid-column-start: 3;
  -ms-grid-column-span: 1;
  grid-column-end: 4;
}

.headersection.easter {
  background-image: url("/images/Header-Image-Easter.png");
}

@media screen and (max-width: 991px) {
  #w-node-_986dd887-2a81-65c3-0063-79f923da43a9-23da439a {
    -webkit-box-ordinal-group: 10000;
    -webkit-order: 9999;
    -ms-flex-order: 9999;
    order: 9999;
  }
  #w-node-_986dd887-2a81-65c3-0063-79f923da43b2-23da439a {
    -webkit-box-ordinal-group: 10000;
    -webkit-order: 9999;
    -ms-flex-order: 9999;
    order: 9999;
  }
  #w-node-_986dd887-2a81-65c3-0063-79f923da43c1-23da439a {
    -webkit-box-ordinal-group: 10000;
    -webkit-order: 9999;
    -ms-flex-order: 9999;
    order: 9999;
  }
  #w-node-_986dd887-2a81-65c3-0063-79f923da43f9-23da439a {
    -webkit-box-ordinal-group: 10000;
    -webkit-order: 9999;
    -ms-flex-order: 9999;
    order: 9999;
  }
  #w-node-_986dd887-2a81-65c3-0063-79f923da4410-23da439a {
    -webkit-box-ordinal-group: 10000;
    -webkit-order: 9999;
    -ms-flex-order: 9999;
    order: 9999;
  }
  #w-node-_12043139-7844-c569-f011-516ccb0704c1-cb0704b6 {
    -ms-grid-column-align: center;
    justify-self: center;
  }
  #w-node-_54e8e409-857f-b3ac-67b0-2e65cced7566-cced755b {
    -ms-grid-column-align: center;
    justify-self: center;
  }
  #w-node-_7927aa13-4373-63e1-11ff-744df68f286a-f68f285f {
    -ms-grid-column-align: center;
    justify-self: center;
  }
  #w-node-_8a12fdd8-8011-c0b5-46dc-423003a28efa-03a28ee8 {
    -webkit-box-ordinal-group: 10000;
    -webkit-order: 9999;
    -ms-flex-order: 9999;
    order: 9999;
  }
  #w-node-_6977b74e-06d1-68c8-38a7-9e4852facb71-7c0dd497 {
    -webkit-box-ordinal-group: 10000;
    -webkit-order: 9999;
    -ms-flex-order: 9999;
    order: 9999;
  }
  #w-node-bde3699f-0ecb-49fa-0aaf-a0a5f240ab2e-f240ab2a {
    -webkit-box-ordinal-group: 10000;
    -webkit-order: 9999;
    -ms-flex-order: 9999;
    order: 9999;
  }
  #w-node-c893e96f-3c02-d81b-064f-d98729fe9bf9-29fe9bf5 {
    -webkit-box-ordinal-group: 10000;
    -webkit-order: 9999;
    -ms-flex-order: 9999;
    order: 9999;
  }
  #w-node-_4d3d2fa0-ef43-324b-f89f-7becc7d663c5-c7d663c1 {
    -webkit-box-ordinal-group: 10000;
    -webkit-order: 9999;
    -ms-flex-order: 9999;
    order: 9999;
  }
  #w-node-_41dbb507-b3c5-b535-0097-364993bade7f-93bade7b {
    -webkit-box-ordinal-group: 10000;
    -webkit-order: 9999;
    -ms-flex-order: 9999;
    order: 9999;
  }
  #w-node-c87f4bfc-1941-1ddf-2157-8e7fe733dc7a-e733dc76 {
    -webkit-box-ordinal-group: 10000;
    -webkit-order: 9999;
    -ms-flex-order: 9999;
    order: 9999;
  }
  #w-node-_956ca092-04f8-0079-586e-be8e7896003e-7896003a {
    -webkit-box-ordinal-group: 10000;
    -webkit-order: 9999;
    -ms-flex-order: 9999;
    order: 9999;
  }
  #w-node-b8f9f93b-3279-60b7-1adc-da48bf102df0-bf102dec {
    -webkit-box-ordinal-group: 10000;
    -webkit-order: 9999;
    -ms-flex-order: 9999;
    order: 9999;
  }
  #w-node-_68892760-ce5c-3a9c-4f24-da1a15f8bf69-15f8bf65 {
    -webkit-box-ordinal-group: 10000;
    -webkit-order: 9999;
    -ms-flex-order: 9999;
    order: 9999;
  }
  #w-node-_2c628735-365d-fc75-54c7-1872c684fdb1-c684fdad {
    -webkit-box-ordinal-group: 10000;
    -webkit-order: 9999;
    -ms-flex-order: 9999;
    order: 9999;
  }
  #w-node-b1c653e9-5d1c-4a07-a374-0f455372dd61-5372dd5d {
    -webkit-box-ordinal-group: 10000;
    -webkit-order: 9999;
    -ms-flex-order: 9999;
    order: 9999;
  }
  #w-node-e88ff9f9-3920-d66e-217e-3ac086661a12-86661a0e {
    -webkit-box-ordinal-group: 10000;
    -webkit-order: 9999;
    -ms-flex-order: 9999;
    order: 9999;
  }
  #w-node-_32967510-be89-ae39-ee2f-d9564fa8bf9f-4fa8bf9b {
    -webkit-box-ordinal-group: 10000;
    -webkit-order: 9999;
    -ms-flex-order: 9999;
    order: 9999;
  }
  #w-node-b938dfd0-c70d-9bb9-9b85-f6cf34d50c53-34d50c4f {
    -webkit-box-ordinal-group: 10000;
    -webkit-order: 9999;
    -ms-flex-order: 9999;
    order: 9999;
  }
  #w-node-c5fa3974-9b1b-54a9-5b26-39f2d3eb34d9-d3eb34d5 {
    -webkit-box-ordinal-group: 10000;
    -webkit-order: 9999;
    -ms-flex-order: 9999;
    order: 9999;
  }
  #w-node-bd268dc4-0717-3c2c-74bc-f74169c82635-69c82631 {
    -webkit-box-ordinal-group: 10000;
    -webkit-order: 9999;
    -ms-flex-order: 9999;
    order: 9999;
  }
  #w-node-_04362b47-6050-b54b-d0f9-7f4c2bf90268-2bf90264 {
    -webkit-box-ordinal-group: 10000;
    -webkit-order: 9999;
    -ms-flex-order: 9999;
    order: 9999;
  }
  #w-node-_6715ac67-07f2-a6e7-7ff7-853bce39fd7f-ce39fd7b {
    -webkit-box-ordinal-group: 10000;
    -webkit-order: 9999;
    -ms-flex-order: 9999;
    order: 9999;
  }
  #w-node-_16ae7aaf-ad41-486a-8761-73b40df6400b-0df64007 {
    -webkit-box-ordinal-group: -9998;
    -webkit-order: -9999;
    -ms-flex-order: -9999;
    order: -9999;
  }
  #w-node-_434a8897-1202-d4cc-cece-cfae070118f5-070118e1 {
    -webkit-box-ordinal-group: -9998;
    -webkit-order: -9999;
    -ms-flex-order: -9999;
    order: -9999;
  }
  #w-node-bbb51a92-5fc7-5b2b-d2d1-03c454e3161e-54e3161e {
    -webkit-box-ordinal-group: 10000;
    -webkit-order: 9999;
    -ms-flex-order: 9999;
    order: 9999;
  }
  #w-node-_0b655a15-fb92-283d-db7a-339fa05eeb76-a05eeb6b {
    -ms-grid-column: span 1;
    grid-column-start: span 1;
    -ms-grid-column-span: 1;
    grid-column-end: span 1;
    -ms-grid-row: span 1;
    grid-row-start: span 1;
    -ms-grid-row-span: 1;
    grid-row-end: span 1;
  }
  #w-node-_0b655a15-fb92-283d-db7a-339fa05eeb9c-a05eeb6b {
    -ms-grid-column: span 1;
    grid-column-start: span 1;
    -ms-grid-column-span: 1;
    grid-column-end: span 1;
    -ms-grid-row: span 3;
    grid-row-start: span 3;
    -ms-grid-row-span: 3;
    grid-row-end: span 3;
    -webkit-box-ordinal-group: -9998;
    -webkit-order: -9999;
    -ms-flex-order: -9999;
    order: -9999;
  }
  #w-node-_0b655a15-fb92-283d-db7a-339fa05eebd8-a05eeb6b {
    -ms-grid-column: span 1;
    grid-column-start: span 1;
    -ms-grid-column-span: 1;
    grid-column-end: span 1;
    -ms-grid-row: span 1;
    grid-row-start: span 1;
    -ms-grid-row-span: 1;
    grid-row-end: span 1;
    -webkit-box-ordinal-group: 10000;
    -webkit-order: 9999;
    -ms-flex-order: 9999;
    order: 9999;
  }
  #w-node-_0e58d800-49dc-32a8-5679-109797854d97-e2d96333 {
    -webkit-box-ordinal-group: 10000;
    -webkit-order: 9999;
    -ms-flex-order: 9999;
    order: 9999;
  }
  #w-node-_758ccfcf-398b-203a-bdef-80f51735655d-e2d96333 {
    -webkit-box-ordinal-group: 10000;
    -webkit-order: 9999;
    -ms-flex-order: 9999;
    order: 9999;
  }
  #w-node-f3729c44-dbf8-9d99-9028-fe974d64624c-e2d96333 {
    -webkit-box-ordinal-group: 10000;
    -webkit-order: 9999;
    -ms-flex-order: 9999;
    order: 9999;
  }
  #w-node-f23f3c7c-688a-44e3-a2e1-23a2d2b76ba1-e2d96333 {
    -webkit-box-ordinal-group: 10000;
    -webkit-order: 9999;
    -ms-flex-order: 9999;
    order: 9999;
  }
  #w-node-_9e3dedf0-4349-7e20-e985-b82b47e9fed1-e2d96333 {
    -webkit-box-ordinal-group: 10000;
    -webkit-order: 9999;
    -ms-flex-order: 9999;
    order: 9999;
  }
}
@media screen and (max-width: 767px) {
  #w-node-_8ca58d2a-d600-6121-b59f-70cee829647f-e829644c {
    -ms-grid-column-align: auto;
    justify-self: auto;
  }
  #w-node-fbba13b3-03db-72fc-e9da-5476548ac42c-548ac3f9 {
    -ms-grid-column-align: auto;
    justify-self: auto;
  }
}
@media screen and (max-width: 479px) {
  #w-node-_2d138c52-9483-20a1-f6e0-0b6ff47801c6-2ab53a24 {
    -ms-grid-column-align: auto;
    justify-self: auto;
  }
  #w-node-_12043139-7844-c569-f011-516ccb0704c1-cb0704b6 {
    -ms-grid-column-align: stretch;
    justify-self: stretch;
  }
  #w-node-_44029b2c-dffa-6086-35aa-073c48ebe464-48ebe461 {
    -ms-grid-column-align: center;
    justify-self: center;
  }
  #w-node-_55448bd9-6fa8-584f-063e-8786b18850bd-b18850ba {
    -ms-grid-column-align: stretch;
    justify-self: stretch;
  }
  #w-node-e6deb8f1-2f42-5c77-21ab-674dd4fad87d-d4fad87a {
    -ms-grid-column-align: center;
    justify-self: center;
  }
  #w-node-_6377f0eb-4e7a-4c95-b23b-e9c8c55c265f-c55c265c {
    -ms-grid-column-align: stretch;
    justify-self: stretch;
  }
  #w-node-_8a36ea72-f2cd-4659-601f-97600724440f-6a06f2da {
    -ms-grid-column-align: auto;
    justify-self: auto;
  }
}
html {
  scroll-behavior: smooth;
}

main {
  max-width: 2400px;
  margin: 0 auto;
}

.apilist {
  padding: 2rem;
  font-size: 16px;
}

.list .item {
  background: #eee;
  padding: 1rem;
  margin: 1rem;
  margin-bottom: 2rem;
}

.body-2 {
  overflow-x: hidden;
}

.ovalcontainer {
  background: white;
  top: -100px;
  position: relative;
  overflow: hidden;
  border-top-left-radius: 100% 100%;
  border-top-right-radius: 100% 100%;
  margin-left: -100px;
  margin-right: -100px;
}

.shadow {
  filter: drop-shadow(0px 18px 18px rgba(0, 0, 0, 0.2));
}

.cardshadow {
  filter: drop-shadow(0px 30px 30px rgba(0, 0, 0, 0.7));
}

a:hover, a:focus {
  text-decoration: none;
  color: inherit;
}

.w-tab-link:not(.w--current):hover {
  color: #000;
}

.booknow:hover, .moreinfos:hover, .submitbutton:hover, .footerbutton:hover, .mainctablue:hover, .headlink:hover {
  color: #ffffff;
  text-decoration: none;
}

.booknow {
  padding-top: 13px;
}

.booknow.bigger {
  padding-top: 20px;
}

.div-block-5 {
  transition: background 0.8s ease-in-out;
  padding-bottom: 0.2rem;
  border-bottom: 1px solid transparent;
  position: fixed;
  width: 100%;
}

.navbar {
  transition: margin-bottom 0.2s ease-in-out;
}

.div-block-4 {
  position: relative;
}

.footerButtonContainer {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.footerButtonContainerMobile {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 2rem;
}

.newsletter .section-11 {
  padding-bottom: 0;
}

.text-block-24 {
  padding-top: 1rem;
}

.tel-link {
  color: #fff;
  text-decoration: none;
}

.appointmentbutton:hover, .appointmentbutton:focus, .topbutton.colored:hover, .topbutton:focus, .booknow.inverse:focus, .booknow.inverse:hover {
  color: #0094c8;
}

.buyvoucherbutton:hover, .buyvoucherbutton:focus {
  color: #ffffff;
}

.footerbutton-2:focus, .booknow:focus, .headlink:focus, .footerbutton-2:hover, .button.medium.ghost:focus, .topbutton:hover, .topbutton:focus, .moreinfos:focus, .moreinfos:focus,
.mainctablue:hover, .mainctablue:focus {
  color: #fff;
}

.link-4:hover, .link-4:focus, .vertical-menu-link-2:hover, .vertical-menu-link-2:focus, .link-5:hover, .link-5:focus, .link-6:hover, .link-6:focus,
.mobilelink:hover, .mobilelink:focus, .div-block-95:hover, div-block-95:focus {
  color: #6ad5cb;
}

.mobilelink.active, .w-nav-link.active, .vertical-menu-link-2.active {
  color: #6ad5cb;
}

.textlink:hover, .textlink:focus {
  color: #000;
  text-decoration: underline;
}

.div-block-2.desktop {
  width: 100%;
  max-width: 1240px;
  padding-right: 0px;
  padding-left: 0px;
  margin: 0 auto;
}

.headlink {
  margin-right: 1rem;
}

.div-block-96 {
  padding-bottom: 3rem;
}

.div-block-92 {
  padding-top: 20%;
}

.overflowHidden {
  overflow: hidden !important;
}

.overflowContainer {
  max-width: 100%;
  overflow: hidden;
}

.mainsectionheader, .headersectionappointment {
  top: 0;
  margin-bottom: 0;
}

.footer-4 .component-wrapper-3 {
  margin-bottom: 0;
}
.footer-4 .container {
  padding-left: 0;
  padding-right: 0;
  max-width: 1240px;
  width: 100%;
}

.text-block-32 {
  margin-right: 2rem;
}

.w-dropdown {
  z-index: 10;
}

.productSlider {
  display: none;
}
.productSlider.activeCat {
  display: block;
}

.iconDropdown {
  margin-right: 1rem;
}

.modal-wrapper {
  display: none;
}

.button-separator {
  width: 10px;
}

.container.container-navbar {
  width: 100%;
  max-width: 1320px;
  padding-left: 0;
  padding-right: 0;
}

#Standort, #Trainingsziel {
  border-top-color: transparent;
  border-right-color: transparent;
  border-bottom-color: #838d95;
  border-left-color: transparent;
}

.div-block-16 {
  text-decoration: none;
}

.appointment .tabcontent {
  box-shadow: inset 0 0 20px 8px rgba(0, 0, 0, 0.3);
}

#tbDownload {
  margin-bottom: 2rem;
}

/* Language Buttons */
.languagebutton, .languagebutton.en, .languagebutton:focus, .languagebutton:hover {
  color: transparent;
  border: transparent;
  background-color: transparent;
}

.proflyer {
  background-size: cover;
}

.imagetextctasection.groups {
  background-image: url(/images/Family-Imagesection_1.jpg);
}

.newslettersection, .dreamdiv, .div-block-59.skydive {
  box-shadow: none;
}

.headersection.groups {
  background-image: url("/images/Header-Image-Groups.png");
}

#moreinfosbottom {
  display: none;
}

.div-block-43 {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  padding-top: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  background-image: none;
}

.div-block-10:hover, .div-block-10.middle:hover, .div-block-10.left:hover {
  transform: none;
}

.kontakt .locationcontainer.shadow {
  filter: none;
  -webkit-box-shadow: 5px 5px 22px -6px #000000;
  box-shadow: 5px 5px 22px -6px #000000;
}
.kontakt .openinghours.shadow {
  filter: none;
  -webkit-box-shadow: 5px 5px 22px -6px #000000;
  box-shadow: 5px 5px 22px -6px #000000;
}
.kontakt .openinghours.shadow.right {
  background-color: #6ad5cb;
}

.dreamdiv {
  -webkit-box-shadow: 5px 5px 22px -6px #000000;
  box-shadow: 5px 5px 22px -6px #000000;
}

.cardshadowdiff {
  -webkit-box-shadow: 5px 5px 22px -6px #000000;
  box-shadow: 5px 5px 22px -6px #000000;
}

.div-block-4 {
  min-width: 200px;
}

.div-block-23 a {
  text-decoration: none;
}

.w-dropdown-link.w--current {
  color: #6ad5cb;
}

.hotels .image-4 {
  top: -57px;
}

.dropdown-list-2 {
  padding-top: 45px;
}

.airlebnis .moreinfos {
  display: none;
}

.link-10:hover, .link-10:focus, .link-10.w--current, .text-block-35:hover, .div-block-94:hover {
  color: #6ad5cb;
}

#btnContactus {
  position: fixed;
  top: auto;
  bottom: 400px;
  right: 0;
  width: 45px;
  cursor: pointer;
  transition: width 0.5s ease-in-out;
  overflow: hidden;
  z-index: 1000;
  background-color: #13294B;
  height: 47px;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}
#btnContactus img {
  max-height: 100%;
  width: unset;
}

#btnContactus.faq {
  bottom: 350px;
}
#btnContactus.faq:hover {
  width: 110px;
}
#btnContactus.airlebnis {
  bottom: 300px;
}
#btnContactus.airlebnis:hover {
  width: 250px;
}

#contactImage {
  max-width: none;
}

#btnContactus:hover {
  width: 220px;
}

.div-block-5 {
  z-index: 15;
}

.text-block-8.newsletter {
  margin-bottom: 0;
}

.image-28 {
  max-width: none;
}

.dreamdiv {
  justify-content: start;
  -webkit-box-align: start;
}

.uebernachtung .image-4 {
  top: 0;
}

.fligjtclub .openinghours {
  padding-bottom: 3.5rem;
}

.bold-text-8.proflyersite.shedule {
  font-weight: 700;
}

.home .div-block-20, .uebernachtung .div-block-20 {
  -webkit-justify-content: space-between;
  justify-content: space-between;
}

.uebernachtung .booknow.diffmargin {
  padding-top: 14px;
}

.text-block-26 {
  flex-direction: column;
}

.w-icon-slider-right:before {
  color: #aaafb6;
}

.w-icon-slider-left:before {
  color: #aaafb6;
}

.text-block-3 {
  font-size: 2.2rem;
  line-height: 2rem;
}

.beginners.xmas {
  background-color: #fff;
}

.einsteiger .text-block-40 {
  font-family: Obvia-book, sans-serif;
}

.div-block-106.lessbottom.info {
  padding-top: 2rem;
}

.div-block-100.lessbottompadding {
  padding-bottom: 8rem;
}

.headersection.xmas, .headersection.easter {
  background-repeat: no-repeat;
}

.home .text-block-40 {
  font-family: Obvia-book, sans-serif;
}

#einsteiger {
  padding-top: 5rem;
}

.admin .checkbox {
  border-style: none;
}

.form-horizontal .control-label {
  text-align: left;
}

.airlebnis.sleep {
  padding-top: 5rem;
}

.image-50 {
  max-width: none;
  margin-bottom: 0;
}

.div-block-7.viernheim.xmas {
  /* Easter */
  max-width: none;
  /* Easter */
  max-height: none;
}
.div-block-7.viernheim.xmas .text-block-3 {
  margin-top: 1rem;
}
.div-block-7.viernheim.xmas .heading-4 {
  margin-top: 1rem;
}

.div-block-7.weekday {
  /* Easter */
  padding: 10px 10px 10px 10px;
  max-width: none;
  /* Easter */
  max-height: none;
}
.div-block-7.weekday .text-block-3 {
  margin-top: 1rem;
}
.div-block-7.weekday .heading-4 {
  margin-top: 1rem;
}

.ueber-uns .w-icon-slider-right:before {
  color: #000000;
}
.ueber-uns .w-icon-slider-left:before {
  color: #000000;
}
.ueber-uns .w-slider-dot {
  background: #000000;
  color: #000000;
  opacity: 50%;
  width: 12px;
  height: 12px;
}
.ueber-uns .w-slider-dot.w-active {
  background: #ffffff;
  color: #ffffff;
  opacity: 100%;
  width: 12px;
  height: 12px;
}
.ueber-uns .section-13.about {
  background-color: #fefefe;
}
.ueber-uns .teamsection {
  padding-bottom: 8.4375rem;
  padding-top: 8.4375rem;
  background-color: #fefefe;
  background-image: linear-gradient(0deg, #0094c8 100%, #fefefe 0);
}
.ueber-uns .teamcontent {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  max-width: 1280px;
  margin-right: auto;
  margin-left: auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.ueber-uns .image-51 {
  max-width: 846px;
}
.ueber-uns .slidersection {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 680px;
  max-height: none;
  padding-top: 80px;
  padding-bottom: 0px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  background-image: url("/images/slider_back.webp");
  background-position: 50% 100%;
  background-size: 100%;
  background-repeat: no-repeat;
}
.ueber-uns .slider-2 {
  width: 100%;
  height: 100%;
  max-width: 1100px;
  margin-right: auto;
  margin-left: auto;
  background-color: transparent;
}
.ueber-uns .black {
  color: #0e0f11;
}
.ueber-uns .slidercontent {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 850px;
  margin-right: auto;
  margin-left: auto;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.ueber-uns .div-block-109 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  padding-top: 50px;
  padding-bottom: 81px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.ueber-uns .left {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 50%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.ueber-uns .right {
  width: 50%;
}
.ueber-uns .text-block-43 {
  font-family: komu-a, sans-serif;
  color: #6ad5cb;
  font-size: 40px;
  line-height: 40px;
  letter-spacing: 2px;
}
.ueber-uns .text-block-44 {
  font-family: komu-a, sans-serif;
  font-size: 90px;
  line-height: 90px;
}
.ueber-uns .text-block-45 {
  width: 85%;
  font-size: 28px;
  line-height: 35px;
  font-weight: 400;
}
.ueber-uns .mask-2 {
  overflow: hidden;
}
.ueber-uns .slide-nav {
  top: 80%;
}
.ueber-uns .section.beginners.toppadding.about {
  background-color: #fefefe;
  background-image: none;
}
.ueber-uns .tabcontent.nobackground.about {
  padding-top: 0px;
  padding-bottom: 0px;
}
.ueber-uns .image-52 {
  position: absolute;
  left: auto;
  top: auto;
  right: -33%;
  bottom: -54%;
  max-width: none;
  height: auto;
}
.ueber-uns .tabs-menu-4.faq {
  margin-bottom: 5rem;
}

.headersection.summer {
  background-image: url(/images/hero-sommerkampagne.webp);
  background-repeat: no-repeat;
}

.contactBottom:hover {
  color: #6ad5cb;
}

.openinghours.shadow.right.flightclub {
  background-image: url(/images/bottom-graphic-new.png);
}

.partnersection {
  padding-top: 3rem;
}

.text-block-40.corona {
  font-family: obvia, sans-serif;
}

.dreamdiv {
  -webkit-box-shadow: 5px 5px 22px -6px rgba(0, 0, 0, 0.5);
  box-shadow: 5px 5px 22px -6px rgba(0, 0, 0, 0.5);
}

.text-block-7.alignright.diffsized.smaller {
  max-width: 100%;
}

.heading-10.middle {
  text-align: center;
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .heading-10.middle {
    margin-bottom: 5rem;
  }
}

.home .div-block-7, .xmas .div-block-7 {
  text-align: center;
}

/****************** MIN Width *****************/
@media screen and (min-width: 991px) {
  .div-block-5 {
    padding-left: 24px;
    padding-right: 24px;
  }
  .div-block-106.lessbottom.info .text-block-7.alignleft.smalltext {
    width: 82%;
  }
}
@media screen and (min-width: 1500px) {
  .mainsectionheader {
    background-position: 0px -200px;
  }
  .section.events {
    background-position: 0px -150px;
  }
  .headersection.airlebnis {
    background-position: 50% -200px;
  }
}
@media screen and (min-width: 1600px) {
  .mainsectionheader, .headersection.viernheim {
    background-position: 0px -200px;
  }
  .headersection.airlebnis {
    background-position: 50% -300px;
  }
  .headersection.flightclub {
    background-position: 50% -150px;
  }
  .headersection.xmas, .headersection.easter {
    background-position: 50% -150px;
  }
}
@media screen and (min-width: 1700px) {
  .section.events {
    background-position: 0px -250px;
  }
}
@media screen and (min-width: 1800px) {
  .mainsectionheader, .headersection.viernheim {
    background-position: 0px -350px;
  }
  .headersection.groups, .headersection.beginners {
    background-position: 0px -150px;
  }
  .headersection.proflyermain {
    background-position: 0px -220px;
  }
  .headersection {
    background-position: 0px -150px;
  }
  .section.events {
    background-position: 0px -300px;
  }
  .headersection.airlebnis {
    background-position: 50% -400px;
  }
  .headersection.flightclub {
    background-position: 50% -250px;
  }
  .headersection.xmas, .headersection.easter {
    background-position: 50% -300px;
  }
}
@media screen and (min-width: 1900px) {
  .headersection.groups, .headersection.beginners {
    background-position: 0px -180px;
  }
  .section.events {
    background-position: 0px -450px;
  }
}
@media screen and (min-width: 2000px) {
  .headersection.groups, .headersection.beginners {
    background-position: 0px -250px;
  }
  .headersection.proflyermain {
    background-position: 0px -330px;
  }
  .headersection.airlebnis {
    background-position: 50% -600px;
  }
  .headersection.flightclub {
    background-position: 50% -350px;
  }
}
@media screen and (min-width: 2100px) {
  .mainsectionheader, .headersection.viernheim {
    background-position: 0px -500px;
  }
  .headersection.groups, .headersection.beginners {
    background-position: 0px -340px;
  }
  .headersection {
    background-position: 0px -300px;
  }
  .section.events {
    background-position: 0px -650px;
  }
}
@media screen and (min-width: 2200px) {
  .headersection.flightclub {
    background-position: 50% -450px;
  }
  .headersection.xmas {
    background-position: 50% -400px;
  }
}
@media screen and (min-width: 2300px) {
  .mainsectionheader, .headersection.viernheim {
    background-position: 0px -500px;
  }
  .headersection.groups, .headersection.beginners {
    background-position: 0px -400px;
  }
  .section.events {
    background-position: 0px -700px;
  }
}
/****************** END MIN Width *****************/
/****************** MAX Width *****************/
@media screen and (max-width: 1200px) {
  .w-nav-link.color-inverse, .text-block-41 {
    font-size: 16px;
  }
  .button.medium.presentbutton {
    width: 220px;
    padding-left: 10px;
    padding-right: 10px;
  }
  .button.medium.presentbutton .button-text {
    font-size: 18px;
  }
  .brand-logo {
    margin-right: 20px;
  }
  .button.medium.ghost {
    padding-left: 10px;
    padding-right: 10px;
    width: 110px;
  }
  .button.medium.ghost .button-text {
    font-size: 18px;
  }
  .container.container-navbar {
    width: 100%;
  }
  .button-separator {
    width: 1px;
  }
  .headlink {
    margin-right: 0.5rem;
  }
  .div-block-2.desktop {
    padding-right: 40px;
    padding-left: 40px;
  }
}
@media screen and (max-width: 991px) {
  .section.beginners.xmas {
    padding-top: 3rem;
  }
  .div-block-100.lessbottompadding {
    padding-bottom: 5rem;
  }
  .navbar.dark {
    padding-bottom: 0px;
  }
  .navbar .container {
    max-width: none;
    width: 100%;
  }
  .container.container-navbar {
    padding-left: 40px;
    padding-right: 40px;
  }
  .submitbutton {
    height: 55px;
    padding-top: 15px;
    padding-bottom: 8px;
    font-size: 1.8rem;
  }
  #myIframe {
    height: 600px;
  }
  .mobilelink.last {
    margin-bottom: 3rem;
  }
  .brand-logo {
    padding-top: 20px;
  }
  .locationcontainer.shadow {
    box-shadow: none;
    filter: none;
  }
  .flightclub .section-13 {
    padding-left: 0;
    padding-right: 0;
  }
  .flightclub .tabs-content {
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 20px;
  }
  #btnContactus {
    display: none;
  }
  .dropdown-link.xmas {
    background-image: url(/images/Icon-x-mas.svg);
    background-position: 3% 50%;
    background-size: 35px;
    background-repeat: no-repeat;
  }
  .div-block-7.viernheim.xmas {
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    max-width: 250px;
    padding: 40px 10px 20px 10px;
  }
  .div-block-7.viernheim.xmas.easter {
    padding: 75px 10px 0 10px;
  }
  .ueber-uns .slidercontent {
    max-width: 600px;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .ueber-uns .div-block-109 {
    padding-top: 0px;
  }
  .ueber-uns .left {
    width: 100%;
  }
  .ueber-uns .text-block-43 {
    font-size: 35px;
    line-height: 35px;
  }
  .ueber-uns .text-block-44 {
    font-size: 80px;
    line-height: 80px;
  }
  .ueber-uns .text-block-45 {
    width: 60%;
    font-size: 24px;
    line-height: 30px;
  }
  .ueber-uns .image-52 {
    position: absolute;
    right: -345px;
    bottom: -239px;
    width: 120%;
  }
  .ueber-uns .right {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .section-13.about {
    padding-right: 0px;
    padding-left: 0px;
  }
  .ueber-uns .slidercontent {
    max-width: 377px;
  }
  .ueber-uns .left {
    position: relative;
    top: -130px;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .ueber-uns .text-block-45 {
    width: 100%;
    text-align: center;
  }
  .ueber-uns .image-52 {
    right: -180px;
    bottom: -245px;
    width: 141%;
  }
  .ueber-uns .teamcontent {
    padding-right: 20px;
    padding-left: 20px;
  }
  .div-block-7.viernheim.xmas {
    padding: 30px 5px 10px 5px;
  }
  .div-block-7.viernheim.xmas.easter {
    padding: 50px 5px 0 5px;
  }
  .headersection.summer {
    background-position: 20% 0px;
  }
  .imagetextctasectionmobile {
    background-image: url(/images/friends-windtunnel-mobile.png);
  }
  .partner .div-block-12 {
    margin-bottom: 2rem;
  }
}
@media screen and (max-width: 479px) {
  .div-block-7.viernheim.xmas {
    max-width: 150px;
  }
  .div-block-7.viernheim.xmas img {
    width: 100%;
    max-width: 50px;
  }
  .div-block-38.shadow {
    filter: drop-shadow(0px 0px 0px rgba(0, 0, 0, 0));
  }
  .container.container-navbar {
    padding-left: 20px;
    padding-right: 20px;
  }
  .div-block-90 {
    right: 20px;
  }
  .div-block-92 {
    padding-top: 30%;
  }
  .image-17 {
    max-width: 100%;
  }
  .brand-logo {
    padding-top: 20px;
  }
  .w-slider-arrow-left, .w-slider-arrow-right {
    display: none;
  }
  .proflyer {
    padding-top: 10px;
  }
  .booknow {
    padding-top: 12px !important;
  }
  .booknow.bigger.morepadding.mobile.same, .booknow.blue.height.mobilemargin {
    padding-top: 12px !important;
  }
  .booknow.blue.height {
    padding-top: 14px !important;
    height: 51px;
  }
  .text-block-24 {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
  .image-12 {
    padding-top: 1rem;
  }
  .uebernachtung .mainctablue.mobile, .airlebnis .mainctablue.mobile, .home .mainctablue.mobile, .gruppen .mainctablue.mobile {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .airlebnis .div-block-29 {
    top: -10px;
  }
  .openinghours.shadow.right.flightclub {
    padding-bottom: 10rem;
  }
  .ueber-uns .left {
    top: -104px;
  }
  .ueber-uns .slidersection {
    background-size: cover;
  }
  .ueber-uns .black {
    bottom: -100px;
  }
  .ueber-uns .image-51 {
    padding-top: 1rem;
  }
  .ueber-uns .tabs-menu-4 {
    height: 40px;
  }
  .alignright.mirrored {
    text-align: left !important;
  }
}
@media screen and (max-width: 320px) {
  .div-block-7.viernheim.xmas {
    max-width: 100px;
  }
}

/*# sourceMappingURL=screen.css.map */
