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

#circle {
    z-index: 995;
    width: 40px;
    height: 40px;
    background-color: #c78686a7;
    border-radius: 50%;
    position: absolute;
    pointer-events: none; /* Pour que le cercle ne bloque pas d'autres interactions */
    transform: translate(-50%, -50%); /* Centrer le cercle */
    transition: left 0.1s ease-out, top 0.1s ease-out; /* Transition fluide */
    z-index: 9999;
}
  

body {
    height: 100%;
    margin: 0;
    font-family: Arial, sans-serif;
}

p {
    hyphens: none;
    -webkit-hyphens: none;
    text-align: justify;
}

.construction-banner {
    background: repeating-linear-gradient(
        45deg,
        #ffc107,
        #ffc107 10px,
        #000 10px,
        #000 20px
    );
    height: 50px;
    overflow: hidden;
    position: fixed;
    width: 100%;
    bottom: 0;
    left: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
}

.scrolling-text-wrapper {
    width: 100%;
    background-color: #fff;
}

.scrolling-text {
    display: inline-block;
    color: #000;
    font-weight: bold;
    padding: 3px;
    animation: scroll-text 15s linear infinite;
    white-space: nowrap;
}

.scrolling-text span {
    margin-right: 50px; /* Espacement entre les spans */
}

@keyframes scroll-text {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

::selection{
    background-color: #E8A2A2;
    color: white;
}

body {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 1440px;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;
    margin-left: auto;
    margin-right: auto;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(90deg, rgba(232, 162, 162, 1) 0%, rgba(232, 231, 255, 1) 100%);
    align-content: space-between;
}

/*LOADER*/

.section {
    display: flex;
    background: linear-gradient(90deg, rgba(232, 231, 255, 1) 0%, rgba(232, 162, 162, 1) 100%);
    line-height: 600px;
    z-index: 50;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding-bottom: 00px;
    animation: loading 2500ms linear 0s 1 both;
}

.loader {
    color: #696969;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    text-align: center;
    font-size: 150px;
    font-family: 'Pacifico', cursive !important;
    width: 300px;
    height: 300px;
    background-image: linear-gradient(white, white), radial-gradient(circle at top right, rgba(232, 162, 162, 1) 0%, rgba(232, 231, 255, 1) 100%);
    border-radius: 50%;
    border: double 12px transparent;
    background-origin: border-box;
    background-clip: content-box, border-box;
}

.loader-pulse-rotate {
    box-shadow: 0 0 0 0 rgb(214, 138, 176);
    animation: pulse 2500ms infinite cubic-bezier(.66, 0, 0, 1), spin 2500ms cubic-bezier(.66, 0, 0, 1) 0s 1;
    -webkit-animation: pulse 2500ms infinite cubic-bezier(.66, 0, 0, 1), spin 2500ms cubic-bezier(.66, 0, 0, 1) 0s 1;
}


@keyframes pulse {
    to {
        box-shadow: 0 0 0 30px rgba(255, 71, 84, 0);
    }
}


@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


@keyframes loading {
    0% {
        opacity: 1;
    }

    70% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        z-index: -1;
    }
}

/* --- LOGO --- */
.index-button {
    display: flex;
    justify-content: center;
    height: 100vh;
}

/*.mylogo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    text-align: center;
    font-size: 150px;
    font-family: 'Pacifico', cursive !important;
    width: 300px;
    height: 300px;
    background-image: linear-gradient(white, white), radial-gradient(circle at top right, rgba(232, 162, 162, 1) 0%, rgba(232, 231, 255, 1) 100%);
    border-radius: 50%;
    border: double 12px transparent;
    background-origin: border-box;
    background-clip: content-box, border-box;
    box-shadow: 0 0 0 0 rgb(214, 138, 176);
    -webkit-animation: battement 2s infinite cubic-bezier(.66, 0, 0, 1);
}

.mylogo a {
    text-decoration: none;
    color: #696969;
}

.mylogo:hover {
    -webkit-transform: scale(1.15) rotate(360deg);
    -moz-transform: scale(1.15) rotate(360deg);
    -ms-transform: scale(1.15) rotate(360deg);
    -o-transform: scale(1.15) rotate(360deg);
    transform: scale(1.15) rotate(360deg);
    transition: 0.7s ease;
    -webkit-transition: 0.7s ease;
    -moz-transition: 0.7s ease;
    -ms-transition: 0.7s ease;
    -o-transition: 0.7s ease;
}

@keyframes battement {
    to {
        box-shadow: 0 0 0 30px rgba(255, 71, 84, 0);
    }
}*/


header {
    display: flex;
    flex-direction: row;
    margin-top: 30px;
    margin-bottom: 30px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    position: fixed;
    width: 100%;
    top: 0;
    right: 0;
    left: 0;
    z-index: 6;

}

/*barre de navigation*/

nav .nav-tablet-desk-version {
    display: flex;
    flex-wrap: nowrap;
    background-color: white;
    padding: 20px 20px 0px 20px;
    margin: 0px 60px 0px 60px;
    border-radius: 20px;
    box-shadow: 0px 3px 5px #7C5858;
}

.navbar-mobil-version {
    display: none;
}


nav ul {
    list-style-type: none;
    display: flex;
    justify-content: space-around;
    margin: 0 0 10px 0;
    padding-bottom: 10px;
}

nav ul a {
    font-family: 'poppins', sans-serif;
    color: #696969;
    font-weight: 300;
    text-decoration: none;
    font-size: 15px;
    padding: 20px;
}

nav ul a:hover {
    color: #E8A2A2;
    border-top: 2px solid #E8A2A2;
    padding-top: 10px;
}

nav ul a:active {
    color: #E8A2A2;
    border-top: 2px solid #E8A2A2;
    padding-top: 10px;
}

nav ul a.selected {
    /*background-color: #7C5858;*/
    color: #696969;
    border-top: 2px solid #696969;
    padding-top: 10px;
    font-weight: 500;
}

.logo-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    margin: 0px 10px 10px 30px;
    text-align: center;
    font-size: 40px;
    font-family: 'Pacifico', cursive !important;
    width: 100px;
    height: 100px;
    background-image: linear-gradient(white, white), radial-gradient(circle at top right, rgba(232, 162, 162, 1) 0%, rgba(232, 231, 255, 1) 100%);
    border-radius: 100%;
    border: double 6px transparent;
    background-origin: border-box;
    background-clip: content-box, border-box;
    box-shadow: 0 0 0 0 rgb(214, 138, 176);
    animation: battement 2s infinite cubic-bezier(.66, 0, 0, 1);
    -webkit-animation: battement 2s infinite cubic-bezier(.66, 0, 0, 1);
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
}

.logo-nav a {
    text-decoration: none;
    color: #696969;
}

.logo-nav:hover {
    -webkit-transform: scale(1.15) rotate(360deg);
    -moz-transform: scale(1.15) rotate(360deg);
    -ms-transform: scale(1.15) rotate(360deg);
    -o-transform: scale(1.15) rotate(360deg);
    transform: scale(1.15) rotate(360deg);
    transition: 0.7s ease;
    -webkit-transition: 0.7s ease;
    -moz-transition: 0.7s ease;
    -ms-transition: 0.7s ease;
    -o-transition: 0.7s ease;
}

