/* #####################################################

TOC - Table of Content

1.1 Viewport
1.2 Variablen
1.3 Hauptdeklarationen
1.4 Typografie & Globale Elemente
1.5 Globale Klassen

2. Header
3. Main Sections
4. Footer
5. Sub Pages

##################################################### */

/* 1.1 Viewport
##################################################### */

@-webkit-viewport {
    width: device-width;
}

@-moz-viewport {
    width: device-width;
}

@-ms-viewport {
    width: device-width;
}

@-o-viewport {
    width: device-width;
}

@viewport {
    width: device-width;
}

/* dm-sans-regular - latin */
@font-face {
    font-display: swap;
    /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 400;
    src: url('../_fonts/dm-sans-v17-latin-regular.woff2') format('woff2');
    /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* dm-sans-500 - latin */
@font-face {
    font-display: swap;
    /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 500;
    src: url('../_fonts/dm-sans-v17-latin-500.woff2') format('woff2');
    /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* dm-sans-600 - latin */
@font-face {
    font-display: swap;
    /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 600;
    src: url('../_fonts/dm-sans-v17-latin-600.woff2') format('woff2');
    /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* dm-sans-700 - latin */
@font-face {
    font-display: swap;
    /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 700;
    src: url('../_fonts/dm-sans-v17-latin-700.woff2') format('woff2');
    /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

@font-face {
    font-family: 'Z003';
    src: url('../_fonts/z003-mediumitalic-webfont.woff2') format('woff2'),
        url('../_fonts/z003-mediumitalic-webfont.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}

/* 1.2 Variablen
##################################################### */

:root {
    --unit-100vh: 100vh;
}

@supports (height: 100dvh) {
    :root {
        --unit-100vh: 100dvh;
    }
}

html {
    padding: env(safe-area-inset);
}

body {
    /*colors*/
    --lightColor: #fff;
    --ctaColor: #FFB42E;
    --darkColor: #333;
    --primaryColor: #03766F;
    --darkPrimaryColor: #1B2B4B;

    /*Font-Sizes*/
    --primaryHead: 4.125rem;
    --secondaryHead: 3.125rem;
    --tertiaryHead: 2.1875rem;

    --paragraphs: 1.5rem;

    --btnFS: 1.375rem;
    --smallFS: 1.25rem;
    --smallerParagraphs: 1.25rem;
    --smallerFS: 1.25rem;

    --menuFS: 1.75rem;

    --radius: 25px;
}

@media screen and (max-width: 1199px) {
    body {

        /*Font-Sizes*/
        --primaryHead: 2.9325rem;
        --secondaryHead: 2.3875rem;
        --tertiaryHead: 1.875rem;

        --paragraphs: 1.325rem;

        --btnFS: 1.25rem;
        --smallFS: 1.0625rem;
        --smallerParagraphs: 1.0625rem;
        --smallerFS: 1.0625rem;
    }
}

@media screen and (max-width: 991px) {
    body {
        --primaryHead: 2.325rem;
        --secondaryHead: 2.325rem;
        --tertiaryHead: 1.5rem;
        --paragraphs: 1.125rem;
        --btnFS: 1.125rem;
        --smallFS: 1rem;
        --smallerParagraphs: 1rem;
        --smallerFS: 1rem;
    }
}


/* 1.3 Hauptdeklarationen
##################################################### */

* {
    outline: none;
}

html, body {
    height: calc(100% - 0px);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

body {
    line-height: 1;
    overflow: overlay;
    color: var(--lightColor);
    background: var(--primaryColor);
    height: 100%;
}

.no-touch body {
    background: var(--primaryColor) url(../_img/wave-bg.png) no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
}

@media screen and (max-width:991px) {
    body.no-scroll {
        overflow: hidden;
    }
}

#overallwrap {
    display: flex;
    flex-wrap: wrap;
    row-gap: 0px;
    width: 100%;
    overflow: hidden;
    min-height: 100%;
    margin: 0 auto;
}

#contentwrap {
    flex: 0 0 100%;
}


/* 1.4 Typografie & Globale Elemente
##################################################### */

html, body, h1, h2, h3, h4, h5, p, ul {
    margin: 0px;
    padding: 0px;
}

h1, .h1 {
    font: normal 400 var(--primaryHead) 'Z003', sans-serif;
    line-height: 1.125;
    margin-bottom: 10px;
    -webkit-text-stroke: 0.375px var(--lightColor);
}

h2, .h2 {
    font: normal 400 var(--secondaryHead) 'Z003', sans-serif;
    line-height: 1.125;
    margin-bottom: 20px;
    -webkit-text-stroke: 0.25px var(--lightColor);
}

h3, .h3 {
    font: normal 400 var(--secondaryHead) 'Z003', sans-serif;
    line-height: 1.125;
    margin-bottom: 10px;
    -webkit-text-stroke: 0.125px var(--lightColor);
}

h4, .h4 {
    font: normal 300 var(--biggerParagraphs) 'DM Sans', serif;
    line-height: 1.125;
    margin-bottom: 7.5px;
}

p, h5 {
    line-height: 1.65 !important;
    font: 400 normal var(--paragraphs) 'DM Sans', sans-serif;
}

h5 {
    font-weight: 700;
    margin-bottom: 10px;
}

#contentwrap ul li {
    font: 400 normal var(--paragraphs) 'DM Sans', sans-serif;
    line-height: 1.5;
}

#contentwrap p a {
    border-bottom: 1px dotted var(--lightColor);

}

#contentwrap ul {
    list-style-type: none;
}

p.smallerParagraphs,
.smallerParagraphs p {
    font: 400 normal var(--smallerParagraphs) 'DM Sans', sans-serif;
}

p strong {
    font-weight: 500;
}

p small {
    font-size: var(--smallFS);
}

a {
    text-decoration: none;
    transition: 0.35s all;
    cursor: pointer;
    pointer-events: auto;
    cursor: hand;
    position: relative;
    z-index: 2;
    color: var(--lightColor);
}

a:hover {
    cursor: pointer;
}

p a:hover {
    color: var(--ctaColor);
}

#contentwrap section {
    padding-top: 120px;
    padding-bottom: 120px;
}

@media screen and (max-width:1199px) {
    #contentwrap section {
        padding-top: 90px;
        padding-bottom: 90px;
    }

}


