* {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: normal;
    flex-wrap: wrap;
    max-width: 100vw;
}

html,body,main {
    margin: 0;
    padding: 0;
}

h1 {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 3em;
}


h2 {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 2em;
}

h3 {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 1.5em;
}


h4 {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 1.1rem;
}

nav {
    position: fixed;
    top: 10%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: black;
    border-radius: 50px;
    padding: 10px 20px;
    z-index: 1000; /* Assurer que la navbar est au-dessus des autres éléments */
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

nav ul li {
    margin: 0 15px;
    position: relative; /* Permet aux sous-menus d'être positionnés par rapport aux éléments parents */
}

nav ul li a {
    text-decoration: none;
    color: white;
    font-size: 18px;
}

nav ul li a:hover {
    color: #ddd; /* Couleur lors du survol */
}

nav ul .submenu {
    display: none; /* Cacher les sous-menus par défaut */
    position: absolute;
    top: 100%; /* Positionner le sous-menu en dessous de l'onglet parent */
    left: 0;
    background-color: black;
    border-radius: 10px;
    padding: 10px;
    z-index: 1000;
}

nav ul .submenu li {
    margin: 5px 0; /* Espacement entre les sous-onglets */     border-top: #2d2d2c 2px solid;
}

nav ul .submenu li a {
    font-size: 12px;
}

nav ul li:hover .submenu {
    display: block; /* Afficher les sous-menus lors du survol */
}



@keyframes fade {
    from {
        scale: .8;
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}


@keyframes scroll-reveal {
    to { background-size: 100% 100%; }
}



/*  */

.head {
    margin: 0 auto;
    width: 90vw;
    display: flex;
    justify-content: center;
    margin-top: 12em;
}

#headDiv {
    height: 40%;
    display: flex;
    justify-content: center;
    gap: 2em;
}

#headDiv img {
    height: 22em;
    border-radius: 100%;
}

#headInfo {
    width: 30%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#headInfo h1 {
    margin: unset;
    color: #9D334A;
}

#headInfo p {
    margin: unset;
    width: 80%;
}

#bg1 {
    position: absolute;
    right: 0;
    top: 10em;
    z-index: -1;
}

/* caroussel */



.carousel {
    margin: 0 auto;
    margin-top: 18em;
    position: relative;
    width: 70%;
    overflow: hidden;
    height: 30em;
    background-color: white;
    box-shadow: rgb(0, 0, 0) 4px 4px 0px 5px;
    border-radius: 40px;
    transition: .3s;
    animation: fade linear;
    animation-timeline: view();
    animation-range-start: cover;
    animation-range-end: 700px;
}

.carousel-inner {
    display: flex;
    transition: transform 0.5s ease;
    height: 100%;
}

.carousel-item {
    min-width: 100%;
    box-sizing: border-box;
    padding: 20px;
    justify-content: center;
    align-items: center;
    display: flex;
    height: 100%;
    gap: 5em;
}

.carousel-item img {
     height: 70%;
     border-radius: 10px;
}

#carousselInfo1 {
    width: 30%;
}

.carousel-item.active {
    display: flex;
}

.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    color: #440080;
    cursor: pointer;
    user-select: none;
}

.prev {
    left: 10%;
}

.next {
    right: 10%;
}


#homeInfo {
    margin: 0 auto;
    width: 60%;
    background-color: #FEF2F5;
    border-radius: 10px;
    box-shadow: rgb(98, 93, 93) 5px 5px 2px;
    margin-top: 10em;
    height: 15em;
    display: flex;
    align-items: center;

    transition: .3s;
    animation: fade linear;
    animation-timeline: view();
    animation-range-start: cover;
    animation-range-end: 700px;
}

#homeInfo p {
    text-align: center;
    padding: 2.5em;
    font-size: 1.2em;
}


#bg2 {    
    height: 85vh;
    background-image: url(images/bg/2.svg);
    margin-top: 5em;
}

#homeInfo2 {
    width: 100%;
    display: flex;
    justify-content: center;

    flex-direction: column;
    align-items: center;
}

#homeInfo2 h2 {
    color: #FFC700;
    margin-top: 9em;
}

#homeInfo2 p {
    text-align: justify;
    width: 50%;
    color: white;
    background-color: #9D334A;
}

