/* Page Loader */
.js .loading::before,
.js .loading::after {
    content: '';
    position: fixed;
    z-index: 1000;
}

.js .loading::before {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-bg);
}

.js .loading::after {
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    margin: -30px 0 0 -30px;
    border-radius: 50%;
    opacity: 0.4;
    background: var(--color-link);
    animation: loaderAnim 0.7s linear infinite alternate forwards;

}

@keyframes loaderAnim {
    to {
        opacity: 1;
        transform: scale3d(0.5, 0.5, 1);
    }
}

.slideshow {
    position: absolute;
    width: 100vw;
    height: 100%;
    top: 0;
    z-index: 0;
    overflow: hidden;
}

.slide {
    margin: 0;
}

.slide,
.slide__img-wrap,
.slide__img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.slide {
    display: flex;
    align-items: center;
    justify-content: center;
}

.js .slide {
    opacity: 0;
    pointer-events: none;
}

.js .slide--current {
    opacity: 1;
    pointer-events: auto;
}

.slide__img-wrap {
    will-change: transform;
    overflow: hidden;
}

.slide__img {
    background-size: cover;
    will-change: transform;
    -webkit-backspace-visibility: hidden;
}

.slide__caption {
    position: relative;
    padding: 0 10vw;
    cursor: default;
    width: 100%;

    display: none;
    /*caption provisorisch ausblenden*/
}

.slides__caption-headline {
    font-size: 6.5vw;
    font-size: clamp(2rem, 6.5vw, 6rem);
    line-height: 0.9;
    margin: 0;
    text-transform: uppercase;
    font-weight: normal;
}

.text-row {
    position: relative;
    overflow: hidden;
    display: block;
    white-space: nowrap;
}

.text-row>span {
    display: block;
    position: relative;
    padding: 0.5rem 0;
}

.slides__caption-headline {
    font-weight: 300;
}

.slides__caption-headline em,
.slides__caption-headline strong {
    font-family: freight-big-pro, serif;
    font-size: 6.75vw;
    font-size: clamp(2rem, 7vw, 6rem);
}

.slides__caption-headline em {
    font-weight: 400;
    font-style: italic;
}

.slides__caption-headline strong {
    font-weight: 400;
}

.slides__caption-link {
    display: inline-block;
    margin-top: 1rem;
    text-indent: 0.2vw;
    font-size: 1.75rem;
    font-weight: 300;
    font-size: clamp(1rem, 5vw, 1.75rem);
}

