.a-propos-title-container {
    width: 100%;
    min-height: 500px;

    display: flex;
    align-items: center;
    justify-content: center;
}
.a-propos-title-content {
    width: 90%;
    max-width: 1360px;

    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.a-propos-line {
    height: 2px;
    min-width: 20px;
    width: 40%;
    max-width: 250px;

    background-color: var(--main-blue);
}
.a-propos-title {
    font-family: "Source Sans Pro";
    font-size: 50px;
    font-style: normal;
    font-weight: 300;
    line-height: 63px;
    text-align: center;
    color: #2B5C73;
    text-transform: uppercase;

    margin: 0;
}
@media screen and (max-width: 500px) {
    .a-propos-title {
        font-size: 40px;
        line-height: 50px;
    }
}
@media screen and (max-width: 350px) {
    .a-propos-title {
        font-size: 25px;
        line-height: 35px;
    }
}
.a-propos-title span {
    color: var(--variant-blue-02);
    font-weight: bold;
}

.a-propos-main-container {
    width: 100%;
    height: 940px;

    display: flex;
    flex-direction: row;
}
@media screen and (max-width: 1500px) {
    .a-propos-main-container {
        height: auto;

        flex-wrap: wrap;
    }
}
.a-propos-main-image-container {
    width: 45%;
    height: 940px;

    background: url("../../img/photo_a_propos_de_lagence.png") no-repeat center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;

    overflow: hidden;

    position: relative;
}
@media screen and (max-width: 1500px) {
    .a-propos-main-image-container {
        width: 100%;
        height: 585px;
    }
}
.a-propos-main-content {
    width: 55%;
    height: 100%;

    background-color: var(--variant-blue-01);

    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
}
@media screen and (max-width: 1500px) {
    .a-propos-main-content {
        width: 100%;
        height: fit-content;

        padding: 40px 0;
    }
}
.a-propos-main-content-title {
    width: calc(100% - 120px);

    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: row;
}
@media screen and (max-width: 500px) {
    .a-propos-main-content-title {
        width: calc(100% - 40px);
    }
}
.a-propos-main-content .a-propos-main-content-title p {
    width: fit-content;

    font-size: 60px;
    font-weight: bold;
    text-transform: uppercase;

    margin-top: 0;
}
@media screen and (max-width: 600px) {
    .a-propos-main-content .a-propos-main-content-title p {
        font-size: 50px;
    }
}
.a-propos-main-content-title .line {
    height: 2px;
    width: 10%;
    max-width: 100px;

    background-color: var(--main-blue);

    margin-left: 30px;
}
@media screen and (max-width: 420px) {
    .a-propos-main-content-title .line {
        display: none;
    }
}
.a-propos-main-content > * {
    margin-left: 60px;
}
@media screen and (max-width: 600px) {
    .a-propos-main-content > * {
        margin-left: 20px;
    }
}
.a-propos-main-content p {
    font-family: "Source Sans Pro";
    color: white;

    margin-bottom: 0;
}
.a-propos-main-content > p {
    width: calc(100% - 120px);

    font-size: 25px;

    margin-top: 40px;
}
@media screen and (max-width: 600px) {
    .a-propos-main-content > p {
        width: calc(100% - 40px);

        font-size: 20px;

        margin-top: 20px;
    }
}