#homeInfo2 p span {
color: hsl(0 0% 100% / 0.2);
background-image: linear-gradient(90deg, white, hsl(0, 0%, 100%) );
background-clip: text;
background-repeat: no-repeat;
background-size: 0% 100%;
animation: scroll-reveal linear forwards;
animation-timeline: view();
animation-range-start: cover 22vh;
animation-range-end: cover 70vh;
}

footer {
    position: relative;
    bottom: 0;
    left: -1px;
    height: 50vh;
    width: 100%;
    background-image: url(images/bg/footer.svg);
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer {
    width: 80%;
    margin-top: 5em;
}


#structure {
    display: flex;
    justify-content: space-evenly;
    
}

#structure div {
    flex-direction: column;
    display: flex;
    align-items: center;
}

.onglet, .ssonglet {
    color: white;
    text-decoration: none;
}

.onglet {
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 0.9em;
}

.ssonglet {
    font-family: "Poppins", sans-serif;
    font-weight: 200;
    font-style: normal;
    margin-top: 0.8em;
    font-size: 0.6em;
}

#logo{
    align-self: end;
}

#logo img {
    width: 100px;
}

#contact {
    display: flex;
    justify-content: space-evenly;
    gap: 12em;
    margin-top: 2.5em;
} 

#youtube {
    background-color: #9D334A;
    height: 50vh;
    width: 100%;
    display: flex;
    justify-content: center;
}


/* 2eme page dechets moches */

#mocheTop {
    position: relative;
    width: 100%;
    height: 180vh;
}

#mocheBG {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url(images/bg/3.svg);
    background-size: contain ;
    background-repeat: no-repeat;
}

.headMoche {
    width: 90%;
    height: 90vh;
    margin: 0 auto;
    margin-top: 2.5em;
    display: grid;
    grid-template-columns: 45% 1fr;

}

.headMoche div:nth-child(1) {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 5em;
    line-height: 0.99;
}


.headMoche div:nth-child(2) {
    display: flex;
    align-items: center;
    position: relative;
}

#fauteil, #short, #tshirt {
    position: absolute;
}

#fauteil {
    width: 50%;
    left: 30%;
    top: 400px;
    transform: rotate(-30deg);
}

#short {
    width: 30%;
    left: -15%;
    top: 60%;
    transform: rotate(30deg);
}
#tshirt {
    width: 20%;
    top: 10%;
    left: 20%;
    transform: rotate(-50deg);
}

.headMoche div:nth-child(2) img {
    width: 80%;
}

#mocheInfo {
    width: 100%;
    height: 700px;

    position: absolute;
    top: 110%;
    display: flex;
    justify-content: center;
}

#mocheInfo section {
    width: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#mocheInfo section div {
    transition: .3s;
    animation: fade linear;
    animation-timeline: view();
    animation-range-start: cover;
    animation-range-end: 300px;
}

#mocheInfo section div:nth-child(1) {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5em;
}

#mocheInfo section div:nth-child(1) p {
    width: 30vw;
    background-color: white;
    padding: 2.5em;
    border-radius: 20px;
    box-shadow: rgb(98, 93, 93) 5px 5px 2px;
}

#mocheInfo section div:nth-child(1) img {
    width: 20em;
}

#mocheInfo section div:nth-child(2) {
    width: 60%;
    margin-top: 2em;
    text-align: center;
    background-color: white;
    padding: 2.5em;
    border-radius: 20px;
    box-shadow: rgb(98, 93, 93) -1px 5px 2px;
}

#more {
    width: 100%;
    height: 500px;
    display: flex;
    justify-content: center;
}

#savoirplus {
    width: 70vw;

}

