@font-face {
    font-family: "Maven Pro";
    src: local("Maven Pro"), url("fonts/maven_pro/MavenPro-Regular.ttf") format("truetype"); }
@font-face {
    font-family: "Maven Pro";
    src: local("Maven Pro"), url("fonts/maven_pro/MavenPro-Medium.ttf") format("truetype");
    font-weight: 500; }
@font-face {
    font-family: "Maven Pro";
    src: local("Maven Pro"), url("fonts/maven_pro/MavenPro-Bold.ttf") format("truetype");
    font-weight: 700; }
@font-face {
    font-family: "Maven Pro";
    src: local("Maven Pro"), url("fonts/maven_pro/MavenPro-Black.ttf") format("truetype");
    font-weight: 900; }
@font-face {
    font-family: "Ubuntu";
    src: local("Ubuntu"), url("fonts/ubuntu/Ubuntu-Light.ttf") format("truetype");
    font-weight: 300; }
@font-face {
    font-family: "Ubuntu";
    src: local("Ubuntu"), url("fonts/ubuntu/Ubuntu-LightItalic.ttf") format("truetype");
    font-weight: 300;
    font-style: italic; }
@font-face {
    font-family: "Ubuntu";
    src: local("Ubuntu"), url("fonts/ubuntu/Ubuntu-Regular.ttf") format("truetype"); }
@font-face {
    font-family: "Ubuntu";
    src: local("Ubuntu"), url("fonts/ubuntu/Ubuntu-Medium.ttf") format("truetype");
    font-weight: 500; }
@font-face {
    font-family: "Ubuntu";
    src: local("Ubuntu"), url("fonts/ubuntu/Ubuntu-MediumItalic.ttf") format("truetype");
    font-weight: 400;
    font-style: italic; }
@font-face {
    font-family: "Ubuntu";
    src: local("Ubuntu"), url("fonts/ubuntu/Ubuntu-Bold.ttf") format("truetype");
    font-weight: 700; }
@font-face {
    font-family: "Ubuntu";
    src: local("Ubuntu"), url("fonts/ubuntu/Ubuntu-BoldItalic.ttf") format("truetype");
    font-weight: 700;
    font-style: italic; }