@media screen and (max-width:991px) {
    #contentwrap section {
        padding-top: 75px;
        padding-bottom: 75px;
    }

    h2, .h2 {
        margin-bottom: 15px;
    }
}

/* 1.5 Globale Custom Klassen (Paddings, Colors, Display Elemente)
##################################################### */

/*Paddings*/
.p-0 {
    padding: 0px !important;
}

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

.p-h-0 {
    padding-left: 0px !important;
    padding-right: 0px !important;
}

.p-v-0 {
    padding-top: 0px !important;
    padding-bottom: 0px !important;
}

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

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

.p-t-small {
    padding-top: 75px !important;
}

.p-t-large {
    padding-top: 150px !important;
}

.p-t-box {
    padding-top: 15px !important;
}

.p-b-small {
    padding-bottom: 75px !important;
}

.p-b-large {
    padding-bottom: 150px !important;
}


@media screen and (max-width:991px) {
    .p-t-small {
        padding-top: 30px !important;
    }

    .p-t-large {
        padding-top: 60px !important;
    }

    .p-b-small {
        padding-bottom: 30px !important;
    }

    .p-b-large {
        padding-bottom: 60px !important;
    }
}

/*Positions*/
.p-r {
    position: relative !important;
}

.p-a {
    position: absolute !important;
}

/*Two Columns*/

@media screen and (min-width:768px) {
    .two-col {
        columns: 2;
        column-gap: 20px;
    }

    .two-col p {
        break-inside: avoid-column;
    }

    .two-col>div {
        break-inside: avoid-column;
    }
}

/*Höhen*/
.h-100 {
    height: 100% !important;
}

/*Colors*/
.TextprimaryColor {
    color: var(--primaryColor) !important;
}

.TextctaColor {
    color: var(--ctaColor) !important;
    font-weight: 500;
}

.TextlightColor,
.TextlightColor h1,
.TextlightColor h2,
.TextlightColor h3,
.TextlightColor h4 {
    color: var(--lightColor) !important;
}

.TextdarkColor {
    color: var(--darkColor) !important;
}

.BGlightColor {
    background-color: var(--lightColor);
}

.BGprimaryColor {
    background-color: var(--primaryColor);
    color: var(--lightColor);
}

.BGdarkPrimaryColor {
    background-color: var(--darkPrimaryColor);
    color: var(--lightColor);
}

.BGdarkColor {
    background-color: var(--darkColor);
    color: var(--lightColor);
}

/*Display Elemente */
body .d-none {
    display: none;
}

@media screen and (max-width:1199px) {
    .lg-off {
        display: none !important;
    }

    .lg-block {
        display: block !important;
    }
}

@media screen and (max-width:991px) {
    .md-off {
        display: none !important;
    }

    .md-block {
        display: block !important;
    }
}

@media screen and (max-width:767px) {
    .sm-off {
        display: none !important;
    }

    .sm-block {
        display: block !important;
    }

    .sm-flex {
        display: flex !important;
    }

}

@media screen and (max-width:624px) {
    .xs-off {
        display: none !important;
    }
}

/*Images*/
svg,
svg:hover,
svg path,
svg path:hover,
svg rect,
svg rect:hover {
    transition: 0.35s all;
}

.full-width-img {
    width: 100%;
    height: auto;
    line-height: 1;
}

.img-wrap {
    display: flex;
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
}

