* {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

body {
    background-color: #021929; 
    font-family: "Inter", sans-serif;
    width: 100%;
}

.boxContact {
    position: fixed;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    width: 35px;
    height: 103px;
    right: 97px;
    top: 488px;
}

.imgContact {
    width: 26px;
    height: 24px;
    fill: #C5C0C6;
    cursor: pointer;
    transition: fill 0.2s ease-in-out;
    &:hover {
        fill: #00E5AE;
    }
}

#scrollToTop {
    display: none;
    position: fixed;
    top: 857px;
    right: 100px;
    cursor: pointer;
}

#scrollToTop {
    display: block;
    fill: #C5C0C6;
    width: 29px;
    height: 29px;
    transition: fill 0.2s ease-in-out;
    &:hover {
        fill: #00E5AE;
    }
}

.logo {
    position: absolute;
    top: 30px;
    left: 270px;
}

.burgerMenu {
    display: none;
}

.burgerMenuBtn {
    display: none;
}

.close-btn {
    cursor: pointer;
    position: absolute;
    top: 20px;
    right: 20px;
    width: 30px;
    height: 30px;
    background-color: transparent;
    border: none;
    color: #fff;
    font-size: 24px;
}

.close-btn:focus {
    outline: none;
}

nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    height: 105px;
    width: 100%;
}

.menu {
    margin-left: 1074px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 35px;
}

.boxMenu {
    position: relative;
    list-style: none;
    font-size: 14px;
    height: 20px;
    letter-spacing: 0.02em;
}

.navLink {
    position: relative;
    color: #F3EBEB;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
    &:hover{
        color: #00E5AE;
    }
}

.navLink::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: 0;
    left: 0;
    margin-bottom: -8px;
    background-color: #00E5AE; 
    transform: scaleX(0); 
    transform-origin: bottom right;
    transition: transform 0.3s ease; 
}

.navLink:hover::before {
    transform: scaleX(1);
    transform-origin: bottom left;
    margin-bottom: -8px;
}

.btnPrimary {
    padding: 13px 25px;
    color: #00E5AE;
    background-color: #021929;
    border: 1px solid #00E5AE;
    border-radius: 6px;
    font-size: 14px;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    &:hover {
        border: 1px solid #021929;
        transform: scale(0.96);
        filter: brightness(1.1) contrast(1.2);
        color: #021929;
        background-color: #00E5AE;
    }
}

.btnPrimary:hover .btnLink {
    color: #021929;
}

.btnLink {
    text-decoration: none;
    color: #00E5AE;
    transition: color 0.2s ease-in-out;
}

.mainContainer {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-left: 430px;
}

.presentationContainer {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 35px;
    width: 668px;
    height: 384px;
    margin-top: 235px;
}

.presTitle {
    color: #F3EBEB;
    font-size: 55px;
    font-weight: bold;
    letter-spacing: 0.02em;
    opacity: 0.8;
}

.presParagraph {
    color: #00E5AE;
    font-size: 16px;
    letter-spacing: 0.04em;
    line-height: 1.4;
    width: 605px;
    height: 133px;
}

.aboutContainer {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 1060px;
    height: auto;
    padding: 50px;
    margin-top: 294px;
    margin-bottom: 52px;
}

.contentAbout {
    display: flex;
    flex-direction: column;
    width: 462px;
    height: fit-content;
}

.titleBox {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 43px;
}

.aboutTitle {
    font-size: 25px;
    color: #00E5AE;
    letter-spacing: 0.05em;
}

.lineArrow {
    margin-top: 12px;
    width: 295px;
}

.boxParagraph {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 24px;
    height: 468px;
    color: #F3EBEB;
    opacity: 0.8;
    font-size: 16px;
    letter-spacing: 0.04em;
}

