*{
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    padding: 0;
    margin: 0;
}
:root{
    --website-background-color:#f1e8ce;
    --first-secondary-color: #eb8a3e;
    --transparent-white: #ffffffab;
    --text-color-grey: rgb(69, 69, 69);
    --primary-color:#D24136 ;
    --second-secondary-color:#c4d4be;
    --text-color-white: #ebe8e8;
    color: var(--text-color-grey);
}/*32*/
body{
    background-color: var(--website-background-color);
}
/*überschrift und Kopf evtl. noch Logo*/
header{
    height: 100px;
    min-width: 100%;
    align-items: center;
    display: flex;
    position: fixed;
    justify-content: center;
    background:var(--text-color-white);
    color:var(--first-secondary-color);
    z-index:1000;
}
.inner-header{
    width: 90%;
    max-width: 1200px;
    padding: 0 5%;
    height: 90%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.company-logo{
    height: 100%;
    width: fit-content;
}
.logo-img{
    height: 100%;
}

/*Navigationsleiste und Hamburger menu*/
nav{
    height: 100%;
    width: auto;
    display: flex;
    justify-content:space-around;
    flex-direction: column;
    color: var(--text-color-white);
}
.navigation{
    display:flex;
    flex-direction:row ;
    height: 100%;
    width: auto;
    justify-content: center;
    align-items: center;
    text-align:center;
}
.navul{
    display: flex;
    visibility: hidden;
    overflow: hidden;
    position: absolute;
    text-align: center;
    flex-direction:column;
    align-items: center;
    height: 0;
    width: 0;
    right: 0;
    top: 100px;
    z-index: 10;
    border-bottom-left-radius: 360%;
    background-color:var(--text-color-white);
    transition: all 500ms ease;
}
.navul.open{
    visibility: visible;
    display: flex;
    height: 300px;
    width: 100%;
    border-bottom-left-radius: 0px;
}
.navbuttons{
    height: fit-content;
    padding: 10px;
    margin: 5px;
    color: var(--text-color-grey);
    border-bottom: solid 1px var(--primary-color);
    text-decoration: none;
}
.navbuttons:hover{
    color:var(--first-secondary-color);
    border-bottom: solid 1px var(--first-secondary-color);
}
.toggleButton{
    width: 30px;
    height: 23px;
    display: none;
    position: absolute;
    z-index: 11;
    top: 40px;
    right: 35px;
    flex-direction:column;
    justify-content: space-between;
}
#active{
    color:var(--first-secondary-color);
    border-bottom: solid 1px var(--first-secondary-color);
}
.bar{
    height: 4px;
    width: 100%;
    background-color:var(--text-color-grey) ;
    border-radius: 100px;
}
@media(max-width:850px){
    .toggleButton{
        display: flex;
    }
    .navigation{
        display: none;
    }
    .navbuttons{
        width: 35%;
        height: auto;
        margin-top: 10px;
    }
}


/*Erscheinen beim Scrollen*/
.reveal{
    position: relative;
    transform: translateY(150px);
    opacity: 0;
    transition: all 500ms ease;
}
.reveal.appear{
    transform: translateY(0px);
    opacity: 1;
}

/*Section*/
section{
    padding-top: 0;
}
.section{
    padding-top: 100px;
}

/*Startseite Topdesign*/
.homepage-top-background{
    width: 100%;
    height: 90vh;
    overflow: hidden;
    background-image:url(Mamastein.jpg);
    background-size: cover;
    background-position: center center;
}
.homepage-img-title{
    position: absolute;
    right: 10vw;
    top: 30vh;
    min-width: 250px;
    max-width: 300px;
    padding: 10px;
    background-color: var(--transparent-white);
    border-radius: 10px;
}
.homepage-title{
    font-family: 'Merienda One';
    font-size: 3rem;
}
.heart-title{
    display: flex;
    align-items: center;
}
.left{
    text-align: left;
    color: var(--primary-color);
    
}
.middle{
    text-align: center;
    color: var(--first-secondary-color);
}
.right{
    text-align: right;
    color: var(--primary-color);
}
.herz{
    font-size: 2.5rem;
    margin: 0 7px 0 12px;
    height: auto;
    transform: scale(1);
    position: relative;
    animation: beat 3s infinite  ;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    -webkit-animation: beat 3s infinite  ;
}
@keyframes beat{
	50%{
        transform:scale(1.3) ;
        -webkit-transform:scale(1.3) ;
        -moz-transform:scale(1.3) ;
        -ms-transform:scale(1.3) ;
        -o-transform:scale(1.3) ;
}
}
@media screen and (max-width:320px) {
    .homepage-img-title{
        right: 10vw;
        min-width: 150px;
    }
    .homepage-title{
        font-size: 2rem;
    }
    .herz{
        font-size: 1.5rem;
    }
}



/*Underpage Topbackground*/
.underpage-top-background{
    width: 100%;
    height: 50vh;
    overflow: hidden;
    background-image:url(Mama\ mit\ Kind.jpg);
    background-size: cover;
    background-position: center center;
    position: relative;
    display: flex;
    justify-content: center;
}
.underpage-title{
    position: absolute;
    bottom: 10px;
    width: 100%;
    max-width: 1200px;
}
.underpage-top-title{
    font-size: 4vw;
    font-family: "Merienda One";
    width: fit-content;
    padding: 10px;
    border-bottom: solid 3px var(--primary-color);
    color: var(--primary-color);
    background: var(--transparent-white);
    margin-left: 100px;
}
#underpage-img-kontakt{
    background-image: url(DSC_0802.JPG);
    background-position: center center;
}
@media screen and (min-width:1150px) {
    .underpage-top-title{
        font-size: 3rem;
    }
}
@media screen and (max-width:828px) {
    .underpage-top-title{
        margin-left: 20px;
    }
    .underpage-top-title{
        font-size: 1.5rem;
    }
}
@media screen and (max-width:500px) {
    .underpage-top-background{
        height: 25vh;
    }
}


