.about-ourStory{
    height: max-content;
    padding-top: 10%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 50px;
}

.about-ourStory > .about-intro > img{
    width: 50%;
    border-radius: 2px;
}

.about-intro{
    display: flex;
    width: 70%;
    gap: 30px;
    justify-content: center;
    align-items: center;
}

.about-storyContent{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.about-middleIntroLine{
    height: 2px;
    width: 100%;
    background-color: var(--line-color);
}

.about-storyContent > p{
    font-size: var(--text-size);
}

.about-storyContent > h3{
    font-size: 2rem;
}

.about-carreImg{
    width: 250px;
    height: 250px;
    background-color: var(--box-color);
    border-radius: 2px;
}

.about-pictures-container{
    display: flex;
    gap: 50px;
    margin-bottom: 50px;
}

.Emric{
    background-image: url("../../../public/assets/about/emric.jpg");
    background-size: cover;
}

.Matheo{
     background-image: url("../../../public/assets/about/matheo.jpeg");  
    background-size: cover;
}

.Florian{
    background-image: url("../../../public/assets/about/florian.jpg");
    background-size: cover;
}

.Sacha{
    background-image: url("../../../public/assets/about/sacha.jpg");
    background-size: cover;
}


@media(max-width: 1250px){
    .about-intro{
        flex-direction: column;
    }
    .about-ourStory > .about-intro > img{
        width: 80%;
    }
    .about-pictures-container{
        flex-direction: column;
    }
}

@media(max-width: 750px){
    .about-ourStory > .about-intro > img{
        width: 100%;
    }
}