/* fonts */
@import url(css2_0fc2b9543d50619e.css);

/* Externe CSS für alle Common Designs */
* {
    margin: 0;
    padding: 0;
    font-weight: normal;
    box-sizing: border-box;
}

body {
    font-family: 'Raleway', Arial, Helvetica, sans-serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.6;
    letter-spacing: 0.01rem;
    color: #000000;
    background: white;
    width: 100%;
}

article {
    position: relative;
    width: 100%;
    max-width: 999px;
    margin: 0 auto 2rem;
}

body > article {
    border: 1px solid #ccc;
    border-bottom-left-radius: 2rem;
    overflow: hidden;
}

.clearer {
    width: 100%;
    height: 0.1px;
    clear: both;
    float: none;
}

header, main, footer {
    position: relative;
    width: 100%;
    padding: 0rem 3rem 0;
}

header {
    padding: 0;
    margin-bottom: 3rem;
    display: none;
}

header a {
    display: block;
    float: left;
    width: 33%;
    padding: 1rem 3rem;
}

/* ******************************* Bildwechsler 2 + 3 ****************** */
.slider3,
.slider2,
section.bild {
    position: relative;
    margin: 0 auto 3rem;
    background: transparent;
    border: none;
    z-index: 1;
    max-width: 960px;
    height: 400px;
    overflow: hidden;
    border-top-right-radius: 2rem;
    border-bottom-left-radius: 2rem;
    padding: 0 2rem;
}

.slider3 figure,
.slider2 figure {
    position: absolute;
    top: 0;
    left: 0;
    display: inline-block;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    opacity: 0;
    z-index: 1;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    background: transparent;
    pointer-events: none;
    will-change: opacity;
}

.slider3 figure:last-of-type,
.slider2 figure:last-of-type {
    position: absolute;
    z-index: 0;
}

.slider3 figure img,
.slider2 figure img,
section.bild img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-top-right-radius: 2rem;
    border-bottom-left-radius: 2rem;
    display: block;
    backface-visibility: hidden;
}

/* Keyframes für weiche Übergänge – keine Lücken */
@keyframes wechseln3 {
    0%   {opacity: 0;}
    20%  {opacity: 1;}
    40%  {opacity: 1;}
    60%  {opacity: 0;}
    100% {opacity: 0;}
}

@keyframes wechseln2 {
    0%   {opacity: 0;}
    10%  {opacity: 1;}
    50%  {opacity: 1;}
    60%  {opacity: 0;}
    100% {opacity: 0;}
}

/* Slider Animation */
.slider3 figure {
    animation-name: wechseln3;
    animation-duration: 15s;
    animation-iteration-count: infinite;
}

.slider3 figure:nth-of-type(1) {
    animation-delay: 0s;
}
.slider3 figure:nth-of-type(2) {
    animation-delay: 5s;
}
.slider3 figure:nth-of-type(3) {
    animation-delay: 10s;
}

.slider2 figure {
    animation-name: wechseln2;
    animation-duration: 10s;
    animation-iteration-count: infinite;
}

.slider2 figure:nth-of-type(1) {
    animation-delay: 0s;
}
.slider2 figure:nth-of-type(2) {
    animation-delay: 5s;
}

/* Footer Styling */
footer {
    margin-bottom: 0;
    padding: 1.5rem 3rem;
    background-color: #E5F1FF;
    color: #000000;
    border-bottom-left-radius: 2rem;
}

footer article {
    margin-bottom: 0;
}

footer h3,
footer a,
footer a:hover {
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Global img-Regel */
img {
    width: 100%;
    height: auto;
}

/* Überschrift */
h1 {
    font-family: 'Raleway', Arial, Helvetica, sans-serif;
    font-weight: 500;
    font-size: clamp(1.5rem, 4vw, 3rem);
    width: 95%;
    max-width: 999px;
    margin: auto;
    margin-bottom: 3rem;
    margin-top: 0rem;
    padding: 1rem 2.5rem;
    color: #ffffff;
    background-color: #14003c;
    border-radius: 6rem;
    position: relative;
    z-index: 10;
}

h3 {
    font-family: 'Raleway', Arial, Helvetica, sans-serif;
    font-weight: 600;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

b, strong {
    font-weight: 600;
}

ul {
    padding-left: 1.2rem;
    text-indent: 0;
}

p, li {
    margin-bottom: 0.5rem;
}

/* Responsive Anpassungen */
@media(min-width:600px) {
    header {
        display: block;
        margin-bottom: 0;
    }

    h1 {
        margin-top: -7rem;
        margin-bottom: 2rem;
        margin-left: 3rem;
    }

    .callToAction #logolink img {
        display: block;
        position: absolute;
        right: 1rem;
        bottom: 0.75rem;
        width: 27%;
        height: auto;
    }
}