.img-wrap::before {
    content: '';
    float: left;
    padding-bottom: 56.25%;
}

.img-wrap.wrap-square::before {
    content: '';
    float: left;
    padding-bottom: 100%;
}

.img-wrap.round-img {
    border-radius: 50%;
    max-width: 200px;
    display: block;
    margin: 0px 0 30px 0;
}

.img-wrap.round-img img {
    object-position: center top;
}

.img-wrap img,
img.stretch-parent {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: cover;
}

img.alignright, .wp-caption.alignright {
    float: right;
    margin: 7.5px 0 22.5px 30px;
    display: inline;
}

img.alignleft, .wp-caption.alignleft {
    float: left;
    margin: 7.5px 30px 22.5px 0;
    display: inline;
}

img.aligncenter, .wp-caption.aligncenter {
    display: block;
    margin: 0px 0px 30px 0;
    margin-left: auto;
    margin-right: auto;
}

a img.alignright {
    float: right;
    margin: 7.5px 0 22.5px 30px
}

a img.alignleft {
    float: left;
    margin: 7.5px 30px 22.5px 0
}

a img.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto
}

img.aligncenter:not(.wp-caption img.aligncenter),
img.alignleft:not(.wp-caption img.alignleft) {
    width: 33.333% !important;
    height: auto !important;
}

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

    img.aligncenter:not(.wp-caption img.aligncenter),
    img.alignleft:not(.wp-caption img.alignleft) {
        width: 50% !important;
    }

    .img-wrap.round-img {
        max-width: 135px;
        margin: 0px 0 30px 0;
    }
}

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

    img.aligncenter:not(.wp-caption img.aligncenter),
    img.alignleft:not(.wp-caption img.alignleft) {
        width: 100% !important;
    }
}

/*Wave*/
.box {
    mask:
        radial-gradient(23.43px at 50% 33px, #000 99%, #0000 101%) calc(50% - 30px) 0/60px 100%,
        radial-gradient(23.43px at 50% -18px, #0000 99%, #000 101%) 50% 15px/60px 100% repeat-x;

    background-image: linear-gradient(to bottom, var(--darkPrimaryColor) 0%, var(--darkPrimaryColor) calc(100% - 25px), transparent calc(100% - 25px), transparent calc(100% - 0px));
}

/*Icon Thema*/
.icon-thema {

    margin-top: 15px;
    margin-bottom: 15px;
    transition: 0.35s all;
    transform-origin: center center;
}

.icon-thema svg {
    width: 90px;
    height: 100px;
    transform: translate3d(0, 0, 0);
    object-fit: contain;
}

.icon-thema:hover svg {
    transform: scale(1.1) translate3d(0, 0, 0);
}

@media screen and (max-width:991px) {
    .icon-thema svg {
        width: 65px;
        height: 65px;
    }

    .icon-thema {

        margin-top: 15px;
        margin-bottom: 15px;
    }
}

@media screen and (max-width:767px) {
    .icon-thema svg {
        width: 55px;
        height: 55px;
    }
}

/*Textausrichtung*/
.center {
    text-align: center;
}

.right {
    text-align: right;
}

.left {
    text-align: left;
}

/*Lists*/
#contentwrap ul li {
    padding-left: 15px;
    margin-left: 15px;
    position: relative;
}

#contentwrap.sub-page ul li:not(:last-of-type) {
    margin-bottom: 5px;
}

#contentwrap ul li:before {
    content: "• ";
    color: var(--ctaColor);
    display: inline-block;
    position: absolute;
    left: 0;
    top: 0px
}

/*Buttons*/
.btn {
    padding: 0 25px 2px 25px;
    max-height: 50px;
    min-height: 50px;
    margin-top: 25px;
    border-radius: var(--radius);
    line-height: 1 !important;
    font: normal 500 var(--btnFS) 'DM Sans', sans-serif !important;
    display: inline-flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    cursor: pointer;
    outline: none !important;
    appearance: none;
    -webkit-appearance: none;
    border: none;
    position: relative;
    color: var(--lightColor);
    background-color: var(--ctaColor);
    max-width: calc(100% - 15px);
    transform: translate3d(0, 0, 0);
}

.btn:hover {
    transform: scale(1.05) translate3d(0, 0, 0);
}

@media screen and (max-width:991px) {
    .btn {
        padding: 0 20px 1px 20px;
        margin-top: 15px;
    }
}

/*Height Placeholder*/
@media screen and (max-width:767px) {
    .col-mobile-height:before {
        content: '';
        float: left;
        padding-bottom: 75%;
    }
}

/* 2. Header
##################################################### */

header {
    flex: 0 0 100%;
    width: calc(100% - 40px) !important;
    transition: 0.5s transform, 0.5s opacity;
    z-index: 12;
    left: 0;
    right: 0;
    margin: 0 auto;
    position: relative;
    width: 100%;
}

