
/* Ganze Seite */
:root{
    --link-color: #E89333;
}

/* Header */
header{
    padding: 30px 0;
}

/* Navigation */
.navbar-nav a:hover{
    color: var(--link-color);
}

#header-img{
    margin-top: 20px;
    height: 300px;
    overflow: hidden;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
}

/* Main / Inhalt */
main{
    margin: 5rem 7rem;
}

/* Team */

.team-header-img{
    margin-top: 20px;
    height: 300px;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
}
.team-header-img img{
    height: 100%;
}

/* Footer */
footer{
    .column:nth-child(odd) {background-color: #F8F9FA;}
    .column:nth-child(even) {background-color: #eff1f2;}
    padding: 0;
    /* background-color: #F8F9FA; */
    display: flex;
    flex-direction: column  ;
    justify-content: flex-start;
    align-items: flex-start;
    /* flex-wrap: wrap;  */
    
}
footer a{
    text-decoration: none;
    color: black;
}
footer a:hover{
    color: var(--link-color);
}
.column{
    width: 100%;
    margin: auto;
    padding: 2rem 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    /* background-color: red; */
}

#img-im-text{
    display: none;
}

/*Große Bildschirme*/
@media only screen and (min-width: 992px) {
    #team-person{
        display: flex;
        flex-direction: row;
        padding: 50px 50px 20px 50px;
    }
    .team-header-img{
        height: 600px;
        width: 100%;
        margin-right: 30px;
        background-color: transparent;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: flex-start;
    }
    footer{
        padding: 0;
        display: flex;
        flex-direction: row;
        justify-content: flex-end;
        align-items: flex-end;
        /* .column:nth-child(odd) {background-color: #F8F9FA;}
        .column:nth-child(even) {background-color: #F8F9FA;} */
    }
    .column{
        height: 450px;
        padding: 50px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
    }
    #img-im-text{
        width:500px; 
        overflow:hidden; 
        margin: 0 20px 0 0;
        border-radius: 5px;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: flex-start;
    }

}

/* Kleine Bildschirme */

@media only screen and (max-width: 576px) {
    main{
        margin: 3rem 1rem;
    }
}