/* bon studio */
.logo-studio {
    display: flex;
    justify-content: center;
    align-items: center;
    /*margin: auto;*/
    margin: 0px 10px 10px 30px;
    text-align: center;
    font-size: 40px;
    font-family: 'Pacifico', cursive !important;
    width: 100px;
    height: 100px;
    background-image: linear-gradient(white, white), radial-gradient(circle at top right, rgba(232, 162, 162, 1) 0%, rgba(232, 231, 255, 1) 100%);
    border-radius: 100%;
    border: double 6px transparent;
    background-origin: border-box;
    background-clip: content-box, border-box;
    box-shadow: 0 0 0 0 rgb(214, 138, 176);
    animation: battement 2s infinite cubic-bezier(.66, 0, 0, 1);
    -webkit-animation: battement 2s infinite cubic-bezier(.66, 0, 0, 1);
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
}

p.name-logo {
    margin: -12px;
}

p.studio {
    font-family: 'poppins', sans-serif;
    font-size: 12px;
    margin: 0;
    font-weight: 300;
}

.logo-studio a {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-decoration: none;
    color: #696969;
}

.logo-studio:hover {
    -webkit-transform: scale(1.15) rotate(360deg);
    -moz-transform: scale(1.15) rotate(360deg);
    -ms-transform: scale(1.15) rotate(360deg);
    -o-transform: scale(1.15) rotate(360deg);
    transform: scale(1.15) rotate(360deg);
    transition: 0.7s ease;
    -webkit-transition: 0.7s ease;
    -moz-transition: 0.7s ease;
    -ms-transition: 0.7s ease;
    -o-transition: 0.7s ease;
}

.studio-container {
    display: flex;
    justify-content: center;
    margin-top: 15%;
    width: 100vw;
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
}

.background-studio-container {
    display: flex;
    justify-content: center;
    width: 65vw;
    padding: 40px 0 40px 0;
    margin-bottom: 40px;
    background-color: white;
    border-radius: 35px;
    -webkit-border-radius: 35px;
    -moz-border-radius: 35px;
    -ms-border-radius: 35px;
    -o-border-radius: 35px;
    box-shadow: 0px 3px 12px #7C5858;
}

/* homepage */

.homepage-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 70px;
    position: sticky;
    top: 0px;
    width: 100%;
}


.welcome-message {
    color: #C78686;
    font-size: 70px;
    font-family: 'Roboto', sans-serif;
    margin-top: 10%;
    display: flex;
    justify-content: center;
}

