*{
    font-family: Poppins,sans-serif;
    font-weight: 500;
    font-size: 18px;
    color:#2c2524 ;
    line-height: 1.6;
    margin: 150 auto;
}

h2{
    font-weight: 800;
    font-size: 22px;
}

ul{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
  }
  
  
    
    .dropdown .dropbtn {
      font-size: 18px;  
      font-weight: 600;
      border: none;
      outline: none;
      color: black;
      background-color: inherit;
      font-family: inherit;
      margin: 0;
    }
    
    
    .dropdown-content {
      display: none;
      position: absolute;
      background-color: #f9f9f9;
      min-width: 160px;
      box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
      z-index: 1;
    }
    
    .dropdown-content a {
      float: none;
      color: black;
      padding: 12px 16px;
      text-decoration: none;
      display: block;
      text-align: left;
    }
    
    .dropdown-content a:hover {
      background-color: #ddd;
    }
    
    .dropdown:hover .dropdown-content {
      display: block;
    }
  
  body {
      background-color: #fffaf5; /* Fond crème */
      color: #333;
      overflow-x: hidden;
      color: var(--neutral-600);
      font-family: Poppins, sans-serif;
      font-size: 18px;
      font-weight: 500;
      line-height: 1.889em;
  }
  a {
      text-decoration: none;
      color: inherit;
  }
  
  /* HEADER */
  .header {
      background-color: #fffaf5;
      padding: 20px 10%;
      display: flex;
      justify-content: space-between;
      align-items: center;
  }
  
  .logo {
      display: flex;
      align-items: center;
      font-size: 1.5rem;
      font-weight: bold;
  }
  
  .logo img {
      width: 130px;
      margin-right: 10px;
  }
  
  nav.navbar {
      display: contents;
  }
  
  .nav-links {
      display: flex;
      list-style: none;
      gap: 30px;
  }
  
  .nav-links a {
      font-weight: bold;
      transition: color 0.3s;
  }
  
  .nav-links a:hover {
      color: #ff4d4d;
  }
  
  .btn.contact-btn {
      background-color: #ff4d4d;
      color: white;
      padding: 10px 20px;
      border-radius: 5px;
      font-weight: bold;
      transition: background 0.3s;
  }
  
  .btn.contact-btn:hover {
      background-color: #e04040;
  }
  
  h1 {
     font-size: 20px;
     font-weight:bolder; 
  }
  .block_shop p{
      color:#817d7d;
  }

/*values*/
.container-default {
    max-width: 1257px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
}

.w-container:before, .w-container:after {
    content: " ";
    grid-area: 1 / 1 / 2 / 2;
    display: table;
}

.title.values {
    text-align: center;
    margin-bottom: 69px;
}

h2 {
    color: var(--neutral-800);
    margin-top: 0;
    font-weight: 800;
    line-height: 1.395em;
    margin-block-start: 0.83em;
    margin-block-end: 0.83em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
}


.values-grid {
    grid-column-gap: 40px;
    grid-row-gap: 96px;
    grid-template-rows: auto;
    grid-template-columns: auto auto;
    justify-content: space-between;
}

.w-layout-grid {
    grid-auto-columns: 1fr;
    display: grid;
}

.value-wrapper {
    align-items: center;
    max-width: 566px;
    display: flex;
}

.image.value-icon {
    max-width: 129px;
    margin-right: 48px;
}

img {
    display: inline-block;
    vertical-align: middle;
    border: 0;
}

p {
    display: block;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    unicode-bidi: isolate;
    margin-top: 0;
}

.text-no-wrap {
    white-space: nowrap;
}

/* Groupe des valeurs */
.values-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 48px;
}



/* Responsive : Grand écran (1920px et plus) */
@media (min-width: 1920px) {
    .container-default {
        max-width: 1400px; /* Augmentation de la largeur maximale */
    }
    
    .image.value-icon {
        max-width: 129px;
        margin-right: 48px;
    }
    

    .values-grid {
        grid-template-columns: repeat(3, 1fr); /* 3 colonnes */
        grid-gap: 50px 80px;
    }

    h2 {
        font-size: 40px;
    }

    p {
        font-size: 18px;
    }
}