.cards-container {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.card {
    width: 250px;
    height: 350px;
    border-radius: 15px;
    background-color: #8A2432; /* Couleur de fond de la carte */
    color: white;
    padding: 15px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.yellow-card p {
    color: black;
}

.card.yellow-card {
    background-color: #FFA500; /* Couleur jaune pour la deuxième carte */
    color: black;
}

.card-image img {
    width: 100%;
    height: auto;
    border-radius: 15px 15px 0 0;
}

.card-title {
    margin-top: 10px;
    font-size: 18px;
    font-weight: bold;
    height: 55px;
    text-align: center;
}

.card-description {
    margin-top: 10px;
    font-size: 14px;
    color: #ddd; /* Couleur du texte de la description */
}

#mocheInfo2 {
    height: 300px;
    width: 50%;
    background-color: white;
    box-shadow: rgb(98, 93, 93) 0px 5px 2px 5px;
    border-radius: 50px;
    margin: auto;
    padding: 1.75em;
    margin-top: 4em;

    
    transition: .3s;
    animation: fade linear;
    animation-timeline: view();
    animation-range-start: cover;
    animation-range-end: 400px;
}


#mocheInfo2 a {
    background-color: #FFC700;
    text-decoration: none;
    padding: 1em;
    border-radius: 50px;
    box-shadow: rgb(98, 93, 93) 2px 5px 2px;
    margin-top: 50px;
    color: black;
}

#footer2 {
    margin-top: 5em;
}


/* 3eme pages les Responsables */

#responsablesTop {
    height: 90vh;
    background-image: url(images/bg/4.svg);
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
}

#responsablesTop h1 {
    color: white;
    line-height: 1;
    margin-left: 5em;
}


#responsablesTop img {
    color: white;
    line-height: 1;
}

#balance {
    width: 80%;
    margin-left: 5em;
}

#conso {
    position: relative;
    width: 15v;
    height: 700px;
}

#conso h2 {
    line-height: 1;
    margin-top: 2em;
    margin-left: 10em;
    font-size: 2.5em;
}

#consoInfo {
    position: relative;
    margin: 0 auto;
    margin-right: 2em;
    width: 80vw;
    height: 70vh;
    display: grid;
    flex-wrap: wrap;
    grid-template-columns: 30% 1fr;
}

#consoInfo div {
    height: 70vh;
}

#perso img {
    height: 100%;
}

#consoInfo div:nth-child(2){
    display: flex;
    align-items: center;
}

#consoInfo div:nth-child(2) p{
    width: 70%;
}

#consop span {
    color: hsl(0 0% 100% / 0.2);
    background-image: linear-gradient(90deg, rgb(0, 0, 0), hsl(0, 0%, 0%) );
    background-clip: text;
    background-repeat: no-repeat;
    background-size: 0% 100%;
    animation: scroll-reveal linear forwards;
    animation-timeline: view();
    animation-range-start: cover 22vh;
    animation-range-end: cover 70vh;
}

#respp span {
    color: hsl(0 0% 100% / 0.2);
    background-image: linear-gradient(90deg, rgb(0, 0, 0), hsl(0, 0%, 0%) );
    background-clip: text;
    background-repeat: no-repeat;
    background-size: 0% 100%;
    animation: scroll-reveal linear forwards;
    animation-timeline: view();
    animation-range-start: cover 22vh;
    animation-range-end: cover 70vh;
}

#produc {
    width:100% ;
    height: 100vh;
    background-image: url(images/bg/5.svg);
}


#producInfo {
    position: relative;
    margin: 0 auto;

    width: 80vw;
    height: 70vh;
    display: grid;
    flex-wrap: wrap;
    grid-template-columns: 1fr 40% ;
}

#producInfo div {
    margin-top: 15em;
    height: 70vh;
}

#producInfo div:nth-child(1){
    justify-self: end;
    align-content: center;
    width: 70%;
}

#perso2 img {
    height: 100%;
}

#ax8vbw{
    width: 50vw ;
    margin: 0 auto;
    transition: .3s;
    animation: fade linear;
    animation-timeline: view();
    animation-range-start: cover;
    animation-range-end: 500px;
}

#responsablesBot{
    margin-top: 5em;
}

#respContent{
    display: flex;
    justify-content: center;
    gap: 5em;
    width: 100%;
    margin-top: 5em;
    height: 50vh;
}

.card2 {
    background-color: white;
    box-shadow: rgb(98, 93, 93) 1px 5px 2px 5px ;
    border-radius: 40px;
    width: 20em;
    height: 32vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1em;
    color: black;

    transition: .3s;
    animation: fade linear;
    animation-timeline: view();
    animation-range-start: cover;
    animation-range-end: 600px;
}

.cardInfo p {
    height: 9em;
}

