/* Gotham font */
/*
    Très fines : XLight ou Thin fonctionnent aussi
*/
@font-face {
    font-family: 'Gotham';
    src: url('../fonts/Gotham/Gotham-Bold_1.eot') format('eot'),
        url('../fonts/Gotham/Gotham-Bold_1.woff2') format('woff2'),
        url('../fonts/Gotham/Gotham-Bold_1.woff') format('woff'),
        url('../fonts/Gotham/Gotham-Bold_1.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}
@font-face {
    font-family: 'Gotham';
    src: url('../fonts/Gotham/Gotham-Black.eot') format('eot'),
        url('../fonts/Gotham/Gotham-Black.woff2') format('woff2'),
        url('../fonts/Gotham/Gotham-Black.woff') format('woff'),
        url('../fonts/Gotham/Gotham-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
}
@font-face {
    font-family: 'Gotham';
    src: url('../fonts/Gotham/Gotham-Light_1.eot') format('eot'),
        url('../fonts/Gotham/Gotham-Light_1.woff2') format('woff2'),
        url('../fonts/Gotham/Gotham-Light_1.woff') format('woff'),
        url('../fonts/Gotham/Gotham-Light_1.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Gotham';
    src: url('../fonts/Gotham/Gotham-Thin.eot') format('eot'),
        url('../fonts/Gotham/Gotham-Thin.woff2') format('woff2'),
        url('../fonts/Gotham/Gotham-Thin.woff') format('woff'),
        url('../fonts/Gotham/Gotham-Thin.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}
/* ************* */

/* Nunito Sans font */
@font-face {
    font-family: 'Nunito';
    src: url('../fonts/Nunito/Nunito-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Nunito';
    src: url('../fonts/Nunito/Nunito-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}
@font-face {
    font-family: 'Nunito';
    src: url('../fonts/Nunito/Nunito-ExtraBold.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
}
/* ***************** */

:root{
    --main-blue: #17243e;
    --dark-blue: #1f325c;
    --light-blue: #38608e;
    --lighter-blue: #49759e;
    --white-blue-lighter: #ebf3fa;
    --white-blue-darker: #dfedf8;
    --white-blue: #f2f9ff;
    --main-orange: #f99746;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html{
    scroll-behavior: smooth;
}

body{
    font-family: 'Nunito';
    font-weight: normal;
    color: var(--main-blue);
}

a{
    text-decoration: none;
    font-weight: normal;
    line-height: 1;
    color: var(--main-blue);
}

p{
    margin-bottom: 20px;
    font-size: 18px;
    line-height: 1.39;
}

h1, h2{
    margin-bottom: 30px;
    font-family: 'Gotham';
    font-size: 35px;
    font-weight: 900;
    color: var(--dark-blue);
}
h2{
    color: var(--main-blue);
}
h3{
    font-size: 30px;
    font-weight: 900;
    color: var(--dark-blue);
}

.block{
    display: block;
}
.bold{
    font-weight: bold;
}
.italic{
    font-style: italic;
}
.uppercase{
    text-transform: uppercase;
}
.underline{
    text-decoration: underline;
}

.container{
    width: 100%;
    height: 100%;
}

.img-responsive{
    margin-top: 10px;
}

/* Flex class */
.flex{
    display: flex;
}
.flexDirection{
    flex-direction: column;
}
.justifyContent{
    justify-content: center;
}
.justifyContentBetween{
    justify-content: space-between;
}
.justifyContentEvenly{
    justify-content: space-evenly;
}
.justifyContentEnd{
    justify-content: flex-end;
}
.alignItems{
    align-items: center;
}
.alignItemsStart{
    align-items: flex-start;
}
/* ********** */

/* Button type */
.button{
    width: 122px;
}
.button a,
.button button{
    display: block;
    padding: 11px 21px;
    background-color: var(--light-blue);
    border-radius: 7px;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    -ms-border-radius: 7px;
    -o-border-radius: 7px;
    font-size: 20px;
    font-weight: 900;
    text-align: center;
    color: white;
}

section{
    margin: 0 30px;
    flex-direction: column;
}
section:not(:first-of-type){
    margin-top: 83px;
}

#page.other-page{
    height: 100vh;
}
/* *********** */

/* --- MAIN PAGE --- */

/* header */
#header{
    flex-direction: column;
    margin-bottom: 100px;
    padding: 50px 30px 0 30px;
}
#header .link-menu{
    margin-bottom: 10px;
}
#header .link-menu img{
    width: 95px;
}
#header a.link-menu{
    font-family: 'Gotham';
    font-size: 20px;
}
#header .button{
    margin-top: 10px;
}

/* content */
#body-page .block-main .content-text,
#body-page .block-audit .content-text{
    flex: 1;
    margin-right: 65px;
}
#body-page .block-main .img,
#body-page .block-audit .img{
    flex: 2.3;
    max-width: 567px;
}
#body-page .block-main .img img,
#body-page .block-audit .img img{
    width: 100%;
    object-fit: cover;
}
#body-page .block-main .button{
    width: 241px;
}
#body-page .block-main .button a{
    background-color: var(--main-orange);
}