/* Responsive : Mobile */
@media (max-width: 768px) {
    .values-group {
        grid-template-columns: 1fr; /* 1 colonne sur mobile */
        gap: 24px;
    }
}

    .value-wrapper {
        flex-direction: column; /* Aligner les icônes et le texte en colonne */
        text-align: center;
        max-width: 100%;
    }

    .values-grid {
        grid-column-gap: 40px;
        grid-row-gap: 96px;
        grid-template-rows: auto;
        grid-template-columns: auto auto;
        justify-content: space-between;
    }
    

    .image.value-icon {
        margin-right: 0;
        margin-bottom: 16px; /* Espace sous l'icône */
    }

    h2 {
        font-size: 32px;
    }

    h3 {
        font-size: 24px;
    }

    p {
        font-size: 16px;
    }
}

/* Responsive : Mobile (440px et moins) */
@media (max-width: 440px) {
    .values-grid {
        grid-template-columns: 1fr; /* 1 colonne */
        grid-gap: 16px;
    }

    .value-wrapper {
        flex-direction: column;
        text-align: center;
        max-width: 100%;
    }

    .image.value-icon {
        max-width: 80px; /* Réduction de la taille de l'icône */
        margin-bottom: 12px;
    }

    h2 {
        font-size: 24px;
    }

    h3 {
        font-size: 20px;
    }

    p {
        font-size: 14px;
    }
}


/*team*/
.container-medium-773px.team-members {
    text-align: center;
    margin-bottom: 48px;
}
.container-medium-773px {
    max-width: 773px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
}

.bg-neutral-200 h2 {
    transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
    opacity: 1;
    transform-style: preserve-3d;
    color: var(--neutral-800);
    margin-top: 0;
    margin-bottom: 24px;
    font-size: 38px;
    font-weight: 800;
    line-height: 1.395em;
}

.container-default w-container{
    transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
    opacity: 1;
    transform-style: preserve-3d;
}

.container-default {
    max-width: 1257px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
}

.w-container {
    max-width: 940px;
    margin-left: auto;
    margin-right: auto;
}

.w-container:before, .w-container:after {
    content: " ";
    grid-area: 1 / 1 / 2 / 2;
    display: table;
}

.bg-neutral-200 h3 {
    color: var(--neutral-800);
    margin-top: 0;
    font-weight: 800;
    line-height: 1.5em;
}

.bg-neutral-200 img {
    transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
    transform-style: preserve-3d;
    max-width: 100%;
    display: inline-block;
    vertical-align: middle;
    width: 100%;
}

.card.team-item-link {
    border-color: var(--neutral-500);
    color: var(--neutral-600);
    text-align: center;
    flex-direction: column;
    text-decoration: none;
    transition: border-color .3s, transform .3s;
    display: flex;
}


bg-neutral-200 p {
    display: block;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    unicode-bidi: isolate;
}


.card {
    border: 1px solid var(--neutral-400);
    background-color: var(--neutral-100);
    border-radius: 20px;
    overflow: hidden;
}

.w-inline-block {
    max-width: 100%;
    display: inline-block;
}

.image-wrapper {
    align-items: center;
    display: flex;
    overflow: hidden;
    transform: translate(0);
}

.image.card-team {
    object-fit: cover;
    width: 100%;
}

.image-wrapper.card-team {
    border: 1px solid var(--neutral-400); /* Ajoute une bordure */
    border-radius: 10px; /* Arrondi les bords */
    padding: 8px; /* Espace autour de l'image */
    box-sizing: border-box; /* Inclut le padding et la bordure dans la taille totale */
    margin-bottom: 16px; /* Espace entre l'image et le texte */
}

.card-team-item-content {
    text-align: center; /* Centre le texte */
    padding: 0 16px; /* Ajoute un peu d'espace à gauche et à droite */
}


/* Styles généraux */
.image-wrapper.card-team {
    border: 1px solid var(--neutral-400);
    border-radius: 0px;
    padding: 0px;
    box-sizing: border-box;
    margin-bottom: 16px;
    width: 250px;
}

.card-team-item-content {
    text-align: center;
    padding: 0 16px;
}

/* Responsive : Grand écran (1920px et plus) */
@media (min-width: 1920px) {
    .team-members-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr); /* 4 colonnes */
        gap: 24px;
        margin-left: 7%;
    }

    .card.team-item-link {
        padding: 2px;
    }
}