header .btn {
    margin-left: auto;
}

header .logo-wrap {
    background-color: var(--darkPrimaryColor);
    padding: 10px 20px;
    margin-right: 30px;
}

header .logo-wrap svg {
    width: 190px;
    height: auto;
}

header .logo-wrap .btn {
    display: none;
    margin: 0 !important;
    border: none
}

header .row>div {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
}

.navContainer.slideDown {
    opacity: 1;
}

.navContainer {
    opacity: 0;
    background-color: var(--darkPrimaryColor);
    top: 60px;
    transition: .75s all;
    position: absolute;
    right: 0;
    z-index: 1111;
    padding: 11.5px 17.5px 10px 17.5px;
    border-radius: 25px;
    width: 187.5px;
}

.navContainer a:hover {
    color: var(--ctaColor);
}

header nav a:not(.btn) {
    font: 400 normal var(--btnFS) 'DM Sans', sans-serif;
    display: block;
    position: relative;
    color: var(--lightColor);
    padding-bottom: 8.5px;
    padding-top: 8.5px;
    line-height: 1;
}

header nav a:not(.btn):not(:last-of-type) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);

}

header a.btn {
    margin-top: 0px;
    margin-right: 0px;
}

@media screen and (max-width:991px) {
    header .logo-wrap svg {
        width: 145px;
    }

    header .logo-wrap {
        background-color: var(--darkPrimaryColor);
        padding: 7.5px 15px;
        margin-right: 20px;
    }

    .navContainer {
        width: 165px;
    }
}

@media screen and (max-width:900px) {
    header .row>div p {
        flex: 0 0 100%;
        order: 4;
        margin-top: 15px;
    }

    header .logo-wrap {
        order: 1;

    }

    header .btn {
        order: 2;
    }

    header .btn+div {
        order: 3;
    }

    .navContainer p {
        margin-top: 0 !important;
    }
}

@media screen and (max-width:767px) {
    header .logo-wrap svg {
        width: 115px;
    }

    header p {
        line-height: 1.425 !important;
    }

}

@media screen and (max-width:767px) {
    header a:not(.btn) span {
        text-transform: capitalize;
    }

    header {
        width: calc(100% - 20px) !important;
    }

    header nav a:not(.btn) {
        margin-right: 10px;
    }
}


#burger-button {
    float: left;
    z-index: 11112 !important;
    display: block;
    height: 50px;
    width: 50px;
    background-color: var(--darkPrimaryColor) !important;
    cursor: pointer;
    border-radius: 50%;
    outline: 0;
    margin-left: 10px;
}

.menu__icon {
    position: absolute;
    width: 30px;
    height: 20px;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%)
}

.menu__line {
    position: absolute;
    left: 0;
    background-color: #fff;
    height: 2px;
    width: 100%;
    pointer-events: none;
    transform: scale(.9);
    transform-origin: 50% 50%
}

.menu__line--1 {
    top: 0
}

.menu__line--2 {
    top: 0;
    bottom: 0;
    margin: auto
}

.menu__line--3 {
    bottom: 0
}

.menu--close2 .menu__line--1 {
    -webkit-transition: top .2s ease-in-out .3s, -webkit-transform .3s ease-in-out;
    transition: top .2s ease-in-out .3s, -webkit-transform .3s ease-in-out;
    transition: transform .3s ease-in-out, top .2s ease-in-out .3s;
    transition: transform .3s ease-in-out, top .2s ease-in-out .3s, -webkit-transform .3s ease-in-out
}

.menu--close2 .menu__line--1:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #fff;
    -webkit-transition: -webkit-transform .1s ease-in-out .2s;
    transition: -webkit-transform .1s ease-in-out .2s;
    transition: transform .1s ease-in-out .2s;
    transition: transform .1s ease-in-out .2s, -webkit-transform .1s ease-in-out .2s
}

.menu--close2 .menu__line--2 {
    -webkit-transition: opacity 0s ease-in-out .3s;
    transition: opacity 0s ease-in-out .3s
}

.menu--close2 .menu__line--3 {
    -webkit-transition: opacity 0s ease-in-out .3s, bottom .2s ease-in-out .3s;
    transition: opacity 0s ease-in-out .3s, bottom .2s ease-in-out .3s
}

.menu--close2.open .menu__line--1 {
    top: 8.5px;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
    -webkit-transition: top .3s ease-in-out, -webkit-transform .3s linear .3s;
    transition: top .3s ease-in-out, -webkit-transform .3s linear .3s;
    transition: top .3s ease-in-out, transform .3s linear .3s;
    transition: top .3s ease-in-out, transform .3s linear .3s, -webkit-transform .3s linear .3s
}

.menu--close2.open .menu__line--1:before {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    -webkit-transition: -webkit-transform .1s ease-in-out .3s;
    transition: -webkit-transform .1s ease-in-out .3s;
    transition: transform .1s ease-in-out .3s;
    transition: transform .1s ease-in-out .3s, -webkit-transform .1s ease-in-out .3s
}