/*
Animations mixin
============================================
The mixins provides you a cross-browser compatible method to set animation values.

Please refer to <http://caniuse.com/css-animation> to see the browser support table of the feature.

######Example:
`.animation([value]);`

`@param: {String} value: All animation values`
*/
/*
Appearance mixin
============================================
The mixins provides you a cross-browser compatible method to set the appearance of the element.

Please refer to <http://caniuse.com/appearance> to see the browser support table of the feature.

######Example:
`.appearance([value]);`

`@param {String} type The type you want to use`
*/
/*
Backface visibility mixin
============================================
The mixins provides you a cross-browser compatible method to set the backface-visibility of the element.

Please refer to <http://caniuse.com/transforms3d> to see the browser support table of the feature.

######Example:
`.backface-visibility([value]);`

`@param {String} visibility The visibility you want to use`
*/
/*
Border-radius mixin
=============================================
The mixins provides you a cross-browser compatible method to set a border-radius.

Please refer to <http://caniuse.com/border-radius> to see the browser support table of the feature.

######Syntax:
`$param {String} radius The radius you want to set`<br/>

######Example:
Same border-radius for all edges: <br/>
`.border-radius([pixel-value]);`<br/>

Different border-radius:<br/>
`.border-radius-multi([pixel-value-leftTop], [pixel-value-rightTop], [pixel-value-rightBottom], [pixel-value-leftBottom]);`<br/>

Resetting border radius:<br/>
`.reset-border-radius();`
*/
/*
Box shadow mixin
==============================================
The mixins provides you a cross-browser compatible method to set a box-shadow.

Please refer to <http://caniuse.com/css-boxshadow> to see the browser support table of the feature.

######Example:
`.box-shadow([h-shadow-value], [v-shadow-value], [blur-amount], [spread-amount], [shadow-color]);`

`@param: {Number} x: Offset to the x axis (Default: 0)`<br/>
`@param: {Number} y: Offset to the y axis (Default: 0)`<br/>
`@param: {Number} blur: Bluring radius (Default: 1px)`<br/>
`@param: {String} color: Color of the shadow (Default: #000)`<br/>
*/
/*
Box-sizing mixin
========================================
The mixins provides you a cross-browser compatible method to set the box-sizing which supports IE starting from
version 8 to the newest one.

Please refer to <http://caniuse.com/css3-boxsizing> to see the browser support table of the feature.

######Example:
`.box-sizing:([value]);`

`@param: {String} box-sizing: Box model, which should be used (Default: border-box)`
*/
/*
Clearfix mixin
========================================

Same as clearfix class from bootstrap

*/
/*
Column count mixin
=============================================
This mixin provides you a cross-browser compatible method to set the column count property.

Please refer to <http://caniuse.com/multicolumn> to see the browser support table of the feature.

######Example:
`.column-count([value]);`

`@param: {Number} count: The amount of columns you want to set (Default: auto)`
*/
/*
Grabbing cursor
==================================
This mixin provides you a cross-browser compatible method to set the cursor grabbing behavior.

######Example:
`.cursorGrab();`<br/>
`.cursorGrabbing();`<br/>

*/
/*
Hypheration mixin
======================================
The mixins provides you a cross-browser compatible method to set the hyphenation.

Please refer to <http://caniuse.com/css-hyphens> to see the browser support table of the feature.

######Example:
`.hyphens([value]);`

`@param: {String} hyphenation: The hyphenation that should be used (Default: auto)`
*/
/*
Gradient mixin
====================================================
The mixins provides you a cross-browser compatible method to set a linear gradient which goes from top to bottom.

Please refer to <http://caniuse.com/css-gradients> to see the browser support table of the feature.

Shopware 5 also provides gradient mixins based on the basic color variables that can be changed in the backend theme configuration tool.
######Basic gradients:
`.primary-gradient();`<br/>
`.secondary-gradient();`<br/>
`.white-gradient();`<br/>

######Linear Gradient Example:
`.linear-gradient([startcolor-value], [endcolor-value]);`

`@param {String} start The start color of the gradient`<br/>
`@param {String} end The end color of the gradient`
*/
/*
normalize mixin
====================================================
The mixins provides you a cross-browser compatible method to normalize typical elements.<br />
e.g. remove spinners of input type number fields.


######Example:
input[type="number"] {
    @import normalize_input([value]);
}
*/
/*
change behavior of input fields spinner e.g. type number
@param {String} $value type of appearance
@default textfield
*/
/*
Opacity
===============================================
The mixins provides you a cross-browser compatible opacity which supports IE starting from version 8 to the
newest one. Safari, Chrome and Firefox are supported in all versions.

Please refer to <http://caniuse.com/css-opacity> to see the browser support table of the feature.

######Example:
`.opacity([value]);`

`@param: {Number} opacity: Value of the opacity, starting from 0 to 1`
*/
/*
Rotate mixin
===============================================
The mixins provides you a cross-browser compatible method to set a transformation which rotates the element. Keep in
mind that you can not mix different transformations.

Please refer to <http://caniuse.com/transforms2d> to see the browser support table of the feature.

######Example:
`.rotate([value]);`

`$param {String} degree The degree value you want to set. Please keep in mind that you need to suffix the unit.`
*/
/*
Scale mixin
===============================
The mixins provides you a cross-browser compatible method to set a transformation which scales the element.
Keep in mind that you can not mix different transformations.

Please refer to <http://caniuse.com/transforms2d> to see the browser support table of the feature.

######Example:
`.scale([value]);`

`$param {String} scale-value The scale value, you want to set`
*/
/*
Tab highlighting mixin
===========================
Sets the color of the highlighting when a link was clicked / tapped.

Please refer to <http://www.browsersupport.net/CSS/-webkit-tap-highlight-color> to see the browser support table of the feature.

######Example:
`.tap-highlight-color([color-value]);`

`$param: {String} color: The color you want to set (Default: rgba(0, 0, 0, 0))`
*/
/*
Touch callout mixin
===========================================
Disables the default callout shown when you touch and hold a touch target.

######Support:
- iOS 2.0<br/>
- Android 4.1<br/>

######Example:
`.touch-callout([value]);`

`@param: {String} type: The type you want to set (Default: none)`
*/
/*
Transform mixin
==============================================
The mixins provides you a cross-browser compatible method to set a transformation.

Please refer to <http://caniuse.com/transforms2d> to see the browser support table of the feature.

######Example:
`.transform([value]);`

`@param: {String} properties: The transformation(s) that should be applied`
*/
/*
Transform origin mixin
======================================
The mixins provides you a cross-browser compatible method to set the transform origin position.

Please refer to <http://caniuse.com/transforms2d> to see the browser support table of the feature.

######Example:
`.transform-origin([x-value],[y-value],[z-value]);`

`$param: x: Sets the origin position on the x axis (Default: 50%)`<br/>
`$param: y: Sets the origin position on the y axis (Default: 50%)`<br/>
`$param: z: Sets the origin position on the z axis (Default: 0)`
*/
/*
Transform style mixin
======================================
The mixins provides you a cross-browser compatible method to set a transformation style.

Please refer to <http://caniuse.com/transforms3d> to see the browser support table of the feature.

######Example:
`.transform-style([value]);`

`$param {String} Style The style you want for your transformation (Default: preserve-3d)`
*/
/*
Transition mixin
=========================================
The mixins provides you a cross-browser compatible method to set a transition.

Please refer to <http://caniuse.com/css-transitions> to see the browser support table of the feature.

######Example:
`@mixin transition([property], [duration-value], [easing]);`

`@param: {String} properties: The properites which should be animated (Default: all)`<br/>
`@param: {String} duration: Duration of the transition including the unit (Default: 0.3s)`<br/>
`@param: {String} easing: The easing which should be used for the transition (Default: ease-out)`
*/
/*
Translate mixin
============================================
The mixins provides you a cross-browser compatible method to set a transition.

Please refer to <http://caniuse.com/css-transitions> to see the browser support table of the feature.

Keep in mind, that 3d translations are needing an perspective, otherwise the translated elements get skewed up.

######Example:
`.translate([x-value],[y-value],[z-value]);`

`$param: {String} rotateX: The rotation on the x-axis`<br/>
`$param: {String} rotateY: The rotation on the y-axis`<br/>
`$param: {String} rotateZ: The rotation on the z-axis`<br/>
*/
/*
User-select mixin
===============================
The mixins provides you a cross-browser compatible method to set a user selection mode.

Please refer to <http://caniuse.com/user-select-none> to see the browser support table of the feature.

######Example:
`.user-select([value]);`

`$param: {String} type: The type you want to set (Default: none)`
*/
html {
    font-size: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
    min-height: 100%;
    width: 100%;
    height: 100%;
    font-family: "Maven Pro", sans-serif; }