#body-page .reassurance{
    justify-content: space-between;
    align-items: center;
}
#body-page .reassurance .content,
#body-page .block-audit .content-group-icons{
    justify-content: start;
    width: 221px;
    margin-top: 85px;
}
#body-page .reassurance .content,
#body-page .block-audit  .content-group-icons{
    text-align: center;
}
#body-page .reassurance .content .img,
#body-page .block-audit .content-group-icons .img{
    max-height: 56px;
}
#body-page .reassurance .content .title,
#body-page .block-audit .content-group-icons .title{
    margin-top: 20px;
    margin-bottom: 10px;
    color: var(--lighter-blue);
    font-size: 25px;
    font-weight: 900;
}
#body-page .reassurance .content .text{
    line-height: 1.56;
}
#body-page .reassurance .content .text a{
    display: block;
    font-weight: bold;
    color: var(--main-orange);
}

#body-page .block-audit .flex{
    flex-direction: column;
}
#body-page .block-audit .flex:not(.steps){
    align-items: center;
}
#body-page .block-audit .content-group-icons{
    justify-content: unset;
    width: 291px;
}
#body-page .block-audit .rect{
    margin-top: 40px;
    padding: 28px 65px;
    border: 2px solid var(--lighter-blue);
    border-radius: 27px;
    -webkit-border-radius: 27px;
    -moz-border-radius: 27px;
    -ms-border-radius: 27px;
    -o-border-radius: 27px;
}
#body-page .block-audit .rect h3{
    margin-bottom: 38px;
}
#body-page .block-audit .rect .steps{
    margin-bottom: 50px;
}
#body-page .block-audit .rect .number{
    min-width: 61px;
    width: 61px;
    height: 61px;
    margin-right: 17px;
    background-color: var(--main-orange);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}
#body-page .block-audit .rect .number span{
    font-family: 'Gotham';
    font-size: 49px;
    font-weight: 900;
    color: white;
}
#body-page .block-audit .rect .content .title{
    font-size: 20px;
    font-weight: 900;
    color: var(--lighter-blue);
}

#body-page .block-advice .container-sorter{
    position: relative;
}
#body-page .block-advice .sorter-tabs{
    /* scroll mobile */
    overflow-x: auto;
    width: 100%;
    max-width: 100%;
    white-space: nowrap;
}
#body-page .block-advice .sorter-tabs a{
    width: 255px;
    height: 85px;
    padding: 33px 15px 0 15px;
    margin-right: 10px;
    padding-top: 33px;
    font-size: 20px;
    font-weight: 900;
    color: var(--lighter-blue);
    background-color: var(--white-blue-darker);
    text-align: center;
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
}
#body-page .block-advice .sorter-tabs a:first-of-type{
    border-bottom-left-radius: 0;
}
#body-page .block-advice .sorter-tabs a:last-of-type{
    border-bottom-right-radius: 0;
}
#body-page .block-advice .sorter-tabs a:last-of-type{
    margin-right: 0;
}
#body-page .block-advice .sorter-tabs a.active{
    background-color: var(--white-blue);
}
#body-page .block-advice .sorter-body{
    top: 95%;
    width: 100%;
    height: unset;
    background-color: var(--white-blue);
    border-radius: 27px;
    -webkit-border-radius: 27px;
    -moz-border-radius: 27px;
    -ms-border-radius: 27px;
    -o-border-radius: 27px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}