/*Homepage First*/
.kundalini-yoga-area{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.kundalini-yoga-innerarea{
    width: 90%;
    max-width: 1400px;
    padding: 0 5%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.kundalini-yoga-desc{
    width: 90%;
}
.kundalini-yoga-title{
    font-size: 2.5rem;
    font-family: "Merienda One";
    color: var(--primary-color);
    pointer-events: all;
    position: relative;
    width: fit-content;
}
.kundalini-yoga-text{
    margin: 20px 0px;

}
.kundalini-yoga-desc img{
    width: 100%;
    box-shadow: 0.5rem 0.5rem 3rem 1px rgba(0,0,0,0.4); 
}
.kundalini-yoga-aspect-desc{
    width: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 50px;
}
.kundalini-yoga-aspect{
    width: 85%;
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin: 20px 0;
    pointer-events:fill;
}
.kundalini-yoga-symbol{
    width: 100px;
    height: 100px;
    border: solid 2px var(--primary-color);
    border-radius: 1000px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.kundalini-yoga-symbol-img{
    width: 70px;
    height: 70px;
}
.kundalini-yoga-aspect-textarea{
    width: 70%;
    z-index: 2;
    margin-left: 10px;
}
.kundalini-yoga-aspect-title{
    font-family: "Merienda One";
    color: var(--primary-color);;
    text-transform: uppercase;
    position: relative;
    width: max-content;
}
.kundalini-yoga-aspect-title::after,
.kundalini-yoga-title::after{
    content: "";
    position: absolute;
    bottom: 0;
    left: -0%;
    height: 4px;
    width: 100%;
    background-color:var(--primary-color);;
    transform-origin: left;
    transition: transform 700ms ease;
    border-bottom-right-radius:  5px;
    border-top-right-radius: 5px;
    transform:scaleX(0);
}
.kundalini-yoga-desc:hover .kundalini-yoga-title::after{
    transform: scaleX(1);
}
.kundalini-yoga-aspect:hover .kundalini-yoga-aspect-title::after{
    transform: scaleX(1);
}
@media screen and (min-width:1000px) {
    .kundalini-yoga-innerarea{
        flex-direction: row;
        justify-content: space-evenly;
    }
    .kundalini-yoga-desc{
        width: 45%;
    }
    .kundalini-yoga-aspect-desc{
        width: 45%;
    }
}
@media  screen and (max-width:555px) {
    .kundalini-yoga-aspect-desc{
        width: 90%;
    }
    .kundalini-yoga-aspect{
        width: 100%;
    }
    .kundalini-yoga-symbol{
        width: 75px;
        height: 75px;
    }
    .kundalini-yoga-symbol-img{
        width: 50px;
        height: 50px;
    }
    .kundalini-yoga-aspect-title{
        font-size: 1rem;
    }
    .kundalini-yoga-aspect-text{
        font-size: 0.7rem;
    }
}



.page-spacer-img-area{
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: end;
    margin-top: 5vh;
    position: relative;
}
.page-spacer-img-area::after{
    content: '';
    position: absolute;
    width: 100%;
    height: 70vh;
    /*background: #00000085;*/
}
.page-spacer-title{
    font-size: 3rem;
    font-family: "Merienda One";
    color: var(--primary-color);
    position: absolute;
    padding: 30px;
    width: 40%;
    text-align: center;
    z-index: 2;
    margin-right: 5vw;
    overflow: hidden;
}
.page-spacer-title::after{
    content: '';
    position: absolute;
    width: 200px;
    height: 4px;
    background: var(--primary-color);
    transform: rotate(-55deg) translate(-20px, -30px);
}
.page-spacer-title::before{
    content: '';
    position: absolute;
    width: 200px;
    height: 4px;
    background: var(--primary-color);
    transform: rotate(-55deg) translate(-150px, -90px);
}
.page-spacer-ball{
    width: 100px;
    aspect-ratio: 1 / 1;
    background-color: var(--website-background-color);
    border-radius: 1000px;
    position: absolute;
    bottom: -60px;
    right: calc(50% - 50px);
}


/*All Sliders*/
.page-spacer-slider{
    height: 100%;
    overflow: hidden;
    /*box-shadow: 0.5rem 0.5rem 3rem 1px rgba(0,0,0,0.4);*/
}
.page-spacer-slides{
    width: 500%;
    height: 100%;
    display: flex;
}
.page-spacer-slides input{
    display: none;
}
.page-spacer-slides .slide img{
    height: 100%;
    object-fit:cover;
    object-position: center;
    display:block;
    /*filter: grayscale(1);*/
}

/* Image slider Grundaufbau*/
.slider{
    min-width: 25rem;
    max-width: 25rem;
    aspect-ratio: 16 / 12;
    transform: translateX(-6rem);
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    overflow: hidden;
    box-shadow: 0.5rem 0.5rem 3rem 1px rgba(0,0,0,0.4);
}
.slides{
    width: 500%;
    height: 100%;
    display: flex;
}
.slides input{
    display: none;
}
.slide{
    width: 20%;
    transition: 2s;
}
.slide img{
    width: 100%;
    aspect-ratio: 16 / 12;
    object-fit:cover;
    object-position: center;
    display:block;
}
/*Manueller slider*/
.navigation-manual{
    position: absolute;
    width: 100%;
    margin-top: -30px;
    display: flex;
    justify-content: center;
}
.manual-btn{
    border: 2px solid var(--first-secondary-color);
    padding: 5px;
    border-radius: 10px;
    cursor:pointer;
    transition:1s;
}
.manual-btn:not(:last-child){
    margin-right: 20px;
}
.manual-btn:hover{
    background: var(--first-secondary-color);
}
#radio1:checked ~ .first{
    margin-left: 0;
}
#radio2:checked ~ .first{
    margin-left: -20%;
}
#radio3:checked ~ .first{
    margin-left: -40%;
}
#radio4:checked ~ .first{
    margin-left: -60%;
}
/*Automatischer Slider*/
.navigation-auto{
    position: absolute;
    display: flex;
    width: 100%;
    bottom: 16px;
    justify-content: center;
}
.navigation-auto div{
    border: 2px solid var(--first-secondary-color);
    padding: 5px;
    border-radius: 10px;
    transition: 1s;
}
.navigation-auto div:not(:last-child){
    margin-right: 20px;
}
#radio1:checked ~ .navigation-auto .auto-btn1{
    background: var(--first-secondary-color);
}
#radio2:checked ~ .navigation-auto .auto-btn2{
    background: var(--first-secondary-color);
}
#radio3:checked ~ .navigation-auto .auto-btn3{
    background: var(--first-secondary-color);
}
#radio4:checked ~ .navigation-auto .auto-btn4{
    background: var(--first-secondary-color);
}


/*Abpout me Section*/
.about-me-area{
    width: 95%;
    max-width: 1200px;
    padding: 2.5%;
    padding-bottom: 90px;
    display: flex;
    height: fit-content;
    margin:auto;
    justify-content: space-around;
    position: relative;
    overflow: hidden;
}  
.about-me-text-area{
    width: 30%;
    text-align: center;
    height: fit-content
}
.about-me-spacer-img{
    height:min-content;
    max-width: 30%;
    margin: 0 2.5%;
    max-height: 250px;
}
.about-me-spacer-img img{
    width: 100%;
    height: 100%;
    max-height: 250px;
}
.about-me-text-area-title{
    font-size: 1.5rem;
    font-family: 'Merienda One';
    color: var(--first-secondary-color);
    margin-bottom: 10px;
}
.about-me-text-area-text{
    line-height: 1.6rem;
}

#red-ball{
    background-color: var(--second-secondary-color);
}