.menu--close2.open .menu__line--2 {
    opacity: 0;
    -webkit-transition: opacity 0s ease-in-out .3s;
    transition: opacity 0s ease-in-out .3s
}

.menu--close2.open .menu__line--3 {
    bottom: 8.5px;
    opacity: 0;
    -webkit-transition: bottom .3s ease-in-out, opacity 0s ease-in-out .3s;
    transition: bottom .3s ease-in-out, opacity 0s ease-in-out .3s
}

/* 3. Main Sections
##################################################### */

/*CTA*/
#cta .row>div.col-12 {
    color: var(--lightColor);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

#cta h2 {
    padding: 0 30px;
}


/*Hero*/
#hero .hero-image {
    display: flex;
    position: relative;
    align-items: flex-end;
    justify-content: flex-end;
}

#hero .row {
    align-items: center;
}

.hero-text {
    padding: 0px 45px 10px 45px;
}

.badge {
    position: absolute;
    bottom: -17.5px;
    right: -17.5px;
    width: 145px;
    height: 145px;
    border-radius: 50%;
    background: url(../_img/badge.svg) no-repeat center center;
    background-size: contain;
    transition: 0.5s all;
}

.badge:hover {
    transform: scale(1.05) rotate(15deg);
}

@media screen and (max-width:1399px) {
    .hero-text {
        padding: 20px 40px 30px 40px;
    }
}

@media screen and (max-width:1199px) {
    .hero-text {
        padding: 40px 37.5px 45px 37.5px;
    }
}

@media screen and (max-width:991px) {
    .hero-text {
        padding: 30px 15px;
    }

    .badge {
        width: 100px;
        height: 100px;
        bottom: -15px;
        right: -5px;
    }
}

@media screen and (max-width:767px) {
    .hero-text {
        padding: 20px 12.5px 25px 12.5px;
        text-align: center;
    }

    .hero-text-wrap {
        padding-top: 10px;
        margin-top: -10px;
        border-top-left-radius: 0px;
        border-top-right-radius: 0px;
    }

    #hero .row {
        flex-direction: column-reverse;
    }

    #hero .row>div {
        position: static;
    }

    #hero .hero-image {
        position: static !important;
        padding: 0;
    }

    #hero .hero-image>img {
        width: 100%;
        position: relative;
        margin: 30px auto 15px auto;
        max-width: 70%;
    }

    #hero {
        position: relative;
    }


    .badge {
        bottom: auto;
        right: 10%;
        width: 100px;
        height: 100px;
    }

}

@media screen and (max-width:767px) {
    #hero .btn:not(.btn-logo) {
        margin-top: 15px !important;
    }
}

#hero .turm {
    margin-left: -50px;
}

#hero .kompass.sm-off {
    margin-bottom: -45px;
}


#hero .wind.sm-off {
    margin-left: -45px;
    margin-bottom: -15px;
}

@media screen and (max-width:991px) {
    #hero .wind.sm-off {
        margin-left: -15px;
    }

}

/*Intro/Outro*/
#outro .btn {
    transform: translateY(50%);
}

#outro .btn:hover {
    transform: translateY(50%) scale(1.05);
}

#intro-faker {
    transform: translateY(-50%);
}

#intro-faker .btn {
    margin: 0;
}

#intro .row {
    margin-top: 30px;
    margin-bottom: -15px;
}

#intro p:not(:last-of-type),
#outro p:not(:last-of-type){
   margin-bottom: 15px;
}

@media screen and (min-width:768px) {
    #contentwrap #intro {
        padding-bottom: 100px !important;
        padding-top: 60px !important;
    }
}

#intro h2,
#outro h2{
 -webkit-text-stroke: 0.375px var(--ctaColor);
 }

#intro h2:after,
#outro h2:after {
    content: "";
    display: block;

    height: 1px;
    background-color: rgba(255, 255, 255, 0.15);
    width: 120px;
    margin: 30px auto;
}

#outro .icon-col {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}

#outro .sm-off .kompass svg {
    margin-left: -180px;
}

#outro .icon-col>div.turm {
    margin-left: 25px;
}

#outro .icon-col>div.anker {
    flex: 0 0 100%;
    margin-top: auto;
    margin-bottom: -45px;
    margin-left: -30px;
}

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

    #intro h2:after,
    #outro h2:after {
        width: 90px;
        margin: 20px auto;
    }

    #outro .icon-col>div.anker {
        margin-bottom: -30px;
    }

    #outro .icon-col>div.turm {
        margin-left: 30px;
        margin-left: -15px;
    }
}

@media screen and (max-width:767px) {
    #intro {
        padding-bottom: 80px !important;
    }

    #outro {
        padding-top: 50px !important;
    }
}

