* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    height: 100%;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden
}

.project_navbar {
    background: #fff;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    position: sticky;
    top: 0;
    z-index: 999;
}

.project_navbar__container {
    display: flex;
    justify-content: space-between;
    height: 80px;
    z-index: 1;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    border-bottom: 2px solid black;
}

#project_navbar__logo {
    color: #000;
    display: flex;
    align-items: center;
    justify-content: left;
    cursor: pointer;
    text-decoration: none;
    font-size: 2rem;
    font-weight: 600;
}

.project_navbar__menu {
    display: flex;
    align-items: center;
    list-style: none;
    text-align: center;
}

.project_navbar__links {
    color: #757575;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 0 30px;
    height: 100%;
}

.project_navbar__btn {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    width: 100%;
}

.project_button {
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    padding: 10px 20px;
    height: 100%;
    width: 100%;
    border: none;
    outline: none;
    border-radius: 10px;
    background: #000;
    color: white;
}

.project_button:hover {
    background: #d1d1d1;
    transition: all 0.3s ease;
}

.project_navbar__links:hover {
    color: #d1d1d1;
    transition: all 0.3s ease;
}

@media screen and (max-width: 1200px) {
    #project_navbar__logo {
    font-size: 1.5rem;
}

.project_navbar__links {
    font-size: 1rem;
}
}












.project_main {
    position: fixed;
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-left: 0;
    width: 100%;
    height: 80px;
    z-index: 100;
    background-color: #f9f9f9;
}

.project_retour__btn {
    width: 120px;
    margin-left: 20px;
    border-radius: 10px;
    background: #000;
    color: white;
    text-align: justify;
    justify-content: center;
}

.project_retour__btn:hover {
    background-color: #d1d1d1;
}

.project_main h2 {
    font-size: 25px;
    font-weight: 600;
    margin-left: 200px;
}

.project_main__container {
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: 100vh;
    height: auto;
    box-sizing: border-box;
    padding: 0 0 0 320px;
    background-color: #f9f9f9;
}

.project_main__content {
    display: flex;
    flex-direction: row;
    width: 90%;
    height: 100%;
    gap: 10%;
    margin-top: 100px;
}

.project_project__text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: justify;
    color: #757575;
    width: 30%;
    padding: 20px;
    position: sticky;
    top: 140px;
    align-self: flex-start;
    height: fit-content;
}

.project_project__text p {
    margin-bottom: 15px; /* Espace de 15 pixels après chaque paragraphe */
}

.project__button {
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    padding: 10px 20px;
    height: 100%;
    width: 100%;
    border: none;
    outline: none;
    border-radius: 4px;
    background: #000;
    color: white;
}

.project__button:hover {
    background-color: #d1d1d1;
    transition: 0.3s ease;
}

.project_project__text li.project_boutique_btn {
    margin-top: 20px; /* Espace de 20 pixels avant le bouton */
}

.project_project__img {
    display: flex;
    flex-direction: column;
    width: 50%;
    height: auto;
    max-width: 600px;
    object-fit: cover;
    gap: 40px;
    margin-bottom: 15px;
    padding: 30px;
}

.project_project__img img {
    border-radius: 8px;
    width: 100%;
    height: auto;
}



@media screen and (max-width: 1200px) {

.project_retour__btn {
    width: 100px;
    font-size: 12px;
}

.project_main h2 {
    margin-left: 10px;
    font-size: 18px;
    text-align: center;
    justify-content: right;
}

.project_main__container {
    padding: 0 0 0 50px;
}

.project_main__content {
    flex-direction: column;
    gap: 120px;
    align-items: center;
}

.project_project__text {
    width: 100%;
    position: relative;
    margin-top: -80px;
}

.project_project__img {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-bottom: 15px;
}

.project_project__img img {
    border-radius: 8px;
    height: auto;
}
}


.mobile_video-preview {
    width: 100%; /* Assure que la vidéo prend toute la largeur disponible */
    margin: 20px 0; /* Ajoute un espace autour de la vidéo */
    display: block; /* Assure que la vidéo est un élément de bloc */
}