@media screen and (max-width:1005px) {
    .about-me-area{
        flex-direction: column;
        align-items: center;
        padding: 10% 2.5%;
        padding-bottom: 90px;
    }
    .about-me-text-area{
        width: 70%;
    }
    .about-me-spacer-img{
        margin: 5% 0;
        max-width: 70%;
    }
}
.about-me-extra-area{
    width: 100%;
    background-color: var(--second-secondary-color);
    display: flex;
    justify-content: center;
}
.inner-about-me-extra-area{
    max-width: 1200px;
    display: flex;
    align-items: center;
    justify-content: space-around;
}
.about-me-extra-area-text{
    width: 50%;
    padding: 5%;
    text-align: right;
    color: var(--text-color-grey);
    display: flex;
    flex-direction: column;
    align-items: end;
}
.about-me-extra-title{
    font-size: 2rem;
    font-family: 'Merienda One';
    margin-bottom: 15px;
    width: fit-content;
    border-bottom: solid 3px var(--primary-color);
}
.about-me-extra-text{
    line-height: 1.4rem;
}
.about-me-extra-img{
    height: 100%;
    width: 40%;
    overflow: hidden;
    position: relative;
    background-image: url(Mama\ mit\ Gitarre.JPG);
    background-size: cover;
    background-position: center center;
    clip-path: polygon(85% 0%, 100% 100%,15% 100%, 0% 0%);
}
.about-me-extra-button{
    cursor: pointer;
    display: inline-block;
    width: auto;
    text-decoration: none;
    color: var(--text-color-grey);
    background-color: var(--text-color-white);
    padding:15px;
    border-radius: 10px;
    margin: 12px;
}
.about-me-extra-button:hover,
.about-me-extra-button:focus {
    background-color: var(--primary-color);
    color: var(--text-color-white);

}
@media screen and (max-width:740px) {
    .inner-about-me-extra-area{
        flex-direction: column-reverse;
    }
    .about-me-extra-img{
        width: 50%;
        aspect-ratio: 1 / 1;
        margin-top: 20px;
    }
    .about-me-extra-area-text{
        width: 70%;
        margin-bottom: 15px;
        text-align: center;
        align-items: center;
    }
}

.course-desc-area{
    padding: 5% 15%;
    width: 70%;
    text-align: center;
    background-color: var(--second-secondary-color);
}
.course-desc-title{
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: solid 1px var(--primary-color);
    font-family: "Merienda One";
    color: var(--primary-color);
}
.course-desc-text{
    color: var(--text-color-grey);
}
.course-desc-link{
    color:var(--primary-color);
    font-weight: bold;
}

/*Schulungen underpage*/

.table-area{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.table-area table{
    width: 90%;
    max-width: 1000px;
    margin: 20px 2.5%;
    padding: 10px 2.5%;
    background: var(--text-color-white);
    border-collapse: collapse;
    border-radius: 15px;
    box-shadow: 0.5rem 0.5rem 3rem 1px rgba(0,0,0,0.4);
    overflow:hidden ;

}
.table-head td,
.table-head th{
    background: var(--primary-color);
    color: var(--website-background-color);
    font-family: "Merienda One";
}
.table-area td,
.table-area th{
    padding: 20px 35px;
    text-align: left;
}
.table-area tr:nth-child(even){
    background-color: var(--website-background-color);
}
@media screen and (max-width:440px) {
    .table-area table{
        margin: 10px;
        padding: 10px;
    }
    .table-area td,
    .table-area th{
        padding: 15px 10px 15px 20px;
        text-align: left;
        font-size: 0.8rem;
    }
    
}



/*Sidebar für Yoga Spezial*/
.sidebar{
    position: fixed;
    top:55%;
    min-height: 65vh;
    transform: translateY(-50%);
    width: 35px;
    background:var(--text-color-white) ;
    box-shadow: 0.5rem 0.5rem 1rem 1px rgba(0,0,0,0.2); 
    padding: 6px 10px;
    z-index: 9;
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
    transition: all 0.5s ease;
    /*overflow: hidden;*/
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}
.sidebar.active{
    width: 210px;
}
.sidebar .logo_content .logo{
    color: var(--first-secondary-color);
    display: flex;
    height: 50px;
    width: 100%;
    align-items: center;
    background-color: var(--first-secondary-color);
    border-radius: 10px;
    opacity: 0;
    pointer-events: none;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}
.sidebar.active .logo_content .logo{
    opacity: 1;
    pointer-events: none;
    color: var(--text-color-white);
}
.logo_content .logo i{
    font-size: 28px;
    margin-right: 5px;
}
.logo_content .logo .logo_name{
    font-size: 20px;
    font-weight: 400;
    margin-left: 9px;
}
.sidebar #sidebarbtn{
    position: absolute;
    color: var(--first-secondary-color);
    left: 50%;
    top: 6px;
    font-size: 20px;
    height: 50px;
    width: 50px;
    text-align: center;
    line-height: 50px;
    transform: translateX(-50%);
    background: transparent;
    border: 0;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}
.sidebar.active #sidebarbtn{
    left: 75%;
    transform:rotate(90deg);
    color: var(--text-color-white);
}
.sidebar ul{
    margin-top: 60px;
    margin-left: -7px;
    width: 48px;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}