.skillsList {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.skilsBox {
    display: flex;
    flex-direction: row;
    align-items: center;
    height: 15px;
}

.skillsSentence {
    color: #F3EBEB;
    opacity: 0.8;
    font-size: 14px;
    letter-spacing: 0.04em;
    margin-left: 11px;
}

.profilePhoto {
    height: 358px;
    width: 524px;
    background-color: #00E5AE;
    margin-top: 100px;
}

.experienceContainer {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
    padding-top: 130px;
}

.titleBoxExp {
    display: flex;
    flex-direction: row-reverse;
    justify-content: start;
    margin-bottom: 46px;
}

.lineArrowReverse {
    margin-top: 12px;
    width: 260px;
}

.expTitle {
    font-size: 25px;
    color: #00E5AE;
    letter-spacing: 0.05em;
    margin-left: 25px;
}

.boxExperience {
    display: flex;
    flex-direction: row;
    justify-content: start;
    width: 918px;
    height: min-content;
}

.groupListExp {
    display: flex;
    flex-direction: column;
    list-style: none;
    width: 166px;
    height: 179px;
    color: #F3EBEB;
    font-size: 14px;
    opacity: 0.8;
    margin-right: 32px;
}

.listExp {
    position: relative; /* Pour positionner le pseudo-élément */
    text-align: start;
    align-content: center;
    width: 100%;
    text-indent: 20px;
    height: 45px;
    border-left: 2px solid #00e5b049 ;
    cursor: pointer;
    &:hover {
        color: #00E5AE;
        border-left: 3px solid #00E5AE;
    }
}

.listExp::before {
    content: '';
    position: absolute;
    left: -3px; 
    top: 0; 
    height: 100%; 
    width: 3px; 
    background-color: transparent; 
    transition: box-shadow 0.3s ease-in-out; 
}

.listExp:hover::before {
    box-shadow: 0px 10px 10px #00E5AE; /* Ajout de l'ombre sur le pseudo-élément */
}

.listExp.active {
    color: #00E5AE;
    border-left: 3px solid #00E5AE ;
}

.boxTitleTaskExp {
    width: 100%;
    height: auto;
    margin-bottom: 16px;
}

.TitleTaskExp {
    color: #F3EBEB;
    opacity: 0.8;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.periodTaskExp {
    color: #F3EBEB;
    opacity: 0.8;
    font-size: 13px;
    letter-spacing: 0.05em;
}

.taskExpContainer {
    display: flex;
    flex-direction: column;
    width: 719px;
    height: min-content;
    align-items: flex-start;
}

.expInfos {
    display: flex;
    flex-direction: column;
    color: #F3EBEB;
    opacity: 0.8;
    font-size: 16px;
    gap: 16px;
}

.TaskExp {
    display: flex;
    flex-direction: row;
    align-items: start;
    width: 100%;
    position: relative;
}

.imgArrowTaskExp {
    position: absolute;
    transform: translate(0px, -7px);
}

.taskExpPara {
    margin-left: 42px;
    width: 637px;
}

.projectContainer {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 1153px;
    height: auto;
    margin-top: 171px;
    margin-bottom: 104px;
    padding-top: 60px;
}

.titleProjectBox {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    width: 100%;
    margin-bottom: 43px;
}

.projectTitlePrimary {
    font-size: 25px;
    color: #00E5AE;
    letter-spacing: 0.05em;
    height: 26px;
}

.lineArrowP {
    margin-top: 12px;
    margin-left: 25px;
    width: 326px;
}

.projectPrimary {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 1152px;
    height: 388px;
    align-items: center;
    margin-bottom: 46px;
}

.projectPhoto {
    width: 430px;
    height: max-content;
}

.projectContent {
    display: flex;
    flex-direction: column;
    width: 689px;
    align-items: flex-start;
}

.projectTitle {
    color: #F3EBEB;
    opacity: 0.8;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 17px;
}

.projectInfos {
    display: flex;
    flex-direction: column;
    color: #F3EBEB;
    opacity: 0.8;
    font-size: 16px;
    margin-bottom: 28px;
    gap: 16px;
}

.Tasks {
    width: 100%;
    margin-left: 5px;
}

.taskSentence {
    align-content: center;
}

.imgArrowTask {
    overflow: hidden;
    object-fit: none;
    height: 17px;
    width: 24px;
    margin-right: 15px;
}

.taskPara {
    margin-left: 39px;
    text-align: start;
}

.MyProjectlink {
    text-decoration: none;
    color: #00E5AE;
    font-size: 14px;
}

.otherProjectContainer {
    display: flex;
    flex-direction: column;
    width: 910px;
    height: auto;
}

.otherTitle {
    font-size: 25px;
    font-weight: bold;
    color: #F3EBEB;
    opacity: 0.8;
    text-align: center;
    margin-bottom: 46px;
}

.projectPreviewTop {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 56px;
}

.projectPreviewBottom {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.contact {
    width: 989px;
    height: 119px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.contacttitle {
    width: 989px;
}

.h4contact {
    font-size: 23px;
    letter-spacing: 0.03em;
    color: #F3EBEB;
    opacity: 0.8;
    text-align: center;
}

.boxContactMobile {
    display: none;
}

.copyright {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-end;
    font-size: 14px;
    color: #F3EBEB;
    opacity: 0.8;
    letter-spacing: 0.04em;
    width: 989px;
    height: 228px;
}

.copyrightSentence {
    margin-bottom: 44px;
}

/*MyProject Css*/

.angencyPrototypeContainer {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 960px;
    height: auto;
    margin-top: 50px;
    margin-bottom: 30px;
}

.MyProjectTitle {
    font-size: 25px;
    color: #00E5AE;
    letter-spacing: 0.05em;
    margin-bottom: 63px;
    height: 26px;
}

.MyProjectContainer {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    gap: 30px;
}

.leftBarContainer {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 243px;
    height: auto;
}

.groupListProject {
    display: flex;
    flex-direction: column;
    list-style: none;
    width: 200px;
    height: auto;
    color: #F3EBEB;
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 50px;
}

.listProject {
    position: relative; /* Pour positionner le pseudo-élément */
    text-align: start;
    align-content: center;
    width: 100%;
    text-indent: 20px;
    height: 45px;
    border-left: 2px solid #00e5b049 ;
    cursor: pointer;
    &:hover {
        color: #00E5AE;
        border-left: 3px solid #00E5AE;
    }
}

.listProject::before {
    content: '';
    position: absolute;
    left: -3px; 
    top: 0; 
    height: 100%; 
    width: 3px; 
    background-color: transparent; 
    transition: box-shadow 0.4s ease-in-out; 
}

.listProject:hover::before {
    box-shadow: 0px 10px 10px #00E5AE; /* Ajout de l'ombre sur le pseudo-élément */
}

.listProject.active {
    color: #00E5AE;
    border-left: 3px solid #00E5AE;
}

.colorCodeBox {
    display: flex;
    flex-wrap: wrap;
    column-gap: 23px;
    row-gap: 17px;
    width: 195px;
    height: 191px;
    margin-bottom: 35px;
}

.imgColor {
    width: 86px;
    height: 86px;
}

.fontBox1 {
    display: flex;
    flex-direction: column;
    width: 230px;
    font-family: "DM Sans", sans-serif;
    font-size: 12px;
    color: #F3EBEB;
    opacity: 0.8;
    gap: 3px;
    margin-bottom: 15px;
}

.fontBox2 {
    display: flex;
    flex-direction: column;
    width: 230px;
    font-family: "Inter", sans-serif;
    font-size: 12px;
    color: #F3EBEB;
    opacity: 0.8;
    gap: 3px;
    margin-bottom: 15px;
}

.fontBox3 {
    display: flex;
    flex-direction: column;
    width: 230px;
    height: auto;
    font-family: "Lato", sans-serif;
    font-size: 12px;
    color: #F3EBEB;
    opacity: 0.8;
    gap: 3px;
}

.fontTitle {
    font-size: 24px;
    letter-spacing: 0.05em;
    margin-bottom: 5px;
}

.p1 {
    letter-spacing: 1.5px;
}

.imgProject {
    width: 687px;
    height: auto;
    cursor: pointer;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
}

.modal-content {
    display: block;
    margin: auto;
    width: 60%;
    height: fit-content;
}

.close {
    color: #fff;
    position: absolute;
    top: 10px;
    right: 25px;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
}

#imgDevis {
    height: 714px;
}

#imgTravelPayement {
    height: 782px;
}

#imgTravelConfirmation {
    height: 731px;
}

/* Media Querry */

@media screen and (max-width: 500px) {
    body {
        font-size: 14px;
    }

    .logo {
        height: 50px;
        width: 50px;
        top: 81px;
        left: 44px;
    }

    nav {
        display: none;
    }

    .mainContainer {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-left: 0;
    }

    .presentationContainer {
        align-items: center;
        width: auto;
        height: auto;
        margin-top: 264px;
    }

    .presTitle {
        display: flex;
        flex-direction: column;
        font-size: 28px;
    }
    
    .presParagraph {
        width: 306px;
        height: auto;
    }

    .aboutContainer {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 305px;
        height: auto;
        padding: 0;
        margin-top: 268px;
        margin-bottom: 52px;
    }
    
    .contentAbout {
        width: 100%;
        height: auto;
    }
    
    .titleBox {
        justify-content: flex-start;
        margin-bottom: 37px;
    }
    
    .aboutTitle {
        font-size: 22px;
        margin-right: 22px;
    }
    
    .lineArrow {
        margin-top: 12px;
        width: 141px;
    }
    
    .boxParagraph {
        gap: 26px;
        height: auto;
    }
    
    .skillsList {
        display: flex;
        flex-direction: column;
        margin-top: 33px;
        gap: 15px;
    }
    
    .profilePhoto {
        height: 300px;
        width: 300px;
        margin-top: 100px;
    }

    .experienceContainer {
        display: flex;
        flex-direction: column;
        width: 310px;
        height: auto;
        padding-top: 130px;
    }
    
    .titleBoxExp {
        display: flex;
        flex-direction: row-reverse;
        justify-content: start;
        margin-bottom: 37px;
    }
    
    .lineArrowReverse {
        width: 109px;
    }
    
    .expTitle {
        font-size: 22px;
        margin-left: 21px;
    }
    
    .boxExperience {
        display: flex;
        flex-direction: column;
        justify-content: start;
        width: auto;
        height: auto;
    }
    
    .groupListExp {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        white-space: nowrap;
        flex-direction: row;
        overflow: hidden;
        list-style: none;
        width: 330px;
        height: 45px;
        color: #F3EBEB;
        font-size: 14px;
        opacity: 0.8;
        margin-right: 32px;
        margin-bottom: 33px;
        scrollbar-width: none;
    }

    .groupListExp::-webkit-scrollbar {
        display: none; 
    }
    
    .listExp {
        position: relative;
        text-align: center;
        text-indent: 20;
        align-content: center;
        width: 164px;
        height: 40px;
        border-bottom: 2px solid #F3EBEB ;
        border-left: none;
        cursor: pointer;
        &:hover {
            color: #00E5AE;
            border-bottom: 3px solid #00E5AE;
        }
        &:focus {
            border-left: none;
        }
    }
    
    .listExp::before {
        content: '';
        position: absolute;
        left: 0; 
        top: 40px;
        height: 3px; 
        width: 100%; 
        background-color: transparent; 
        transition: box-shadow 0.3s ease-in-out; 
    }
    
    .listExp:hover::before {
        box-shadow: 0px 0px 4px #00E5AE; /* Ajout de l'ombre sur le pseudo-élément */
    }
    
    .listExp.active {
        color: #00E5AE;
        border-left: none;
        border-bottom: 3px solid #00E5AE ;
    }
    
    .boxTitleTaskExp {
        width: auto;
        height: auto;
        margin-bottom: 16px;
    }
    
    .taskExpContainer {
        display: flex;
        flex-direction: column;
        width: auto;
        height: auto;
        align-items: flex-start;
    }
    
    .expInfos {
        display: flex;
        flex-direction: column;
        color: #F3EBEB;
        opacity: 0.8;
        font-size: 16px;
        gap: 16px;
    }
    
    .TaskExp {
        display: flex;
        flex-direction: row;
        align-items: start;
        width: auto;
        position: relative;
    }
    
    .imgArrowTaskExp {
        position: absolute;
        transform: translate(0px, -7px);
    }
    
    .taskExpPara {
        margin-left: 42px;
        width: auto;
    }

    .projectContainer {
        width: 310px;
        height: auto;
    }
    
    .titleProjectBox {
        width: auto;
        margin-bottom: 43px;
    }
    
    .lineArrowP {
        margin-left: 22px;
        width: 169px;
    }
    
    .projectPrimary {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: auto;
        height: auto;
        align-items: center;
        margin-bottom: 46px;
    }
    
    .projectPhoto {
        width: 302px;
        margin-bottom: 28px;
    }
    
    .projectContent {
        display: flex;
        flex-direction: column;
        width: auto;
        align-items: center;
    }
    
    .projectTitle {
        color: #F3EBEB;
        opacity: 0.8;
        font-size: 20px;
        font-weight: 600;
        letter-spacing: 0.05em;
        margin-bottom: 14px;
    }
    
    .projectInfos {
        display: flex;
        flex-direction: column;
        color: #F3EBEB;
        opacity: 0.8;
        font-size: 16px;
        margin-bottom: 28px;
        gap: 16px;
    }
    
    .Tasks {
        position: relative;
        width: auto;
        margin-left: 5px;
    }
    
    .taskSentence {
        margin-left: 39px;
        width: 260px;
        text-align: start;
    }
    
    .imgArrowTask {
        position: absolute;
        left: 1px;
        overflow: hidden;
        object-fit: none;
        height: 17px;
        width: 24px;
    }
    
    .taskPara {
        margin-left: 39px;
        text-align: start;
    }
    
    .MyProjectlink {
        text-decoration: none;
        color: #00E5AE;
        font-size: 14px;
    }
    
    .otherProjectContainer {
        width: 310px;
        height: auto;
    }
    
    .otherTitle {
        font-size: 22px;
        font-weight: bold;
        color: #F3EBEB;
        opacity: 0.8;
        text-align: center;
        margin-bottom: 46px;
    }
    
    .projectPreviewTop {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        width: auto;
        gap: 25px;
        margin-bottom: 25px;
    }
    
    .projectPreviewBottom {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        gap: 25px;
        width: auto;
    }

    .photoGaming {
        width: 310px;
    }
    
    .contact {
        width: 320px;
        height: auto;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
    }
    
    .contacttitle {
        width: auto;
        margin-bottom: 38px;
    }
    
    .h4contact {
        font-size: 19px;
    }
    
    .copyright {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: flex-end;
        font-size: 12px;
        width: auto;
        height: 228px;
    }
    
    .copyrightSentence {
        margin-bottom: 25px;
    }

    .boxContact {
        display: none;
    }

    .boxContactMobile {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 40px;
        width: 103px;
        height: 35px;
        margin-top: 46px;
    }
    
    .imgContact {
        width: 26px;
        height: 24px;
        fill: #C5C0C6;
        cursor: pointer;
        transition: fill 0.2s ease-in-out;
        &:hover {
            fill: #00E5AE;
        }
    }
    
    #scrollToTop {
        display: none;
    }
    
    #scrollToTop {
        display: none;
        width: 0;
        height: 0;
    }

    .burgerMenu {
    display: flex;
    position: fixed;
    z-index: 1;
    top: 0;
    right: -258px; /* Initiallement caché */
    width: 258px;
    height: 100%;
    background-color: #032035;
    transition: right 0.3s ease-in-out; /* Transition pour l'effet de glissement */
}

