header.about.header-general::before{
    background-image: url("../assets/about/header-about-2.jpg");
    background-size: cover;
}

.about-founder{
    display: flex;
    gap: 3rem;
    /*margin-bottom: 5rem;*/
}

.about-founder .founder-image{
    flex: 50%;
    height: 600px;
    position: relative;
}

.about-founder .founder-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-founder .founder-image p.founder-name{
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    width: 100%;
}

.about-founder .founder-bio{
    flex: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-founder .founder-bio p{
    color: #626262;
    line-height: 24px;
    margin-bottom: 1.5rem;
}

.team-members{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 5rem;
}

.team-members .member{
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 30%;
    gap: 0.7rem;
}

.team-members .member img{
    height: 300px;
    object-fit: cover;
    max-width: 300px;
}

.team-members .member p{
    font-weight: 600;
    color: #626262;
}

.group-photos{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 5rem;
}

.group-photos .photo{
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 30%;
    gap: 0.7rem;
}
.group-photos .photo img{
    height: 300px;
    object-fit: cover;
    max-width: 300px;
}

.group-photos .photo p {
    font-weight: 600;
    color: #626262;
}

@media screen and (max-width: 1000px){
    .about-founder{
        flex-direction: column;

    }

    .about-founder .founder-image{
        flex: auto;
        height: 400px;
    }
}