.sidebar.active ul{
    margin-left: 0;
    width: 100%;
}
.sidebar ul li{
    position: relative;
    height: 50px;
    width: 100%;
    list-style: none;
    line-height: 50px;
}
.sidebar ul li .tooltip{
    position: absolute;
    height:35px;
    left:160px;
    top:50%;
    transform: translate(-65%,-50%);
    border-radius: 6px;
    line-height: 35px;
    text-align: center;
    width: 170px;
    background: var(--text-color-white);
    box-shadow: 0 5px 10px rgba(0,0,0,0.2);
    transition: 0;
    opacity: 0;
    pointer-events: none;
    -webkit-transform: translate(-65%,-50%);
    -moz-transform: translate(-65%,-50%);
    -ms-transform: translate(-65%,-50%);
    -o-transform: translate(-65%,-50%);
}
.sidebar.active ul li .tooltip{
    display: none;
}
.sidebar ul li:hover .tooltip{
    transition: all 0.5s ease;
    opacity: 1;
    top:50%;
}
.sidebar ul li a{
    color: var(--text-color-grey);
    display: flex;
    align-items: center;
    transition: all 0.1s ease;
    border-radius: 12px;
    white-space: nowrap;
    -webkit-transition: all 0.1s ease;
    -moz-transition: all 0.1s ease;
    -ms-transition: all 0.1s ease;
    -o-transition: all 0.1s ease;
}
.sidebar .event_name{
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
}
.sidebar.active .event_name{
    opacity: 1;
    pointer-events:auto;
}
.sidebar ul li a:hover{
    color:var(--text-color-white);
    background: var(--primary-color);
}
.sidebar ul li a img{
    height: 40px;
    min-width: 40px;
    margin-right: 9px;
    line-height: 50px;
    margin-left: 4px;
    text-align: center;
}
.sidebar_media{
    position: absolute;
    width: 100%;
    height: 70px;
    left:0;
    bottom: 0;
    display: flex;
    justify-content: center;
    background-color: var(--first-secondary-color);
    border-bottom-right-radius: 15px;
}
.sidebar_media::before{
    content: '';
    position: absolute;
    width: 100%;
    bottom: 70px;
    height: 30px;
    background: linear-gradient(var(--text-color-white), var(--first-secondary-color));
}
.sidebar_mediablock{
    opacity: 0;
    height: auto;
    width: auto;
    align-items: center;
    justify-content: space-between;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    display: none;
}
.sidebar.active .sidebar_mediablock{
    opacity: 1;
    display: flex;
}
.sideicons{
    background-color: var(--second-secondary-color);
    border-radius: 6px;
    margin-right: 6px;
}
.sidebar_mediablock a .fa{
    margin: 4px;
    font-size: 1.6rem;
}
@media (hover: none) {
    .sidebar:hover .tooltip{
        display: none;
    }
}
/*Seitenverhältnisse der Sidebar*/
@media screen and (max-height:820px){
    .sidebar ul{
        margin-top: 20px;
    }
}
@media screen and (max-width:300px){
    .sidebar{
        width:40px ;
}
}
@media screen and (max-height:760px){
    .sidebar ul{
        margin-top: 5px;
    }
    .sidebar{
        width: 30px;
        top:61%
    }
    .sidebar ul li a img{
        height: 30px;
        min-width: 30px;
        margin-right: 9px;
        line-height: 10px;
        margin-left: 4px;
    }
    .sidebar ul li{
        position: relative;
        height: 40px;
        width: 100%;
        line-height: 50px;
    }
    .sidebar_media{
        width: 100%;
        height: 40px;
    }
    .sidebar_media::before{
        bottom: 40px;
    }
    .sidebar ul li a{
        height: 100%;
        width: 82%;
    }
    .sidebar.active ul li a{
        width: auto;
    }
}
/*Social Media blöcke am linken Rand*/
.socialMedia{
    position: fixed;
    display:flex;
    top:50%;
    transform: translateY(-50%);
    align-items: center;
    box-sizing: border-box;
    z-index: 100;
}
.socialMedia-kontakt{
    width: auto;
    position:relative;
    display:flex;
    flex-direction: row;
    align-items: center;
    box-sizing: border-box;
}
.sci{
    position:relative;
    display: flex;
    flex-direction: column;
}
.sci-kontakt{
    position:relative;
    display: flex;
    flex-direction: row;
}
.media{
    list-style: none;
}
.mediablock{
    position: relative;
    display: inline-block;
    width: 60px;
    height: 60px;
    background-color: var(--text-color-white);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-color-grey);
    border-radius: 10px;
    text-decoration:none;
    margin: 5px 15px;
    font-size: 3em;
    transform-style: preserve-3d;
    perspective: 500px;
    box-shadow: 0 25px 35px rgba(0,0,0,0.3);
    transition: all 0.25s ease;
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    -ms-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
}
.mediablock:hover.yt{
    background: rgb(250, 34, 34);
    color:var(--text-color-white)
}
.mediablock:hover.insta{
    background:linear-gradient(130deg, rgba(131,58,180,1) 0%, rgba(253,42,29,1) 49%, rgba(252,235,8,1) 84%, rgba(252,252,0,1) 100%);
    color:var(--text-color-white)
}
.mediablock:hover.whatsapp{
    background: rgb(32, 214, 0);
    color:var(--text-color-white)
}
.mediablock:hover.email{
    background: rgb(0, 183, 255);
    color:var(--text-color-white)
}
.fa{
    transition: 0.25s;
    pointer-events: none;
}
@media screen and (max-width: 828px){
    .socialMedia{
        display: none;
    }
}
@media screen and (max-width: 620px) {
    .sci-kontakt{
        position:relative;
        display: flex;
        flex-wrap: wrap;
    }
}
/*Sonstiges Seite verlinkt von Übersicht*/
.sons-container{
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 40px;
    margin-bottom: 400px;
}
.firstsons-block{
    margin: 10px;
    display: flex;
    justify-content: center;
    align-items: center ;
    flex-wrap: wrap;
}
.secondsons-block{
    margin: 10px;
    display: flex;
    justify-content: center;
    align-items: center ;
    flex-wrap: wrap;
}
.thirdsons-block{
    margin: 10px;
    display: flex;
    justify-content: center;
    align-items: center ;
    flex-wrap: wrap;
}
.sons-container .sons-box{
    position: relative;
    width: 320px;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 40px 30px;
    transition: 0.5s;
}
.sons-container .sons-box::before{
    content: '';
    position: absolute;
    top: 0;
    left: 50px;
    width: 50%;
    height:100%;
    background-color: var(--text-color-white);
    border-radius: 8px;
    transform: skewX(15deg);
    transition: 0.5s;
}
.sons-container .sons-box::after{
    content: '';
    position: absolute;
    top: 0;
    left: 50px;
    width: 50%;
    height:100%;
    background-color: var(--text-color-white);
    border-radius: 8px;
    transform: skewX(15deg);
    transition: 0.5s;
    filter: blur(30px);
    -webkit-filter: blur(30px);
    transition: 0.5s;
}
.sons-container .sons-box:hover:before,
.sons-container .sons-box:hover:after{
    transform:skewX(0deg);
    left: 20px;
    width: calc(100% - 90px);
}
#child1:before,
#child1:after{
    background: linear-gradient(315deg,rgb(255, 188, 0),rgb(255, 0, 13));
}
#child2:before,
#child2:after{
    background: linear-gradient(315deg,rgb(132, 44, 22),rgb(255, 21, 0));
}
#child3:before,
#child3:after{
    background: linear-gradient(315deg,rgb(227, 146, 74),rgb(69, 69, 69));
}
#child4:before,
#child4:after{
    background: linear-gradient(315deg,rgb(80, 233, 14),rgb(157, 14, 1),rgb(157, 14, 1));
}
#child5:before,
#child5:after{
    background: linear-gradient(315deg,rgb(185, 116, 187),rgb(230, 196, 31));
}
#child6:before,
#child6:after{
    background: linear-gradient(315deg,rgb(255, 188, 0),rgb(255, 0, 13));
}
#child7:before,
#child7:after{
    background: linear-gradient(315deg,rgb(132, 44, 22),rgb(255, 21, 0));
}
#child8:before,
#child8:after{
    background: linear-gradient(315deg,rgb(80, 233, 14),rgb(157, 14, 1),rgb(157, 14, 1));
}
#child9:before,
#child9:after{
    background: linear-gradient(315deg,rgb(185, 116, 187),rgb(230, 196, 31));
}
.sons-container .sons-box span{
    display: block;
    position: absolute;
    top:0;
    left:0;
    right: 0;
    bottom: 0;
    z-index: 5;
    pointer-events: none;
}
.sons-container .sons-box span::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    background: rgb(255,255,255,0.1);
    backdrop-filter: blur(10px);
    opacity: 0;
    transition: 0.5s;
    animation: animate 2s linear infinite;
    -webkit-animation: animate 2s ease-in-out infinite;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.sons-container .sons-box:hover span::before{
    top: -50px;
    left: 50px;
    width: 100px;
    height: 100px;
    opacity: 1;
}
.sons-container .sons-box span::after{
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    background: rgb(255,255,255,0.1);
    backdrop-filter: blur(10px);
    opacity: 0;
    transition: 0.5s;
    animation: animate 2s linear infinite;
    -webkit-animation: animate 2s ease-in-out infinite;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    animation-delay: -1s;
}
.sons-container .sons-box:hover span::after{
    bottom: -50px;
    right: 50px;
    width: 100px;
    height: 100px;
    opacity: 1;
}
@keyframes animate{
    0%,100%{
        transform: translateY(10px);
    }
    50%{
        transform: translateY(-10px);
}
}
.sons-container .sons-box .sons-content{
    position: relative;
    left: 0;
    padding: 20px 40px;
    background: rgba(255,255,255,.05);
    box-shadow: 0 5px 15px rgba(0,0,0,.1);
    border-radius: 8px;
    backdrop-filter: blur(10px);
    z-index: 1;
    transition: 0.5s;
    color:var(--text-color-white);
}
.sons-container .sons-box:hover .sons-content{
    left:-25px;
    padding: 60px 40px ;
}
.sons-container .sons-box .sons-content h2{
    font-size: 2rem;
    color: var(--text-color-white);
    margin-bottom: 10px;
}
.sons-container .sons-box .sons-content p{
    font-size: 1rem;
    margin-bottom: 10px;
}
.sons-container .sons-box .sons-content a{
    display: inline-block;
    color: var(--text-color-grey);
    background-color: var(--text-color-white);
    padding: 10px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    margin-top: 5px;
}
@media screen and (max-width:450px) {
    .sons-container{
        padding: 40px 10px 40px 40px;
        margin-bottom: 0px;
    }
    .sons-container .sons-box{
        margin:60px 10px;
    }
    .sons-container .sons-box .sons-content{
        padding: 10px 30px;
    }
    .sons-container .sons-box .sons-content h2{
        font-size: 1.6rem;
        margin-bottom: 6px;
    }
    .sons-container .sons-box .sons-content p{
        font-size: .8rem;
        margin-bottom: 10px;
    }
    .sons-container .sons-box .sons-content a{
        font-size:.9rem
    }
}
@media (hover:none) {
    .sons-container .sons-box span::after{
        bottom: -50px;
        right: 50px;
        width: 100px;
        height: 100px;
        opacity: 1;
    }
    .sons-container .sons-box .sons-content{
        left:-25px;
        padding: 60px 40px ;
    }
    .sons-container .sons-box span::before{
        top: -50px;
        left: 50px;
        width: 100px;
        height: 100px;
        opacity: 1;
    }
    .sons-container .sons-box::before,
    .sons-container .sons-box::after{
    transform:skewX(0deg);
    left: 20px;
    width: calc(100% - 90px);
}
}
/*Blogdesgin von den Seiten Übersicht Spazial Event und Kontakt*/
.blog{
    width: 70%;
    max-width: 98rem;
    padding: 1rem;
    margin: 4rem 3rem;
    background-color: var(--second-secondary-color);
    box-shadow:  0 1.4rem 8rem rgba(0,0,0,.4);
    display:flex;
    float: right;
    z-index: 4;
    justify-content: center;
    position: relative;
    align-items: center;
    border-radius: 1rem;
    transition: transform 500ms ease;
    -webkit-transition: transform 500ms ease;
    -moz-transition: transform 500ms ease;
    -ms-transition: transform 500ms ease;
    -o-transition: transform 500ms ease;
}
.blog:hover{
    transform: scale(1.05);
}
/*Blogpoint um schönere ergebnisse fürs scrollen zubekommen*/
.blog-point{
    height: 20px;
    width: 20px;
    position: absolute;
    top: -180px;
    background-color:transparent;
}
/*
@media screen and (max-width:1900px){
    .blog-point{
        position: absolute;
}
}
@media screen and (max-width:1400px){
    .blog-point{
        position: absolute;
}
}
@media screen and (max-width:1200px){
    .blog-point{
        position: absolute;

}
}*/
/*Blog img und content*/
.blog-img{
    min-width: 25rem;
    max-width: 25rem;
    aspect-ratio: 16 / 12;
    transform: translateX(-6rem);
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    box-shadow: 0.5rem 0.5rem 3rem 1px rgba(0,0,0,0.4); 
}
.blog-img img{
    width: 100%;
    aspect-ratio: 16 / 12;
    object-fit: cover;
    display: block;
    border-radius: 1rem;
    -webkit-border-radius: 1rem;
    -moz-border-radius: 1rem;
    -ms-border-radius: 1rem;
    -o-border-radius: 1rem;
}
/*
.blog-img::before{
    content: '';
    width: 100%;
    height: 100%;
    aspect-ratio: 16 / 12;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(to right,rgba(27, 129, 85, 0.2),rgba(128, 84, 22, 0.445));
    border-radius: 1rem;
}
*/
.blog-info{
    max-width: 100%;
}
.blog-date span{
    display:block;
    color:var(--text-color-grey);
    font-size: 1.4rem;
    font-weight: 600;
    margin:0.5rem 0;
}
.Neuigkeiten{
    /*
    background: linear-gradient(to right,rgba(227, 146, 74, 0.8),rgb(132, 44, 22,1),rgb(237, 186, 138),rgb(132, 44, 22,1),rgb(132, 44, 22,1));
    */
    background-color: var(--first-secondary-color);
    -webkit-background-clip: text;
    background-clip: text;
    background-repeat: repeat 0 0;
    font-family:'Merienda One';
    font-size: 2.5rem;
    color: transparent;
}
@keyframes infinteMove{
    0%{
        background-position:0 0;
    }
    100%{
        background-position: 40rem;
    }
}
.blog-title{
    font-size: 2.3rem;
    margin: 1.5rem 0 2rem;
    text-transform: uppercase;
    font-family: 'Merienda One';
    color:var(--primary-color);
    position: relative;
    width: max-content;
}
.blog-title::after{
    content: "";
    position: absolute;
    bottom: 0;
    left: -0%;
    height: 4px;
    width: 100%;
    background-color:var(--primary-color);
    transform-origin: left;
    transition: transform 700ms ease;
    border-bottom-right-radius:  5px;
    border-top-right-radius: 5px;
    transform:scaleX(0);
    -webkit-transform:scaleX(0);
    -moz-transform:scaleX(0);
    -ms-transform:scaleX(0);
    -o-transform:scaleX(0);
}
.blog:hover .blog-title::after{
    transform: scaleX(1);
}
.blog-text{
    margin-bottom: 2rem;
    font-size: 1.2rem;
    color: var(--text-color-grey);
}
.droptext{
    display: none;
    margin-left: 0.5rem;;
}
.droptext.down{
    display:flex;
}
#dropbutton{
    width: max-content;
    font-family: 'Merienda One';
    text-decoration: 3px underline;
    color:var(--first-secondary-color);
}
#dropdownbutton{
    transform: rotate(180deg);
    transition: transform 0.4s ease;
}
#dropdownbutton.down{
    transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
}
.blog-button{
    cursor: pointer;
    display: inline-block;
    width: auto;
    text-decoration: none;
    color: var(--text-color-white);
    background-color: var(--primary-color);
    padding:1em 1em;
    border-radius: 1rem;
    margin-bottom: 1.2rem;
}
.blog-button:hover,
.blog-button:focus {
    background-color: var(--first-secondary-color);
    color: var(--text-color-white);
}
/*MIni icons Social Media für Kontakt seite*/
.blog-icon{
    display: flex;
    justify-content: center;
    background-color: var(--text-color-white);
    width: 200px;
    padding: 4px;
    border-radius: 5px;
    transition: transform 500ms ease;
    box-shadow: 0 15px 25px rgba(0,0,0,0.3);
    -webkit-transition: transform 500ms ease ;
    -moz-transition: transform 500ms ease ;
    -ms-transition: transform 500ms ease ;
    -o-transition: transform 500ms ease ;
}
.miniicons{
    width: 100%;
    height: 100%;
    text-align: center;
    text-decoration: none;
    color: var(--text-color-grey);
}
#iconswa{
    color: rgb(32, 214, 0);
}
#iconsemail{
    color: rgb(0, 183, 255);
}
#iconstel{
    color: rgb(0, 17, 255);
}
#iconsinsta{
    background: linear-gradient(130deg, rgba(131,58,180,1) 0%, rgba(253,42,29,1) 49%, rgba(252,235,8,1) 84%, rgba(252,252,0,1) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color:transparent;
}
#iconsyt{
    color:rgba(253,42,29,1);
}
.blog-icon:hover{
    transform: scale(1.05);
}

 /*Anpassungen der einzelnene Blog elemente an die Seitenverhältnisse*/
