.aboutus {
    padding-top: 50px;
    min-height: 100vh;
    padding-bottom: 50px;
    padding: 50px 25px;
}

.aboutus-heading {
    font-size: 35px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
}

.aboutus.content .title {
    margin-bottom: 15px;
    font-size: 30px;
    text-align: left;
}

.aboutus.content .wo_are_we {
    padding: 25px;
}

.aboutus.content .information-box {
    max-width: 1500px;

    background-color: #f7f7f7;
    border-radius: 30px;

    margin: 0px auto;
}

.aboutus.content .information {
    padding: 25px;
}

.aboutus.content h2 b {
    font-size: 32px;
    font-weight: normal;
    padding-bottom: 25px;
}






/* HISTORIE */

.aboutus.content .historie {
    max-width: 1500px;

    padding: 25px;

    margin: 0px auto;
    margin-top: 50px;
}

.aboutus.content .historie .title {
    text-align: center;
    font-size: 32px;
    font-weight: normal;
    padding-bottom: 25px;
}

.aboutus.content .historie .historie-punkt {
    display: flex;
    flex-direction: row; 
    flex-wrap: nowrap;
    justify-content: center;
}

.aboutus.content .historie .historie-punkt .icon {
    width: 450px;
    height: 450px;
}

.aboutus.content .historie .historie-punkt .icon img {
    object-fit: contain;
    object-position: center;
}

.aboutus.content .historie .historie-punkt .inhalt {
    display: flex;
    flex-direction: column; 
    flex-wrap: wrap;
}

.aboutus.content .historie .historie-punkt .inhalt .year {
    font-family: 'Azonix';
    font-size: 55px;

    color: #4A00E0;

    padding-top: 75px;
    padding-bottom: 15px;
}

.aboutus.content .historie .historie-punkt .inhalt .text {
    font-weight: normal;
}



















/* TEAM */

.aboutus.content .team {
    padding: 25px;
    max-width: 1500px;
    margin: 0px auto;
}

.aboutus.content .team .title {
    font-size: 32px;
    font-weight: normal;
    padding-bottom: 25px;
    text-align: center;
}

.aboutus.content .team .desc {
    text-align: center;
    font-size: 17px;
}

.aboutus.content .workers {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.aboutus.content .workers .worker {
    width: fit-content;
    height: fit-content;

    margin: 25px 15px;
}

.aboutus.content .workers .worker .picture {
    width: 300px;
    height: 300px;

    /* background-color: #f7f7f7; */

    border-radius: 30px;

    position: relative;
}

.aboutus.content .workers .worker .picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.aboutus.content .workers .worker .picture .info {
    position: absolute;
    bottom: 10px;
    left: 5px;
    right: 5px;

    text-align: center;
    color: white;
}

.aboutus.content .workers .worker .name {
    font-size: 20px;
    margin-top: 15px;
    
    text-align: center;
}

.aboutus.content .workers .worker .position {
    font-size: 16px;
    margin-top: 10px;
    color: var(--second-color);
    
    text-align: center;
}











/* Tablet */
@media only screen and (max-width: 1024px) {
    .aboutus.content .historie .historie-punkt {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .aboutus.content .historie .historie-punkt .icon {
        width: calc(100vw - 50px) !important;
        height: fit-content !important;
    }

    .aboutus.content .historie .historie-punkt .inhalt .year {
        padding-top: 25px !important;
        text-align: center !important;
    }
}

/* Mobile */
@media only screen and (max-width: 768px) {
    .aboutus.content .historie .historie-punkt .inhalt {
        padding-right: 0px;
    }

    .aboutus.content .historie .historie-punkt:nth-child(even) .inhalt {
        padding-left: 0px;
    }
}