.choice-message {
    color: #C78686;
    font-size: 30px;
    font-family: 'Montaga', serif;
    margin-top: 30px;
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

.univers-box {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.univers-box p {
    margin: 15px 0 0 0;
    font-family: 'poppins', sans-serif;
    font-size: 12px;
    color: #696969;
}


.btn-univers {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    margin: 20px 30px 10px 30px;
    text-align: center;
    font-size: 40px;
    font-family: 'Pacifico', cursive !important;
    width: 100px;
    height: 100px;
    background-image: linear-gradient(white, white), radial-gradient(circle at top right, rgba(232, 162, 162, 1) 0%, rgba(232, 231, 255, 1) 100%);
    border-radius: 100%;
    border: double 6px transparent;
    background-origin: border-box;
    background-clip: content-box, border-box;
    box-shadow: 0 0 0 0 rgb(214, 138, 176);
    animation: battement 2s infinite cubic-bezier(.66, 0, 0, 1);
    -webkit-animation: battement 2s infinite cubic-bezier(.66, 0, 0, 1);
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
}

.btn-univers a {
    text-decoration: none;
    color: #696969;
}

.btn-univers:hover {
    -webkit-transform: scale(1.15) rotate(360deg);
    -moz-transform: scale(1.15) rotate(360deg);
    -ms-transform: scale(1.15) rotate(360deg);
    -o-transform: scale(1.15) rotate(360deg);
    transform: scale(1.15) rotate(360deg);
    transition: 0.7s ease;
    -webkit-transition: 0.7s ease;
    -moz-transition: 0.7s ease;
    -ms-transition: 0.7s ease;
    -o-transition: 0.7s ease;
}

@keyframes battement {
    to {
        box-shadow: 0 0 0 30px rgba(255, 71, 84, 0);
    }
}

.univers-choice {
    display: flex;
}

/* ---PAGE DE base--- */

.card-section-test {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 200px;
}

.card-project-test {
    width: 350px;
    height: 350px;
    background: white;
    margin: 0px 10px 20px 10px;
    border-radius: 5% 5% 5% 5%;
    display: flex;
}

.section-link {
    text-decoration: none;
    color: black;
    width: 350px;
    height: 350px;
}

.cover-card-project-test {
    width: 350px;
    height: 350px;
    font-family: 'Roboto', sans-serif;
    font-size: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5% 5% 5% 5%;
    background:
        linear-gradient(rgba(181, 112, 112, 0.5),
            rgba(112, 122, 181, 0.5));
    backdrop-filter: blur(5px);
    overflow: hidden;
}

.cover-card-project-test:hover {
    opacity: 0;
    animation-name: fadeInOpacity;
    animation-iteration-count: 1;
    animation-timing-function: linear;
    animation-duration: 300ms;
}

@keyframes fadeInOpacity {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

/*objet 1*/
.object1 {
    background-image: url('/images/object1.png');
    background-size: cover;
}

/*objettest2*/
.object2 {
    background-image: url('/images/object2.png');
    background-size: cover;
}

/* --- Card section print web etc--- */
h2.title.project-page {
    display: flex;
    justify-content: center;
    margin-top: 13%;
    font-family: 'poppins', sans-serif;
    font-weight: 400;
    color: #696969;
}

.card-section {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    position: sticky;
    margin: 40px 0 0 0;
}

.card-project {
    width: 350px;
    height: 350px;
    background: white;
    margin: 0px 10px 20px 10px;
    border-radius: 5% 5% 5% 5%;
    display: flex;
}

.section-link {
    text-decoration: none;
    color: white;
    width: 350px;
    height: 350px;
}

.cover-card-project {
    width: 350px;
    height: 350px;
    font-family: 'Roboto', sans-serif;
    font-size: 30px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5% 5% 5% 5%;
    background:
        linear-gradient(rgba(181, 112, 112, 0.5),
            rgba(112, 122, 181, 0.5));
    backdrop-filter: blur(5px);
    overflow: hidden;
}

.cover-card-project:hover {
    opacity: 0;
    animation-name: fadeInOpacity;
    animation-iteration-count: 1;
    animation-timing-function: linear;
    animation-duration: 300ms;
}

@keyframes fadeInOpacity {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.card-project:hover {
    box-shadow: 0px 3px 12px #7C5858;
}

.btn-back-design-projects {
    display: flex;
    font-size: 16px;
    align-items: center;
    border: none;
    height: 40px;
    padding: 16px;
    margin-bottom: 40px;
    background-color: #E8A2A2;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    margin: 16px;
}

.btn-back-design-projects a {
    color: #4f4f4f;
    font-weight: bold;
    text-decoration: none;
}

.btn-back-design-projects:hover {
    box-shadow: 0px 2px 6px #7C5858;
}

/** -- WEB -- **/
/*reservia*/

.card-project.reservia {
    background-image: url('/images/mockuper_carre.png');
    background-size: cover;
}

/*ohmyfood*/
.card-project.ohmyfood {
    background-image: url('/images/mockup_OMF_iphone.jpg');
    background-size: cover;
}

/*la chouette agence */
.card-project.lachouetteagence {
    background-image: url('/images/mockup_imac_lachouetteagence.jpg');
    background-size: cover;
}

/* Piquante */
.card-project.piiquante {
    background-image: url('/images/piiquante/mockup_piiquante.png');
    background-size: cover;
}

/*Groupomania */
.card-project.groupomania {
    background-image: url('/images/mockup_groupomania_carre.png');
    background-size: cover;
}

/* --- DESIGN GRAPHIQUE --- */


.card-project.bon-studio {
    background-image: url('/images/mockup-cartedevisite-carre.jpg');
    background-size: cover;
}

.card-project.adobe-ingram {
    background-image: url('/images/mes-adobecc.jpg');
    background-size: cover;
}

.card-project.android-webinar {
    background-image: url('/images/mockup-android-webinar.jpg');
    background-size: cover;
}

.card-project.ingramcloud-microsoft {
    background-image: url('/images/ingramcloud-microsoft/ingram_cloud-carre.jpeg');
    background-size: cover;
}

.card-project.vitrine-animaux {
    background-image: url('/images/vitrine_animaux_carre.jpg');
    background-size: cover;
}

.card-project.philcollection {
    background-image: url('/images/mockup-dos-couv-philco-carre.jpg');
    background-size: cover;
}

.card-project.gifphildar {
    background-image: url('/images/mockup-gif-phildar-carre.jpg');
    background-size: cover;
}

.card-project.vitrine-joli-coeur {
    background-image: url('/images/Mockup-joli-coeur.jpg');
    background-size: cover;
}

.card-project.monateliertricot {
    background-image: url('/images/mon_atelier_tricot/packaging_carre.jpg');
    background-size: cover;
}

.card-project.biplan {
    background-image: url('/images/facade_biplan_carré.jpg');
    background-size: cover;
}

.card-project.cuvee-speciale {
    background-image: url('/images/cuvee_speciale_fond_blanc.jpg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-color: white;
}

.card-project.verbaudet {
    background-image: url('/images/verbaudet_illu_carre.jpg');
    background-size: cover;
}

.card-project.illus-reseaux {
    background-image: url('/images/illu-reseaux-phildar-carre.jpg');
    background-size: cover;
}

.card-project.uberpop {
    background-image: url('/images/uberpop/invasion_carre.jpg');
    background-size: cover;
}

.card-project.rapport-rse {
    background-image: url('/images/couv-rse.png');
    background-size: cover;
}

.card-project.illustrations {
    background-image: url('/images/illustrations/wale.jpg');
    background-size: cover;
}

/*PAGE PROJET BASE*/

.container-project {
    display: flex;
    justify-content: center;
    flex-direction: column;
    position: sticky;
    align-items: center;
    top: 0;
    left: 0;
    right: 0;
    margin: 15% 50px 0 50px;
}

.card-section-pageprojet {
    display: flex;
    flex-wrap: nowrap;
    width: 100%;
    justify-content: space-evenly;
}

.media-first {
    margin-right: 30px;
    height: 400px;
    width: 400px;
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
}

.section-details {
    display: flex;
    width: 100%;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.detail-project-container {
    width: 700px;
    background-color: white;
    border-radius: 35px;
    -webkit-border-radius: 35px;
    -moz-border-radius: 35px;
    -ms-border-radius: 35px;
    -o-border-radius: 35px;
    box-shadow: 0px 3px 8px #7C5858;
}

.detail-project {
    display: flex;
    flex-direction: column;
    padding: 30px 30px 30px 30px;
}

.project-page-title h1 {
    color: #696969;
    font-family: 'poppins', sans-serif;
    font-weight: 400;
    font-size: 30px;
    margin: 0 0 3px 0;
    hyphens: none;
    -webkit-hyphens: none;
}

.purview-project h2 {
    color: #696969;
    font-family: 'poppins', sans-serif;
    font-weight: 300;
    font-size: 18px;
    font-style: italic;
    margin: 0 0 15px 0;
}

.skills-box.project-page {
    margin: 0 0 10px 0;
    justify-content: flex-start;
}

.skills-box.project-page .skill-detail i {
    margin: 0 0 0 0;
    font-size: 30px;
}

.skills-box.web .skill-detail p {
    font-size: 12px;
    font-weight: 500;
}

.skill-detail.project {
    margin: 0 20px 0 0;

}

.detail-text-project {
    margin: 0 0 0 0;
    font-family: 'poppins', sans-serif;
    font-weight: 300;
    font-size: 14px;
    text-align: justify;
}

.detail-text-project ul {
    margin: 0 20px;
    list-style-type: none;
}

.check-project-box {
    display: flex;
    flex-direction: row;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 10px;
}

.check-project-box i {
    margin-right: 10px;
    font-size: 20px;
    color: #696969;
}


.container-media-details {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin: 50px 0 50px 0;
}

.media-detail {
    background: white;
    height: 325px;
    width: 325px;
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
    margin-right: 12px;
    margin-left: 12px;
}

.detail-1:hover {
    transform: scale(1.5);
    -webkit-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -ms-transform: scale(1.5);
    -o-transform: scale(1.5);
    transition: 0.3s ease-in-out;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -ms-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
}

.detail-2:hover {
    transform: scale(1.5);
    -webkit-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -ms-transform: scale(1.5);
    -o-transform: scale(1.5);
    transition: 0.3s ease-in-out;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -ms-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
}

.detail-3:hover {
    transform: scale(1.5);
    -webkit-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -ms-transform: scale(1.5);
    -o-transform: scale(1.5);
    transition: 0.3s ease-in-out;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -ms-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
}

.detail-4:hover {
    transform: scale(1.5);
    -webkit-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -ms-transform: scale(1.5);
    -o-transform: scale(1.5);
    transition: 0.3s ease-in-out;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -ms-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
}

.detail-5:hover {
    transform: scale(1.5);
    -webkit-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -ms-transform: scale(1.5);
    -o-transform: scale(1.5);
    transition: 0.3s ease-in-out;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -ms-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
}

.detail-6:hover {
    transform: scale(1.5);
    -webkit-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -ms-transform: scale(1.5);
    -o-transform: scale(1.5);
    transition: 0.3s ease-in-out;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -ms-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
}

.detail-7:hover {
    transform: scale(1.5);
    -webkit-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -ms-transform: scale(1.5);
    -o-transform: scale(1.5);
    transition: 0.3s ease-in-out;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -ms-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
}

.detail-8:hover {
    transform: scale(1.5);
    -webkit-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -ms-transform: scale(1.5);
    -o-transform: scale(1.5);
    transition: 0.3s ease-in-out;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -ms-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
}

.detail-9:hover {
    transform: scale(1.5);
    -webkit-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -ms-transform: scale(1.5);
    -o-transform: scale(1.5);
    transition: 0.3s ease-in-out;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -ms-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
}

/* --- RESERVIA PAGE PROJET ---*/

.media-first.reservia {
    background-image: url('/images/mockuper_carre.png');
    background-size: cover;
    box-shadow: 0px 3px 12px #7C5858;
}

.reservia.detail-1 {
    background-image: url('/images/reservia/Reservia_desk_carre.png');
    background-size: cover;
    box-shadow: 0px 3px 8px #7C5858;

}

.reservia.detail-2 {
    background-image: url('/images/reservia/Reservia_desk_carre2.png');
    background-size: cover;
    box-shadow: 0px 3px 8px #7C5858;

}

.reservia.detail-3 {
    background-image: url('/images/reservia/reservia_mobile_carre.png');
    background-size: cover;
    box-shadow: 0px 3px 8px #7C5858;

}

.media-detail.reservia:hover {
    transform: none;
    -webkit-transform: non;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    -webkit-transform: none;
}

/* --- OHMYFOOD PAGE PROJET ---*/

.container-media-details.ohmyfood {
    display: flex;
    align-items: center;
}

.media-first.ohmyfood {
    background-image: url('/images/mockup_macbookpro_table_carre.jpg');
    background-size: cover;
    box-shadow: 0px 3px 12px #7C5858;
}

.ohmyfood.detail-1 {
    background-image: url('/images/ohmyfood/ohmyfood_carre.png');
    background-size: cover;
    box-shadow: 0px 3px 8px #7C5858;

}

.ohmyfood.detail-2 {
    background-image: url('/images/ohmyfood/ohmyfood_carre_restau.png');
    background-size: cover;
    box-shadow: 0px 3px 8px #7C5858;

}

.ohmyfood.detail-3 {
    width: 400px;
    height: 90px;
    background-image: url('images/ohmyfood/Animation_check.gif');
    background-size: cover;
    box-shadow: 0px 3px 8px #7C5858;

}

.media-detail.ohmyfood:hover {
    transform: none;
}

/* --- LA CHOUETTE AGENCE PAGE PROJET ---*/

.container-media-details.lachouetteagence {
    flex-direction: column;
    align-items: center;
}

.media-first.lachouetteagence {
    background-image: url('/images/mockup_imac_lachouetteagence.jpg');
    background-size: cover;
    box-shadow: 0px 3px 12px #7C5858;
}

/*.lachouetteagence.detail-1 {
    width: 900px;
    background-image: url('/images/lachouetteagence/comparatif.jpg');
    background-size: cover;
    box-shadow: 0px 3px 8px #7C5858;

}

.lachouetteagence.detail-2 {
    width: 900px;
    height: 570px;
    background-image: url('/images/lachouetteagence/optimisation.jpg');
    background-size: cover;
    box-shadow: 0px 3px 8px #7C5858;

}
.media-detail.lachouetteagence{
    margin: 15px 0 15px 0;
}*/
.media-detail.lachouetteagence:hover {
    transform: none;
}

/* --- RESERVIA PAGE PROJET ---*/

.media-first.piiquante {
    background-image: url('/images/piiquante/mockup_piiquante.png');
    background-size: cover;
    box-shadow: 0px 3px 12px #7C5858;
}

.piiquante.detail-1 {
    background-image: url('/images/piiquante/login_carré_piiquante.png');
    background-size: cover;
    box-shadow: 0px 3px 8px #7C5858;

}

.piiquante.detail-2 {
    background-image: url('/images/piiquante/homepage_piiquante_carre.png');
    background-size: cover;
    box-shadow: 0px 3px 8px #7C5858;

}

.piiquante.detail-3 {
    background-image: url('/images/piiquante/sauce_carre.png');
    background-size: cover;
    box-shadow: 0px 3px 8px #7C5858;

}

/* --- GROUPOMANIA PAGE PROJET ---*/

.media-first.groupomania {
    background-image: url('/images/mockup_groupomania_carre.png');
    background-size: cover;
    box-shadow: 0px 3px 12px #7C5858;
}

.groupomania.detail-1 {
    background-image: url('/images/groupomania/feed_carre.png');
    background-size: cover;
    box-shadow: 0px 3px 8px #7C5858;

}

.groupomania.detail-2 {
    background-image: url('/images/groupomania/profile_carre.png');
    background-size: cover;
    box-shadow: 0px 3px 8px #7C5858;

}

.groupomania.detail-3 {
    background-image: url('/images/groupomania/sign_up_carre.png');
    background-size: cover;
    box-shadow: 0px 3px 8px #7C5858;

}

/* --- ADOBE x INGRAM PAGE PROJET ---*/

.media-first.adobe-ingram {
    background-image: url('/images/mes-adobecc.jpg');
    background-size: cover;
    box-shadow: 0px 3px 12px #7C5858;
}

.adobe.detail-1 {
    background-image: url('');
    background-size: cover;
    box-shadow: 0px 3px 8px #7C5858;

}

.adobe.detail-2 {
    background-image: url('');
    background-size: cover;
    box-shadow: 0px 3px 8px #7C5858;

}

.adobe.detail-3 {
    background-image: url('');
    background-size: cover;
    box-shadow: 0px 3px 8px #7C5858;

}

/* --- IngramCloud x adobe x Firefly PAGE PROJET --- */

.section-details.adobe-ingram{
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
}

.container-media-details.adobe-ingram {
    display: flex;
    flex-direction: column;
    margin: 50px 0 20px 0;
    width: 100%;
    align-items: center;
    height: auto;
}

.media-first.adobe-ingram {
    background-image: url('/images/mes-adobecc.jpg');
    background-size: 130%;
    background-position: center;
    box-shadow: 0px 3px 12px #7C5858;
}

.media-detail.adobe-ingram:hover {
    transform: none;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
}

.adobe-ingram.detail-1 {
    background-image: url('/images/adobecc_ingram/campagne-adobecc-mockup1.jpg');
    background-size: contain;
    background-position: center;
    background-color: #1C6D7C;
    background-repeat: no-repeat;
    width: 100%;
    min-height: 870px;
    height: auto;
    margin: 50px;
}

.adobe-ingram.detail-2 {
    background-image: url('/images/adobecc_ingram/campagne-adobecc-mockup2.jpg');
    background-size: contain;
    background-position: center;
    background-color: #1C6D7C;
    background-repeat: no-repeat;
    width: 100%;
    min-height: 870px;
    height: auto;
    margin: 50px;
}

/* --- IngramCloud x adobe x Firefly PAGE PROJET --- */

.section-details.android-webinar{
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    width: 100%;
}

.container-media-details.android-webinar {
    display: flex;
    flex-direction: column;
    margin: 50px 0 20px 0;
    width: 100%;
    align-items: center;
    height: auto;
}

.media-first.android-webinar {
    background-image: url('/images/mockup-android-webinar.jpg');
    background-size: 130%;
    background-position: center;
    background-size: cover;
    box-shadow: 0px 3px 12px #7C5858;
}

.media-detail.android-webinar:hover {
    transform: none;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
}

.android-webinar.detail-1 {
    background-image: url('/images/webinar-android/webinar-landing-page-invitation.png');
    background-size: cover;
    background-position: center;
    background-color: #fff;
    background-repeat: no-repeat;
    width: 100%;
    min-height: 600px;
    height: auto;
    margin: 20px;
    box-shadow: 0px 3px 8px #7C5858;
}

.android-webinar.detail-2 {
    background-image: url('/images/webinar-android/webinar-page-confirmation.png');
    background-size: cover;
    background-position: center;
    background-color: #fff;
    background-repeat: no-repeat;
    width: 100%;
    min-height: 600px;
    height: auto;
    margin: 20px;
    box-shadow: 0px 3px 8px #7C5858;
}

/* --- IngramCloud x micrososft dynamics 365 - PAGE PROJET --- */

.section-details.ingramcloud {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
}

.container-media-details.ingramcloud {
    display: flex;
    flex-direction: column;
    height: 700px;
    margin: 50px 0 20px 0;
}

.container-media-details-2.ingramcloud {
    display: flex;
    flex-wrap: wrap;
    width: 49%;
}

.media-first.ingramcloud {
    background-image: url('/images/ingramcloud-microsoft/photo_salon_2.jpeg');
    background-size: 83%;
    background-position: center;
    box-shadow: 0px 3px 12px #7C5858;
}

.media-detail.ingramcloud:hover {
    transform: none;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
}

.ingramcloud.detail-1 {
    background-image: url('/images/ingramcloud-microsoft/illustrationstandsalon.jpg');
    height: 700px;
    width: 970px;
    background-position: center;
    background-size: cover;
    box-shadow: 0px 3px 8px #7C5858;
}

/* DESIGN GRAPHIQUE */

/* --- BON. page projet - mon portfolio --- */

.section-details.bon-studio{
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: center;
}

.container-media-details.bon-studio {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 50px 0 20px 0;
    width: 100%;
    height: auto;
}

.media-first.bon-studio {
    background-image: url('/images/mockup-cartedevisite-carre.jpg');
    background-size: 100%;
    background-position: center;
    box-shadow: 0px 3px 12px #7C5858;
}

.media-detail.bon-studio:hover {
    transform: none;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
}

/*.b.detail-1 {
    background-image: url('/images/bon_studio/mockup-website.jpg');
    height: 380px;
    width: 1120px;
    background-position: center;
    background-size: 100%;
    background-repeat: no-repeat;
    box-shadow: 0px 3px 8px #7C5858;
}*/

.bon-studio.detail-1 {
    background-image: url('/images/bon_studio/mockup-website1.jpg');
    background-size: cover;
    background-position: center;
    background-color: #164456;
    background-repeat: no-repeat;
    box-shadow: 0px 3px 8px #7C5858;
    width: 100%;
    height: 700px;
    margin: 50px;
}

.bon-studio.detail-2 {
    background-image: url('/images/bon_studio/mockup-website2.jpg');
    background-size: cover;
    background-position: center;
    background-color: #164456;
    background-repeat: no-repeat;
    box-shadow: 0px 3px 8px #7C5858;
    width: 100%;
    height: 1200px;
    margin: 50px;
}

.bon-studio.detail-3 {
    background-image: url('/images/bon_studio/mockup-website3.jpg');
    background-size:contain;
    background-position: center;
    background-color: #164456;
    background-repeat: no-repeat;
    box-shadow: 0px 3px 8px #7C5858;
    width: 100%;
    height: 1100px;
    margin: 50px;
}

/* --- VITRINE ANIMAUX PAGE PROJET --- */

.media-first.vitrineanimaux {
    background-image: url('/images/vitrine_animaux/illu_vitrine_animaux.jpg');
    background-size: cover;
    box-shadow: 0px 3px 12px #7C5858;
}

.vitrineanimaux.detail-1 {
    background-image: url('/images/vitrine_animaux/pull_ours.jpg');
    background-size: cover;
    box-shadow: 0px 3px 8px #7C5858;

}

.vitrineanimaux.detail-2 {
    background-image: url('/images/vitrine_animaux/pull_flm.jpg');
    background-size: cover;
    box-shadow: 0px 3px 8px #7C5858;

}

.vitrineanimaux.detail-3 {
    background-image: url('/images/vitrine_animaux/pull_tigre.jpg');
    background-size: cover;
    box-shadow: 0px 3px 8px #7C5858;

}

.vitrineanimaux.detail-4 {
    width: 850px;
    height: 620px;
    position: inherit;
    background-image: url('/images/vitrine_animaux/vitrine_animaux_merch.png');
    background-size: cover;
    box-shadow: 0px 3px 8px #7C5858;
}

.vitrineanimaux.detail-4:hover {
    transform: none;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
}

/* --- PHILDAR - PHILCOLLECTION ---*/

.section-details.philcollection{
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    width: 100%;
}

.container-media-details.philcollection{
    display: flex;
    flex-direction: column;
    margin: 30px 0 30px 0;
    width: 120%;
    align-items: center;
    height: auto;
}

.media-first.philcollection {
    background-image: url('/images/mockup-dos-couv-philco-carre.jpg');
    background-size: contain;
    background-position: center;
    box-shadow: 0px 3px 12px #7C5858;
}

.media-detail.philcollection:hover {
    transform: none;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
}

.philcollection.detail-1 {
    background-image: url('/images/philcollection/mockup-philco-2.jpg');
    background-size: cover;
    background-position: center;
    background-color: #C78686;
    background-repeat: no-repeat;
    width: 100%;
    min-height: 655px;
    height: auto;
    margin: 15px;
}

.philcollection.detail-2 {
    background-image: url('/images/philcollection/mockup-interieur-catalogue.jpg');
    background-size: cover;
    background-position: center;
    background-color: #C78686;
    background-repeat: no-repeat;
    width: 100%;
    min-height: 655px;
    height: auto;
    margin: 15px;
}

/* GIF RESEAUX - PHILDAR */

.media-first.gifphildar {
    background-image: url('/images/mockup-gif-phildar-carre.jpg');
    background-size: cover;
    box-shadow: 0px 3px 12px #7C5858;
}

.media-detail.gifphildar.detail-1 {
    background-image: url('/images/gif-phildar/constelation.gif');
    background-size: cover;
    background-color: #e1b4c3;
}

.media-detail.gifphildar.detail-2 {
    background-image: url('/images/gif-phildar/1500x1500_Knit&chill_black.gif');
    background-size: cover;
    background-color: #e1b4c3;
}

.media-detail.gifphildar.detail-3 {
    background-image: url('/images/gif-phildar/1500x1500_like.gif');
    background-size: cover;
    background-color: #e1b4c3;
}

.media-detail.gifphildar:hover {
    transform: none;
    -webkit-transform: non;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    -webkit-transform: none;
}

/* --- PHILDAR - vitrine joli coeur ---*/

.section-details.vitrine-joli-coeur{
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    width: 100%;
}

.container-media-details.vitrine-joli-coeur{
    display: flex;
    flex-direction: column;
    margin: 30px 0 30px 0;
    width: 120%;
    align-items: center;
    height: auto;
}

.media-first.vitrine-joli-coeur {
    background-image: url('/images/Mockup-joli-coeur.jpg');
    background-size: contain;
    background-position: center;
    box-shadow: 0px 3px 12px #7C5858;
}

.media-detail.vitrine-joli-coeur:hover {
    transform: none;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
}

.vitrine-joli-coeur.detail-1 {
    background-image: url('/images/vitrine-saint-valentin/mockup-magasin-joli-coeur.jpg');
    background-size: cover;
    background-position: center;
    background-color: #C78686;
    background-repeat: no-repeat;
    width: 100%;
    min-height: 655px;
    height: auto;
    margin: 15px;
}

/*.vitrine-joli-coeur.detail-2 {
    background-image: url('/images/philcollection/mockup-interieur-catalogue.jpg');
    background-size: cover;
    background-position: center;
    background-color: #C78686;
    background-repeat: no-repeat;
    width: 100%;
    min-height: 655px;
    height: auto;
    margin: 15px;
}*/


/* MON ATELIER TRICOT - PHILDAR */

.media-first.monateliertricot {
    background-image: url('/images/mon_atelier_tricot/packaging_carre.jpg');
    background-size: cover;
    box-shadow: 0px 3px 12px #7C5858;
}

.monateliertricot.detail-1 {
    background-image: url('/images/mon_atelier_tricot/content_ob.jpg');
    background-size: cover;
    box-shadow: 0px 3px 8px #7C5858;

}

.monateliertricot.detail-2 {
    background-image: url('/images/mon_atelier_tricot/motif.jpg');
    background-size: cover;
    box-shadow: 0px 3px 8px #7C5858;

}

.monateliertricot.detail-3 {
    background-image: url('/images/mon_atelier_tricot/portrait.jpg');
    background-size: cover;
    box-shadow: 0px 3px 8px #7C5858;

}

/* --- LE BIPLAN PAGE PROJET --- */

.media-first.lebiplan {
    background-image: url('/images/biplan/facade_biplan_carre.jpg');
    background-size: cover;
    box-shadow: 0px 3px 12px #7C5858;
}

.lebiplan.detail-1 {
    background-image: url('/images/biplan/mockup1.jpg');
    background-size: cover;
    box-shadow: 0px 3px 8px #7C5858;

}

.lebiplan.detail-2 {
    background-image: url('/images/biplan/poster_black_zoom.jpg');
    background-size: cover;
    box-shadow: 0px 3px 8px #7C5858;

}

.lebiplan.detail-3 {
    background-image: url('/images/biplan/poster_white_zoom.jpg');
    background-size: cover;
    box-shadow: 0px 3px 8px #7C5858;

}

.second-container.lebiplan {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.lebiplan.detail-4 {
    width: 350px;
    height: 450px;
    margin-right: 30px;
    position: inherit;
    background-image: url('/images/biplan/poster_black.jpg');
    background-size: cover;
    box-shadow: 0px 3px 8px #7C5858;

}

.lebiplan.detail-5 {
    width: 350px;
    height: 450px;
    position: inherit;
    background-image: url('/images/biplan/poster_white.jpg');
    background-size: cover;
    box-shadow: 0px 3px 8px #7C5858;

}

/* --- BON & BIEN - cuvee speciale PAGE PROJET --- */
.section-details.cuveespeciale {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
}

.container-media-details.cuveespeciale {
    display: flex;
    flex-direction: column;
    margin-right: 20px;
    width: 49%;
}

.container-media-details-2.cuveespeciale {
    display: flex;
    flex-wrap: wrap;
    width: 49%;
}

.media-first.cuveespeciale {
    background-image: url('/images/BB_cuvee_speciale/cuvee_speciale_fond_blanc.jpg');
    background-size: 83%;
    background-position: center;
    box-shadow: 0px 3px 12px #7C5858;
}

.media-detail.cuveespeciale:hover {
    transform: none;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
}

.cuveespeciale.detail-1 {
    background-image: url('/images/BB_cuvee_speciale/etiquette_BB.jpg');
    width: 100%;
    height: 320px;
    background-position: center;
    background-size: cover;
    box-shadow: 0px 3px 8px #7C5858;
    margin-bottom: 20px;

}

.cuveespeciale.detail-2 {
    background-image: url('/images/BB_cuvee_speciale/bb_fondgris.jpg');
    width: 100%;
    height: 430px;
    background-size: cover;
    background-position: center;
    box-shadow: 0px 3px 8px #7C5858;
}

.cuveespeciale.detail-3 {
    background-image: url('/images/BB_cuvee_speciale/brainstorming_BB.jpg');
    width: 100%;
    height: 660px;
    background-size: contain;
    background-position: center;
    box-shadow: 0px 3px 8px #7C5858;

}



/* --- VERBAUDET PAGE PROJET --- */

.media-first.verbaudet {
    background-image: url('/images/verbaudet/verbaudet_illu_carre.jpg');
    background-size: cover;
    box-shadow: 0px 3px 12px #7C5858;
}

.verbaudet.detail-1 {
    background-image: url('/images/verbaudet/HSF_green_carre.jpg');
    background-size: cover;
    box-shadow: 0px 3px 8px #7C5858;

}

.verbaudet.detail-2 {
    background-image: url('/images/verbaudet/FDS_green_carre.jpg');
    background-size: cover;
    box-shadow: 0px 3px 8px #7C5858;

}

.verbaudet.detail-3 {
    background-image: url('/images/verbaudet/Awsome_blue_carre.jpg');
    background-size: cover;
    box-shadow: 0px 3px 8px #7C5858;

}

/* --- PHILDAR ILLU RESEAUX PAGE PROJET --- */

.media-first.illureseaux {
    background-image: url('/images/illu_reseaux/mushrooms_carre.jpg');
    background-size: cover;
    box-shadow: 0px 3px 12px #7C5858;
}

.media-detail.illureseaux {
    width: 360px;
    height: 640px;
}

.media-detail.illureseaux:hover {
    transform: none;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
}


.illureseaux.detail-1 {
    background-image: url('/images/illu_reseaux/multi_flowers.jpg');
    background-size: cover;
    background-position: center;
    box-shadow: 0px 3px 8px #7C5858;

}

.illureseaux.detail-2 {
    background-image: url('/images/illu_reseaux/mushrooms.jpg');
    background-size: cover;
    box-shadow: 0px 3px 8px #7C5858;

}

.illureseaux.detail-3 {
    background-image: url('/images/illu_reseaux/oneflower.jpg');
    background-size: cover;
    box-shadow: 0px 3px 8px #7C5858;

}

.container-media-details-2.illureseaux {
    display: flex;
    flex-direction: row;
}

.illureseaux.detail-4 {
    background-image: url('/images/illu_reseaux/physalis.jpg');
    background-size: cover;
    box-shadow: 0px 3px 8px #7C5858;
}

.illureseaux.detail-5 {
    background-image: url('/images/illu_reseaux/fall.jpg');
    background-size: cover;
    box-shadow: 0px 3px 8px #7C5858;
}

.illureseaux.detail-6 {
    background-image: url('/images/illu_reseaux/cozy_time.jpg');
    background-size: cover;
    box-shadow: 0px 3px 8px #7C5858;
}

/* --- UberPop PAGE PROJET --- */

.media-first.uberpop {
    background-image: url('/images/uberpop/logo_uber.jpg');
    background-size: cover;
    box-shadow: 0px 3px 12px #7C5858;
}

.uberpop.detail-1 {
    background-image: url('/images/uberpop/invasion.jpg');
    background-size: cover;
    box-shadow: 0px 3px 8px #7C5858;
    width: 87vw;
    max-width: 1130px;
    height: 600px;
}

.second-container.uberpop {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.uberpop.detail-4 {
    width: 350px;
    height: 450px;
    margin-right: 30px;
    position: inherit;
    background-image: url('/images/uberpop/vs1.jpg');
    background-size: cover;
    box-shadow: 0px 3px 8px #7C5858;
}

.uberpop.detail-5 {
    width: 350px;
    height: 450px;
    margin-right: 30px;
    position: inherit;
    background-image: url('/images/uberpop/vs2.jpg');
    background-size: cover;
    box-shadow: 0px 3px 8px #7C5858;
}

.uberpop.detail-6 {
    width: 350px;
    height: 450px;
    position: inherit;
    background-image: url('/images/uberpop/vs3.jpg');
    background-size: cover;
    box-shadow: 0px 3px 8px #7C5858;
}

.media-detail.uberpop:hover {
    transform: none;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    -webkit-transform: none;
}

.container-media-plusone.uberpop:hover{
    transform: none;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    -webkit-transform: none;

}

/* --- LECLERC RAPPORT RSE PAGE PROJET --- */

.media-first.rapportrse {
    background-image: url('/images/rapport_rse/couv.png');
    background-color: white;
    background-size: cover;
    box-shadow: 0px 3px 12px #7C5858;
}

.rapportrse.detail-1 {
    background-image: url('/images/rapport_rse/infographie.png');
    background-size: cover;
    background-position: center;
    width: 470px;
    box-shadow: 0px 3px 8px #7C5858;

}

.rapportrse.detail-2 {
    background-image: url('/images/rapport_rse/infogrpahie_2.png');
    background-size: contain;
    background-position: center;
    width: 470px;
    box-shadow: 0px 3px 8px #7C5858;

}


.second-container.rapportrse {
    display: flex;
    flex-direction: row;
}


.rapportrse.detail-3 {
    background-image: url('/images/rapport_rse/dos.png');
    height: 350px;
    width: 350px;
    background-size: cover;
    background-position: center;
    box-shadow: 0px 3px 8px #7C5858;

}

.rapportrse.detail-4 {
    width: 550px;
    height: 350px;
    margin-left: 30px;
    background-size: contain;
    background-position: center;
    background-image: url('/images/rapport_rse/doublepage.png');
    box-shadow: 0px 3px 8px #7C5858;
    background-color: white;
    border-radius: 35px;
    -webkit-border-radius: 35px;
    -moz-border-radius: 35px;
    -ms-border-radius: 35px;
    -o-border-radius: 35px;
}

/* --- ILLUSTRATION PERSO PAGE PROJET --- */

.media-first.illustrations {
    background-image: url('/images/illustrations/wale.jpg');
    background-size: cover;
    box-shadow: 0px 3px 12px #7C5858;
}

.container-media-details-2.illustrations {
    display: flex;
    flex-direction: row;
}

.container-media-details-3.illustrations {
    display: flex;
    flex-direction: row;
    margin: 50px 0 50px 0;
}

.illustrations.detail-1 {
    background-image: url('/images/illustrations/pamplemousse.png');
    background-size: cover;
    box-shadow: 0px 3px 8px #7C5858;

}

.illustrations.detail-2 {
    background-image: url('/images/illustrations/kiwi.png');
    background-size: cover;
    box-shadow: 0px 3px 8px #7C5858;

}

.illustrations.detail-3 {
    background-image: url('/images/illustrations/watermelon.png');
    background-size: cover;
    box-shadow: 0px 3px 8px #7C5858;

}

.illustrations.detail-4 {
    background-image: url('/images/illustrations/citroncarre.jpg');
    background-size: cover;
    box-shadow: 0px 3px 8px #7C5858;

}

.illustrations.detail-5 {
    background-image: url('/images/illustrations/bouee_carre.jpg');
    background-size: cover;
    box-shadow: 0px 3px 8px #7C5858;

}

.illustrations.detail-6 {
    background-image: url('/images/illustrations/citronpatterncarre.jpg');
    background-size: cover;
    box-shadow: 0px 3px 8px #7C5858;

}

.illustrations.detail-7 {
    background-image: url('/images/illustrations/fox.JPG');
    background-size: cover;
    box-shadow: 0px 3px 8px #7C5858;

}

.illustrations.detail-8 {
    background-image: url('/images/illustrations/cheetos.JPG');
    background-size: cover;
    box-shadow: 0px 3px 8px #7C5858;

}

.illustrations.detail-9 {
    background-image: url('/images/illustrations/moon.JPG');
    background-size: cover;
    box-shadow: 0px 3px 8px #7C5858;

}

/* --À propos-- */

.about-container {
    display: flex;
    justify-content: center;
    margin-top: 18%;
    width: 100vw;
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
}

.background-about-container {
    display: flex;
    justify-content: center;
    width: 65vw;
    padding: 40px 0 40px 0;
    margin-bottom: 40px;
    background-color: white;
    border-radius: 35px;
    -webkit-border-radius: 35px;
    -moz-border-radius: 35px;
    -ms-border-radius: 35px;
    -o-border-radius: 35px;
    box-shadow: 0px 3px 12px #7C5858;
}

.detail-about {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    width: 605px;
    height: auto;
    font-size: 14px;
    font-family: 'poppins', sans-serif;
    margin-top: 15px;
}

.photo-container {
    position: absolute;
    width: 65vw;
    display: flex;
    justify-content: flex-end;
    top: -70px;
    right: 25%;
}

.cercle {
    position: absolute;
    display: flex;
    width: 220px;
    height: 220px;
    background: linear-gradient(90deg, rgba(232, 162, 162, 1) 0%, rgba(232, 231, 255, 1) 100%);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    box-shadow: 0px 2px 6px #7C5858;
    animation: shake-top 1s cubic-bezier(0.645, 0.045, 0.355, 1.000);
    -webkit-animation: shake-top 2.5s cubic-bezier(0.455, 0.030, 0.515, 0.955) ;
}

.cercle:hover{
    animation: shake-top2 3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
    -webkit-animation: shake-top2 3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
}
@keyframes shake-top2 {
    0%,
    100% {
      -webkit-transform: rotate(0deg);
              transform: rotate(0deg);
      -webkit-transform-origin: 50% 0;
              transform-origin: 50% 0;
    }
    10% {
      -webkit-transform: rotate(2deg);
              transform: rotate(2deg);
    }
    20%,
    40%,
    60% {
      -webkit-transform: rotate(-4deg);
              transform: rotate(-4deg);
    }
    30%,
    50%,
    70% {
      -webkit-transform: rotate(4deg);
              transform: rotate(4deg);
    }
    80% {
      -webkit-transform: rotate(-2deg);
              transform: rotate(-2deg);
    }
    90% {
      -webkit-transform: rotate(2deg);
              transform: rotate(2deg);
    }
  }
@-webkit-keyframes shake-top2 {
    0%,
    100% {
      -webkit-transform: rotate(0deg);
              transform: rotate(0deg);
      -webkit-transform-origin: 50% 0;
              transform-origin: 50% 0;
    }
    10% {
      -webkit-transform: rotate(2deg);
              transform: rotate(2deg);
    }
    20%,
    40%,
    60% {
      -webkit-transform: rotate(-4deg);
              transform: rotate(-4deg);
    }
    30%,
    50%,
    70% {
      -webkit-transform: rotate(4deg);
              transform: rotate(4deg);
    }
    80% {
      -webkit-transform: rotate(-2deg);
              transform: rotate(-2deg);
    }
    90% {
      -webkit-transform: rotate(2deg);
              transform: rotate(2deg);
    }
  }
  @keyframes shake-top {
    0%,
    100% {
      -webkit-transform: rotate(0deg);
              transform: rotate(0deg);
      -webkit-transform-origin: 50% 0;
              transform-origin: 50% 0;
    }
    10% {
      -webkit-transform: rotate(2deg);
              transform: rotate(2deg);
    }
    20%,
    40%,
    60% {
      -webkit-transform: rotate(-4deg);
              transform: rotate(-4deg);
    }
    30%,
    50%,
    70% {
      -webkit-transform: rotate(4deg);
              transform: rotate(4deg);
    }
    80% {
      -webkit-transform: rotate(-2deg);
              transform: rotate(-2deg);
    }
    90% {
      -webkit-transform: rotate(2deg);
              transform: rotate(2deg);
    }
  }
  

.cercle::after {
    position: absolute;
    background-image: url(/images/picture_bonstudioBD.jpg);
    background-position: center;
    background-size: cover;
    width: 205px;
    height: 205px;
    content: '';
    top: 8px;
    right: 0;
    bottom: 0;
    left: 8px;
    border-radius:inherit;
    -webkit-border-radius:inherit;
    -moz-border-radius:inherit;
    -ms-border-radius:inherit;
    -o-border-radius:inherit;
}

.detail-about ul {
    list-style-type: none;
    display: flex;
    justify-content: space-around;
    flex-direction: column;
    margin: 0 0 10px 0;
    padding-bottom: 10px;
    hyphens: none;
}

.detail-about li{
    margin: 5px;
    
}

.about-btn {
    border: none;
    height: 30px;
    padding: 8px;
    background-color: #E8A2A2;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    margin: 10px 0 0 0;
}

.about-btn a {
    color: #4f4f4f;
    font-weight: bold;
    text-decoration: none;
}

.about-btn:hover {
    box-shadow: 0px 2px 6px #7C5858;
}

.btn-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.skills-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 0 30px 0;
    width: 100vw;
}

.background-skills {
    padding: 20px 0 40px 0;
    width: 65vw;
    height: auto;
    background-color: white;
    box-shadow: 0px 3px 12px #7C5858;
    border-radius: 35px;
    -webkit-border-radius: 35px;
    -moz-border-radius: 35px;
    -ms-border-radius: 35px;
    -o-border-radius: 35px;
}

.skills-box {
    display: flex;
    flex-wrap: wrap;
    font-family: 'poppins', sans-serif;
    font-size: 12px;
    justify-content: space-evenly;
    margin: 25px 0 30px 0;
}

.skill-detail {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 10px 10px;
}

.background-skills h2 {
    font-family: 'poppins', sans-serif;
    font-weight: 700;
    font-size: 23px;
    text-align: center;
    margin: 0 0 0 0;
}

.background-skills h3 {
    font-family: 'poppins', sans-serif;
    font-weight: 700;
    font-size: 18px;
    text-align: center;
    margin: 20px 0 0 0;
}

.skills-box .skill-detail i {
    color: #696969;
    font-size: 38px;
    margin: 0 0 15px 0;
}

.skill-detail.project p {
    font-family: 'poppins', sans-serif;
    font-weight: 300;
    font-size: 14px;
}

.background-timeline {
    display: flex;
    flex-direction: column;
    width: 65vw;
    text-align: center;
    background-color: white;
    color: black;
    font-family: 'poppins', sans-serif;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 20px;
    padding-top: 20px;
    border-radius: 35px;
    -webkit-border-radius: 35px;
    -moz-border-radius: 35px;
    -ms-border-radius: 35px;
    -o-border-radius: 35px;
    box-shadow: 0px 3px 12px #7C5858;

}

.timeline-container {
    width: 100vW;
    display: flex;
    justify-content: center;
    hyphens: none;
    -webkit-hyphens: none;
    -moz-hyphens: none;
    -ms-hyphens: none;
}

.timeline {
    display: flex;
    justify-content: center;
    position: relative;
    /*margin: 0 auto;*/
    padding: 40px 20px;
    overflow: auto;
}

.timeline:after {
    content: "";
    position: absolute;
    left: 20px;
    right: 20px;
    top: 50%;
    height: 8px;
    background: radial-gradient(circle at top right, rgba(232, 162, 162, 1) 0%, rgba(232, 231, 255, 1) 100%);
    ;
    border-radius: 3px;
    z-index: 1;
    transform: translateY(-50%);
}

.timeline .box {
    display: inline-block;
    position: relative;
    background: #eeeeee;
    width: auto;
    height: 100px;
    margin: 0 0 50px 0;
    vertical-align: top;
    padding: 8px;
}

.timeline .box:not(:first-child) {

    margin-left: -20px;
}

.timeline .box:not(:last-child) {

    margin-right: -20px;
}

.timeline .box:before {
    content: "";
    display: block;
    position: absolute;
    top: calc(100% + 19px);
    left: 50%;
    background: #E8A2A2;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.timeline .box:after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    width: 0;
    height: 0;
    border-left: 16px solid transparent;
    border-right: 16px solid transparent;
    border-top: 20px solid #eeeeee;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}

.timeline .box:nth-child(even) {
    margin-top: 155px;
    margin-bottom: 0;
}

.timeline .box:nth-child(even):before {
    top: auto;
    bottom: calc(100% + 19px);
}

.timeline .box:nth-child(even):after {
    top: auto;
    bottom: 100%;
    border-left: 16px solid transparent;
    border-right: 16px solid transparent;
    border-bottom: 20px solid #eeeeee;
    border-top: none;
}

.timeline .box h2 {
    font-family: 'poppins', sans-serif;
    font-weight: 700;
    font-size: 23px;
    text-align: center;
    margin: 0 0 0 0;
}

.timeline .box h3 {
    color: black;
    font-family: 'poppins', sans-serif !important;
    font-size: 12px;
    font-weight: 600;
    margin: 0;
}

.timeline .box p {
    color: black;
    font-family: 'poppins', sans-serif;
    font-size: 12px;
    font-weight: 600;
    margin: 0;
    text-align: center;
}

/* --contact-- */

.contact-section {
    display: flex;
    justify-content: center;
    /*position: sticky;*/
    margin-top: 15%;
    margin-bottom: 0px;
    width: 100%;
    top: 0px;

}

.card-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 65vw;
    height: 65vh;
    background-color: white;
    margin: 0px 10px 10px 10px;
    border-radius: 35px;
    box-shadow: 0px 3px 12px #7C5858;
}

.card-contact-title {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

h3 {
    color: #696969;
    font-size: 50px;
    font-family: 'pacifico', cursive;
    margin-top: 0px;
}

h4 {
    color: #C78686;
    font-family: 'poppins', sans-serif;
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 30px;
}

.card-detail {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: black;
    margin: 15px 0 0 0;
}

.card-detail .fas {
    margin-right: 20px;
    color: #C78686;
}

.card-detail .fab {
    margin-right: 20px;
    color: #C78686;
}

.card-detail .location {
    display: flex;
    flex-direction: row;
    align-items: center;
    font-family: 'poppins', sans-serif;
    font-size: 25px;
    margin-bottom: 30px;

}

.card-detail .mobile {
    display: flex;
    flex-direction: row;
    align-items: center;
    font-family: 'roboto', sans-serif;
    font-size: 25px;
    margin-bottom: 30px;

}

.card-detail .mail {
    display: flex;
    flex-direction: row;
    align-items: center;
    font-family: 'roboto', sans-serif;
    font-size: 25px;
    margin-bottom: 30px;
}

.card-detail .socialnetwork {
    display: flex;
    flex-direction: row;
    align-items: center;
    font-family: 'roboto', sans-serif;
    font-size: 25px;
    margin-bottom: 30px;
}

.mail a {
    text-decoration: none;
    color: black;
}

.socialnetwork a {
    text-decoration: none;
    color: black;
}

/* FOOTER */

footer {
    position: relative;
    height: 70px;
    z-index: 10; /* Augmenté pour éviter qu'il passe derrière */
    bottom: 0;
    left: 0;
    padding: 20px 0; /* Ajusté pour ne pas trop grandir */
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    width: 130%;
    color: #696969;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1); /* Léger effet d'ombre */
}

footer a {
    color: #696969;
    margin: 24px;
}

footer i {
    font-size: 20px;
}

footer nav{
    padding: 8px;
}


/*mentions legales*/

.mentionslegales-container {
    display: flex;
    justify-content: center;
    margin-top: 16%;
    width: 100vw;
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
}

.background-mentionslegales-container {
    color: #4f4f4f;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 65vw;
    padding: 40px 35px 40px 35px;
    margin-bottom: 40px;
    background-color: white;
    border-radius: 35px;
    -webkit-border-radius: 35px;
    -moz-border-radius: 35px;
    -ms-border-radius: 35px;
    -o-border-radius: 35px;
    box-shadow: 0px 3px 12px #7C5858;
}

/* calendly */
.calendly-badge-widget {
    bottom: 90px !important; /* Décale le widget de 80px par rapport au bas */
}