@media  screen and (max-width: 314px) {
    .blog-icon{
        width:160px;
    }
}
@media screen and (max-width: 1260px) {
    .blog{
        max-width: 80rem;
        margin: 3rem 2rem;
    }
    .blog-img{
        min-width: 25rem;
        max-width: 25rem;
    }
    .slider{
        min-width: 25rem;
        max-width: 25rem;
    }
}
@media screen and (max-width: 1200px) {
    .blog{
        padding: 2rem;
        flex-direction: column;
        margin: 6rem 2.5rem;
    }
    .blog-img{
        min-width: 85%;
        max-width: 85%;
        transform: translate(0,-5rem);
        -webkit-transform: translate(0,-5rem);
        -moz-transform: translate(0,-5rem);
        -ms-transform: translate(0,-5rem);
        -o-transform: translate(0,-5rem);
}
    .slider{
        min-width: 85%;
        max-width: 85%;
        transform: translate(0,-5rem);
    }
}
@media screen and (max-width: 585px) {
    .blog{
        width: 90%;
        padding: 1.5rem;
        flex-direction: column;
        margin:4rem 1%;
    }
    .event-sidebar-banner{
        width: 70%;
    }
    .blog-img{
        min-width: 90%;
        max-width: 90%;
        transform: translate(0,-3rem);
        -webkit-transform: translate(0,-3rem);
        -moz-transform: translate(0,-3rem);
        -ms-transform: translate(0,-3rem);
        -o-transform: translate(0,-3rem);
}
    .slider{
        min-width: 90%;
        max-width: 90%;
        transform: translate(0,-3rem);
        -webkit-transform: translate(0,-3rem);
        -moz-transform: translate(0,-3rem);
        -ms-transform: translate(0,-3rem);
        -o-transform: translate(0,-3rem);
}
    .Neuigkeiten{
        font-size: 2rem;
    }
    .blog-title{
        font-size: 2rem;
    }
    .blog-text{
        font-size: 1.2rem;
    }
    .droptext{
         margin-left: .5rem;
    }
}
@media screen and (max-width: 500px){
    .blog{
        margin-right: 6px;
    }
    .blog-title{
        font-size: 1.4rem;
    }
    .blog-date span{
        font-size: 1.4rem;
    }
    .imgcredits{
        font-size: 0.6rem;
    }
    .blog-img{
        min-width: 90%;
        max-width: 90%;
        transform: translate(0,-3.5rem);
}
    .slider{
        min-width: 90%;
        max-width: 90%;
        transform: translate(0,-3.5rem);
}
}
@media screen and (max-width: 375px) {
    .blog{
        padding: .7rem;
        flex-direction: column;
        margin: 6rem 9px;
    }
    .blog-img{
        min-width: 90%;
        max-width: 90%;
        transform: translate(0,-2.5rem);
        -webkit-transform: translate(0,-2.5rem);
        -moz-transform: translate(0,-2.5rem);
        -ms-transform: translate(0,-2.5rem);
        -o-transform: translate(0,-2.5rem);
}
    .slider{
        min-width: 90%;
        max-width: 90%;
        transform: translate(0,-2.5rem);
        -webkit-transform: translate(0,-2.5rem);
        -moz-transform: translate(0,-2.5rem);
        -ms-transform: translate(0,-2.5rem);
        -o-transform: translate(0,-2.5rem);
}
    .Neuigkeiten{
        font-size: 1.5rem;
    }
    .blog-text{
        font-size: 1rem;
    }
    .blog-date span{
        font-size: 1.1rem;
    }
    .blog-button{
        font-size: 1rem;
        padding:8px 8px;
        border-radius: 0.6rem;
        margin-bottom: 1rem;
}
}
@media screen and (max-width:350px) {
    .blog{
        padding: .5rem;
        flex-direction: column;
        margin: 3rem 7px;
    }
    .blog-title{
        font-size: 1.2rem;
    }
    .blog-img{
        min-width: 90%;
        max-width: 90%;
        transform: translate(0,-2rem);
        -webkit-transform: translate(0,-2rem);
        -moz-transform: translate(0,-2rem);
        -ms-transform: translate(0,-2rem);
        -o-transform: translate(0,-2rem);
    }
    .slider{
        min-width: 90%;
        max-width: 90%;
        transform: translate(0,-2rem);
    }
    .Neuigkeiten{
        font-size: 1.3rem;
    }
    .blog-text{
        font-size: .8rem;
    }
    .blog-date span{
        font-size: 1.0rem;
    }
}
@media screen and (max-width:350px) {
    .blog{
        padding: .5rem;
        flex-direction: column;
        margin: 3rem 7px;
    }
    .blog-title{
        font-size: 1.0rem;
    }
    .blog-img{
        min-width: 90%;
        max-width: 90%;
        transform: translate(0,-2rem);
        -webkit-transform: translate(0,-2rem);
        -moz-transform: translate(0,-2rem);
        -ms-transform: translate(0,-2rem);
        -o-transform: translate(0,-2rem);
    }
    .slider{
        min-width: 90%;
        max-width: 90%;
        transform: translate(0,-2rem);
    }
    .Neuigkeiten{
        font-size: 1.1rem;
    }
    .blog-text{
        font-size: .8rem;
    }
    .blog-date span{
        font-size: .9rem;
    }
}
#blog{
    margin-bottom: 20rem;
}