.savoirPlus {
    background-color: #FFC700;
    text-decoration: none;
    padding: 0.7em;
    border-radius: 50px;
    box-shadow: rgb(0, 0, 0) 2px 5px 2px;
    color: black;
    font-weight: 700;
    
}

.rouge {
    background-color: #9D334A;
    color :white;
}

.rouge p {
    font-weight: 350;
}

#footerResp {
    position: absolute;
    bottom: -170em;
}

#agro {
    height: 90vh;
    background-image: url(images/bg/6.svg);
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
}

#agroTitre h1 {
    line-height: 1em;
}

#agroTitre p {
    width: 40em;
}

#agroIllus {
    width: 55em;
    height: 40em;
    position: relative;
}

#agroIllus img {
    position: absolute;
    width: 40%;
}

#pomme {
    bottom: 0px;
}

#mirtille {
    right: 0;
    top: 250px;
}

#pommerouge  {
    left: 20%;
}

#rejet {
    height: 70vh;
    display: flex;
    justify-content: center;
}

#rejetInfo {
    width: 35%;
    margin-top: 10vh;
}

#rejetInfo h2 {
    line-height: 1;
}

#rejetIllus {
    width: 40em;
    height: 30em;
    position: relative;
}

#rejetIllus img {
    position: absolute;
}

#list {
    height: 400px;
    bottom: 200px;
    left: 0;
}

#angry {
    bottom: 20%;
    right: 0;
    transform: rotate(-50deg);
}

#agroBot {
    bottom:  -160em;
    position: absolute;
    background-image: url(images/bg/7.svg);
    width: 100%;
    height: 250vh;
    background-size: cover;
}

#chimique {
    position: relative;
    width: 90%;
    color: white;
    margin: 0 auto;
    margin-top: 20em;
    display: grid;
    grid-template-columns: 55% 1fr;
}

#chimique div:nth-child(2) {
    position: relative;
}

#chimiqueInfo {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 5em;
}

#chimiqueInfo h2 {
    line-height: 1;
    margin-right: 10em;
}

#chimiqueInfo p {
    width: 60%;
    font-weight: 300;
}

#toxic {
    height: 30em;
    transform: rotate(-30deg);
}

#gaspillage {
    margin: 0 auto;
    margin-top: 10em;
    width: 90%;
    height: 80vh;
    display: grid;
    grid-template-columns: 35% 1fr 35%;
    position: relative;
}

 #waste {
    position: relative;
    display: flex;
    justify-content: center;
 }

 #waste img {
    height: 50%;
 }

 .gaspInfo {
    color: white;
    width: 80%;
    font-weight: 300;
    margin-top: 10em;
 }

 .bxaf {
    text-align: end;
 }

 #gaspillage div:nth-child(1) {
    display: flex;
    justify-content: end;
 }

 #footerGasp {
    bottom: -120em;
 }


#consequence {
    width: 100%;
    height: 100vh;
    background-image: url(images/bg/8.svg);
    background-size: contain 30%;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
}

#consequenceInfo {
    width: 80%;
    height: 90%; 
    display: flex;     
    margin-left: 10em;
}

#consInfoTitre {
    display: flex;
    align-items: center;
    justify-content: center;
}

#consInfoTitre h1{ 
    line-height: 1;
    margin-left: 2.5em;
}

#planet img {
    width: 90%;
    height: 90%;
}

#consequenceInfo div:nth-child(2) {
    display: flex;
    justify-content: center;
    align-items: center;
}

#impact {
    width: 100%;
    display: flex;
    justify-content: center;
}

#impact div {
    display: flex;
    gap: 5em;
}

#impact div img {
    width: 500px;
}

#impact div p {
    width: 500px;
    font-size: 1.5rem;
}

#impact div p span {
    width: 500px;
    font-size: 1.5rem;
    color: hsl(0 0% 100% / 0.2);
    background-image: linear-gradient(90deg, rgb(0, 0, 0), hsl(0, 1%, 17%) );
    background-clip: text;
    background-repeat: no-repeat;
    background-size: 0% 100%;
    animation: scroll-reveal linear forwards;
    animation-timeline: view();
    animation-range-start: cover 22vh;
    animation-range-end: cover 70vh;
}

