
#header_back{
    height: var(--header_height);
}
#opening_img{
    height: 70vh;
    width: 100%;
    margin-bottom: 0rem;
    object-fit: cover;
    z-index: 0;
    position: relative;
}
/******************************************************************/
#contentspace{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width: 100%;
    height: auto;
    background-color: var(--main_color);
    z-index: 1;
}

.contentspace_content{
    padding-bottom: 5rem;
  
    scroll-margin-top: var(--header_height_small);
}
.contentspace_content h1{
    position: relative;
    margin-bottom: 3rem;
    margin-top: 5rem;
}
.contentspace_content h1:after{
    position: absolute;
    content: "";
    bottom: -0.5rem;
    left: 50%;
    width: 3rem;
    height: 5px;
    background-color: var(--font_main_color);
    transform: translateX(-50%);
    border-radius: 1rem;
    
}

/******************************************************/

.face_card{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: auto;
    width: 17rem;
  
}



.face_card img{
    width: 75%;
    height: auto;
    margin-bottom: 1.5rem;
    object-fit: cover;
    object-position: center;
}
.face_card h3{
    margin: 0rem;
    padding: 0px;
}
.face_card p{
    font-size: 1rem;
    text-align: center;
    width: 90%;
    margin: 1rem 0 0 0;
    padding: 0px;
}
.face_card a{
    font-size: 1rem;
    text-align: center;
    width: 90%;
    margin-bottom: 1rem;
    padding: 0px;
    
}

/*********************************************************************/
#content_über_uns{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: auto;
    width: 100%;

    background-color: var(--second_color);
    padding-bottom: 3rem;
}

#content_über_uns_textspace{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    
    
    width: auto;
    font-size: 1.3rem;
}

#content_über_uns_textspace{
    display: block;
    overflow-wrap: break-word;
    text-align: center;
    
}
#content_über_uns a{
    
    font-size: 1.3rem;
}
/***************************************************/
#content_proben{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    height: auto;
}

#content_proben_infos{
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    height: auto;
    width: 100%;
    flex-wrap: wrap;
    gap: 3rem;
}
#content_proben_infos div{
    margin: 1rem;
}
#content_proben_zeiten{
    display: grid;
    grid-auto-columns: 6rem 15rem;
    /*grid-auto-rows: 7rem 6rem 7rem 3rem;*/
    grid-auto-rows: auto auto auto auto;
    width: auto;
    height: auto;
}
#content_proben_zeiten p{
    margin: 0px;
    padding: 0px;
    text-wrap: nowrap;
}
#content_proben_zeiten p:nth-of-type(1){
    grid-column: 1;
    grid-row: 1;
    font-weight: bold;
}
#content_proben_zeiten p:nth-of-type(2){
    grid-column: 1;
    grid-row: 3;
    font-weight: bold;
}
#content_proben_zeiten p:nth-of-type(3){
    grid-column: 2;
    grid-row: 1;
}
#content_proben_zeiten p:nth-of-type(4){
    grid-column: 2;
    grid-row: 3;
}
.content_proben_ort_info{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    height: 3rem;
    width: 100%;
    margin: 1.5rem 0 3rem 0 !important;
    grid-column-start: 1;
    grid-column-end: 3;
    text-align: center;
}
.content_proben_ort_info:nth-child(1){
    grid-row: 2;
}
.content_proben_ort_info:nth-child(2){
    grid-row: 4;
}

/********************************************************************/
#content_aktuell{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}
#content_aktuell_infos{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: auto;
    margin: 0 2rem;
}
#content_aktuell a{
    font-size: 1.3rem;
}

/**********************************************************************************/
#content_auftritte{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    height: auto;
    overflow: hidden;
}
#content_auftritte h1{
    align-self: center;
}
#beitrags_slider_container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    position: relative;
    max-width: 100vw;
}
.beitrags_slider_button{
    display: flex;
    justify-content: center;
    align-items: center;
    color: black;
    font-size: 3rem;
    position: absolute;
    font-weight: bold;
    background-color: rgba(255, 255, 255, 0.6);
    transition: 0.3s;
    border-radius: 50%;
    cursor: pointer;
    width: 3.5rem;
    height: 3.5rem;
    z-index: 1;
    user-select: none;
    border: 1px rgb(170, 170, 170) solid;
    box-shadow: 0 0 10px 0px black;
}
.beitrags_slider_button:nth-child(1){
    left: 1rem;
}
.beitrags_slider_button:nth-child(2){
    right: 1rem;
}
.beitrags_slider_button_img{
    height: 60%;
    width: 60%;
    object-fit: contain;
}
#beitrags_slider_button_img_flip{
    transform: scaleX(-1);
}
#beitrags_slider{
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    width: auto;
    height: 70vh;
    position: relative;
    left: 0vw;
}
.beitrag{
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    height: 100%;
    width: 100vw;
}
.beitrag img{
    height: 100%;
    object-fit: cover;
    max-width: 55vw;
    object-position: top;
}
.beitrag_text{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 50%;
    margin: 0 3rem 0 3rem;
}
.beitrag_text a{
    font-size: 1.5rem;
    margin-top: 1.5rem;
}


/****************************************/
#content_kontakt{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}
#face_card_place{
    display: flex;

    flex-direction: row;
    justify-content: space-evenly;
    flex-wrap: wrap;

    width: 100%;
    padding-top: 3rem;

}