body {
    font-family: "Maven Pro", sans-serif;
    font-size: 1em;
    line-height: 1.25;
    height: 100%;
    width: 100%;
    position: relative;
    min-height: 100%;
    overflow-y: scroll; }

a {
    outline: none;
    color: inherit; }
a:not([href]):hover {
    text-decoration: none; }

img {
    border: none;
    max-width: 100%;
    max-height: 100%; }
img:not([src]) {
    display: none; }

main {
    position: relative;
    z-index: 0; }

#page-wrapper {
    padding-top: 98px; }

h1 {
    font-size: 2.25rem;
    font-weight: 900;
    text-align: center;
    color: black;
    line-height: 1; }

h2 {
    font-size: 1.625rem;
    font-weight: 700;
    color: #565382;
    text-align: center; }

h3 {
    font-size: 1.25rem;
    font-weight: 900;
    color: #71b18e;
    text-align: left; }

h4 {
    font-size: 0.875rem;
    font-weight: 900;
    color: black;
    text-align: left;
    text-transform: uppercase; }

.button {
    background-color: #565382;
    color: white;
    height: 40px;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 15px;
    padding-right: 50px;
    text-align: left;
    display: inline-block;
    position: relative;
    border: 1px solid #565382; }
.button:not(.button-back)::after {
    display: block;
    content: "";
    position: absolute;
    top: 50%;
    right: 8px;
    width: 0;
    height: 0;
    border-left: 8px solid white;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-radius: 4px;
    margin-top: -8px; }
.button:not(.button-back):hover {
    color: white;
    box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.15); }