#citations {
    background-color: #9D334A;
    width: 100%;
    height:230vh;
    background-size: cover;
}

#citations div {
    display: flex;
    gap: 4em;    
    justify-content: center;
    align-items: center;
    margin-top: 5em;
    padding: 2em;

    transition: .3s;
    animation: fade linear;
    animation-timeline: view();
    animation-range-start: cover;
    animation-range-end: 700px;
}

#citations div img {
    height: 70%;
    border-radius: 40px;
}


#citations div div {
    display: flex;
    align-items: center;
    width: 30%;
    padding: 2em;
    border-radius: 20px ;
    height: 250px;
}

#citations div div p {
    font-weight: 700;
}

.jaune {
    background-color: #FFC700;
    box-shadow: rgb(0, 0, 0) 5px 5px 2px;
}

.blanc {
    background-color: white;
    box-shadow: rgb(0, 0, 0) 5px 5px 2px;
}

#footerCons {
    margin-top: 5em;
}

#action {
    width: 100%;
    height: 100vh;
    background-image: url(images/bg/9.svg);
    background-size: cover;
    display: flex;
    justify-content: end;
    align-items: center;
}

#action2 {
    margin-top: 5em;
    width: 1000px;
    height: 300px;
}

#action2 div h1 {
    height: 40px;
}

#actionBody {
    margin-top: -5em;
}

#action p {
    width: 60%;
    text-align: justify;
}


.actionImage {
    width: 500px;
}

.axb8  {
    display: flex;
    justify-content: center;
}

.y2info {
    width: 800px;
    margin-top: 10em;
}

.y2info p {
    width: 40em;
}

.y2info p span {
    color: hsl(0 0% 100% / 0.2);
    background-image: linear-gradient(90deg, white, hsl(0, 0%, 100%) );
    background-clip: text;
    background-repeat: no-repeat;
    background-size: 0% 100%;
    animation: scroll-reveal linear forwards;
    animation-timeline: view();
    animation-range-start: cover 22vh;
    animation-range-end: cover 50vh;
}

.qsd p span, #artTop p span, .infqs, .buyp span {
    color: hsl(0 0% 100% / 0.2);
    background-image: linear-gradient(90deg, rgb(0, 0, 0), hsl(0, 0%, 0%) );
    background-clip: text;
    background-repeat: no-repeat;
    background-size: 0% 100%;
    animation: scroll-reveal linear forwards;
    animation-timeline: view();
    animation-range-start: cover 22vh;
    animation-range-end: cover 50vh;
}



.infoTitre {
    color: #FFC700;
}

#footerAction {
    position: relative;
    background-color: black;
    bottom: 0;
}

#artMain {
    width: 100%;
    background-image: url(images/bg/10.svg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: left;  
}

#art {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

#art img {
    height: 40em;
}

#artTitre {
    color: #FFC700;
    width: 50em;
}

#artTitre h1 {
    height: 40px;
}

#artTitre p{
    width: 70%;
    color: rgb(255, 255, 255);
}

#artTop {
    width: 70em;
    background-color: white;
    box-shadow: rgb(0, 0, 0) 5px 5px 2px;
    padding: 2em;
    border-radius: 20px;
    margin: 0 auto;

    transition: .3s;
    animation: fade linear;
    animation-timeline: view();
    animation-range-start: cover;
    animation-range-end: 400px;
}

#artInfo {
    width: 100%;
    height: 140vh;
}

#artInfo div img, #artInfo div div{
    width: 25%;
}

#artInfo div {
    display: flex;
    justify-content: center;
    width: 100%;
    gap: 5%;
    margin-top: 5em;
}

#artInfo div div {
    display: flex;
    align-items: center;
}

#seconde {
    width: 100%;
    height: 100vh;
    background-image: url(images/bg/11.svg);
    background-size: cover ;
    background-position: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#secondeTop {
    display: flex;
    justify-content: center;
    gap: 10em;
}

#secondeTop img {
    width: 30%;
}

#secondeTop div {
    width: 30%;
    margin-top: 5em;
}

#secondeTop {
    display: flex;
}

#secondeInfo{
    margin-top: 5em;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10em;
}

#secondeInfo img {
    width: 25%;
}

