/********************** HEADER **********************/

.bg {
    background: center / cover no-repeat url(../Assets/img/topAbout.jpg);
    width: 100%;
    height: 90vh;
    transform: translateY(-100px);
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
}

.TitleWrapper {
    width: 75%;
    background-color: var(--color3);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 0;
    transform: translateY(50%);
    text-align: center;
}

.TitleWrapper {
    font-size: 30px;
}

/********************** MAIN **********************/

.aboutSection {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.triple {
    flex-direction: column;
}

.triple>article {
    width: 100%;
    display: flex;
    flex-direction: row;
}

.aboutSection>article {
    width: 100%;
}

.triple>article :nth-child(n) {
    width: 30%;
}

.aboutIMG {
    width: 30%;
}

/********************** RESPONSIVE **********************/

@media (max-width: 1108px) {}

@media (max-width: 969px) {}

@media (max-width: 809px) {}

@media (max-width: 770px) {
    .TitleWrapper {
        width: 85%
    }

    .reverse {
        flex-direction: column;
    }

    .triple>article {
        flex-direction: column;
    }

    .triple>article :nth-child(n) {
        width: 100%;
        margin: 20px 0;
    }
}

@media (max-width: 605px) {}

@media (max-width: 513px) {}

@media (max-width: 443px) {}