#page-wrapper > footer {
    background-color: #414275;
    color: white; }
#page-wrapper > footer a {
    color: inherit; }
#page-wrapper > footer ul {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0;
    padding-top: 60px;
    padding-left: 0;
    padding-right: 0;
    list-style: none;
    max-width: 700px; }
#page-wrapper > footer ul::before, #page-wrapper > footer ul::after {
    content: "";
    display: table;
    clear: both; }
#page-wrapper > footer ul li {
    width: 20%;
    float: left;
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 8px;
    padding-top: 8px; }
#page-wrapper > footer #footer-contact {
    background-color: #25305d;
    text-align: center; }
#page-wrapper > footer #footer-contact .contact-wrap {
    margin: 0 auto;
    padding-top: 50px;
    padding-bottom: 50px; }
#page-wrapper > footer #footer-contact .circle {
    width: 60px;
    height: 60px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
    border: 1px solid #71b18e;
    border-radius: 50%;
    font-size: 30px;
    color: #71b18e;
    padding-top: 14px; }
#page-wrapper > footer #footer-contact p::before, #page-wrapper > footer #footer-contact p::after {
    content: "";
    display: table;
    clear: both; }
#page-wrapper > footer #footer-contact p span {
    float: left;
    width: 50%;
    padding-left: 15px;
    padding-right: 15px; }
#page-wrapper > footer #footer-contact p span:first-of-type {
    text-align: right; }
#page-wrapper > footer #footer-contact p span + span {
    border-left: 1px solid #71b18e;
    text-align: left; }
#page-wrapper > footer #footer-contact p:first-of-type {
    margin-bottom: 30px; }
#page-wrapper > footer #footer-contact p:last-of-type {
    margin-bottom: 0; }
#page-wrapper > footer #footer-contact a {
    color: #71b18e; }
#page-wrapper > footer .payment-logos img {
    margin-left: 5px;
    margin-right: 5px;
    height: 30px; }
#page-wrapper > footer nav {
    background-color: white;
    text-align: center; }
#page-wrapper > footer nav ul {
    width: auto;
    max-width: unset;
    min-width: unset;
    display: inline-block;
    padding-top: 10px; }
#page-wrapper > footer nav ul li {
    padding-left: 10px;
    padding-right: 10px; }
#page-wrapper > footer nav ul li a, #page-wrapper > footer nav ul li span {
    line-height: 40px;
    padding-top: 0;
    padding-bottom: 0;
    color: #565382;
    font-size: 0.855rem; }
#page-wrapper > footer nav ul li a + a, #page-wrapper > footer nav ul li span + a {
    margin-left: 20px; }
#page-wrapper > footer nav ul li a + span, #page-wrapper > footer nav ul li span + span {
    margin-left: 15px; }

#page-wrapper > nav {
    background-color: white;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 98px;
    line-height: 95px;
    background-color: white;
    border-bottom: 3px solid #71b18e; }
#page-wrapper > nav a {
    display: inline-block;
    color: #25305d;
    font-size: 1.45rem; }
#page-wrapper > nav a.active, #page-wrapper > nav a:hover {
    color: #71b18e;
    text-decoration: none; }
#page-wrapper > nav img {
    max-height: 100%;
    width: auto; }
#page-wrapper > nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
    float: right; }
#page-wrapper > nav ul li {
    display: inline-block;
    margin-left: 8px; }
#page-wrapper > nav ul li img {
    height: 16px;
    margin-right: 8px; }

#logo, #mm-logo {
    height: 80px; }

#mm-logo {
    margin-bottom: 12.5px; }

#mm-logo-container {
    display: inline-block;
    margin-left: 15px; }

.mmenu-menu {
    overflow: hidden;
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 0;
    padding-right: 15px;
    margin-left: -15px; }