/*Testimonials*/
.testimonials {
    overflow: hidden;
}

.testimonials .slide-item>div {
    display: flex;
    margin-left: -15px;
    margin-right: -15px;
}

.testimonials .slide-item>div>div {
    margin: 0 15px;
}

.testimonials .slide-item>div>div p:last-of-type {
    transform: translateX(-3.5px);
    display: inline-block;
}

.testimonials .slide-item>div>div:first-of-type {
    flex: 0 0 26.5%
}

.testimonials p:not(.subline) {
    display: inline;
}

.testimonials p.subline {
    margin-bottom: 20px;
}

body.contrast p.subline {
    color: var(--lightColor) !important;
}

.testimonials h3 {
    text-transform: none;
    margin-bottom: 0;
}

@media screen and (max-width:767px) {
    .testimonials .slide-item>div {
        flex-wrap: wrap;
    }

    .testimonials .slide-item>div>div:last-of-type {
        flex: 0 0 calc(100% - 30px);
    }

    .testimonials .slide-item>div>div:first-of-type {
        flex: 0 0 50%;
        margin-bottom: 30px;
    }
}

/*Step*/
.step-row.row {
    margin-left: -5px;
    margin-right: -5px;
    margin-top: 5px;
    margin-bottom: -5px;
}

.step-row>div {
    padding-left: 5px;
    padding-right: 5px;
    margin: 5px 0;
}

.step-row>div>div {
    padding: 25px 25px 25px 25px;
    /*height: 100%;*/
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    align-content: flex-start;
}

.step-row>div>div>div.icon-wrap {
    display: flex;
    align-items: center;
    flex: 0 0 100%;

}

.step-row p:not(:last-of-type) {
    margin-bottom: 15px;
}

.step-row>div>div>div>div {
    border-right: 1px solid rgba(255, 255, 255, 0.15);
    flex: 0 0 95px;
    padding: 20px 15px 15px 0;
    margin-right: 20px;

}

.step-row>div>div svg {

    transition: 0.35s all;
    width: 100%;
    object-fit: contain;
}

.step-row>div>div:hover svg {
    transform: scale(1.1);
}

.step-row>div>div h3 {
    font-family: 'DM Sans';
    font-size: var(--paragraphs);
    margin-bottom: 0;
    line-height: 1.33;
    flex: 0 0 calc(100% - 115px)
}

.step-row .smallerParagraphs {
    border: none;
    padding: 0 25px 25px 25px;
    margin-top: -10px;
  
}
@media screen and (max-width:1199px) {
.step-row>div>div {
    padding: 25px 20px 25px 20px;
}
  .step-row>div>div>div>div {
        flex: 0 0 75px;
        padding: 0px 15px 0px 0;
        margin-right: 15px;
    }
    .step-row>div>div h3{
    flex: 0 0 calc(100% - 95px);
    letter-spacing: -0.25px;
    }
    .step-row .smallerParagraphs {
    padding: 0 20px 20px 20px;
}
}

@media screen and (max-width:991px) {
    .step-row>div>div>div>div {
        flex: 0 0 70px;
        padding: 0px 15px 0px 0;
    }
       .step-row>div>div h3{
    flex: 0 0 calc(100% - 85px);
    }

    .step-row>div>div {
        padding: 15px;
    }
}

@media screen and (max-width:576px) {
    .step-row {
        margin-top: 15px;
        margin-bottom: -5px;
    }
       .step-row .smallerParagraphs {
   padding: 0 15px 15px 15px;
margin-top: -7.5px;
}

.step-row .smallerParagraphs p a{
    font-size: var(--smallFS);
}
}

 /*Toggle*/

.toggle-head.active a{
    color: var(--ctaColor)
}

.toggle-content{
    border:none !important;
    display: none;
    padding-top: 20px;
}

/**/
.m-symbols img {
    margin-bottom: 17.5px;
    width: 225px;
    height: auto;
}

/*Accordion*/
#faq img.full-width-img {
    margin-bottom: 10px;
}


.box-faq.box {
    background-image: none;
    margin: 0px;
    padding-bottom: 10px;
}


#contentwrap .akkordion .accordion ul {
    list-style: none !important;
    padding: 0 0 0 0;
}

#contentwrap .akkordion .accordion h3 {
    margin-bottom: 25px;
}

#contentwrap .akkordion ul.accordion {
    margin-bottom: -15px;
    margin-top: -15px;
}

#contentwrap .akkordion .accordion ul .inner {
    padding: 0px 20px 25px 20px;
    display: none;
    margin-bottom: 0px;
    background-color: var(--darkPrimaryColor);
    position: relative;
}

#contentwrap .akkordion .accordion ul .inner::before {
    content: "";
    width: 120px;
    height: 1px;
    display: block;
    background-color: rgba(255, 255, 255, 0.15);
    margin: 0px 0 22.5px 0;
}