#body-page .block-advice .sorter-body img{
    display: none;
}
#body-page .block-advice .sorter-body > div{
    display: none;
    height: 100%;
}
#body-page .block-advice .sorter-body > div.active{
    display: flex;
}
#body-page .block-advice .sorter-body > div .content{
    padding: 15px;
}
#body-page .block-advice .sorter-body > div .title{
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 900;
}
#body-page .block-advice .sorter-body > div .text ul li{
    margin-left: 30px;
    padding-bottom: 15px;
}
#body-page .block-advice .sorter-body > div .content p{
    font-size: 16px;
    line-height: 1.18;
}
#body-page .block-advice .sorter-body > div .img{
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60%;
}
#body-page .block-advice .sorter-body > div .img img{
    width: 100%;
    object-fit: contain;
}
#body-page .block-advice .sorter-body #recruitment .title{
    font-size: 18px;
}
#body-page .block-advice .sorter-body #recruitment .content p{
    font-size: 15px;
}
#body-page .block-advice .sorter-body #formation .text{
    position: relative;
    z-index: 1;
}
#body-page .block-advice .sorter-body #formation .text.flex{
    flex-direction: column;
}
#body-page .block-advice .sorter-body #formation .text .flex:not(:last-of-type){
    margin-right: 30px;
}
#body-page .block-advice .sorter-body #formation .text .flex > p{
    margin-bottom: 10px;
    margin-top: 20px;
    font-size: 18px;
    font-weight: bold;
    color: var(--lighter-blue);
}
#body-page .block-advice .sorter-body #formation .text .flex ul li{
    padding-bottom: 0;
}
#body-page .block-advice .sorter-body #formation .text .flex:last-of-type ul span{
    display: inline-block;
    width: 100%;
    text-align: end;
    font-size: 30px;
    font-weight: bold;
    color: var(--lighter-blue);
}
#body-page .block-advice .sorter-body #formation .img{
    position: absolute;
    z-index: 0;
}

#body-page .block-externe .flex{
    flex-direction: column;
    align-items: flex-start;
}
#body-page .block-externe h3{
    margin-top: 40px;
    margin-bottom: 50px;
    text-align: center;
}
#body-page .block-externe .content-text .text ul{
    margin-left: 30px;
}
#body-page .block-externe .content-text .text ul li{
    font-size: 18px;
    font-weight: bold;
    line-height: 1.67;
}
#body-page .block-externe .content-group-icons{
    margin-bottom: 17px;
}
#body-page .block-externe .content-group-icons .title{
    font-size: 18px;
}
#body-page .block-externe .content-group-icons .img{
    width: 80px;
}
#body-page .block-externe .comparative{
    margin-top: 69px;
}
#body-page .block-externe .comparative .line-separator{
    display: none;
}
#body-page .block-externe .comparative .title{
    font-size: 25px;
    font-weight: bold;
    color: var(--lighter-blue);
}
#body-page .block-externe .comparative ul{
    margin-left: 15px;
    margin-top: 20px;
}
#body-page .block-externe .comparative ul li{
    margin-bottom: 25px;
    font-size: 18px;
}
#body-page .block-externe .comparative ul div.button{
    width: 285px;
    margin: 0 auto;
}
#body-page .block-externe .comparative ul a.button{
    width: 255px;
    background-color: var(--main-orange);
}
#body-page .block-externe .comparative > div:first-of-type{
    flex: 1;
}
#body-page .block-externe .comparative > div:nth-child(2){
    flex: 0.5;
    text-align: center;
}
#body-page .block-externe .comparative > div:last-of-type{
    flex: 1;
}

