/*******************************************************************************/


/*                                                                             */


/*                                  Storytelling                               */


/*                                                                             */


/*******************************************************************************/


/* Animations */

@-moz-keyframes loading-bar {
    0% {
        width: 0%;
        opacity: 1;
    }
    90% {
        width: 90%;
        opacity: 1;
    }
    100% {
        width: 100%;
        opacity: 0;
    }
}

@-webkit-keyframes loading-bar {
    0% {
        width: 0%;
        opacity: 1;
    }
    90% {
        width: 90%;
        opacity: 1;
    }
    100% {
        width: 100%;
        opacity: 0;
    }
}

@keyframes loading-bar {
    0% {
        width: 0%;
        opacity: 1;
    }
    90% {
        width: 90%;
        opacity: 1;
    }
    100% {
        width: 100%;
        opacity: 0;
    }
}

@-moz-keyframes radial-loader {
    0% {
        -moz-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -moz-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-webkit-keyframes radial-loader {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes radial-loader {
    0% {
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}


/*******************************    Navigation  ********************************/

#topnav {
    width: 60px;
    height: 45px;
    position: relative;
    margin: 0px auto;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
    right: 20px;
    margin-top: 5px;
    display: inline-block;
}

#topnav span {
    display: block;
    position: absolute;
    height: 5px;
    width: 80%;
    background: #ffffff;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}

#topnav span:nth-child(1) {
    top: 5px;
}

#topnav span:nth-child(2) {
    top: 17px;
    width: 50%;
}

#topnav span:nth-child(3) {
    top: 29px;
}

#topnav.open span:nth-child(1) {
    top: 18px;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg);
}

#topnav.open span:nth-child(2) {
    opacity: 0;
    left: -60px;
}

#topnav.open span:nth-child(3) {
    top: 18px;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    -o-transform: rotate(-135deg);
    transform: rotate(-135deg);
}

header .social {
    display: inline-block;
    width: 100px;
    margin-right: 90px;
}

header .social img {
    height: 40px;
    top: 5px;
    position: absolute;
}

header {
    position: fixed;
    top: 0;
    right: 0px;
    z-index: 1000;
    width: 100%;
    margin: 0;
    padding: 0;
    height: 50px;
    background: rgba(59, 171, 174, 1);
    transition: top .5s;
}

header .logo {
    height: 40px;
    position: absolute;
    left: 10%;
    width: 70%;
    max-width: 1000px;
}

header .logo img {
    height: 40px;
}

header .logo-img {
    margin-top: 3px;
    display: inline-block;
}

header .logo-img.logo1 {
    margin-right: 10%;
}

header .logo-img.logo2 {
    margin-right: 10%;
}

header .logo-img.logo1 {
    height: 48px;
    margin-top: 0;
}

.sticky {
    box-shadow: 0 1px 20px rgb(0, 0, 0, 0.5);
}

nav {
    position: absolute;
    right: 0;
}

.off-screen {
    top: -100px;
}


/* The side navigation menu */

.sidenav {
    height: 100%;
    /* 100% Full-height */
    width: 370px;
    /* 0 width - change this with JavaScript */
    position: fixed;
    /* Stay in place */
    z-index: 1;
    /* Stay on top */
    top: 0;
    right: -420px;
    background-color: #cce3f0;
    /* Black*/
    overflow-x: hidden;
    /* Disable horizontal scroll */
    padding-top: 100px;
    /* Place content 60px from the top */
    transition: 0.5s;
    /* 0.5 second transition effect to slide in the sidenav */
    padding: 100px 20px 0;
}


/* The navigation menu links */

.sidenav a {
    padding: 8px 0px 5px 0px;
    text-decoration: none;
    font-size: 20px;
    color: var(--primarycolor);
    display: block;
    width: auto;
    transition: 0.3s;
    float: left;
    clear: both;
    margin-bottom: 10px;
    line-height: 1.2em;
}


/* When you mouse over the navigation links, change their color */

.sidenav a:hover {
    color: var(--ankerfarbeover);
}


/* Position and style the close button (top right corner) */

.sidenav .closebtn {
    position: absolute;
    top: 50px;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
}

#topnav:before {content:"MENU";
    display: block;
    position: absolute;
    margin-left: -66px;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    margin-top:0px;
}
/*******************************   End Navigation  ******************************/


/*******************************   Global Styles   ******************************/


/* Style page content - use this if you want to push the page content to the right when you open the side navigation */

#main {
    transition: margin-right .5s;
    padding: 0px;
}

#main,
#content-wrapper,
#story-wrapper {
    height: 100%;
}


/*******************************   End Global Styles  ***************************/