#contentwrap .akkordion .accordion ul .inner p {
    font-size: var(--smallFS) !important;
}

#contentwrap .akkordion .accordion ul .inner p:not(:last-of-type) {
    margin-bottom: 15px !important;
}

#contentwrap .akkordion .accordion ul .inner li a {
    text-decoration: underline;
}

#contentwrap .akkordion .accordion ul .inner ol li {
    padding-left: 40px;
    font-size: var(--smallerParagraphs);
    margin-left: 0 !important;
}

#contentwrap .akkordion .accordion ul .inner ol li:before {
    padding-left: 2px;
    width: 25.5px;
    height: 27.5px;
    top: -2px;
}

#contentwrap .akkordion .accordion ul .inner ol,
#contentwrap .akkordion .accordion ul .inner ul {
    margin: 10px 0;
    padding-bottom: 0px !important;
}

#contentwrap .akkordion .accordion ul .inner li {
    font-size: var(--smallFS) !important;
    margin-left: 0 !important;
}

#contentwrap .akkordion .accordion ul .inner p {
    margin-bottom: 15px;
}

#contentwrap .akkordion .accordion ul .inner p:last-of-type {
    margin-bottom: 0px;
}

#contentwrap .akkordion .accordion ul .inner p a,
#contentwrap .akkordion .accordion ul .inner li a {
    border-width: 1px;
}

#contentwrap .akkordion .accordion>li:before {
    display: none;
}

#contentwrap .akkordion .accordion>li {
    margin: 10px 0;
    padding: 0;
    font: normal 300 var(--paragraphs) 'DM Sans', sans-serif;
}

#contentwrap .akkordion .accordion>li>a {
    border: none;

}

#contentwrap ul>li a.toggle-acc {
    width: 100%;
    position: relative;
    display: block;
    color: var(--lightColor);
    padding: 25px 55px 25px 20px;
    transition: background 0.3s ease;
    background-color: var(--darkPrimaryColor);
    font: normal 300 var(--paragraphs) 'DM Sans', sans-serif;
}

#contentwrap ul>li a.toggle-acc:hover,
#contentwrap ul>li a.active.toggle-acc {
    color: var(--ctaColor);
}

#contentwrap ul>li:first-of-type a {
    padding-top: 52.5px;
}

#contentwrap .akkordion .accordion ul>li a.toggle-acc .icon-down {
    position: absolute;
    right: 20px;
    top: -2.5px;
    bottom: 0;
    margin: auto 0;
    height: 36px;
    width: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    line-height: 1;
    transition: 0.35s all;
}

@media screen and (min-width:768px) {
    #contentwrap ul>li:first-of-type a.toggle-acc .icon-down {
        top: 22.5px !important;
    }

}

#contentwrap .akkordion .accordion ul>li a.toggle-acc .icon-down svg {
    transition: 0.35s all;
    transform-origin: 50% 50%;
    margin-top: 2px;
    width: 22.5px;
    height: 15px;
}

#contentwrap .akkordion .accordion ul>li a.toggle-acc .icon-down svg path {
    stroke: var(--darkColor);
    stroke-width: 2px;
}

#contentwrap .akkordion .accordion ul>li:hover a.toggle-acc svg path {
    stroke: var(--darkColor);
}

#contentwrap .akkordion .accordion ul>li a.toggle-acc.active svg rect {
    transition: 0.25s all;
    opacity: 1;
}

#contentwrap .akkordion .accordion ul>li a.toggle-acc.active svg rect:first-of-type {
    opacity: 0;
}

#contentwrap .akkordion .accordion ul>li a.toggle-acc.active .icon-down path {
    stroke-width: 2px !important;
}

#contentwrap .akkordion ul .inner p {
    font-size: var(--smallerParagraphs);
}

#contentwrap .akkordion ul .inner p:not(:last-of-type) {
    margin-bottom: 20px;
}

#contentwrap .akkordion ul .inner img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    float: left;
    margin: 0 30px 30px 0;
}

@media screen and (min-width:768px) and (max-width:991px) {
           #contentwrap ul>li:first-of-type a {
padding-top: 40px !important;
}
   #contentwrap ul>li:first-of-type a.toggle-acc .icon-down {
        top: 20px !important;
    }
}

@media screen and (max-width:991px) {
    #contentwrap .akkordion .accordion ul .inner::before {
        width: 90px;
        margin: 0px 0 17.5px 0;
    }

    #contentwrap .akkordion .accordion ul>li a.toggle-acc .icon-down {
        height: 30px;
        width: 30px;
        right: 5px;
    }

    #contentwrap ul>li a.toggle-acc {
        padding: 20px 45px 20px 15px;
    }

    #contentwrap .akkordion ul .inner {
        padding: 15px 0;
    }

    #contentwrap .akkordion .accordion>li:first-of-type {
        margin-top: 15px;
    }

    #contentwrap .akkordion .accordion ul .inner {
        padding: 0px 15px 25px 15px;
    }
}