.mmenu-menu span {
    display: block;
    width: 28px;
    height: 5px;
    background-color: #71b18e;
    position: relative;
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    -o-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    top: 0;
    left: 0;
    opacity: 1;
    -webkit-transition: none 0.5s ease;
    -moz-transition: none 0.5s ease;
    -ms-transition: none 0.5s ease;
    -o-transition: none 0.5s ease;
    transition: none 0.5s ease;
    -webkit-transition-property: transform, top, left, opacity;
    -moz-transition-property: transform, top, left, opacity;
    -ms-transition-property: transform, top, left, opacity;
    -o-transition-property: transform, top, left, opacity;
    transition-property: transform, top, left, opacity; }
.mmenu-menu span:nth-of-type(n+2) {
    margin-top: 3px; }

.mm-menu.mm-offcanvas {
    width: 100%;
    background-color: white; }

.mm-panels > .mm-panel {
    padding: 0; }
.mm-panels > .mm-panel::before {
    height: 12.5px; }
.mm-panels > .mm-panel > .mm-listview {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
    padding-left: 15px;
    padding-right: 15px;
    width: 100%;
    border-top: 1px solid lightgrey; }
.mm-panels > .mm-panel > .mm-listview img {
    display: none; }
.mm-panels > .mm-panel > .mm-listview > li {
    line-height: 50px; }
.mm-panels > .mm-panel > .mm-listview > li > a {
    padding: 0;
    position: relative; }
.mm-panels > .mm-panel > .mm-listview > li > a::after {
    position: absolute;
    top: 0;
    right: 0;
    content: "\f054";
    font: normal normal normal 14px/1 FontAwesome;
    text-rendering: auto;
    -moz-osx-font-smoothing: grayscale;
    font-size: 20px;
    color: #f3f3f3;
    line-height: inherit; }
.mm-panels > .mm-panel > .mm-listview > li:not(.mm-divider)::after {
    left: 0; }

html.mm-opened body {
    padding-top: 0; }
html.mm-opened #page-wrapper > nav a.mmenu-menu span:first-of-type {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 7px; }
html.mm-opened #page-wrapper > nav a.mmenu-menu span:nth-of-type(2) {
    opacity: 0;
    left: -40px; }
html.mm-opened #page-wrapper > nav a.mmenu-menu span:last-of-type {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: -7px; }
html.mm-opened #page-wrapper .mmenu-menu {
    padding-left: 15px;
    margin-left: -73px;
    background-color: #f3f3f3; }
@media (max-width: 440px) {
    html.mm-opened #page-wrapper {
        -webkit-transform: translate3d(100%, 0, 0);
        -moz-transform: translate3d(100%, 0, 0);
        -o-transform: translate3d(100%, 0, 0);
        -ms-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0); } }

.ce-text {
    margin-bottom: 50px; }
.ce-text header h4 {
    margin-bottom: 35px; }

#contact {
    padding-bottom: 30px; }
#contact .ce-text {
    text-align: center; }

#home {
    text-align: center; }
#home .ce-components {
    padding-top: 50px;
    padding-bottom: 50px; }
#home .ce-components header h2 {
    margin-top: 0; }
#home .ce-intro {
    padding-top: 0; }
#home .ce-intro h1 {
    margin-top: 55px;
    margin-bottom: 30px; }
#home .ce-intro .button {
    border-color: white;
    border-radius: 3px;
    height: 60px;
    line-height: 58px;
    width: 674px;
    max-width: 100%;
    padding-top: 0;
    padding-bottom: 0;
    font-size: 1.5rem; }
#home .ce-intro .price-img {
    margin-top: -35px; }
#home .ce-text-image {
    padding-top: 0; }
#home .ce-text-image figure img {
    margin-top: 70px; }
#home .ce-text-image figcaption {
    width: 600px;
    max-width: 100%;
    background-image: url("../images/background_USP.png");
    background-repeat: no-repeat;
    background-position: right bottom;
    padding-top: 60px; }
#home .ce-text-image .blockquote {
    padding-left: 15px;
    text-align: center; }
#home .ce-text-image .blockquote::before {
    content: url("../images/ldquo.png");
    display: block;
    border-bottom: 1px solid #71b18e;
    padding-bottom: 11px;
    margin-top: 30px;
    margin-bottom: 15px; }
#home .ce-text-image .action {
    margin-top: 25px; }
#home .ce-list {
    background-color: #f9f9fc; }
#home .ce-list .list-item {
    padding-left: 0;
    padding-right: 0;
    position: relative; }
