/* fonts */
@import url('https://fonts.googleapis.com/css2?family=Gabarito:wght@400..900&family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap');




/* Externe CSS für alle Common Designs */
*{
    margin:0;
    padding: 0;
    font-weight: normal;
}
body {
    line-height: 1;
    font-family: "Gabarito", sans-serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.3;
    letter-spacing: 0.01rem;
    color: #666666;
    background: white;
    width: 100%;
}
article{
    position: relative;
    width: 100%;
    max-width: 999px;
    margin: 0 auto 2rem;    
    box-sizing: border-box;
}
body > article{
    margin-top: 1.5rem;
    border: 1px solid #ccc;
    background-color: #fff;
}
.clearer{
    width: 100%;
    height: 0.1px;
    clear: both;
    float: none;
}

header,main,footer{
    position: relative;
    width: 100%;
    box-sizing: border-box;
    padding: 0rem 3rem 0;
}
header{
    padding: 0;
    margin-bottom: 3rem;
    display: none;
    background-color: #fff;

}
header a{
    display: block;
    float: left;
    width: 33%;
    padding: 1.5rem 3rem 0;
    box-sizing: border-box;
}
/******************************* Bildwechsler 2 + 3 ******************/
.slider3,.slider2{
	position: relative;
	margin: 0 0 3rem;
	background: none;
	border: none;
}
.slider3 figure{
	position: absolute;
	display: inline-block;
	top: 0;
	left: 0;
	z-index: 1;
    opacity: 0;
    animation: wechseln3 15s infinite;    
}
.slider2 figure:first-of-type{
	position: absolute;
	display: inline-block;
	top: 0;
	left: 0;
	z-index: 1;
    opacity: 0;
    animation: wechseln2 10s infinite;    
}

.slider3 figure:last-of-type, .slider2 figure:last-of-type {
	position: relative;
}
@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;}
}
.slider3 figure:nth-of-type(2) {
  animation-delay: 5s;
}
.slider3 figure:nth-of-type(3) {
  animation-delay: 10s;
}
/******************************************* Bildwechsler Ende *************/

footer{
    margin-bottom: 0;
    padding: 1.5rem 3rem;
    color: #fff;
}
footer article{
    margin-bottom: 0;
}
footer h3, footer a, footer a:hover{
    color: #fff;
    text-decoration: none;
}
footer a:hover{
    text-decoration: underline;
}
img{
    width: 100%;
    height: auto;
}
h1{
    font-family: "Urbanist", sans-serif;
    font-weight: 900;
    width: 100%;
    max-width: 999px;
    margin-bottom: 3rem;
    margin-top: 3rem;
    font-size: 250%;   
    font-style: normal;
    text-transform: uppercase;
}
h3{
    font-family: "Gabarito", sans-serif;
    font-weight: 600;
    font-size: 125%;
    margin-bottom: 0.5rem;
    font-weight: 700;
}
b,strong{
    font-weight: 700;
}
ul{
    padding-left: 1.2rem;
    text-indent: 0rem;
}
p,li{
    margin-bottom: 0.5rem;
}
@media(min-width:600px){
    header{
        display: block;
        margin-bottom: 0;
    }
    h1{
        margin-top: 2rem;
        margin-bottom: 2rem;
    }
    .callToAction img{
        display: block;
        position: absolute;
        right: 1rem;
        bottom: 0.75rem;
        width: 27%;
        height: auto;
    }

}