@media screen and (max-width:767px) {
    #faq img.stretch-parent {
        max-width: calc(100% - 0px);
        height: 100%;
    }

    #faq li small {
        display: block;
    }

    #faq .col-mobile-height {
        padding: 0 0 15px 0;
    }
}

/* 4. Footer
##################################################### */

footer {
    margin-top: auto;
    flex: 0 0 100%;
    padding-top: 100px;
    padding-bottom: 90px;
}

footer p {
    font-size: var(--smallFS);
}

footer p a {
    color: var(--lighColor);
}

@media screen and (max-width:991px) {
    footer {
        padding-top: 50px;
        padding-bottom: 40px;
    }
}

@media screen and (max-width:767px) {
    footer .row>div {
        margin: 15px 0;
    }
}


.sub-page h1 {
    color: var(--ctaColor);
    -webkit-text-stroke: 0.5px var(--ctaColor);
}

.sub-page h2,
.sub-page h3 {
    margin-top: 30px;
}

.sub-page ul {
    margin: 30px 0;
}

.sub-page p {
    margin-bottom: 30px;
}

/* 6.1 Slick SLider*/

.slick-prev, .slick-next {
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 40px;
    height: 40px;
    border-radius: 0;
    border: none;
    font-size: 0px;
    cursor: pointer;
    transform: translate3d(0, 0, 0);
    background-image: url(../_img/arrow-left-light.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    position: absolute;
    background-color: rgba(0, 0, 0, 0);
    transition: 0.35s all;
}

.slick-prev {
    left: calc(-8.3333% - 30px);
}

.slick-next {
    right: calc(-8.3333% - 30px);
    background-image: url(../_img/arrow-right-light.svg);
}

.slick-prev:hover {
    transform: translateX(-10px);
}

.slick-next:hover {
    transform: translateX(10px);
}

@media screen and (max-width:991px) {
    .slick-prev, .slick-next {
        width: 30px;
        height: 30px;
    }
}

@media screen and (max-width:767px) {
    .slick-prev, .slick-next {
        display: none !important;
    }
}

* {
    min-height: 0;
    min-width: 0;
}

.slick-slider {
    -ms-touch-action: pan-y !important;
    touch-action: pan-y !important;
}

.slick-slide img {
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.slick-slide {
    transition: all ease-in-out .3s;
    opacity: 1;
}

@media screen and (max-width:767px) {
    .slick-slide {
        margin: 0px 0px;
    }
}

.slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -ms-touch-action: none;
    touch-action: none;
    -webkit-tap-highlight-color: transparent;
}

.slick-list {
    position: relative;
    overflow: hidden;
    display: block;
    margin: 0;
    padding: 0;
}

.slick-list:focus {
    outline: none;
}

.slick-list.dragging {
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-list, .slick-track, .slick-slide, .slick-slide img {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.slick-track {
    position: relative;
    left: 0;
    top: 0;
    display: block;
    zoom: 1;
}

.slick-track:before, .slick-track:after {
    content: "";
    display: table;
}

.slick-track:after {
    clear: both;
}

.slick-loading .slick-track {
    visibility: hidden;
}

.slick-slide {
    float: left;
    height: 100%;
    min-height: 1px;
    display: none;
}

.slick-slide img {
    display: block;
}

.slick-slide.dragging img {
    pointer-events: none;
}

.slick-initialized .slick-slide {
    display: block;
}

.slick-loading .slick-slide {
    visibility: hidden;
}

/*Dots*/

.slick-dots {
    display: flex;
    justify-content: center;
    margin-top: 30px !important;
}

.slick-dots li {
    display: inline-block;
    margin-right: 10px;
    margin-left: 0px !important;
    margin-bottom: 5px;
    padding: 0px !important;
    border: 1px solid var(--lightColor);
    height: 17.5px;
    width: 17.5px;
    border-radius: 50%;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.35s all;
}

.slick-dots li.slick-active {
    background: var(--lightColor);
    border: 1px solid var(--lightColor);
    color: var(--lightColor) !important;
}

.slick-dots li:not(.slick-active):hover {
    background: var(--lightColor);
}

.slick-dots li button {
    position: absolute;
    left: 0px;
    top: 0px;
    font-size: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0);
    border: 0;
}

.slick-dots li:before {
    display: none !important;
}

.slick-dots {
    padding: 0;
    margin: 0;
    list-style: none;
}

.slick-slide>.slick-slider-img {
    margin: 0 15px;
    padding: 2%;
    position: relative;
    display: block;
    width: 100%;
}

.slick-slide .image {
    padding: 10px;
}

.slick-slide img {
    display: block;
    width: 100%;
}

.slick-slide img.slick-loading {
    display: none;
}