/*---------------------------------
GENERALITES
---------------------------------*/
*, ::after, ::before {
    box-sizing: border-box;
}

* {
    scroll-behavior: smooth;
    font-family: 'Roboto', sans-serif;
    max-width: 100vw;
}

::selection {
    color: white;
    background-color: #FF7F00;
}

.section_padding {
    padding: 1.5 3rem;
}

.section_margin {
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.margin_laterales {
    margin-left: 2.5rem;
    margin-right: 2.5rem;
}

.img-fluid {
    min-width: auto;
    min-height: 100%;
}

/* FORMAT TABLETTE */
@media (min-width:768px) {
    .section_padding {
        padding: 3rem 6rem;
    }
}

/* FORMAT ORDINATEUR */
@media (min-width:992px) {
    .section_margin {
        margin-top: 4rem;
        margin-bottom: 6rem;
        /* margin-right: auto;
        margin-left: auto; */
    }

    .margin_laterales {
        margin-left: 6rem;
        margin-right: 6rem;
    }
}


/*----- LIENS -----*/
a {
    color: #000000 !important;
}

a:hover {
    text-decoration: none !important;
    color: #000000;
}

.lien {
    font-weight: 300;
    font-size: 16px;
    line-height: 28px;
    text-align: center;
    text-transform: uppercase;
    color: #FF7F00 !important;
}

.lien:hover,
.lien:active,
.lien:visited,
.lien:focus
 {
    text-decoration: none;
    color: #FF7F00;
}

.main_section2_texte_lien,
.page_suivante > a {
    display: flex;
    align-items: center;
    color: #000000 !important;
}

.main_section2_texte_lien,
.page_suivante > a {
    transition: 0.5s ease;
	transform: translateX(-3%);
}

.main_section2_texte_lien:hover,
.page_suivante > a:hover {
	transform: translateX(3%);
}

/*----- BOUTONS -----*/
.bouton,
.filter-button {
    border-radius: 20px;
    padding: 0.5rem 1rem;
    border: solid 1px #FF7F00;
    background-color: transparent;
    font-weight: 300;
    font-size: 14px;
    line-height: 18px;
    text-align: center;
    text-transform: uppercase;
    color: #FF7F00;
    transition: ease-in 0.3s;
}

.filter-button {
    margin-right: 1.5rem;
    margin-bottom: 1.5rem;
    background: rgba(255, 127, 0, 0.1);
    border: 1px solid rgba(255, 127, 0, 0.1);
    border-radius: 10px;
    color: black;
}

.bouton:hover,
.filter-button:hover {
    background-color: #ff800092;
    color: #FFFFFF;
}

.filter-button:focus {
    background-color: #ff8000;
    color: white;
}

.filter-button:active {
    background-color: #ff8000;
    color: white;
}


/*----- TEXTES -----*/
.titre {
    display: flex;
}

.titre,
.titre > h1,
.main_projet_titre > .titre_mobile {
    font-family: 'Roboto', sans-serif;
    font-weight: 900;
    font-size: 34px;
    line-height: 42px;
    margin-top: 1rem;
}

.element_point {
    font-weight: 900;
    font-size: 40px;
    line-height: 42px;
    color: #FF7F00 !important;
}

h2 {
    font-weight: 500;
    font-size: 16px;
    line-height: 18px;
    color: #FF7F00;
}

.texte_light {
    font-weight: 300;
    margin-bottom: 2rem;
}

.texte_regular {
    font-weight: 400;
    line-height: 26px;
    margin-bottom: 2rem;
}

.size_texte {
    font-size: 16px;
    line-height: 30px;
}

/* FORMAT TABLETTE */
@media (min-width:768px) {
    .titre,
    .titre > h1 {
        font-weight: 900;
        font-size: 42px;
        line-height: 48px;
    }

    .element_point {
        font-weight: 900;
        font-size: 42px;
        line-height: 84px;
    }
}

/* FORMAT ORDINATEUR */
@media (min-width:992px) {
    h2 {
        font-size: 30px;
        line-height: 35px;
    }

    .titre,
    .titre > h1,
    .main_projet_titre > .titre_mobile {
        font-weight: 900;
        font-size: 72px;
        line-height: 84px;
    }

    .element_point {
        font-weight: 900;
        font-size: 72px;
        line-height: 84px;
    }

    .size_texte,
    .lien {
        font-size: 18px;
        line-height: 30px;
    }
}


/*----- BODY -----*/
body {
    background: rgba(255, 128, 0, 0.04) !important;
    color: #000000;
    font-style: normal;
    overflow-x: hidden;
    margin: auto !important;
    min-width: 400px;
    max-width: 100vw;
}


/*----- MAIN -----*/
main {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    margin: auto;
}





/*---------------------------------
NAVBAR
---------------------------------*/
.elem-graphique {
    display: none;
}

.navbar {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0;
}

.navbar-brand {
    margin-left: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.navbar-brand > a > img {
    width: 75px;
    height: auto;
    margin-right: 2.5rem;
}

.navbar-collapse {
    margin-left: 2.5rem;
}

.nav-link {
    color: black;
    text-transform: uppercase;
    font-weight: 300;
    letter-spacing: 0.05em;
    transition: 0.3s;
    font-size: 16px;
}

.nav-link:hover {
    font-weight: 600;
    transition: 0.3s;
}

.nav-item > .bouton {
    max-width: auto;
    text-align: center;
    color: rgb(255, 255, 255) !important;
    background-color: #FF7F00;
    padding: 0.5rem 1.5rem !important;
    transition: 0.5s;
}

.nav-item > .bouton:hover {
    background-color: #ffca94;
    font-weight: 300;
}

.active,
.active>.bouton {
    font-weight: 600;
}

.animated-icon2 {
    width: 30px;
    height: 20px;
    position: relative;
    margin: 0px;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
  }
  
.animated-icon2 span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
  }

  .animated-icon2 span {
    background: black;
    margin-right: 3rem;
  }

  .animated-icon2 span:nth-child(1) {
    top: 0px;
  }
  
  .animated-icon2 span:nth-child(2), .animated-icon2 span:nth-child(3) {
    top: 10px;
  }
  
  .animated-icon2 span:nth-child(4) {
    top: 20px;
  }
  
  .animated-icon2.open span:nth-child(1) {
    top: 11px;
    width: 0%;
    left: 50%;
  }
  
  .animated-icon2.open span:nth-child(2) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  
  .animated-icon2.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  
  .animated-icon2.open span:nth-child(4) {
    top: 11px;
    width: 0%;
    left: 50%;
  }

  /* FORMAT ORDINATEUR */
@media (min-width:992px) {
    .elem-graphique {
        display: block;
        right: -5rem;
        top: 0rem;
        position: absolute;
        z-index: -10;
        opacity: 75%;
        height: 95vh;
        /* width: auto; */
    }

    .navbar-brand {
        margin-left: 5rem;
    }

    .navbar-collapse {
        justify-content: flex-end;
        margin-right: 5rem;
    }

    .nav-item {
        padding-left: 1rem;
    }
}




/*---------------------------------
HEADER
---------------------------------*/






/*---------------------------------
FOOTER
---------------------------------*/
/* ----- FOOTER ----- */
footer {
    width: 100vw;
    background-color: white;
    padding-top: 3rem;
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    flex-direction: column;
}

.footer_texte {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
}

.footer_texte_CB {
    display: none;
}

.footer_texte_CB > img {
    width: 25px;
    height: 25px;
    margin-right: 1rem;
}

.footer_texte_CB > p,
.footer_texte_localisation > p {
    font-weight: 900;
    font-size: 20px;
    line-height: 23px;
}

.footer_texte_localisation > p {
    text-align: center;
}

.footer_contacts_droite {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer_contacts {
    display: flex;
    flex-direction: column;
    margin: auto;
    align-items: center;
}

.footer_contacts_droite > a > .bouton {
    margin-top: 1.5rem;
}

.footer_contacts_droite_reseaux {
    justify-content: center;
}

.footer_legal {
    font-weight: 400;
    font-size: 10px;
    line-height: 15px;
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 0;
}

/* FORMAT ORDINATEUR */
@media (min-width:992px) {
    footer {
        flex-direction: row;
    }

    .footer_texte {
        align-items: center;
        padding: 0;
    }

    .footer_texte_CB {
        display: flex;
        align-items: flex-start;
    }

    .footer_texte_CB > p,
    .footer_texte_localisation > p {
        font-size: 40px;
        line-height: 47px;
    }

    .footer_texte_CB > img {
        width: 50px;
        height: 50px;
    }

    .footer_texte_localisation > p {
        text-align: right;
    }

    .footer_contacts {
        flex-direction: row;
        justify-content: space-around;
        width: 100%;
    }

    .footer_contacts_gauche {
        align-items: start;
        width: 50%;
        padding-left: 1rem;
    }

    .footer_contacts_droite {
        align-items: end;
        width: 50%;
    }

    .footer_contacts_droite > a > .bouton {
        justify-content: flex-end;
    }
    
    .footer_contacts_droite_reseaux {
        justify-content: end;
    }

    .footer_legal {
        font-size: 15px;
        line-height: 18px;
        margin-top: 2rem;
        flex-direction: row;
        justify-content: space-around;
    }
}





/*---------------------------------
PAGE ACCUEIL --> index.html
---------------------------------*/
/* ----- HEADER ----- */
.header_accueil {
    min-height: 100vh;
    max-height: 100vh;
    max-width: 100vw;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    margin-right: auto;
    margin-left: auto;
    margin-top: -3rem;
}

hr {
    width: 70px;
    height: 0px !important;
    border: 2px solid #FF7F00 !important;
    margin-left: 0;
}

.header_section1 {
    display: flex;
    flex-direction: column;
}

.header_section1_presentation {
    margin-bottom: 1.5rem;
}

.header_section1_presentation_ligne {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.header_section1_presentation_ligne > p {
    font-weight: 300;
    font-size: 14px;
    line-height: 14px;
    margin-bottom: -0.5rem;
}

.header_section1_contact_mail,
.header_section1_contact_phone {
    margin-bottom: 1rem;
    margin-top: 0.75rem;
}

.header_section1_contact_mail,
.header_section1_contact_phone,
.footer_contacts_gauche_mail,
.footer_contacts_gauche_phone {
    display: flex;
    align-items: center;
    margin-top: 1.5rem;
}

.header_section1_contact_mail > img,
.header_section1_contact_phone > img,
.footer_contacts_gauche_mail > img,
.footer_contacts_gauche_phone > img {
    width: 20px;
    height: 20px;
    margin-right: 1rem;
}

.header_section1_contact_mail > a,
.header_section1_contact_phone > a,
.footer_contacts_gauche_mail > a,
.footer_contacts_gauche_phone > a {
    font-weight: 400;
    font-size: 14px;
    line-height: 14px;
}

.header_section1_reseaux,
.footer_contacts_droite_reseaux {
    display: flex;
    align-items: center;
}

.header_section1_reseaux > a > img,
.footer_contacts_droite_reseaux > a > img {
    width: 30px;
    height: 30px;
    margin-right: 1rem;
    margin-top: 2rem;
}

.header_section2 {
    display: none;
}

/* FORMAT TABLETTE */
@media (min-width:768px) {
    .header_section2 {
        width: 100%;
        height: 100%;
        display: block;
    }

    .header_section2_image {
        border-radius: 100%;
        background-image: url(/img/construction.jpg);
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        width: 100%;
        height: 100%;
    }

    .header_section1_presentation_ligne > p {
        font-size: 18px;
        line-height: 22px;
        margin-bottom: -0.5rem;
    }

    .header_section1_contact_mail > a,
    .header_section1_contact_phone > a {
        font-size: 18px;
        line-height: 18px;
    }

    .header_section2_image {
        width: 300px;
        height: 300px;
    }
}

/* FORMAT ORDINATEUR */
@media (min-width:992px) {
    .elem-graphique {
        right: -5rem;
        top: 0rem;
    }

    .header_section1_presentation_ligne > p {
        font-size: 24px;
        line-height: 28px;
        margin-bottom: -0.5rem;
    }

    .header_section1_contact_mail > a,
    .header_section1_contact_phone > a {
    font-size: 20px;
    line-height: 20px;
    }

    .header_section1_reseaux > a > img {
        width: 35px;
        height: 35px;
    }

    .header_section2_image {
        width: 500px;
        height: 500px;
    }
}


/* ----- MAIN / SECTION 1 ----- */
main {
    max-width: 100vw;
    margin-left: auto;
    margin-right: auto;
}

.main_section1_accroche {
    font-weight: 300;
    font-size: 16px;
    line-height: 14px;
    text-transform: uppercase;
    color: #FF7F00;
}

.main_section1_texte {
    margin-top: 3rem;
    margin-right: 0;
    margin-left: 0;
}

.main_section1_gauche {
    margin-bottom: 2rem;
    margin-right: 0;
    margin-left: 0;
    width: 100%;
}

.main_section1_droite {
    margin-right: 0;
    margin-left: 0;
    width: 100%;
}


/* ----- MAIN / SECTION 2 ----- */
.main_section2_texte,
.main_section3_texte {
    margin-top: 2rem;
    margin-bottom: 3rem;
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
}

.main_section2_texte > p,
.main_section3_texte > p {
    width: 100%;
}

.main_section2_services {
    display: flex;
    flex-direction: column;
    margin-top: 2rem;
}

.main_section2_services_bloc {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    border-bottom: solid 1px #FF7F00;
    margin: auto;
}

.main_section2_services_bloc > img {
    margin-top: 2rem; 
}

.main_section2_services_bloc_texte {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.main_section2_services_bloc_texte > h3 {
    font-weight: 600;
    font-size: 22px;
    line-height: 24px;
    text-transform: uppercase;
}

.main_section2_services_bloc > img {
    width: 45px;
    height: 45px;
    margin-bottom: 1rem;
}


/* ----- MAIN / SECTION 3 ----- */
.main_section3_projets {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.main_section3_projets_bloc {
    padding-bottom: 5rem;
    margin-left: auto;
    margin-right: auto;
    /* max-width: 350px; */
}

.main_section3_projets_bloc_img {
    border-radius: 15px;
    max-width: 300px;
    min-width: 300px;
    max-height: 240px;
    overflow: hidden;
    transition: 0.5s;
    background-color: white;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main_section3_projets_bloc_img:hover {
    opacity: 0.85;
}

.main_section3_projets_bloc_categorie {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 1rem;
    justify-content: flex-start;
    max-width: 95%;
    height: auto;
}

.main_section3_projets_bloc_categorie_vignette {
    display: flex;
    align-items: center;
    border-radius: 15px;
    background-color: rgba(255, 128, 0, 0.2);
    color: #FF7F00;
    padding: 0.3rem 0.6rem;
    margin-bottom: 1rem;
    margin-right: 1rem;
}

.main_section3_projets_bloc_categorie_vignette_point {
    background-color: #FF7F00;
    width: 10px;
    height: 10px;
    border-radius: 100px;
    margin-right: 0.5rem;
}

.main_section3_projets_bloc_categorie_vignette_item {
    font-weight: 900;
    font-size: 12px;
    line-height: 12px;
    letter-spacing: 0.05rem;
    text-transform: uppercase;
}


/*ITEM GRAPHISME*/
.item_graphisme_point {
    background-color: #C04A82;
}

.item_graphisme {
    background-color: rgba(192, 74, 130, 0.25);
    color:#C04A82;
}


/*ITEM DEVELOPPEMENT*/
.item_developpement_point {
    background-color: #85cc64;
}

.item_developpement {
    background-color: rgba(173, 231, 146, 0.25);
    color:#85cc64;
}


/*ITEM AUDIOVISUEL*/
.item_audiovisuel_point {
    background-color: #2C2891;
}

.item_audiovisuel {
    background-color: rgba(14,40,145, 0.25);
    color:#2C2891;
}


/*ITEM PHOTOGRAPHIE*/
.item_photo_point {
    background-color: #c0c4ff;
}

.item_photo {
    background-color: #c0c4ff34;
    color: #c0c4ff;
}

.main_section3_projets_bloc_categorie_vignette_projetNom {
    font-weight: 600;
    font-size: 22px;
    line-height: 24px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

/* FORMAT TABLETTE */
@media (min-width:768px) {
    /* ----- MAIN / SECTION 1 ----- */
    .main_section1_accroche {
        font-size: 18px;
        line-height: 22px;
    }

    .main_section3_projets_bloc_img {
        max-width: 360px;
        min-width: 360px;
    }
}

/* FORMAT ORDINATEUR */
@media (min-width:992px) {
    /* ----- MAIN / SECTION 1 ----- */
    .main_section1_accroche {
        font-size: 24px;
        line-height: 28px;
    }

    .main_section1_texte {
        display: flex;
        justify-content: space-between;
    }

    .main_section1_gauche {
        width: 30%;
    }
    
    .main_section1_droite {
        width: 60%;
    }

    /* ----- MAIN / SECTION 2 ----- */
    .main_section2_texte,
    .main_section3_texte {
        align-items: flex-start;
        justify-content: space-between;
    }

    .main_section2_texte > p,
    .main_section3_texte > p {
        width: 70%;
    }

    .main_section2_services {
        flex-direction: row;
    }

    .main_section2_services_bloc {
        flex-direction: row;
        align-items: flex-start;
        border-bottom: 0;
        border-right: solid 1px #FF7F00;
    }

    .main_section2_services_bloc_texte {
        align-items: flex-start;
        margin-left: 2rem;
    }

    .main_section2_services_bloc > img {
        margin-top: 0;
    }

    /* ----- MAIN / SECTION 3 ----- */
    .main_section3_projets_bloc_categorie_vignette_projetNom {
        font-size: 24px;
        line-height: 30px;
    }
}





/*---------------------------------
PAGE A PROPOS
---------------------------------*/
/* ----- PARTIE PARCOURS ----- */
.section_parcours_frise {
    display: flex;
    flex-direction: column;
    margin: auto;
    align-items: flex-start;
}

.section_parcours_frise_event {
    display: flex;
    flex-direction: column;
    margin-left: auto;
    margin-right: auto;
    margin-top: 1.5rem;
}

.section_parcours_frise_event_date,
.section_parcours_frise_event_description {
    display: flex;
    flex-direction: column;
}

.section_parcours_frise_event_date {
    padding-top: 1rem;
    margin-right: 2rem;
}

.align-end {
    text-align: end;
    border-right: solid 1px #FF7F00;
}

.align-start {
    text-align: start;
    border-left: solid 1px #FF7F00;
}

.section_parcours_frise_event_date_annee,
.section_parcours_frise_event_description_travail {
    font-weight: 500;
    font-size: 22px;
    line-height: 30px;
}

.section_parcours_frise_event_description {
    padding: 1rem 2rem;
    margin-bottom: 1.5rem;
    transition: 0.5s ease;
}

.section_parcours_frise_event_description:hover {
    background-color: #ff800001;
    border-radius: 10px;
    box-shadow: #0000002a 1px 5px 8px;
}

.section_parcours_frise_event_description_travail {
    color: #FF7F00;
}

.section_parcours_frise_event_societe {
    font-weight: 300;
    font-size: 16px;
    line-height: 22px;
}

/* FORMAT ORDINATEUR */
@media (min-width:992px) {
    .section_parcours_frise_event {
        flex-direction: row;
        min-width: 100%;
        align-items: flex-start;
    }

    .align-start {
        text-align: end;
        border-left: 0;
        border-right: solid 1px #FF7F00;
    }

    .section_parcours_frise_event_date_annee,
    .section_parcours_frise_event_description_travail {
        font-weight: 500;
        font-size: 26px;
        line-height: 35px;
    }

    .section_parcours_frise_event_societe {
        font-weight: 300;
        font-size: 18px;
        line-height: 26px;
    }
}



/* ----- PARTIE COMPETENCES ----- */
/*Animation carousel*/
@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-250px * 7));
    }
}

.slider {
    padding-top: 4rem;
    height: 10rem;
    margin: auto;
    overflow: hidden;
    position: relative;
}

.slider::before,
.slider::after {
    content: "";
    height: 10rem;
    position: absolute;
    width: 100%;
    z-index: 2;
}

.slider::after {
    right: 0;
    top: 0;
    transform: rotateZ(180deg);
}

.slider::before {
    left: 0;
    top: 0;
}

.slider .slide-track {
    animation: scroll 35s linear infinite;
    display: flex;
    width: calc(250px * 14);
}

.img_carousel {
    margin-right: 5rem;
    height: 5rem;
    width: auto;
}





/*---------------------------------
PAGE PORTFOLIO
---------------------------------*/
.section_projets {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;   
    margin: auto
}

.section_projets_projets {
    display: flex;
    flex-wrap: wrap;
}

.page_suivante {
    display: flex;
    justify-content: flex-end;
    padding-bottom: 5rem;
    margin-top: 3.5rem;
}

.fleche_ordinateur {
    display: none;
}

/* FORMAT ORDINATEUR */
@media (min-width:992px) {
    .fleche_mobile {
        display: none;
    }
    .fleche_ordinateur {
        display: block;
    }
}





/*---------------------------------
PAGE SERVICES DE REDACTION
---------------------------------*/
.services_entete {
    margin-left: 3rem;
    margin-right: 3rem;
}

/* FORMAT ORDINATEUR */
@media (min-width:992px) {
    .services_entete {
        margin-left: 5rem;
        margin-right: 5rem;
    }
}




/*---------------------------------
PAGE TEMPLATE-PROJET
---------------------------------*/
.main_projet_etiquettes {
    display: flex;
    flex-wrap: wrap;
}

.main_projet_etiquettes_nom {
    border-radius: 20px;
    padding: 0.5rem 1rem;
    border: solid 1px #FF7F00;
    font-weight: 300;
    font-size: 15px;
    line-height: 18px;
    text-align: center;
    text-transform: uppercase;
    color: #FF7F00;
    transition: ease-in 0.3s;
    margin-right: 1.5rem;
    margin-bottom: 1.5rem;
    background: rgba(255, 127, 0, 0.1);
    border: 1px solid rgba(255, 127, 0, 0.1);
    border-radius: 10px;
    color: black;
}

.main_projet_image1 {
    border-radius: 15px;
    min-height: 30vh;
    max-height: 30vh;
    width: 80vw;
    overflow: hidden;
    background-color: #FFFFFF;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main_projet_titre {
    display: flex;
    flex-direction: column;
}

.main_projet_titre > .titre_statique {
    margin-top: 3rem;
    text-align: left;
}

.main_projet_titre > .titre_mobile {
    text-align: left;
    margin-top: 1rem;
}

.main_projet_description_contenu_gauche > h3 {
    font-size: 18px;
    line-height: 22px;
    font-weight: 400;
    margin-bottom: 2rem;
    color: #bb5d00;
}

.main_projet_description_contenu-droite_sous-titre {
    color: #bb5d00;
    font-weight: 500;
    font-size: 18px;
    margin-bottom: 0.75rem;
    margin-top: 3rem;
}

.main_projet_description {
    margin-top: 3rem;
    padding-bottom: 5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.main_projet_description_contenu {
    display: flex;
    flex-direction: column;
    align-items: start;
    margin-bottom: 2rem;
    margin-top: 3rem;
    padding: 0;
}

.main_projet_annexe_image {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: space-between;
}

/* FORMAT TABLETTE */
@media (min-width:768px) {
    .main_projet_image1 {
        border-radius: 15px;
        min-height: 45vh;
        max-height: 45vh;
        width: 80vw;
        overflow: hidden;
        background-color: #FFFFFF;
        padding: 0;
    }

    .main_projet_annexe_image {
        flex-direction: row;
    }
}

/* FORMAT ORDINATEUR */
@media (min-width:992px) {
    .main_projet_image1 {
        border-radius: 15px;
        min-height: 60vh;
        max-height: 60vh;
        width: 80vw;
        overflow: hidden;
        background-color: #FFFFFF;
        padding: 0;
    }

    .main_projet_titre > .titre_statique {
        margin-top: 5rem;
        text-align: left;
    }
    
    .main_projet_titre > .titre_mobile {
        text-align: left;
        margin-top: 1.5rem;
    }

    .main_projet_description {
        align-items: flex-start;
    }

    .main_projet_description_contenu {
        flex-direction: row;
        margin-bottom: 3.5rem;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .main_projet_description_contenu_gauche {
        width: 35%;
    }

    .main_projet_description_contenu-droite {
        width: 55%;
    }
}