.burgerMenu.open {
    right: 0;
    z-index: 1;
}

.burgerMenuBtn {
    display: flex;
    cursor: pointer;
    width: 30px;
    height: 30px;
    position: absolute;
    top: 84px;
    right: 43px;
}

.burgerMenuList {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 60px;
    align-items: center;
    list-style-type: none;
    margin-top: 230px;
    width: 100%;
    height: auto;
}

.navBurger {
    color: #F3EBEB;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
    &:hover{
        color: #00E5AE;
    }
}

.btnBurger {
    padding: 13px 25px;
    color: #00E5AE;
    background-color: #032035;
    border: 1px solid #00E5AE;
    border-radius: 6px;
    font-size: 14px;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    &:hover {
        border: 1px solid #021929;
        transform: scale(0.96);
        filter: brightness(1.1) contrast(1.2);
        color: #021929;
        background-color: #00E5AE;
    }
}

.btnBurger:hover .burgerLink {
    color: #021929;
}

.burgerLink {
    text-decoration: none;
    color: #00E5AE;
    transition: color 0.2s ease-in-out;
}

.closeBtn {
    cursor: pointer;
    position: absolute;
    top: 76px;
    right: 39px;
    width: 43px;
    height: 43px;
}

.closeBtn:focus {
    outline: none;
}

