.ContainerProSpe {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.bigProjetContainer {
    background-color: rgba(0, 0, 0, 0.918);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    padding: 50px 20px;
}

.projetContainer {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.projetContainer2 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 450px;
    box-sizing: border-box;
    margin: 0 10px;
}

.contInstruction {
    margin-top: 10px;
    margin-bottom: 50px;
}

.instruction {
    color: #0084ff;
}

.projetTitre {
    color: white;
    text-align: center;
}

.projetTexte {
    font-size: 16px;
    color: rgb(165, 165, 165);
}

.lienComp {
    display: flex;
    align-items: center;
    justify-content: center;
}

.containerImage {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
}

.imageProjet {
    width: 90%;
    max-width: 650px;
}

.lienSpecial {
    cursor: pointer;
}

.carousel-item {
    opacity: 0.8;
    transform: rotateY(180deg);
    transition: transform 0.7s ease, opacity 0.7s ease;
    position: relative;
    width: 100%;
    top: 0;
    left: -500px;
}

.carousel-item.active {
    opacity: 1;
    transform: rotateY(0);
    position: relative;
    left: 0;
    z-index: 2;
}


@media (max-width: 1350px) {

    .projetContainer {
        flex-direction: column;
    }

    .texteContainer .invert {
        flex-direction: column-reverse;
    }

    .projetContainer2 {
        margin-bottom: 25px;
        width: 250px;
    }

    .imageProjet {
        max-width: 450px;
        min-width: 0px;
    }

    .projetTexte {
        max-width: 450px;
        padding-left: 0rem;
    }

    .projetContainer .texte {
        margin-right: 0px;
    }
}