/*alles zu den Karten der angebots Seite*/
.course-card-area{
    position: relative;
    overflow: hidden;
}
.course-page-background-img{
    position: absolute;
    background: var(--second-secondary-color);
    /*transform: rotate(-5deg) translateX(-5%);*/
    padding:  20px 0 20px 10%;
    width:110%;
}
.course-page-background{
    position: absolute;
    transform: translateY(-50%);
    height: 50vh;
    width: 100%;
    background: var(--second-secondary-color);
}

.firstcontent{
    margin: 10px;
    display: flex;
    justify-content: center;
    align-items: center ;
    flex-wrap: wrap;
}
.secondcontent{
    margin: 10px;
    display: flex;
    justify-content: center;
    align-items: center ;
    flex-wrap: wrap;
}
.thirdcontent{
    margin: 10px;
    display: flex;
    justify-content: center;
    align-items: center ;
    flex-wrap: wrap;
}
.fourcontent{
    margin: 10px;
    display: flex;
    justify-content: center;
    align-items: center ;
    flex-wrap: wrap;
}


/*Einzelnes Kartendesign*/
.card{
    color:var(--text-color-grey);
    max-width: 40ch;
    margin:10px;
    margin-bottom: 20px;
    line-height: 1.6;
    border-radius: 1rem;
    overflow: hidden;
    opacity: 1;
    transition:transform 500ms ease;
    padding: 14rem 0 0;
    -webkit-transition:transform 500ms ease;
    -moz-transition:transform 500ms ease;
    -ms-transition:transform 500ms ease;
    -o-transition:transform 500ms ease;
    z-index: 8;
}
.kinder{
    background-image:url(kinderYogaDreiKinder.jpg);
    background-size: cover;
    background-position: center;
}
.erwachsene {
    background-image: url(erwachsenenYogaFrau.jpeg);
    background-size: cover;
    background-position:55%;
}
.teenager{
    background-image: url(teenager-yoga.jpg);
    background-size: cover;
    background-position: center;
}
.schwanger{
    background-image: url(juan-encalada-SCteCA0Mf1A-unsplash.jpg);
    background-size: cover;
    background-position: -240px;
}
.rückbildung{
    background-image: url(rückbildungsYogaAnnaAmelie.jpeg);
    background-size: cover;
    background-position: center;;
}
.aufdemstuhl{
    background-image: url(Kobrafoto.jpg);
    background-size: cover;
    background-position: center;
}
.family{
    background-image: url(Mama\ mit\ Kind.jpg);
    background-size: cover;
    background-position: center;
}
.mamafit{
    background-image: url(Zug\ Sebastian\ +\ ich.jpg);
    background-size: cover;
    background-position: 35%;
}
.card:hover{
    transform: scale(1.05);
}
.card-content {
    --padding: 1.5rem;
    padding: var(--padding);
    background: linear-gradient(rgba(255, 255, 255, 0),rgba(255, 255, 255, 0.8) 10%,rgb(255, 255, 255));
}
.card-title {
    position: relative;
    width: max-content;
    font-family: 'Merienda One';
}
.card-title::after{
    content: "";
    position: absolute;
    left:calc(var(--padding) * -1);
    bottom:-3px;
    height: 4px;
    width: calc(100% + var(--padding));
    background-color:var(--primary-color);
    transform-origin: left;
    transition: transform 700ms ease;
    border-bottom-right-radius:  5px;
    border-top-right-radius: 5px;
}
.card:hover .card-title::after{
    transform: scaleX(1);
}
.card-body{
    padding:5px;
    margin:20px 0 10px 0;
    height: 160px;
}
#scroll{
    overflow-y: scroll;
}
.card-button{
    cursor: pointer;
    display: inline-block;
    text-decoration: none;
    color: var(--text-color-grey);
    background-color: var(--primary-color);
    padding:0.5em 1.25em;
    width: auto;
    border-radius: 1rem;
}
.card-button:hover,
.card-button:focus{
    background-color: var(--first-secondary-color);
    color: var(--text-color-white);
}
.kurstip{
    opacity: 1;
    position: relative;
    z-index: 11;
    margin: 3px;
    padding:0.5em 1.25em;
    border-radius: 6px;
    text-align: center;
    background: var(--text-color-white);
    box-shadow: 0 5px 10px rgba(0,0,0,0.2);
    pointer-events: none;
}
/*Anpassung Seitenverhältnisse der Cards*/
@media screen and (max-width:360px) {
    .card{
        padding: 12rem 0 0;
    }
    .card-content{
        padding: 1rem;
        transform: translateY(79%);
        -webkit-transform: translateY(79%);
        -moz-transform: translateY(79%);
        -ms-transform: translateY(79%);
        -o-transform: translateY(79%);
}
    .card-title{
        font-size: 1.3rem;
    }
    .card-body{
        font-size: 0.9rem;
    }
    .card-button{
        font-size: 0.9rem;
    }
    .kurstip{
        font-size: 0.9rem;
        padding:0.4em 0.4em;
    }
}
@media screen and (max-width:280px) {
    .card{
        padding: 12rem 0 0;
    }
    .card-content{
        padding: 1rem;
        transform: translateY(79%);
}
    .card-title{
        font-size: 1rem;
    }
    .card-body{
        font-size: 0.7rem;
    }
    .card-button{
        font-size: 0.7rem;
    }
    .kurstip{
        font-size: 0.7rem;
    }
}
@media (hover: none) {
    .card-content{
        transform: translateY(0%);
        -webkit-transform: translateY(0%);
        -moz-transform: translateY(0%);
        -ms-transform: translateY(0%);
        -o-transform: translateY(0%);
    }
}
@media (hover) {
    .card-content{
        transform: translateY(76%);
        transition: transform 500ms ease;
        -webkit-transform: translateY(76%);
        -moz-transform: translateY(76%);
        -ms-transform: translateY(76%);
        -o-transform: translateY(76%);
}
    .card:hover .card-content{
        transform: translateY(0);
        transition-delay: 500ms;
}
    .card-content > * :not(.card-title){
        opacity: 0;
        transition: opacity 500ms linear;
        -webkit-transition: opacity 500ms linear;
        -moz-transition: opacity 500ms linear;
        -ms-transition: opacity 500ms linear;
        -o-transition: opacity 500ms linear;
}
    .card:hover .card-content > * :not(.card-title){
        opacity: 1;
        transition-delay: 1000ms;
    }
    .card-title::after{
        transform:scaleX(0);
    }
}