/**********************  Footer  ******************/

footer {
    overflow: hidden;
}

.footer--links {
    background-color: var(--footercol);
    padding: 5rem 3rem;
    padding-right: 3rem;
    padding-left: 3rem;
    width: 100%;
}

.footer--meta {
    background-color: var(--footermeta);
    padding: 5rem 3rem;
    padding-right: 3rem;
    padding-left: 3rem;
}

.footer--meta ul {
    list-style: none;
}

.footer--meta ul li {
    display: inline-block;
    margin: 0 2%;
    color: #fff;
}


/*******************************   End Footer  *******************************/


/*******************************   Flexslider   *********************************/

.flexslider {
    height: 100%;
    margin: 0;
    padding: 0;
    background: none;
    border: 0;
    overflow: hidden;
    box-shadow: none;
}

.flex-viewport {
    height: 100%;
}

.flex-control-nav {
    bottom: 20px;
}

.slides {
    height: 100%;
}

.flex-direction-nav a::before {
    font-family: "flexslider-icon";
    font-size: 40px;
    display: inline-block;
    content: '\f001';
    color: rgba(0, 0, 0, 0.8);
    text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.3);
}

.flex-caption {
    background: rgba(0, 0, 0, 0.6);
    height: 50px;
    line-height: 50px;
    margin: 0;
    text-align: left;
    color: #fff;
    padding-right: 20px;
    bottom: 0;
    width: 98%;
    position: absolute;
    width: 100%;
    padding: 20px 100px;
}

.slide--full {
    width: 90%;
    padding: 0 5%;
    position: absolute;
    z-index:100;
    opacity: 1;
    height: 100%;
    top: 0;
    left: 100%;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    overflow: hidden;
}

.slide--in {
    width: 90%;
    position: absolute;
    opacity: 1;
    height: 100%;
    padding: 0 5%;
    top: 0;
    animation: slidein 1s forwards;
}

.slide--out {
    opacity: 1;
    left: 0;
    animation: slideout 1s forwards;
}

@-webkit-keyframes slidein {
    100% {
        left: 0;
    }
}

@keyframes slidein {
    100% {
        left: 0;
    }
}

@-webkit-keyframes slideout {
    100% {
        left: 100%;
    }
}

@keyframes slideout {
    100% {
        left: 100%;
    }
}

.videos {
    width: 100%;

    height: auto;
    border: 20px solid #0C8786;
  border-radius: 20px;
  max-width: 1050px;
  margin: 0 auto;
}
.videorahmen {
    max-width: 1050px;
    margin: 0 auto;
}
.videorahmen:after {
    display: block;
    content: "";
    width: 300px;
    margin: -10px 38%;
    height: 85px;
    background: url('../images/videofuss.png') no-repeat;
    background-size:contain;
}
/*******************************   End Flexslider  *******************************/


/*******************************   Colors Background   *********************************/

[data-step="2"] {
    background: #fff;
}


/*******************************   End Colors Background  *******************************/


/* ====================================================================================================================
 * CONTENT
 * ====================================================================================================================*/

.column--three {
    padding-top: 10vh;
    width: 100%;
}

.column--three .box {
    width: 33%;
    display: inline-block;
    text-align: center;
}

.column--three .animbox {
    width: 33%;
    display: inline-block;
    text-align: center;
}

.fadeInUp {
    -webkit-animation: fadeInUp 500ms ease-in-out;
    /* Chrome, Safari, Opera */
    animation: fadeInUp 1000ms ease-in-out;
}

.textblock {
    line-height: 2.8rem;
    font-size: 2rem;
}

.contentfield.col--left {
    vertical-align: top;
    width: 30%;
    display: inline-block;
}

.contentfield.col--right {
    vertical-align: top;
    width: 60%;
    display: inline-block;
    line-height: 0;
}


/******************************  Headlines  ************************************/


/* ====================================================================================================================
 * MISC
 * ====================================================================================================================*/


/*******************************   Transitions   ******************************/


/* Style page content - use this if you want to push the page content to the right when you open the side navigation */

@-webkit-keyframes bounce {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    to {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }
}

@keyframes bounce {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    to {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }
}

.digit {
    opacity: 0;
    -webkit-transform: translateY(200px);
    -moz-transform: translateY(200px);
    -ms-transform: translateY(200px);
    -o-transform: translateY(200px);
    transform: translateY(200px);
    -webkit-transition: all 0.6s ease-out;
    -moz-transition: all 0.6s ease-out;
    -ms-transition: all 0.6s ease-out;
    -o-transition: all 0.6s ease-out;
    transition: all 0.6s ease-out;
}