/* MediaQuerry My Project CSS */

.angencyPrototypeContainer {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 302px;
    height: auto;
    margin-top: 261px;
    margin-bottom: 235px;
}

.MyProjectTitle {
    font-size: 22px;
    color: #00E5AE;
    letter-spacing: 0.05em;
    margin-bottom: 63px;
    width: 338px;
    height: 26px;
}

.MyProjectContainer {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 33px;
}

.leftBarContainer {
    display: flex;
    flex-direction: row;
    width: 302px;
    height: 45px;
}

.groupListProject {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    white-space: nowrap;
    flex-direction: row;
    overflow: hidden;
    list-style: none;
    width: 302px;
    height: 45px;
    color: #F3EBEB;
    font-size: 12px;
    opacity: 0.8;
    margin-bottom: 33px;
    scrollbar-width: none;
}

.groupListProject::-webkit-scrollbar {
    display: none; 
}

.listProject {
    position: relative; 
    text-align: center;
    text-indent: 20;
    align-content: center;
    width: 164px;
    height: 40px;
    border-bottom: 2px solid #F3EBEB ;
    border-left: none;
    cursor: pointer;
    &:hover {
        color: #00E5AE;
        border-bottom: 3px solid #00E5AE;
        border-left: none;
    }
}

.listProject::before {
    content: '';
    position: absolute;
    left: 0px; 
    top: 40px; 
    height: 3px; 
    width: 100%; 
    background-color: transparent; 
    transition: box-shadow 0.3s ease-in-out; 
}

