/**
 * Style of About page
 */

/* SECTION */
section.about {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
}
/* HERO */
.plx {
    background-image: url('../../../img/qui-sommes-nous.jpg');
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
	background-attachment: fixed;
    min-height: 400px;
    width: 100%;
}
.plx::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .2);
    backdrop-filter: contrast(.5);
}
.plx_text {
    position: absolute;
    left: 50%;
    top: 50%;
    text-align: center;
    transform: translate(-50%, -50%);
    width: 100%;
}
.plx_text .title {
    padding: 0;
}
.plx_text .title,
.plx_text .intro_box {
    color: white;
}
.plx_text .intro {
    padding-top: 1rem;
}
/* RESPONSIVE */
@media all and (max-width: 1400px) {
    .plx {
        min-height: 300px;
    }
}
@media all and (max-width: 1000px) {
    .plx_text {
        transform: translate(-50%, -50%);
    }
}
@media all and (max-width: 700px) {
    .plx {
        min-height: 250px;
    }
}
@media (max-width: 550px) {
    .about .intro_box br {
        display: none;
    }
    .about .intro_box br.mobile {
        display: block;
    }
}
/* @media (max-width: 490px) {
    .about .intro_box br {
        display: none;
    }
    .about .intro_box br.mobile {
        display: block;
    }
} */