/* Responsive : Tablette (768px à 991px) */
@media (max-width: 991px) and (min-width: 768px) {
    .team-members-grid {
        display: grid;
        grid-template-columns: repeat(1, 1fr); 
        gap: 16px;
    }

    .image-wrapper.card-team {
        border: 1px solid var(--neutral-400);
        border-radius: 0px;
        padding: 0px;
        box-sizing: border-box;
        margin-bottom: 16px;
        width: 250px;
        margin-left: 220px;
    }

    .card.team-item-link {
        padding: 12px;
    }

    h2 {
        font-size: 32px;
    }

    h3 {
        font-size: 20px;
    }

    p {
        font-size: 14px;
    }
}

/* Responsive : Mobile (440px et moins) */
@media (max-width: 440px) {
    .team-members-grid {
        display: grid;
        grid-template-columns: 1fr; /* 1 colonne */
        gap: 12px;
    }

    .image-wrapper.card-team {
        border: 1px solid var(--neutral-400);
        border-radius: 0px;
        padding: 0px;
        box-sizing: border-box;
        margin-bottom: 16px;
        width: 250px;
        margin-left: 70px;
    }

    .card.team-item-link {
        padding: 8px;
    }

    h2 {
        font-size: 24px;
    }

    h3 {
        font-size: 18px;
    }

    p {
        font-size: 12px;
    }
}


    
/*Instagram*/
    
h2{
    font-weight: 800;
    font-size: 22px;
}
.follow  {
    text-align: center;
    width: 1000px;
    margin: 0 auto;
}

.follow u{
    color :#ff5733;
    font-weight: 800;
    font-size: 22px;
}

.follow_us_1 img{
    border-radius:35px ;
    width: 250px;
    padding: 10px;
}

.follow_right img{
    border-radius:20px ;
    width: 115px;
    padding: 10px;
}

.follow_us{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
}

.shape1{
    z-index: -1;
    position: absolute;
    rotate: 83deg;
    top: -52px;
    left: -20%;
    height: 50%;

}

.shape2{
    z-index: -1;
    position: absolute;
    rotate: 125deg;
    left: -25%;
    bottom: -190px;

}

.shape3{
    z-index: -1;
    position: absolute;
    rotate: 478deg;
    height: 70%;
    right: -16%;
    top: -29px;
}