.digit.visible {
    opacity: 1;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
}

.digit:nth-child(2) {
    margin-top: 50px;
}

.digit:nth-child(3) {
    margin-top: 100px;
}

.digit:nth-child(4) {
    margin-top: 150px;
}

.digit:nth-child(5) {
    margin-top: 200px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(60px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    40% {
        opacity: 1;
    }
    100% {
        opacity: 0.3;
    }
}


/*******************************   End Transitions  ***************************/


/*******************************   Scrolldown  ***************************/

.stage--arrowdown:before {
    content: " ";
    background-image: url(svg/icon.svg);
    height: 3rem;
    bottom: 3rem;
    position: relative;
    -webkit-animation: bounce .3s infinite alternate;
    animation: bounce .3s infinite alternate;
    filter: drop-shadow( 2px 2px 1px rgba(0, 0, 0, .3));
}

.stage--arrowdown:before {
    display: block;
    background-repeat: no-repeat;
    background-position: 60%;
    max-width: 3rem;
    width: 100%;
    background-size: contain;
}

.stage--arrowdown {
    background-image: url(svg/arrowdown.svg);
    position: fixed;
    left: calc(50% - 1.8rem);
    height: 1rem;
    bottom: 1rem;
    max-width: 1.6rem;
    width: 100%;
    border: 0;
    outline: 0;
    text-decoration: none;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    filter: drop-shadow( 2px 2px 1px rgba(0, 0, 0, .3));
}

.stage--arrowdown.arrowoff {
    display: none;
}


/*************** PinContainer ********************/

.pinContainer {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.panel {
    height: 100%;
    width: 100%;
    position: absolute;
}


/*************** End PinContainer ********************/


/*******************************   Video   *********************************/

.video--size {
    width: 100%;
}

.videoWrapper {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 */
    padding-top: 25px;
    height: 0;
}

.videoWrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


/* Background Videos */

.bgVideo {
    position: absolute;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
}


/* Add some content at the bottom of the video/page */

.videotext {
    position: absolute;
    background: rgba(0, 0, 0, 0.5);
    width: 100%;
    margin: 0 auto;
    padding: 0px;
    display: block;
    text-align: center;
    top: 10%;
}


/*******************************   End Video   *********************************/


/* Simple animation up */

.slideInUp {
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.7s ease-out;
    transition: all 0.7s ease-out;
    -webkit-transform: translate3d(0, 50px, 0);
    transform: translate3d(0, 50px, 0);
}

.is-active .slideInUp {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.slideInUp.slideInUp2 {
    -webkit-transition-delay: 0.2s;
    transition-delay: 0.2s;
}

.slideInUp.slideInUp3 {
    -webkit-transition-delay: 0.4s;
    transition-delay: 0.4s;
}

.bcg {
    background: no-repeat center center;
    background-size: cover;
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 1;
}

#slide01 .bcg {
    background: url(../images/bg1.jpg) no-repeat center center;
    background-size: cover;
}

#slide02 .bcg {
    background: url(../images/bg2.jpg) no-repeat center center;
    background-size: cover;
}

.slidewrapper {
    width: 80%;
    margin: 0 10%;
}

.fs {
    height: 30vh;
}

.slide#slide01 {
    color: #ffffff;
}

.slide#slide02 {
    color: #ffffff;
}

.slide {
    overflow: hidden;
}

.slide#slide01 .slidewrapper,
.slide#slide02 .slidewrapper,
.slide#slide03 .slidewrapper {
    top: 20%;
    text-align: center;
    position: relative;
}

.sl-wrapper .sl-image .sl-caption {
    background: none !important;
    bottom: -50PX !important;
}


/* Mobil Modal Popup */

#overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    filter:alpha(opacity=70);
    -moz-opacity:0.7;
    -khtml-opacity: 0.7;
    opacity: 0.7;
    z-index: 100000;
    display: none;
    }
    .popup-content{
       padding: 14px 10px;
       line-height: 1.5;
    }
    .cnt223 a.close{
    text-decoration: none;background: var(--fontcolor);color:#fff;padding:15px 40px; border-radius:10px;text-transform:uppercase;font-size:1.2em;
    }
    .cnt223 a.close:hover {
        background: #15CAC8;
    }

    .popup-onload{
    margin: 0 auto;
    display: none;
    position: fixed;
    z-index: 100001;
    top: 10%;
    margin-left: auto;
    margin-right: auto; 
    }
    .cnt223{
    min-width:300px;
    width:  80%;
    min-height: 120px;
    margin: auto;
    background: #f3f3f3;
    position: relative;
    z-index: 103;
    padding: 15px 25px;
    border-radius: 5px;
    box-shadow: 0 2px 5px #000;
    }
    .cnt223 p{
    clear: both;
        color: #555555;
        /* text-align: justify; */
        font-size: 20px;
        font-family: sans-serif;
    }

    .cnt223 .x{
    float: right;
    height: 35px;
    left: 22px;
    position: relative;
    top: -25px;
    width: 34px;
    }
    .cnt223 .x:hover{
    cursor: pointer;
    }