/*Contaktpage area*/
.contact-banner-links-area{
    display: flex;
    width: 100%;
    background-color: var(--website-background-color);
    flex-direction: column;
}
.contact-banner-links{
    display: flex;
    width: 100%;
    background-color: var(--second-secondary-color);
    position: relative;
    align-items: center;
    justify-content: center;
}
.contact-title{
    text-align: center;
    padding: 40px;
    max-width: 1200px;
    min-height: 100px;
    color: var(--text-color-grey);
}
.contact-link-area{
    position: absolute;
    display: flex;
    justify-content: space-around;
    width: 70%;
    max-width: 1000px;
    bottom: -174px;
}
.link-card{
    min-width: 100px;
    max-width: 150px;
    padding:20px;
    background-color: var(--text-color-white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-bottom: solid 4px var(--primary-color);
    box-shadow: 0 5px 10px rgba(0,0,0,0.3);
    position: relative;
    transition: all 0.3s ease-in-out;
}
.link-card-linkfrase{
    position: absolute;
    width: 100%;
    height: 100%;
}
.contact-icon{
    width: auto;
    height: auto;
    margin-bottom: 10px;
}
.link-card-icon-area{
    font-size: 3rem;
}
.link-card-icon{
    color: var(--primary-color);
    padding: 4px;
    margin-right:0;
    
}
.link-card-text-area{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.link-card-title{
    font-family: 'Merienda One';
    margin-bottom: 15px;
}
.link-card-text{
    text-align: center;
}
.contact-socialmedia-box{
    display: inline-block;
    height: 60px;
    width: 60px;
    margin: 0 5px;
    background-color: var(--text-color-white);
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 10px 10px rgba(0,0,0,.1);
    overflow: hidden;
    transition: width 0.5s ease-in-out;
    position: relative;
}
.contact-socialmedia-box-linkfrase{
    position: absolute;
    width: 100%;
    height: 100%;
}
.contact-socialmedia-box:hover{
    width: 160px;
}
.contact-socialmedia-box:hover .contact-socialmedia-icon{
    color: var(--text-color-white);
}
.contact-socialmedia-box:nth-child(2):hover .contact-socialmedia-icon{
    background: linear-gradient(130deg, rgba(131,58,180,1) 0%, rgba(253,42,29,1) 49%, rgba(252,235,8,1) 84%, rgba(252,252,0,1) 100%);
}
.contact-socialmedia-box:nth-child(1):hover .contact-socialmedia-icon{
    background-color:rgba(253,42,29);
}
.contact-socialmedia-box:nth-child(2):hover span{
    background: linear-gradient(130deg, rgba(131,58,180,1) 0%, rgba(253,42,29,1) 49%, rgba(252,235,8,1) 84%, rgba(252,252,0,1) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color:transparent;
}
.contact-socialmedia-box:nth-child(1):hover span{
    color:rgba(253,42,29);
}
.contact-socialmedia-icon{
    display: inline-block;
    text-align: center;
    width: 60px;
    height: 60px;
    border-radius: 50px;
    line-height: 60px;
    transition: all 0.3s ease-in-out;
    color: var(--text-color-grey);
}
.contact-socialmedia-icon i{
    font-size: 1.7rem;
    line-height: 60px;
}
.contact-socialmedia-box span{
    font-size: 1rem;
    font-weight: bold;
    margin-left: 5px;
    color: var(--text-color-grey);
    font-family: "Merienda One";
    margin: 0 auto;
}
.contact-info-banner{
    width: 100%;
    padding-top: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--website-background-color);
}
.inner-contact-info-banner{
    width: 90%;
    max-width: 1200px;
    padding: 20px 5%;
    display: flex;
    justify-content: space-around;
}
.contact-info-banner-areatext{
    width: 40%;
    text-align: left;
    max-width: 300px;
}
.contact-info-banner-text{
    margin-bottom: 20px;
}
.contact-info-banner-imgarea{
    width: 40%;
    display: flex;
    justify-content: center;
    border-left:  solid 3px var(--primary-color);
    
}
.contact-info-banner-img{
    width: 100%;
    max-width: 200px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.3);
}
.link-card:hover{
    transform: scale(1.05);
}
@media screen and (max-width:850px) {
    .contact-banner-links{
        display: flex;
        flex-direction: column;
        width: 100%;
        position: relative;
        align-items: center;
        justify-content: center;
    }
    .contact-title{
        text-align: center;
        padding: 40px;
        max-width: 1200px;
        min-height: auto;
    }
    .contact-link-area{
        position: relative;
        display: flex;
        justify-content: space-around;
        flex-direction: column;
        width: 70%;
        max-width: 1000px;
        bottom: 0;
        align-items: center;

    }
    .link-card{
        width: 100%;
        max-width: 300px;
        margin-bottom: 20px;
        flex-direction: row;
    }
    .link-card-text-area{
        margin-left: 15px;
    }
    .contact-info-banner{
        padding: 20px 0;
    }
    .inner-contact-info-banner{
        flex-direction: column;
        align-items: center;
    }
    .contact-info-banner-areatext{
       min-width: 80%;
    }
    .contact-info-banner-text{
        margin-bottom: 20px;
        text-align: center;
    }
    .contact-banner-socials{
        margin-bottom: 20px;
    }
    .contact-socialmedia-area{
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;    
    }
    .contact-socialmedia-box{
        margin-bottom: 10px;
    }
}


/*Footer und Impressumsleiste*/
.footer{
    display: flex;
    position: relative;
    bottom: 0px;
    width: 100%;
}
footer{
    clear:both;
    bottom: 0;
    height: 50px;
    background-color:var(--text-color-white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    color: var(--text-color-grey);
    padding: 10px 0;
}
.footermedia{
    position: relative;
    width: 100%;
    height: auto;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    margin: 5px 0;
}
.footermediablock{
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.footericons{
    background-color: var(--text-color-grey);
    border-radius: 6px;
    padding: 2px;
    margin: 2px;
}
.footermediablock a i{
    padding: 4px;
    margin-right:0;
    font-size: 1.6rem;
}
.impressum-desc-text{
    text-align: center;
}
@media screen and (max-width: 828px) {
    footer{
        height: 110px;
        flex-direction: column;
    }
    .footermedia{
        display: flex;
    }
}
.impressum{
    color:var(--primary-color);
    text-decoration: none;
}
.impressum:hover{
    color:var(--first-secondary-color);
}
/*Impressumsseite*/
.Impressum-page-desgin{
    background-color:var(--second-secondary-color);
    min-height: 95vh;
}
.Impressumsite{
    padding: 1.4rem 1.4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.Impressum-title{
    width: 60%;
    font-size: 3.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
    padding: 5px;
    border-bottom: solid 1px var(--primary-color);
    text-align: center;
    font-family: 'Merienda One';
}
.Impressum-text{
    width: 80%;
    line-height: 1.6rem;
    font-size: 1.5rem;
    color:var(--text-color-grey);
    margin-bottom: 40px;
    text-align: center;
}
@media screen and (max-width: 900px) {
    .Impressum-text{
        font-size: 1.2rem;
    }
    .Impressum-title{
        font-size: 1.6rem;
        margin: 1rem  0;
    }
}
@media screen and (max-width: 580px) {
    .Impressum-text{
        font-size: 1rem;
    }
    .Impressum-title{
        font-size: 1.2rem;
        margin: 1rem  0;
    }
}
@media screen and (max-width: 363px){
    .Impressum-text{
        line-height: 1.3rem;
    }
    .Impressum-title{
        width: 90%;
    }
    .Impressumsite{
        margin: 0px 10px 10px 10px;
    }
}