#home .ce-list .row {
    position: relative;
    z-index: 1; }
#home .ce-list .link .button {
    width: 100%; }
#home .ce-carousel {
    background-color: #f9f9fc;
    color: white; }
#home .ce-carousel h2 {
    color: black; }
#home .ce-carousel blockquote {
    border-top: 1px solid white;
    border-left-width: 0; }
#home .ce-carousel blockquote small {
    color: white; }
#home .ce-carousel blockquote small::before {
    content: ""; }
#home .ce-carousel .swiper-container {
    padding-left: 50px;
    padding-right: 50px; }
#home .ce-carousel .swiper-wrapper > :nth-child(n+2) {
    padding-left: 15px; }
#home .ce-carousel .swiper-wrapper > :not(:last-child) {
    padding-right: 15px; }
#home .ce-carousel .swiper-slide .image {
    width: 90px;
    height: 90px;
    border-width: 1px;
    border-style: solid;
    border-color: white;
    border-radius: 50%; }
#home .ce-carousel .swiper-slide .quote {
    display: block;
    margin-top: 25px;
    margin-bottom: 25px;
    margin-left: auto;
    margin-right: auto; }
#home .ce-carousel .carousel-container {
    position: relative; }
#home .ce-carousel .swiper-button-prev, #home .ce-carousel .swiper-button-next {
    height: 100%;
    background-image: none;
    background-color: #f9f9fc;
    top: 0;
    width: 50px; }
#home .ce-carousel .swiper-button-prev .fa, #home .ce-carousel .swiper-button-next .fa {
    border-width: 1px;
    border-style: solid;
    border-color: white;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    position: relative;
    top: 50%;
    margin-top: -50px;
    line-height: 48px; }
#home .ce-carousel .swiper-button-prev {
    left: 0; }
#home .ce-carousel .swiper-button-next {
    right: 0; }
#home .ce-carousel .swiper-pagination {
    position: static; }
#home .ce-carousel .swiper-pagination-bullet {
    width: 15px;
    height: 15px;
    border: 1px solid grey;
    background-color: transparent;
    opacity: 1; }
#home .ce-carousel .swiper-pagination-bullet-active {
    background-color: grey; }
#home .ce-table .row {
    margin: 0; }
#home .ce-table h4 {
    text-align: center; }
#home .ce-table p {
    color: black; }
#home .ce-table .item > :first-child {
    position: relative;
    z-index: 2; }
#home .ce-table .item-part {
    border-left: 1px solid #f5f5f5;
    border-right: 1px solid #f5f5f5;
    padding: 35px; }
#home .ce-table .item-part:first-of-type {
    border-bottom: 1px solid #f5f5f5; }
#home .ce-table .carousel-inner {
    z-index: 10;
    margin-bottom: 45px;
    /* increase z-indexes of steps backward, the first one need the highest index. */ }
#home .ce-table .carousel-inner ~ div {
    z-index: 1;
    position: relative; }
#home .ce-table .carousel-inner > :nth-last-child(3) {
    z-index: 8; }
#home .ce-table .carousel-inner > :nth-last-child(2) {
    z-index: 7; }
#home .ce-table .carousel-inner > :nth-last-child(1) {
    z-index: 6; }
#home .ce-table .carousel-inner > :nth-last-child(0) {
    z-index: 5; }
#home .ce-table .carousel-inner > :nth-child(2) > :last-child {
    padding-bottom: 0; }
#home .ce-table .carousel-inner > :nth-child(2) > :last-child .wfl-tooltip {
    bottom: 0;
    top: auto; }
#home .ce-table .carousel-inner > :last-child .item-part {
    padding-bottom: 0; }
#home .ce-table .carousel-inner > :last-child .wfl-tooltip {
    bottom: 0;
    top: auto; }
#home .ce-table [data-wfl-tooltip] {
    display: block;
    text-align: center; }

#imprint #content_column_0 > :first-child {
    text-align: center; }
#imprint h2 {
    margin-top: 0;
    margin-bottom: 50px; }
#imprint h3 {
    margin-bottom: 25px; }