.slides-nav {
    position: absolute;
    right: 0;
    bottom: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.slides-nav__button {
    display: block;
    cursor: pointer;
    background: none;
    border: 0;
    width: 55px;
    height: 24px;
    padding: 0;
    margin: 0 0.75rem;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.slides-nav__button:focus {
    outline: none;
}

.slides-nav svg {
    display: block;
    width: 100%;
    height: 100%;
    fill: #fff;
}

.slides-nav__index {
    margin-left: 2rem;
    white-space: nowrap;
    color: var(--color-text);
    border: 1px solid var(--color-text);
    border-radius: 50%;
    padding: 1rem 1.5rem;
    text-align: center;
    display: flex;
    align-items: center;
}

.slides-nav__index>span {
    width: 2rem;
}

.slides-nav__index-current {
    position: relative;
    overflow: hidden;
}

.slides-nav__index-current span {
    display: inline-block;
}

@media screen and (min-width: 53em) {

    .slides-nav {
        grid-area: nav;
        justify-self: end;
        align-self: end;
    }

    .slideshow {
        height: 100%;
    }

    .slides-nav {
        margin-bottom: -1rem;
    }

    .slides-nav__index {
        margin-right: -2rem;
    }

    .slideshow {
        background: var(--color-bg);
    }

}


.noselect,
.noselect * {
    user-select: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
}

.doselect,
.doselect *:not(.noselect) {
    user-select: text;
    -webkit-user-select: text;
    -khtml-user-select: text;
    -moz-user-select: text;
    -o-user-select: text;
}

.clearfix:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
}

.clearfix {
    display: inline-block;
}

html[xmlns] .clearfix {
    display: block;
}

* html .clearfix {
    height: 1%;
}

/********* Header Element *********/

.header-element-net {
    position: relative;
    height: 590px;
    background-color: #E3E1E1;
    overflow: hidden;
}

.header-element-net:before {
    content: ' ';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.5;
    background-image: url("../images/netz.svg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.header-element-stage {
    position: relative;
    height: 590px;
    background-color: #E3E1E1;
    overflow: hidden;
}

.header-element-stage:before {
    content: ' ';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 1;
    background-image: url("../images/eco-stage.jpg");
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
}

.caption {
    position: relative;
    padding-top: 2rem;
    padding-bottom: 2rem;
    z-index: 100;
}

.preheadline {
    text-transform: uppercase;
    font-family: "migrena_grotesquemedium";
    font-size: 1.2rem;
}

.text-pink {
    color: #E6007E;
}

.text-yellow {
    color: #FBBA00;
}

.text-blue {
    color: #00ADBA;
}

.text-white {
    color: #FFF;
}

.text-intro {
    font-size: 1.3rem;
    font-family: "migrena_grotesquesemibold";
}

/********* Bubbles mit Foto *********/

.bubbles {
    position: relative;
}

.header-image-01,
.header-image-02,
.header-image-03 {
    clip-path: circle(50% at 50% 50%);
}

.header-image-01 {
    /*	position: absolute;
	top:2rem;
	right: 50%;
	height: auto;*/
    width: 100%;
    z-index: 10;
}

.header-image-02 {
    /*	position: absolute;
	bottom:2%;
	right: 20%;
	height: auto;*/
    width: 100%;
    z-index: 10;
}

.header-image-03 {
    /*	position: absolute;
	top:-3rem;
	right: -5%;
	height: auto;*/
    width: 100%;
    z-index: 10;
}

.pulse-01 {
    aspect-ratio: 1/1;
    width: 30%;
    background: #E6007E;
    position: absolute;
    margin: auto;
    right: 50%;
    top: 2rem;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 50px;
    color: #ffffff;
    z-index: 5;
}

.pulse-02 {
    aspect-ratio: 1/1;
    width: 25%;
    background: #E6007E;
    position: absolute;
    margin: auto;
    right: 20%;
    bottom: 5%;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 50px;
    color: #ffffff;
    z-index: 5;
}

.pulse-03 {
    aspect-ratio: 1/1;
    width: 50%;
    background: #E6007E;
    position: absolute;
    margin: auto;
    right: -5%;
    top: -3rem;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 50px;
    color: #ffffff;
    z-index: 5;
}

.pulse-01:before,
.pulse-01:after,
.pulse-02:before,
.pulse-02:after,
.pulse-03:before,
.pulse-03:after {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: #E6007E;
    border-radius: 50%;
    opacity: 0.7;
}

.pulse-01:before {
    animation: pulsate 2s ease-out;
}

.pulse-01:after {
    animation: pulsate 2s 1s ease-out;
}

.pulse-01:hover.pulse-01:before,
.pulse-02:hover.pulse-02:before,
.pulse-03:hover.pulse-03:before {
    animation: pulsate 2s ease-out infinite;
}

.pulse-01:hover.pulse-01:after,
.pulse-02:hover.pulse-02:after .pulse-03:hover.pulse-03:after {
    animation: pulsate 2s 1s ease-out infinite;
}

@keyframes pulsate {
    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

/********* Circle-Animation ohne Foto *********/

.fmc-circle:nth-child(1) {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-radius: 50%;
    border: 10px solid rgba(255, 255, 255, 0.5);
    animation: scaleOne 4s infinite cubic-bezier(0, 0.47, 1, 1);
}

@keyframes scaleOne {
    100% {
        width: 300px;
        height: 300px;
        border-radius: 50%;
        border-color: rgba(255, 255, 255, 0);
        border-width: 0px;
    }
}

.fmc-circle:nth-child(2) {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-radius: 50%;
    border: 10px solid rgba(255, 255, 255, 0.5);
    animation: scaleTwo 3s infinite cubic-bezier(0, 0.47, 1, 1);
}

@keyframes scaleTwo {
    100% {
        width: 200px;
        height: 200px;
        border-radius: 50%;
        border-color: rgba(255, 255, 255, 0);
        border-width: 0px;
    }
}

.fmc-circle:nth-child(3) {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-radius: 50%;
    border: 10px solid rgba(255, 255, 255, 0.5);
    animation: scaleThree 2s infinite cubic-bezier(0, 0.47, 1, 1);
}

@keyframes scaleThree {
    100% {
        width: 100px;
        height: 100px;
        border-radius: 50%;
        border-color: rgba(255, 255, 255, 0);
        border-width: 0px;
    }
}

.fmc-circle:nth-child(4) {
    position: absolute;
    top: 50%;
    left: 80%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-radius: 50%;
    border: 10px solid rgba(255, 255, 255, 0.5);
    animation: scaleFour 8s infinite cubic-bezier(0, 0.47, 1, 1);
}

@keyframes scaleFour {
    100% {
        width: 800px;
        height: 800px;
        border-radius: 50%;
        border-color: rgba(255, 255, 255, 0);
        border-width: 0px;
        opacity: 0;
    }
}

.fmc-circle:nth-child(5) {
    position: absolute;
    top: 50%;
    left: 80%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-radius: 50%;
    border: 10px solid rgba(255, 255, 255, 0.5);
    animation: scaleFive 7s infinite cubic-bezier(0, 0.47, 1, 1);
}

@keyframes scaleFive {
    100% {
        width: 600px;
        height: 600px;
        border-radius: 50%;
        border-color: rgba(255, 255, 255, 0);
        border-width: 0px;
    }
}

.fmc-circle:nth-child(6) {
    position: absolute;
    top: 50%;
    left: 80%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-radius: 50%;
    border: 10px solid rgba(255, 255, 255, 0.5);
    animation: scaleSix 6s infinite cubic-bezier(0, 0.47, 1, 1);
}

@keyframes scaleSix {
    100% {
        width: 400px;
        height: 400px;
        border-radius: 50%;
        border-color: rgba(255, 255, 255, 0);
        border-width: 0px;
    }
}

.fmc-circle:nth-child(7) {
    position: absolute;
    top: 60%;
    left: 0;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-radius: 50%;
    border: 10px solid rgba(255, 255, 255, 0.5);
    animation: scaleSeven 6s infinite cubic-bezier(0, 0.47, 1, 1);
}

@keyframes scaleSeven {
    100% {
        width: 400px;
        height: 400px;
        border-radius: 50%;
        border-color: rgba(255, 255, 255, 0);
        border-width: 0px;
    }
}

.fmc-circle:nth-child(8) {
    position: absolute;
    top: 60%;
    left: 0;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-radius: 50%;
    border: 10px solid rgba(255, 255, 255, 0.5);
    animation: scaleEight 5s infinite cubic-bezier(0, 0.47, 1, 1);
}

@keyframes scaleEight {
    100% {
        width: 300px;
        height: 300px;
        border-radius: 50%;
        border-color: rgba(255, 255, 255, 0);
        border-width: 0px;
    }
}

.fmc-circle:nth-child(9) {
    position: absolute;
    top: 60%;
    left: 0;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-radius: 50%;
    border: 10px solid rgba(255, 255, 255, 0.5);
    animation: scaleNine 5s infinite cubic-bezier(0, 0.47, 1, 1);
}

@keyframes scaleNine {
    100% {
        width: 200px;
        height: 200px;
        border-radius: 50%;
        border-color: rgba(255, 255, 255, 0);
        border-width: 0px;
    }
}

.fmc-circle:nth-child(10) {
    position: absolute;
    top: 70%;
    left: 30%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-radius: 50%;
    border: 10px solid rgba(255, 255, 255, 0.5);
    animation: scaleTen 4.5s infinite cubic-bezier(0, 0.47, 1, 1);
}

@keyframes scaleTen {
    100% {
        width: 300px;
        height: 300px;
        border-radius: 50%;
        border-color: rgba(255, 255, 255, 0);
        border-width: 0px;
    }
}