#body-page .little-rh .flex{
    flex-direction: column;
}
#body-page .little-rh .content-text{
    flex: 0.7;
    padding-right: 65px;
}
#body-page .little-rh .content-text img{
    margin-bottom: 30px;
}
#body-page .little-rh .content-text div.button{
    width: 255px;
}
#body-page .little-rh .content-text a.button{
    width: 255px;
    background-color: var(--main-orange);
    font-weight: bold;
}
#body-page .little-rh .img{
    flex: 2;
}
#body-page .little-rh h3{
    margin-bottom: 30px;
    margin-top: 51px;
    text-align: center;
}
#body-page .little-rh .line-separator{
    display: none;
}
#body-page .little-rh .comparative .title{
    font-size: 25px;
    font-weight: bold;
    color: var(--lighter-blue);
}
#body-page .little-rh .comparative ul{
    margin-left: 15px;
    margin-top: 20px;
}
#body-page .little-rh .comparative ul li{
    margin-bottom: 25px;
    font-size: 18px;
}
#body-page .little-rh .comparative ul div.button{
    width: 285px;
    margin: 0 auto;
}
#body-page .little-rh .comparative ul a.button{
    width: 285px;
    background-color: var(--main-orange);
    font-weight: normal;
}
#body-page .little-rh .comparative > div:first-of-type{
    flex: 1;
}
#body-page .little-rh .comparative > div:nth-child(2){
    flex: 0.5;
    text-align: center;
}
#body-page .little-rh .comparative > div:last-of-type{
    flex: 1;
}

/* Testimonials part */
#body-page .testimonials .flex{
    flex-direction: column;
}
#body-page .testimonials .testimonial img{
    position: relative;
}
#body-page .testimonials .testimonial .text-testimonial{
    position: absolute;
    max-width: 350px;
    padding: 40px 63px;
    font-style: italic;
    font-size: 20px;
}
#body-page .testimonials .testimonial .client{
    margin-top: 19px;
}
#body-page .testimonials .testimonial .client img{
    border-radius: 50%;
}
#body-page .testimonials .testimonial .client > div p{
    margin-bottom: 0;
    margin-left: 14px;
    color: var(--light-blue);
}
#body-page .testimonials .testimonial .client > div p:first-child{
    font-weight: bold;
}
#body-page .testimonials .testimonial .client > div p:last-child{
    font-size: 16px;
    font-weight: normal;
}

/* Contact form part */
.form-contact .flex{
    flex-direction: column;
}
.form-contact{
    width: 100%;
    margin-top: 120px;
    padding: 50px 30px 98px 30px;
    background-color: var(--white-blue-lighter);
}
.form-contact h2 span{
    color: var(--light-blue);
}
.form-contact .block-input:first-of-type{
    position: relative;
}
.form-contact .block-input:not(:last-of-type){
    margin-bottom: 32px;
}
.form-contact label{
    margin-bottom: 9px;
    font-family: 'Gotham';
    font-weight: normal;
    font-size: 18px;
}
.form-contact select{
    cursor: pointer;
}
.form-contact span.arrow{
    position: absolute;
    right: 3%;
    top: 63%;
    width: 18.8px;
    height: 10.6px;
    background: url('../img/select-arrow.svg') no-repeat;
}
.form-contact select,
.form-contact input,
.form-contact textarea{
    font-family: 'Gotham';
    resize: none;
    padding: 18px 30px;
    appearance: none;
    border: none;
    border-radius: 7px;
    font-size: 16px;
    font-weight: 300;
    color: var(--light-blue);
}
.form-contact::placeholder{
    color: rgba(23, 36, 62, 0.6);
}
.form-contact div.button{
    width: 100%;
}
.form-contact button.button{
    width: 162px;
    appearance: none;
    border: none;
    background-color: var(--main-orange);
    text-align: start;
    font-family: Gotham;
    font-weight: bold;
    cursor: pointer;
}
.form-contact button.button::after{
    content: '';
    position: absolute;
    display: inline-block;
    width: 22.2px;
    height: 21.2px;
    margin-left: 15px;
    background: url('../img/send.svg') no-repeat;
}
.form-contact .success-msg{
    margin-top: 30px;
    padding: 10px;
    font-size: 20px;
    background-color: #20bf6b;
    border-radius: 6px;
    color: white;
}
.form-contact .error-msg{
    margin-top: 30px;
    padding: 10px;
    font-size: 20px;
    background-color: #d63031;
    border-radius: 6px;
    color: white;
}
.form-contact .input-size:last-of-type{
    margin-top: 32px;
}