.listProject:hover::before {
    box-shadow: 0px 0px 4px #00E5AE; 
    border-left: none;
}

.listProject.active {
    color: #00E5AE;
    border-left: none;
    border-bottom: 3px solid #00E5AE ;
}

.colorCodeBox {
    position: absolute;
    display: flex;
    flex-direction: row;
    row-gap: 0;
    column-gap: 0;
    justify-content: space-between;
    width: 179px;
    height: auto;
    margin-bottom: 0;
    bottom: -49px;
    left: 60px;
}

.imgColor {
    width: 34px;
    height: 34px;
}

.fontBox1 {
    display: none;
}

.fontBox2 {
    display: none;
}

.fontBox3 {
    display: none;
}

.fontTitle {
    font-size: 24px;
    letter-spacing: 0.05em;
    margin-bottom: 5px;
}

.p1 {
    letter-spacing: 1.5px;
}

.imgProject {
    width: 300px;
    height: auto;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
}

.modal-content {
    display: block;
    margin: 80px auto ;
    width: 95%;
    height: fit-content;
}

.close {
    color: #fff;
    position: absolute;
    top: 10px;
    right: 25px;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
}

#imgDevis {
    height: fit-content;
}

#imgTravelPayement {
    height: fit-content;
}

#imgTravelConfirmation {
    height: fit-content;
}
}