.about-hero {
    padding: 0%;
    position: relative; 
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin: 104px 0;
  }
  
  .about-hero h1, .about-hero p {
    display: flex;
    justify-content: center;
    text-align: center;
  }
  
  .about-hero .shapes {
    position: absolute; 
    top: 0;
    left: 0;
    width: 100%; 
    height: 100%; 
    pointer-events: none; 
  }
  
  .shapes {
    position: absolute;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .shape-1 {
    position: absolute;
    left: 34%;
    top: 198px;
    z-index: 1;
    width: 101px;
  }
  .shape-2 {
    right: 37%;
    top: 94%;
    width: 95px;
    position: absolute;
    z-index: 1;
  }
  .shape-3 {
    left: 48%;
    top: 359px;
    width: 200px;
    poisition: absolute;
    rotate: 84deg;
    position: absolute;
}
  
  .shape-4 {
    left: 46%;
    top: 166px;
    width: 200px;
    transform: rotate(202deg);
    position: absolute;
    
  }

  .image-1, .image-2 {
    position: relative;
    max-width: 300px;  /* Ajuster selon la taille de l'écran */
    margin: 20px auto;
  }

  .image-1 {
    width: 289px;
    transform: rotate(353deg);
    top: 9px;
    left: 32px;
}
  

  .image-2 {
    transform: rotate(10deg);
    top: 50px;
    right: 38px;
  }
  
  .about-hero h1 {
    font-size: 1.8rem;
    margin: 20px 0;
  }
  
  .about-hero p {
    max-width: 600px;
    margin: 0 auto;
  }
  
  .story {
    background-color: rgba(251, 247, 242, 0.873);
    display: flex;
    align-items: center;
    justify-content: center;
    
  }
  .text {
    font-size: 1.4rem;
  }
  
  
  .story img {
    
    border-radius: 8%;
    width: 563px;
    height: auto;
    margin: 25px 86px;
    transform: rotate(5deg);
    }
    .storys {
      background-color: rgba(251, 247, 242, 0.873);
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 10px;
      gap: 343px;
      margin-bottom: 100px;
    }
    .text2 {
      font-size: 1.4rem;
    }
    
    
    .storys img {
      
      border-radius: 8%;
      width: 563px;
      height: auto;
      margin: 25px 86px;
      transform: rotate(5deg);
      }
   
  @media (max-width: 768px) {
    .about-hero {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 20px;
      margin-bottom: 100px;
    }
  
    .about-hero h1 {
      font-size: 1.8rem;
      margin-bottom: 10px;
    }
  
    .about-hero p {
      font-size: 1rem;
      max-width: 90%;
    }
  
    .shapes {
      position: absolute;
      width: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
    }
    .shape-1 {
        position: absolute;
        left: 34%;
        top: 190px;
        z-index: 1;
        width: 101px;
    }
    .shape-2 {
      right: 93px;
      top: 444px;
      width: 95px;
    }.shape-3 {
      left: 399px;
      top: 359px;
      width: 200px;
    }.shape-4 {
      left: 336px;
      top: 151px;
      width: 200px;
      transform: rotate(252deg);
    }
  
    .image-1, .image-2 {
      position: relative;
      max-width: 300px;  /* Ajuster selon la taille de l'écran */
      margin: 20px auto;
    }
  
    .image-1 {
      width: 289px;
      transform: rotate(353deg);
      top: 9px;
      left: 32px;
  }
    }
  
    .image-2 {

      transform: rotate(10deg);
      top: 50px;
      right: 38px;
    }

    .image-1, .image-2 {
        position: relative;
        max-width: 300px;  /* Ajuster selon la taille de l'écran */
        margin: 20px auto;
        border-radius: 20px;
      }
  
    
  
    .story img, .storys img {
      width: 20%;
      
      
    }
  
    .text, .text2 {
      font-size: 1.2rem;
      text-align: center;
      padding: 0 15px;
    }
  



@media screen and (max-width:768px){
  .follow_us {
  display: flex;
  flex-wrap: wrap; /
    
    }
    
.follow_right img {
    border-radius: 25px;
    width: 142px;
    padding: 10px;
}

.follow_us_1 img {
    border-radius: 35px;
    width: 149px;
    padding: 10px;
}

}

@media screen and (max-width:440px){
  .follow_us {
  display: flex;
  flex-wrap: wrap; /
    
    }
    
h2 {
    font-weight: 800;
    font-size: 60px;
}

.follow u {
    color: #ff5733;
    font-weight: 800;
    font-size: 60px;
}

.follow_right img {
        border-radius: 50px;
        width: 475px;
        padding: 10px;
    }

    .follow_us_1 img {
        border-radius: 50px;
        width: 475px;
        padding: 10px;
    }
    
    .shape1 {
    z-index: -1;
    position: absolute;
    rotate: 83deg;
    top: -120px;
    left: -21%;
    height: 85%;
}
    
    .shape2 {
    z-index: -1;
    position: absolute;
    rotate: 105deg;
    left: 17%;
    bottom: -719px;
}
    .shape3 {
    z-index: -1;
    position: absolute;
    rotate: 478deg;
    height: 70%;
    right: -18%;
    top: -536px;
}
    
   .follow {
    text-align: center;
    width: 1000px;
    margin: 25px 90px;
    

    
}
   
}

footer{
    display: flex;
    justify-content: center;
      padding: 150px 0;
}
.contact{
    justify-content: center;
    padding: 40px;   
}

.contact1{
    justify-content: center;
    padding: 20px; 
    background-color: #fffaf6;
    border-radius: 20px;
    margin: 90px 0;
    

}

.contact_us{
    font-weight:900;
    margin-left: 12px;
}

.contact_1{
    display: flex;
}

footer p{
    color: #817d7d;
}

.icon{
    display: flex;
    align-items: center;
}

.icon img{
    padding: 15px;
}

u{
    color: #ff5733;
    font-weight: 700;
    font-size: 18px;
}

.grass-3{
    position: absolute;
    z-index: -1;
    top: -34px;
    rotate: 119deg;
    left: -41px;
}

.grass-2{
    position: absolute;
    z-index: -1;
    rotate: 67deg;
    top: 222px;
    right: -40px;
    width: 100px;
}

.logos{
    display: flex;
    align-items: center;
}

.logos img{
    padding: 5px;
}


@media screen and (max-width:768px){
  
  footer {
  display: grid;
  grid-template-areas: repeat(auto-fit, minmax(250px, 1fr ));
  gap: 10px;
    }
      
  .contact_1{
   display: flex;
   flex-wrap: wrap;
    }
}







    