#footer-before .contact-elem{
    height: 60px;
}
#footer-before .contact-elem .envelope,
#footer-before .contact-elem .phone{
    height: 30px;
}
#footer-before .flex:not(.envelope, .phone, .address, .socials){
    flex-direction: column;
    align-items: center;
}
#footer-before .copyright{
    margin-top: 10px;
    margin-bottom: 10px;
    text-align: center;
}
#footer-before{
    width: 100%;
    margin-top: 0;
    padding: 42px 30px;
    background-color: var(--dark-blue);
}
#footer-before p{
    margin-bottom: 0;
}
#footer-before p,
#footer-before a{
    color: white;
    font-size: 16px;
}
#footer-before .address-elem{
    width: 178px;
    margin-top: 10px;
}
#footer-before .envelope p,
#footer-before .phone p{
    margin-left: 10px;
}
#footer-before .phone{
    margin-top: 10px;
}
#footer-before .envelope img,
#footer-before .phone img{
    width: 24.2px;
}
#footer-before .marker{
    width: 16.8px;
    margin-right: 10px;
}
#footer-before .fb{
    width: 15.7px;
    margin-right: 20px;
}
#footer-before .twitter{
    width: 30.1px;
}

#footer-after .flex{
    flex-direction: column;
}
#footer-after{
    width: 100%;
    margin-top: 0;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-right: 30px;
    padding-left: 30px;
    background-color: var(--light-blue);
}
#footer-after a{
    color: white;

}
#footer-after a:not(:last-of-type)::after{
    content: '-';
    padding: 0 10px;
}
#footer-after .links{
    flex: 1;
    text-align: center;
}

/* *** LEGAL NOTICE PAGE *** */
.legal-notice,
.privacy-policies{
    margin-bottom: 98px;
}
.legal-notice ol{
    margin-left: 15px;
    margin-bottom: 20px;
}
.legal-notice h2,
.privacy-policies h2{
    margin-bottom: 15px;
    font-size: 20px;
}
.legal-notice > div:not(:last-of-type),
.privacy-policies > div:not(:last-of-type){
    margin-bottom: 30px;
}
.legal-notice p{
    margin-bottom: 0;
}
.privacy-policies > ol,
.privacy-policies > ol li > ol{
    margin-left: 30px;
}
.privacy-policies > ol li{
    font-size: 24px;
    font-weight: bold;
}
.privacy-policies > ol li > ol li,
.privacy-policies > ol li > ol p{
    font-weight: normal;
}
.privacy-policies > ol p{
    margin-left: -25px;
}
.privacy-policies ul li{
    list-style: none;
    font-size: 18px;
}
.privacy-policies ul{
    margin-bottom: 20px;
    margin-left: -25px;
}

/* --- MEDIA QUERIES --- */
@media screen and (max-width: 1024px){
    .img-responsive{
        width: 100%;
    }
}