.popup-content h2
    {
      font-size: 2em;
      line-height: 1.4em;
      color: var(--fontcolor) !important;
    }



/* ====================================================================================================================
 * RESPONSIVE
 * ====================================================================================================================*/


/* small devices (small desktops) */

@media screen and (max-width: 1200px) {
    body {
        font-size: 18px;
        line-height: normal;
    }
}


/* small devices (laptops) */

@media screen and (max-width: 992px) {
    header .logo {
        left: 50px;
        width: 80%;
        max-width: 1000px;
    }
    header .logo img.logo1 {
        margin-top: 5px;
        max-width: 100px;
        width: 30%;
        height: auto;
        display: inline-block;
        margin-right: 30px;
    }
    header .logo img.logo2 {
        max-width: 90px;
        width: 30%;
        margin-top: 0px;
        height: auto;
        display: inline-block;
        margin-right: 30px;
    }
    header .logo img.logo3 {
        max-width: 150px;
        width: 30%;
        margin-top: 0px;
        height: auto;
        display: inline-block;
        margin-right: 0px;
    }
    body {
        font-size: 16px;
        line-height: normal;
    }
    .stage h1.headline {
        font-size: 3rem;
        color: #fff;
        line-height: 3rem;
    }
    .stage.standard .field--text {
        line-height: 1.5rem;
        font-size: 1.5rem;
        width: auto;
        padding: 0 5%;
    }
    .stage.standard {
        max-width: 1200px;
        margin: 0 auto;
        width: 100%;
        padding: 5% 0;
    }
    .stage .parallax-content {
        position: absolute;
        margin: -100% auto;
        width: auto;
        display: block;
        left: 0%;
        padding: 0 5%;
    }
    /****************** Stage ************/
    .stage h1.headline {
        font-size: 1.5em;
        color: #fff;
        padding-top: 0rem;
        text-align: left;
        margin: 0.1em 0;
        line-height: 1.3em;
     
    }
    h2 {
        font-size: 1rem;
        color: #fff;
        padding-top: 1rem;
        text-align: left;
        font-weight: normal;
        margin-bottom: 2rem;
    }
    span.subline {
        display: block;
        padding-top: 6rem;
        text-align: left;
        font-size: 1rem;
        text-transform: none;
        hyphens: none;
        color: #fff;
    }
    h2.subline {
        font-size: 1.3rem;
        text-transform: uppercase;
        letter-spacing: .1em;
        hyphens: none;
        color: #ffffff;
    }
    h3.subline {
        text-align: left;
        font-size: 1rem;
        hyphens: none;
        color: #008887;
    }
    h1.schwarz {
        color: var(--schwarz);
    }
    h2.schwarz {
        color: var(--schwarz);
    }
    span.subline.schwarz {
        color: var(--schwarz);
    }
    .intro--btn {
        color: #fff;
        padding: 5px 30px !important;
        border-radius: 15px;
        display: block;
        margin: 0 auto;
        background: #fff;
        width: 50% !important;
        margin-bottom: 20px;
        text-align: center;
    }
}


/* Medium devices (tablets, 768px and up) */

@media screen and (max-width: 768px) {
    header .logo {
        left: 10px;
        width: 50%;
        max-width: 400px;
    }
    header .logo img.logo1 {
        margin-top: 5px;
        max-width: 80px;
        width: 50%;
        height: auto;
        display: inline-block;
        margin-right: 10px;
    }
    header .logo img.logo2 {
        max-width: 60px;
        width: 30%;
        margin-top: 0px;
        height: auto;
        display: inline-block;
        margin-right: 10px;
    }
    header .logo img.logo3 {
        max-width: 100px;
        width: 30%;
        margin-top: 0px;
        height: auto;
        display: inline-block;
        margin-right: 10px;
    }
    header .social img {
        width: 30px;
        height: auto;
        display: inline-block;
        margin-right: 0px;
    }
    header .social {
        width: 30px;
        margin-right: 100px;
    }

    #topnav::before
    {
  content: "MENU";
  margin-left: -50px;
  font-size: 15px;
    }
}


/* Small devices (landscape phones, 576px and up) */

@media screen and (max-width: 576px) {}