@media screen and (max-width: 767px) {
    h1 {
        font-size: 1.875rem; }

    h2 {
        font-size: 1.5rem; }

    #navigation-main {
        display: inline-block; }
    #navigation-main ul {
        display: none; }

    #page-wrapper > nav {
        height: 70px; }
    #page-wrapper > nav::before, #page-wrapper > nav::after {
        content: "";
        display: table;
        clear: both; }
    #page-wrapper > nav a#logo-container {
        padding: 10px 0 0 0;
        height: auto;
        line-height: normal;
        float: left;
        display: block; }
    #page-wrapper > nav a#logo-container img {
        height: 50px; }
    #page-wrapper > nav .mmenu-menu {
        padding: 24px 4px 24px 19px;
        vertical-align: middle;
        height: 70px;
        float: right;
        border-left: 1px solid #71b18e; }

    #page-wrapper {
        padding-top: 70px; }
    #page-wrapper > footer #footer-contact p::before, #page-wrapper > footer #footer-contact p::after {
        content: "";
        display: table;
        clear: both; }
    #page-wrapper > footer #footer-contact p span {
        display: inline-block;
        float: none;
        width: 100%;
        padding-top: 10px;
        padding-left: 0;
        padding-bottom: 10px;
        padding-right: 0;
        border-bottom: 1px solid #71b18e; }
    #page-wrapper > footer #footer-contact p span span, #page-wrapper > footer #footer-contact p span:first-of-type {
        text-align: center; }
    #page-wrapper > footer #footer-contact p span:last-of-type {
        border: none; }
    #page-wrapper > footer #footer-contact p span + span {
        text-align: center;
        border-left: none; }
    #page-wrapper > footer ul {
        padding-top: 0; }
    #page-wrapper > footer ul li {
        display: flex;
        justify-content: center;
        width: 100%;
        min-height: 60px;
        padding-top: 0;
        padding-bottom: 0; }
    #page-wrapper > footer ul li > a {
        line-height: 1.25;
        align-self: center; }
    #page-wrapper > footer ul#footer-links li {
        border-bottom: 1px solid #fafafa1a; }
    #page-wrapper > footer ul#footer-nav li {
        border-bottom: 1px solid #e3e3e3; }
    #page-wrapper > footer ul#footer-nav li:last-child {
        border-bottom: 0; }
    #page-wrapper > footer .payment-logos {
        padding-bottom: 15px;
        padding-top: 20px; } }
@media screen and (min-width: 768px) {
    #logo, #mm-logo {
        margin-top: 5px;
        margin-bottom: 10px; }

    #logo-container {
        width: 235px; }
    #logo-container + ul {
        width: calc(100% - 235px);
        text-align: right; }
    #logo-container + ul li {
        font-weight: 700; }
    #logo-container + ul li + li {
        margin-left: 80px; }

    #home .ce-carousel .swiper-wrapper > :not(:last-child) {
        padding-right: 50px; }
    #home .ce-carousel .swiper-wrapper > :nth-child(n+2) {
        padding-left: 50px; }
    #home .ce-carousel .swiper-container {
        padding-left: 65px;
        padding-right: 65px; }
    #home .ce-table .carousel-inner > .item {
        display: block; }
    #home .ce-table .carousel-inner > .item:first-of-type .item-part {
        border-bottom: 1px solid #f5f5f5; }
    #home .ce-table .carousel-inner > .item:first-of-type > :first-child {
        border-left-color: transparent; }
    #home .ce-table .carousel-inner > .item:nth-of-type(2) > :first-child {
        border-bottom: 1px solid #f5f5f5; }
    #home .ce-table .carousel-inner > .item:nth-of-type(2) > :last-child {
        border-left-color: transparent; }
    #home .ce-table .carousel-inner .item-part {
        border-bottom-color: transparent;
        border-right-color: transparent; }

    #page-wrapper > footer nav {
        margin-top: 60px;
        line-height: normal; }
    #page-wrapper > footer nav ul li {
        width: auto; }
    #page-wrapper > footer .payment-logos {
        margin-top: 40px; } }
@media screen and (min-width: 768px) and (max-width: 991px) {
    #navigation-main ul li + li {
        margin-left: 30px; } }

/*# sourceMappingURL=style.css.map */