@media screen and (min-width: 1024px){
    h1, h2{
        font-size: 40px;
    }
    .img-responsive{
        margin-top: 0;
    }

    section{
        flex-direction: row;
    }

    #header{
        font-size: 15px;
        flex-direction: row;
    }

    #header .link-menu{
        margin-right: 18px;
        margin-bottom: 0;
    }

    #body-page .reassurance{
        align-items: unset;
    }

    #body-page .block-audit .flex:not(.content-group-icons){
        flex-direction: row;
    }
    #body-page .block-audit .rect > div.flex{
        align-items: flex-start;
    }
    #body-page .block-audit .rect .number{
        min-width: 61px;
    }
    #body-page .block-audit .rect .steps{
        width: 50%;
    }
    #body-page .block-audit .rect .step-1,
    #body-page .block-audit .rect .step-3{
        margin-right: 40px;
    }
    #body-page .block-audit .rect .steps:not(.step-2){
        margin-bottom: 0;
    }

    #body-page .block-advice{
        margin-bottom: calc(547px + 130px);
    }
    #body-page .block-advice .sorter-body #formation .text.flex{
        flex-direction: unset;
    }
    #body-page .block-advice .sorter-tabs{
        position: relative;
        overflow-x: unset;
        width: unset;
        max-width: unset;
        white-space: unset;
    }
    #body-page .block-advice .sorter-tabs a{
        height: 148px;
        margin-right: 30px;
        padding-left: 0;
        padding-right: 0;
        font-size: 25px;
        border-radius: 52px;
        -webkit-border-radius: 52px;
        -moz-border-radius: 52px;
        -ms-border-radius: 52px;
        -o-border-radius: 52px;
    }
    #body-page .block-advice .sorter-tabs a:first-of-type{
        border-bottom-left-radius: 27px;
    }
    #body-page .block-advice .sorter-tabs a:last-of-type{
        border-bottom-right-radius: 27px;
    }
    #body-page .block-advice .sorter-body{
        position: absolute;
        top: 60%;
        height: 547px;
        border-top-left-radius: 27px;
        border-top-right-radius: 27px;
    }
    #body-page .block-advice .sorter-body > div .content{
        width: 40%;
        padding-top: 20px;
        padding-left: 35px;
        padding-bottom: 0;
        padding-right: 0;
    }
    #body-page .block-advice .sorter-body #recruitment .content{
        width: 55%;
    }
    #body-page .block-advice .sorter-body #recruitment .img{
        width: 45%;
    }
    #body-page .block-advice .sorter-body #formation .content{
        width: 95%;
    }
    #body-page .block-advice .sorter-body #formation .img{
        width: 65%;
    }
    #body-page .block-advice .sorter-body img{
        display: block;
    }

    #body-page .block-externe .flex{
        align-items: unset;
    }
    #body-page .block-externe .flex:not(.subperimeters, .subparts){
        flex-direction: row;
    }
    #body-page .block-externe .comparative .line-separator{
        display: block;
    }

    #body-page .little-rh .flex:not(.subparts){
        flex-direction: row;
    }
    #body-page .little-rh .line-separator{
        display: block;
    }

    #body-page .testimonials .flex:not(.testimonial){
        flex-direction: row;
    }

    .form-contact .flex:not(.block-input){
        flex-direction: row;
    }
    .form-contact .input-size{
        width: 47%;
    }
    .form-contact .input-size:last-of-type{
        margin-top: 0;
    }

    #footer-before .flex:not(.envelope, .phone, .address, .socials){
        flex-direction: row;
    }
    #footer-before .contact-elem{
        height: 50px;
    }
    #footer-before .contact-elem .envelope,
    #footer-before .contact-elem .phone{
        height: 25px;
    }

    #footer-after{
        height: 38px;
        padding-top: 0;
        padding-bottom: 0;
    }
    #footer-after .flex{
        flex-direction: row;
    }
}

@media screen and (min-width: 1200px){
    .container{
        width: 1110px;
        height: unset;
    }

    #header{
        height: 171px;
    }
    #header .link-menu img{
        width: 110px;
    }
    #header .link-menu.logo{
        margin-right: 90px;
    }
    #header .button{
        margin-top: 0;
    }

    #page.other-page{
        height: unset;
    }

    #header{
        padding-top: 50px;
    }
    #header .link-menu{
        margin-right: 38px;
    }

    .form-contact{
        padding-left: 0;
        padding-right: 0;
    }

    .footer-before,
    .footer-after{
        padding-left: 0;
        padding-right: 0;
    }

    #footer-before .address-elem{
        width: unset;
        margin-top: 0;
    }
}

@media screen and (min-width: 1500px){
    #body-page .block-advice .sorter-body > div .img{
        display: flex;
        justify-content: flex-end;
        width: unset;
    }
    #body-page .block-advice .sorter-body > div .img img{
        width: unset;
    }
    #body-page .block-advice .sorter-body > div .content{
        padding-top: 42px;
        padding-left: 43px;
    }
    #body-page .block-advice .sorter-body #recruitment .content,
    #body-page .block-advice .sorter-body #recruitment .img{
        width: 50%;
    }
    #body-page .block-advice .sorter-body #formation .content,
    #body-page .block-advice .sorter-body #formation .img{
        width: 100%;
    }
}

@media screen and (min-width: 1700px) {
    .container{
        width: 1140px;
    }
    #body-page .block-main .img,
    #body-page .block-audit .img{
        max-width: 750px;
    }
}