#secondeInfo p {
    width: 35%;
    font-size: 1.2rem;
}

#secondeBot {
    width: 100%;
    display: flex;
    justify-content: center;
    color: white;
    background-image: url(images/bg/12.svg);
    background-size: cover;
}

#ab8c{
    margin-top: 30vh;
}

#ab8c p span, #secondeBotInf div p span {
    color: hsl(0 0% 100% / 0.2);
    background-image: linear-gradient(90deg, white, hsl(0, 0%, 100%) );
    background-clip: text;
    background-repeat: no-repeat;
    background-size: 0% 100%;
    animation: scroll-reveal linear forwards;
    animation-timeline: view();
    animation-range-start: cover 22vh;
    animation-range-end: cover 30vh;
}

#secondeBotInf {
    width: 100%;
    display: flex;
    gap: 5em;
    margin-top: 5vh; 
}

#secondeBotInf div {
    width: 20vw;     
}

#kqlsjd {
    width: 40vw;
}

#acheter {
    display: flex;
    width: 100%;
    height: 105vh;
    justify-content: center;
    align-items: center;
    gap: 5em;
    background-image: url(images/bg/13.svg);
    background-size: contain 100%;
    background-repeat: no-repeat;
    background-position-y: 150% ;
    color: #FFC700;
    line-height: 1;
}

#acheter img {
    height: 70%;
}

#buy {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-image: url(images/bg/14.svg);
    background-size: contain 100%;

}

.buy1 {
    width: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.buy1 p {
    font-weight: 700;
    width: 60%;
}

.buyp span {
    font-weight: 700;
}

.buy1 div {
    display: flex;
    align-items: center;
    gap: 5%;
    justify-content: center;

    transition: .3s;
    animation: fade linear;
    animation-timeline: view();
    animation-range-start: cover;
    animation-range-end: 700px;
}

.buy1 div p {
    width: 45%;
    font-weight: 500;
    background-color: white;
    box-shadow: rgb(0, 0, 0) 5px 5px 2px;
    padding: 1em;
    border-radius: 20px;
}

.buy1 div img {
    width: 40%;
}

#fin {
    background-color: black;
    color: white;
}

#objectifs {
    margin-top: 10em;
}

#objectifs div {
    display: flex;
    justify-content: center;
    gap: 5em;
}

#objectifs div p {
    width: 40%;
    margin-top: 5em;
}

#objectifs div div {
    display: block;
}

#objectifs div img {
    width: 80%;
}

#equipe {
    margin-top: 10vh;
    height: 90vh;
    background-image: url(images/bg/15.svg);
    background-size: contain 100%;
    background-position-y: 100% ;
    display: flex;
    align-items: center;

}

#equipe div {
    display: flex;
    justify-content: center;
    gap: 5em;
    margin-bottom: 15em;
}

#presentation {
    width: 35%;
    height: 5px;
}

#equipe div img {
    width: 35%;
}

#presentation h1 {
    height: 0px;
}


#presentation p {
    height: 0px;
}

#post {
    height: 80vh;
    width: 100%;
}

#post h1 {
    display: flex;
    justify-content: center;
}

#post1 {
    margin: 0 auto;
    width: 30em;
    height: 30em;
    border: black 2px solid;
    border-radius: 20px;
    position: relative;
}

#post1 div {
    position: relative;
}

.account, .like {
    height: 15%;
}

.account {
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    border-bottom: black 2px solid;
}

.like {
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    border-top: black 2px solid;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    height: 15%;
    gap: 18em;
}

.pic {
    height: 68%;
    position: relative;     
    display: flex;
    justify-content: center;
    background-color: rgb(247, 240, 240);
}

.account div {
    display: flex;
    align-items: center;
    gap: 0.2em;
    height: 15%;
}

.account div img {
    width: 15%;
    border-radius: 100%;
}

.share {
    height: 50%;
    margin-top: 10px;
}

.like div img {
    height: 35px;
    margin-top: 10px;
}

.pic img {
    width: 70%; /* Adapte la largeur de l'image à la largeur de la div */
    height: 100%; /* Adapte la hauteur de l'image à la hauteur de la div */
    object-fit: cover; /* L'image est ajustée pour couvrir la totalité de la div sans être déformée */

}