* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Roboto", sans-serif;
  }
  li {
    list-style: none;
    font-family: "Stint Ultra Condensed", cursive;
  }
  .one h4 {
    font-size: 40px;
    color: #3b4b69;
    margin-left: 25px;
    padding: 20px;
  }
  footer .main-content {
    display: flex;
  }
  footer .main-content .box {
    flex-basis: 50%;
    padding: 10px 20px;
  }

  .content a {
    text-decoration: none; /* Remove underline */
    color: inherit;       /* Use the parent element's text color */
    cursor: pointer;      /* Change the cursor to pointer for links */
}

  video {
    object-fit: cover;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: -1;
  }
  .hero-container {
    position: relative;
    width: 100%;
    height: 100vh; /* Full screen height */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    object-fit: contain;
  }


  /* Wrapper to position the text over the image */
.image-overlay-container {
  position: relative;
  width: 100%;
  height: 100%;
}

/* Style the image */
.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.2); /* Start zoomed-in */
  transition: transform 2s ease; /* Smooth transition */
}

/* Apply animation on load */
.hero-image.animated {
  animation: zoomOut 2s forwards;
}

/* Keyframes for zoom-out effect */
@keyframes zoomOut {
  from {
      transform: scale(1.2);
  }
  to {
      transform: scale(1);
  }
}

/* Hover effect to zoom-in */
.hero-image:hover {
  transform: scale(1.2);
  transition: transform 0.5s ease;
}

/* Text overlay styling */
.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  z-index: 2; /* Ensure it stays on top of the image */
}

.hero-text h1 {
  font-size: 2.5rem;
  margin: 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); /* Optional: Add shadow for better visibility */
}

.hero-text p {
  font-size: 25px;
  margin-top: 10px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); /* Optional: Add shadow for better visibility */
}


  .hero-container > h1 {
    color: #fff;
    font-size: 40px;
    margin-top: -100px;
    text-align: center;
    font-family: "PT Sans", sans-serif;
  }
  .hero-container > p {
    margin-top: 20px;
    color: #79aad4;
    font-size: 25px;
    font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande",
      "Lucida Sans", Arial, sans-serif;
  }
  @media screen and (max-width: 960px) {
    .hero-container > h1 {
      font-size: 50px;
      margin-top: -150px;
    }
  }
  @media screen and (max-width: 768px) {
    .hero-container > h1 {
      font-size: 30px;
      margin-top: -100px;
    }
    .hero-container > p {
      font-size: 25px;
    }
  }

  
  .pricing__section {
    padding: 20px 0 160px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    background-size: cover;
    background-position: 50%;
    margin-left: 80px;
  }
  .pricing__section ul {
    justify-content: center;
    color: #0b0d57;
    font-size: 20px;
    margin-top: 10px;
    margin-bottom: 5px;
  }
  .pricing__section li {
    font-family: "EB Garamond", serif;
    font-weight: 200;
  }
  .pricing__container-card {
    background: #e8f1fa;
    box-shadow: 5px 20px 20px rgba(0, 0, 0, 0.411);
    width: 270px;
    height: 450px;
    text-decoration: none;
    border-radius: 30px;
    margin-right: 10px;
    margin-top: 30px;
  }
  .pricing__container-card:nth-child(2) {
    background: #fff;
    margin-right: 10px;
    margin-top: 30px;
  }
  .pricing__container-card:nth-child(3) {
    margin-left: 10px;
  }
  .pricing__container-card:nth-child(4) {
    background: #fff;
    margin-right: 10px;
  }
  .pricing__container-card:hover {
    -webkit-transform: scale(1.06);
    transform: scale(1.06);
    transition: all 0.3s ease-out;
    background-color: #6BABF3;
  }
  .pricing__container-card:nth-child(2),
  .pricing__container-card:nth-child(4) {
    margin: 30px 24px 0;
  }
  .pricing__container-card:nth-child(2) h3,
  .pricing__container-card:nth-child(4) h3 {
    color: #14233d;
  }
  .pricing__container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    margin-left: 50px;
  }
  .pricing__wrapper {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: start;
    margin: 0 auto;
  }
  .pricing__heading {
    color: #1c2237;
    margin-bottom: 24px;
  }
  .pricing__container-cardInfo {
    display: flex;
    flex-direction: column;
    height: 500px;
    padding: 24px;
    align-items: center;
    color: #fff;
  }
  .pricing__container-cardInfo h3 {
    margin-bottom: 5px;
    font-size: 24px;
    text-align: center;
    color: #14233d;
  }
  .pricing__container-cardInfo h4 {
    font-size: 40px;
  }
  .pricing__container-cardInfo p {
    font-size: 14px;
    margin-bottom: 24px;
  }
  .pricing__container-cardInfo .icon {
    margin: 24px 0;
    text-align: center;
    padding-top: 15px;
    font-size: 40px;
    background: #e8f1fa;
    width: 80px;
    height: 80px;
    border-radius: 40px;
    color: #79aad4;
  }
  .pricing__container-card:nth-child(2) .icon,
  .pricing__container-card:nth-child(4) .icon {
    color: #14233d;
  }
  .container .contactInfo ul .info li {
    font-size: 20px;
  }



  @media screen and (max-width: 600px) {
    .pricing__section {
      margin-left: 10px; /* Réduire la marge à gauche pour les petits écrans */
    }
  }
  @media (max-width: 1200px) {
    .container {
      width: 90%;
      min-width: auto;
      margin: 20px;
      flex-wrap: wrap;
    }
    .cont:before {
      display: none;
    }
    .contactInfo {
      top: 0;
      height: 500px;
      position: relative;
      box-shadow: none;
    }
    .container .contactForm {
      position: relative;
      width: calc(100% - 350px);
      padding: 40px;
      height: 550px;
      box-shadow: none;
      margin-left: 400px;
    }
  }
  
  #sidebar .list-items li {
    padding-left: 40px;
    line-height: 65px;
    list-style: none;
  }
  .cent .tex {
    width: 600px;
  }
  .faib .textdeux li {
    font-size: 25px;
  }
  .for {
    display: flex;
  }
  .trans .tex {
    font-size: 20px;
  }
  .day p {
    font-size: 13px;
  }
  .one {
    background-size: cover;
    background-position: 50%;
    height: auto;
    flex-wrap: wrap;
    background-color: #e8f1fa;
    display: flex;

  }

  .one-projet {
    background-size: cover;
    background-position: 50%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    
  }

  .one-projet h4 {
    font-size: 40px;
    color: #3b4b69;
    margin-left: 25px;
    padding: 20px;
  }



  .images {
    display: flex;
    width: 350px;
    height: 270px;
    box-shadow: 2px 2px 10px #8a8a8a;
  }
  .images img {
    height: 270px;
    width: 100%;
    transition: all 0.15s ease;
    background-color: hsla(0, 0%, 100%, 0.973);
    padding: 10px 10px 10px 20px;
  }
  .images input {
    display: none;
  }
  .swiper-slide img {
    width: 100%;
    height: 100%;
    padding: 80px;
  }

  @media screen and (max-width: 429px) {
    .one h4 {
      font-size: 50px;
      padding: 10px;
    }
    .images {
      width: 270px;
    }
  }
  .pho {
    height: auto;
  }
  .pho .photoss {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-family: sans-serif;
    background-color: rgba(120, 173, 243, 0.212);
  }
  .pho .photoss .grid-container {
    -webkit-columns: 4 200px;
    columns: 200px 4;
    grid-column-gap: 1rem;
    -webkit-column-gap: 1rem;
    column-gap: 1rem;
    width: 90%;
    background: #fff;
    margin: 60px auto 70px;
  }
  .pho .photoss div {
    margin-top: 1.5rem;
    display: inline-block;
    width: 90%;
    border: 2px solid #000;
    padding: 5px;
    box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.5);
    border-radius: 5px;
    transition: all 0.25s ease-in-out;
  }
  .pho .photoss .grid-item-1:hover,
  .pho .photoss .grid-item-2:hover,
  .pho .photoss .grid-item-3:hover,
  .pho .photoss .grid-item-4:hover,
  .pho .photoss .grid-item-5:hover,
  .pho .photoss .grid-item-6:hover,
  .pho .photoss .grid-item-7:hover,
  .pho .photoss .grid-item-8:hover,
  .pho .photoss .grid-item-9:hover,
  .pho .photoss .grid-item-10:hover,
  .pho .photoss .grid-item-11:hover,
  .pho .photoss .grid-item-12:hover,
  .pho .photoss .grid-item-13:hover,
  .pho .photoss .grid-item-14:hover,
  .pho .photoss .grid-item-15:hover,
  .pho .photoss .grid-item-16:hover,
  .pho .photoss .grid-item-17:hover,
  .pho .photoss .grid-item-18:hover,
  .pho .photoss .grid-item-19:hover,
  .pho .photoss .grid-item-20:hover,
  .pho .photoss .grid-item-21:hover,
  .pho .photoss .grid-item-22:hover {
    -webkit-filter: grayscale(0);
    filter: grayscale(0);
  }
  .pho .photoss :hover {
    border-color: #0d0179;
    -webkit-text-decoration: bold;
    text-decoration: bold;
  }
  .pho .photoss img {
    width: 100%;
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    border-radius: 5px;
    transition: all 0.25s ease-in-out;
  }
  .pho .photoss p {
    padding: 0;
    text-align: center;
    font-style: italic;
    font-weight: 700;
  }
  @media screen and (max-width: 950px) {
    .pho .photoss div {
      width: 100px;
    }
    .pho .photoss .grid-container {
      -webkit-columns: 5 100px;
      columns: 100px 5;
      grid-column-gap: 20px;
      -webkit-column-gap: 20px;
      column-gap: 20px;
    }
    .pho .photoss .grid-item-1:hover,
    .pho .photoss .grid-item-2:hover,
    .pho .photoss .grid-item-3:hover,
    .pho .photoss .grid-item-4:hover,
    .pho .photoss .grid-item-5:hover,
    .pho .photoss .grid-item-6:hover,
    .pho .photoss .grid-item-7:hover,
    .pho .photoss .grid-item-8:hover,
    .pho .photoss .grid-item-9:hover,
    .pho .photoss .grid-item-10:hover,
    .pho .photoss .grid-item-11:hover,
    .pho .photoss .grid-item-12:hover,
    .pho .photoss .grid-item-13:hover,
    .pho .photoss .grid-item-14:hover,
    .pho .photoss .grid-item-15:hover,
    .pho .photoss .grid-item-16:hover,
    .pho .photoss .grid-item-17:hover,
    .pho .photoss .grid-item-18:hover,
    .pho .photoss .grid-item-19:hover,
    .pho .photoss .grid-item-20:hover,
    .pho .photoss .grid-item-21:hover,
    .pho .photoss .grid-item-22:hover {
      -webkit-transform: scale(1.6);
      transform: scale(1.6);
    }
  }
  @media screen and (max-width: 495px) {
    .pho .photoss div {
      width: 75px;
    }
    .pho .photoss .grid-container {
      -webkit-columns: 5 75px;
      columns: 75px 5;
      grid-column-gap: 20px;
      -webkit-column-gap: 20px;
      column-gap: 20px;
    }
    .pho .photoss .grid-item-1:hover,
    .pho .photoss .grid-item-2:hover,
    .pho .photoss .grid-item-3:hover,
    .pho .photoss .grid-item-4:hover,
    .pho .photoss .grid-item-5:hover,
    .pho .photoss .grid-item-6:hover,
    .pho .photoss .grid-item-7:hover,
    .pho .photoss .grid-item-8:hover,
    .pho .photoss .grid-item-9:hover,
    .pho .photoss .grid-item-10:hover,
    .pho .photoss .grid-item-11:hover,
    .pho .photoss .grid-item-12:hover,
    .pho .photoss .grid-item-13:hover,
    .pho .photoss .grid-item-14:hover,
    .pho .photoss .grid-item-15:hover,
    .pho .photoss .grid-item-16:hover,
    .pho .photoss .grid-item-17:hover,
    .pho .photoss .grid-item-18:hover,
    .pho .photoss .grid-item-19:hover,
    .pho .photoss .grid-item-20:hover,
    .pho .photoss .grid-item-21:hover,
    .pho .photoss .grid-item-22:hover {
      -webkit-transform: scale(3);
      transform: scale(3);
    }
  }
  @media screen and (max-width: 393px) {
    .pho .photoss div {
      width: 70px;
    }
    .pho .photoss .grid-container {
      -webkit-columns: 5 70px;
      columns: 70px 5;
      grid-column-gap: 20px;
      -webkit-column-gap: 20px;
      column-gap: 20px;
    }
    .pho .photoss .grid-item-1:hover,
    .pho .photoss .grid-item-2:hover,
    .pho .photoss .grid-item-3:hover,
    .pho .photoss .grid-item-4:hover,
    .pho .photoss .grid-item-5:hover,
    .pho .photoss .grid-item-6:hover,
    .pho .photoss .grid-item-7:hover,
    .pho .photoss .grid-item-8:hover,
    .pho .photoss .grid-item-9:hover,
    .pho .photoss .grid-item-10:hover,
    .pho .photoss .grid-item-11:hover,
    .pho .photoss .grid-item-12:hover,
    .pho .photoss .grid-item-13:hover,
    .pho .photoss .grid-item-14:hover,
    .pho .photoss .grid-item-15:hover,
    .pho .photoss .grid-item-16:hover,
    .pho .photoss .grid-item-17:hover,
    .pho .photoss .grid-item-18:hover,
    .pho .photoss .grid-item-19:hover,
    .pho .photoss .grid-item-20:hover,
    .pho .photoss .grid-item-21:hover,
    .pho .photoss .grid-item-22:hover {
      -webkit-transform: scale(3);
      transform: scale(3);
    }
  }
  footer {
    position: relative;
    bottom: 0;
    width: 100%;
    background: #FFFFFF;
  }
  .main-content {
    display: flex;
  }
  .main-content .box {
    flex-basis: 50%;
    padding: 10px 20px;
  }
  .box h2 {
    font-size: 1.125rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #14233d;
    font-family: "Nunito", sans-serif;
  }
  .box .content {
    margin: 20px 0 0;
    position: relative;
  }
  .box .content:before {
    width: 100%;
    background: #a1c6e9;
  }
  .box .content:after,
  .box .content:before {
    position: absolute;
    content: "";
    top: -10px;
    height: 2px;
  }
  .box .content:after {
    width: 15%;
    background: #14233d;
    left: 0px;
  }
  .left .content .fas {
    font-size: 1.4375rem;
    color: #14233d;
    height: 20px;
    line-height: 45px;
    text-align: center;
    border-radius: 50%;
    transition: 0.3s;
    cursor: pointer;
    margin-right: 10px;
  }
  .left .content .fas:hover {
    color: #05f2ff;
  }
  .left .content .text {
    font-size: 15px;
    color: #14233d;
  }
  .center .content li {
    color: #14233d;
    list-style: none;
    font-size: 20px;
    font-family: "Nunito", sans-serif;
    font-weight: 300;
  }
  @media screen and (max-width: 900px) {
    footer {
      position: relative;
      bottom: 0;
    }
    .main-content {
      flex-wrap: wrap;
      flex-direction: column;
    }
    .main-content .box {
      margin: 5px 0;
    }
  }
  :root {
    --primary: #14233d;
    font-family: "Roboto", sans-serif;
  }

  .button-container {
    display: flex;               /* Utiliser Flexbox */
    justify-content: center;     /* Centrer horizontalement */
    align-items: center;         /* Centrer verticalement (si nécessaire) */
    flex-wrap: wrap;             /* Permettre aux boutons de passer à la ligne si nécessaire */
    width: 100%;
    margin: 0 auto;
    padding: 10px;
    gap: 10px;
    margin-bottom: 20px;
}

  
  .btn {
    padding: 8px 20px;
    border-radius: 10px;
    outline: none;
    border: none;
    cursor: pointer;
    font-weight: 700;
    margin-top: 10px;
  }
  .btn--primary {
    background-color: #14233d;
    background-color: var(--primary);
    color: #f3f3f3;
    border: 1px solid #14233d;
    border: 1px solid var(--primary);
  }
  .btn--outline {
    background-color: transparent;
    color: #14233d;
    padding: 8px 20px;
    border: 0.5px solid #14233d;
    border: 0.5px solid var(--primary);
    transition: all 0.3s ease-out;
  }
  .btn--active {
    background-color: #6BABF3; /* Vert ou toute autre couleur */
    color: white;
    border: 1px solid #6BABF3;
}
  .btn--medium {
    padding: 8px 20px;
    font-size: 18px;
  }
  .btn--large,
  .btn--medium {
    font-family: "Roboto", sans-serif;
  }
  .btn--large {
    padding: 12px 26px;
    font-size: 20px;
    font-weight: 700;
  }
  .btn--large:hover,
  .btn--medium:hover {
    transition: all 0.3s ease-out;
    background: #6BABF3;
    color: #fff;
    transition: 0.25s;
  }
  .navbar {
    background: #fff;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Roboto", sans-serif;
    position: sticky;
    top: 0;
    z-index: 999;
  }
  .navbar img {
    width: 250px;
    height: 100px;
  }
  .navbar-container {
    justify-content: center;
    height: 80px;
    max-width: 1500px;
  }
  .navbar-container,
  .navbar-logo {
    display: flex;
    align-items: center;
  }
  .navbar-logo {
    justify-self: start;
    margin-left: 0;
    cursor: pointer;
  }
  .nav-menu {
    display: grid;
    grid-template-columns: repeat(6, auto);
    grid-gap: 10px;
    list-style: none;
    text-align: center;
    width: 60vw;
    justify-content: end;
    margin-right: 2rem;
  }
  .nav-item {
    height: 30px;
  }
  .nav-links {
    color: #14233d;
    display: flex;
    align-items: center;
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
    padding: 0.5rem 1rem;
    height: 100%;
  }
  .img img {
    width: 20px;
    height: 20px;
    margin-right: 3px;
  }
  .nav-links:hover {
    border-bottom: 4px solid #557cf4;
    transition: all 0.2s ease-out;
  }
  .fa-bars {
    color: #0fbebe;
  }
  .menu-icon,
  .nav-links-mobile {
    display: none;
  }
  .navbar ul .nav-links:hover > ul {
    top: 55px;
    opacity: 1;
    visibility: visible;
    transition: 0.3s linear;
    width: 330px;
    background-color: hsla(0, 0%, 85.9%, 0.89);
    border-radius: 10px;
    padding: 5px;
  }
  .navbar ul ul {
    position: absolute;
    top: 85px;
    opacity: 0;
    visibility: hidden;
  }
  .navbar ul ul li {
    line-height: 40px;
    font-family: "Roboto", sans-serif;
    text-decoration: none;
  }
  @media screen and (max-width: 960px) {
    .NavbarItems {
      position: relative;
    }
    .nav-menu {
      display: flex;
      flex-direction: column;
      width: 100%;
      height: 60vh;
      position: absolute;
      top: 80px;
      left: -200%;
    }
    .nav-menu,
    .nav-menu.active {
      opacity: 1;
      transition: all 0.5s ease;
    }
    .nav-menu.active {
      background: #fff;
      left: 0;
      z-index: 1;
    }
    .nav-links {
      text-align: center;
      width: 85%;
      display: table;
    }
    .nav-links:hover {
      background-color: #84b1cc;
      color: #242424;
      border-radius: 0;
    }
    .nav-links-mobile {
      display: none;
    }
    .menu-icon {
      display: block;
      position: absolute;
      top: 0;
      right: 0;
      -webkit-transform: translate(-100%, 60%);
      transform: translate(-100%, 60%);
      font-size: 1.8rem;
      cursor: pointer;
    }
    .fa-times {
      color: #0fbebe;
      font-size: 2rem;
    }
    .nav-links-mobile {
      display: block;
      text-align: center;
      margin: 2rem auto;
      border-radius: 4px;
      width: 50%;
      text-decoration: none;
      font-size: 1.5rem;
      background-color: transparent;
      color: #140b4b;
      padding: 14px 20px;
      border: 1px solid #fff;
      transition: all 0.3s ease-out;
    }
    .nav-links-mobile:hover {
      background: #0a087c;
      color: #fff;
      transition: 0.25s;
    }
  }
  .body {
    height: auto;
  }
  .apropos-text h3 {
    font-size: 30px;
    color: #14233d;
    bottom: 20px;
  }
  .apropos-text h3,
  .apropos-text p {
    text-align: center;
    font-family: "Maven Pro", sans-serif;
  }
  .apropos-text p {
    margin: 30px 60px 80px;
    font-size: 18px;
  }
  .apropos-text,
  .qualite {
    height: auto;
  }
  .qualite {
    background-color: #14233d;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .quality p {
    font-size: 18px;
    color: #fff;
    text-align: center;
    margin-top: 30px;
    margin-left: 20px;
    margin-right: 20px;
  }
  .quality {
    justify-content: center;
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
    margin-top: 30px;
    width: 430px;
  }
  .quality h3 {
    font-size: 20px;
    color: #fff;
    text-align: center;
  }
  .quality .icon {
    margin-left: 40%;
    text-align: center;
    padding-top: 15px;
    font-size: 40px;
    background: #c4c4c4;
    width: 80px;
    height: 80px;
    border-radius: 40px;
    color: #353535;
    margin-bottom: 20px;
  }
  .ph {
    height: 400px;
    background-size: cover;
    background-position: 50%;
  }
  .horraire {
    background-color: #fff;
    height: auto;
  }
  .time,
  .work {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .work {
    background-color: #fbfcc8;
    height: auto;
  }
  .picture p {
    text-align: center;
    margin-right: 30px;
    margin-top: 70%;
  }
  .picture img {
    justify-items: center;
    margin-left: 20px;
    width: 200px;
  }
  .picture {
    margin-top: 30px;
    margin-bottom: 30px;
  }
  .map {
    height: 400px;
    padding: 20px;
    justify-content: center;
    background-color: #bebebe;
  }
  .map iframe {
    width: 100%;
    height: 100%;
    border-radius: 20px;
  }
  .tim {
    text-align: center;
    padding: 30px;
  }
  .day {
    display: flex;
    justify-content: space-between;
    width: 250px;
    height: 20px;
  }
  .days {
    background-color: #b9b9b9;
    margin-bottom: 50px;
  }
  .tim h4 {
    margin-bottom: 30px;
    font-size: 20px;
  }
  .day .ferm {
    color: red;
  }
  .day h6 {
    font-size: 15px;
    margin-left: 5px;
  }
  .day p {
    font-size: 14px;
    color: #000031;
    margin-right: 5px;
    font-weight: 500;
  }
  .day:nth-child(2),
  .day:nth-child(4),
  .day:nth-child(6) {
    background-color: #fff;
  }
  .horraire i {
    font-size: 30px;
    padding: 30px;
  }
  .reclamtion {
    background-color: #fff;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .reclamtion .reclForm .inputBox.w100 {
    width: 100%;
  }
  .reclamtion .reclForm .inputBox input,
  .reclamtion .reclForm .inputBox textarea {
    width: 100%;
    resize: none;
    padding: 5px 0;
    font-size: 18px;
    font-weight: 300;
    color: #333;
    outline: none;
    border: none;
    border-bottom: 1px solid #777;
  }
  .reclamtion .reclForm .inputBox textarea {
    height: 120px;
  }
  .reclamtion .reclForm .inputBox span {
    position: relative;
    left: 0;
    padding: 5px 0;
    pointer-events: none;
    font-size: 18px;
    font-weight: 300;
    transition: 0.3s;
    color: grey;
  }
  .reclamtion .reclForm .inputBox input:focus ~ span,
  .reclamtion .reclForm .inputBox input:valid ~ span,
  .reclamtion .reclForm .inputBox textarea:focus ~ span,
  .reclamtion .reclForm .inputBox textarea:valid ~ span {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 1px;
    color: #01012b;
    font-weight: 500;
  }
  .reclamtion .reclForm .inputBox input[type="submit"] {
    position: relative;
    cursor: pointer;
    background: #14233d;
    color: #fff;
    max-width: 150px;
    padding: 12px;
    margin-top: 20px;
  }
  .reclamtion .reclForm .inputBox input[type="submit"]:hover {
    background: #fbfcc8;
    color: #000;
  }
  .reclForm {
    width: 300px;
    box-shadow: 0 2px 10px #000;
    padding: 20px;
    border-radius: 20px;
    margin: 30px 110px 30px 20px;
  }
  .recltext {
    position: relative;
    width: 300px;
    height: 400px;
  }
  .reclamtion img {
    width: 350px;
    height: 350px;
  }
  .recltext h4 {
    font-size: 35px;
    padding: 10px;
    margin-top: 20%;
    letter-spacing: 2px;
    margin-left: 20%;
    color: #14233d;
    text-shadow: 0 0 15px #b8b8b8;
  }
  @media screen and (max-width: 788px) {
    .body {
      margin-top: 100px;
    }
  }
  @media screen and (max-width: 1200px) {
    .body {
      margin-top: 100px;
    }
  }
  .pros {
    height: 75vh;
  }
  .slantedDivA {
    position: relative;
    display: flex;
    width: 100%;
    height: 250px;
    background-color: #1d5382;
    box-sizing: border-box;
    padding: 30px;
    color: #fff;
    flex-wrap: wrap;
  }
  .slantedDivA:after {
    position: absolute;
    width: 100%;
    height: 100%;
    content: "";
    background: inherit;
    z-index: -1;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-transform: skewY(4deg);
    transform: skewY(4deg);
  }
  .slantedDivA img {
    width: 320px;
    height: 300px;
    margin-left: 30px;
    margin-top: 30px;
  }
  .slantedDivA p {
    margin-top: 100px;
    margin-bottom: 100px;
    font-size: 40px;
    margin-left: 30%;
    font-family: "Maven Pro", sans-serif;
    text-shadow: 0 3px 5px #000;
  }
  .apropos-text {
    position: relative;
  }
  @media screen and (max-width: 480px) {
    .slantedDivA p {
      font-size: 20px;
    }
  }
  @media screen and (max-width: 788px) {
    .slantedDivA p {
      font-size: 30px;
    }
  }
  .wrapper {
    height: 80vh;
    width: 290px;
    position: relative;
    display: flex;
    flex-direction: row;
  }
  #sidebar {
    position: sticky;
    background: #fff;
    height: 80%;
    width: 280px;
  }
  #sidebar .list-items {
    position: relative;
    background: #fff;
    width: 100%;
    height: 100%;
    list-style: none;
  }
  #sidebar .list-items li {
    line-height: 60px;
    border-top: 1px solid hsla(0, 0%, 100%, 0.1);
    border-bottom: 1px solid #333;
    transition: all 0.3s ease;
  }
  #sidebar .list-items li:hover {
    border-top: 1px solid transparent;
    border-bottom: 1px solid transparent;
    box-shadow: 0 0 9px 2px #636363;
  }
  #sidebar .list-items li:first-child {
    border-top: none;
  }
  #sidebar .list-items li a {
    color: #02062c;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    height: 100%;
    width: 100%;
    display: block;
  }
  #sidebar .list-items li a i {
    margin-right: 20px;
  }
  .cent {
    height: auto;
    background-color: #fff;
    margin-top: 30px;
  }
  .cent,
  .partone {
    display: flex;
    flex-wrap: wrap;
  }
  .imag img {
    height: 300px;
    width: 300px;
    padding: 30px 0 30px 30px;
  }
  .cent .tex {
    padding: 30px;
    width: 700px;
  }
  .cent .tex,
  .cent .text {
    text-align: start;
    font-size: 15px;
    letter-spacing: 2px;
    color: grey;
    font-family: "Stint Ultra Condensed", cursive;
  }
  .cent .text {
    margin-right: 50%;
    margin-left: 30px;
  }
  .cent .text h2 {
    color: #00002e;
    margin-bottom: 30px;
  }
  @media screen and (max-width: 900px) {
    .cent .tex {
      width: 400px;
    }
  }
  .faib {
    height: auto;
    display: flex;
    margin-top: 30px;
    flex-wrap: wrap;
  }
  .texts {
    font-size: 15px;
    color: grey;
    font-family: "Stint Ultra Condensed", cursive;
    letter-spacing: 2px;
    padding: 30px;
  }
  .imagess {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 60px;
    margin-right: 60px;
    margin-left: 60px;
  }
  .imagess img {
    width: 200px;
    box-shadow: 0 2px 13px 0 #000;
  }
  .faib .textdeux {
    padding: 30px;
  }
  .faib .textdeux li {
    color: grey;
    list-style-type: circle;
    font-family: "Stint Ultra Condensed", cursive;
    font-size: 20px;
  }
  .faib .textdeux ul {
    padding-left: 30px;
  }
  .faib .textdeux p {
    color: #6d6d6d;
    font-family: "Stint Ultra Condensed", cursive;
    font-size: 20px;
    letter-spacing: 2px;
  }
  .for {
    height: auto;
    margin-top: 30px;
    flex-wrap: wrap;
  }
  .for .texts {
    font-size: 15px;
    color: grey;
    padding: 40px;
    justify-content: center;
    font-family: "Stint Ultra Condensed", cursive;
  }
  .for .partone {
    display: flex;
    flex-wrap: wrap;
  }
  .for .imag img {
    height: 250px;
    width: 250px;
    padding: 30px 0 30px 30px;
  }
  .for .tex {
    text-align: start;
    padding: 40px;
    font-size: 15px;
    color: grey;
    width: 900px;
    font-family: "Stint Ultra Condensed", cursive;
  }
  .for .imagess {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 30px 60px 60px;
  }
  .for .imagess img {
    width: 250px;
    height: 250px;
    box-shadow: 0 2px 13px 0 #000;
  }
  @media screen and (max-width: 900px) {
    .for .tex {
      width: 400px;
    }
  }
  .systemee {
    height: auto;
    display: flex;
    margin-top: 30px;
    flex-wrap: wrap;
  }
  .systemee .texts {
    font-size: 20px;
    color: grey;
    padding: 40px;
    justify-content: center;
    font-family: "Stint Ultra Condensed", cursive;
    letter-spacing: 2px;
  }
  .systemee .partone {
    display: flex;
    flex-wrap: wrap;
  }
  .systemee .imag img {
    height: 300px;
    width: 300px;
    padding: 30px 0 30px 30px;
  }
  .systemee .tex {
    text-align: start;
    padding: 30px;
    font-size: 20px;
    width: 800px;
  }
  .systemee .tex,
  .systemee .tex li {
    color: grey;
    font-family: "Stint Ultra Condensed", cursive;
    letter-spacing: 2px;
  }
  .systemee .tex li {
    list-style-type: circle;
  }
  .systemee .tex ul {
    padding-left: 30px;
    letter-spacing: 2px;
  }
  .systemee p {
    color: #6d6d6d;
    font-family: "Stint Ultra Condensed", cursive;
    letter-spacing: 2px;
  }
  @media screen and (max-width: 900px) {
    .systemee .tex {
      width: 400px;
    }
  }
  .trans {
    height: auto;
    margin-top: 30px;
  }
  .trans,
  .trans .partone {
    display: flex;
    flex-wrap: wrap;
  }
  .trans .imag img {
    height: 200px;
    width: 200px;
    padding: 30px 0 30px 30px;
  }
  .trans .tex {
    text-align: start;
    padding: 30px;
    font-size: 15px;
    color: grey;
    width: 700px;
    font-family: "Stint Ultra Condensed", cursive;
    letter-spacing: 2px;
  }
  @media screen and (max-width: 900px) {
    .trans .tex {
      width: 400px;
    }
  }
  .electro {
    height: auto;
    display: flex;
    margin-top: 30px;
    flex-wrap: wrap;
  }
  .contenu {
    width: 1000px;
  }
  .electro .partone {
    display: flex;
    flex-wrap: wrap;
  }
  .electro .imag img {
    height: 300px;
    width: 300px;
    padding: 30px 0 30px 30px;
  }
  .electro .tex {
    text-align: start;
    padding: 40px;
    font-size: 15px;
    color: grey;
    width: 800px;
    font-family: "Stint Ultra Condensed", cursive;
    letter-spacing: 2px;
  }
  @media screen and (max-width: 900px) {
    .electro .tex {
      width: 400px;
    }
  }
  .cont {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 87.8vh;
    background: #14233d;
    object-fit: contain;
  }
  .cont:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: #fbfcc8;
  }
  .container {
    position: relative;
    min-width: 1000px;
    min-height: 530px;
    display: flex;
  }
  .container .contactInfo {
    position: absolute;
    top: 130px;
    width: 350px;
    height: calc(100% - 250px);
    background: #14233d;
    z-index: 1;
    padding: 40px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 10px 20px #000;
  }
  .container .contactForm {
    position: absolute;
    padding: 70px 50px 70px 250px;
    margin-left: 150px;
    width: calc(100% - 150px);
    height: 100%;
    background: #fff;
    box-shadow: 0 40px 50px #252525;
  }
  .container .contactForm h2 {
    color: #14233d;
    font-size: 25px;
    font-weight: 1000;
    text-align: center;
    margin-bottom: 30px;
    font-weight: 600;
  }
  .container .contactForm .formBox {
    position: relative;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding-top: 30px;
  }
  .container .contactForm .formBox .inputBox {
    position: relative;
    margin-bottom: 35px;
  }
  .container .contactForm .formBox .inputBox.w50 {
    width: 47%;
  }
  .container .contactForm .formBox .inputBox.w100 {
    width: 100%;
  }
  .container .contactForm .formBox .inputBox input,
  .container .contactForm .formBox .inputBox textarea {
    width: 100%;
    resize: none;
    padding: 5px 0;
    font-size: 18px;
    font-weight: 300;
    color: #333;
    outline: none;
    border: none;
    border-bottom: 1px solid #777;
  }
  .container .contactForm .formBox .inputBox textarea {
    height: 120px;
  }
  .container .contactForm .formBox .inputBox span {
    position: absolute;
    left: 0;
    padding: 5px 0;
    pointer-events: none;
    font-size: 18px;
    font-weight: 300;
    transition: 0.3s;
    color: grey;
    font-weight: 600;
  }
  .container .contactForm .formBox .inputBox input:focus ~ span,
  .container .contactForm .formBox .inputBox input:valid ~ span,
  .container .contactForm .formBox .inputBox textarea:focus ~ span,
  .container .contactForm .formBox .inputBox textarea:valid ~ span {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 1px;
    color: #01012b;
    font-weight: 500;
  }
  .container .contactForm .formBox .inputBox input[type="submit"] {
    position: relative;
    cursor: pointer;
    background: #14233d;
    color: #fff;
    max-width: 150px;
    padding: 12px;
  }
  .container .contactForm .formBox .inputBox input[type="submit"]:hover {
    background: #fbfcc8;
    color: #000;
  }
  .container .contactInfo h2 {
    color: #fff;
    font-size: 24px;
    font-weight: 1000;
    text-align: center;
    font-family: "Montserrat", sans-serif;
    text-decoration: underline;
  }
  .container .contactInfo ul .info,
  .container .contactInfo ul .info li {
    position: relative;
    list-style: none;
    margin: 20px 0;
  }
  .container .contactInfo ul .info li {
    display: flex;
    cursor: pointer;
    align-items: flex-start;
    font-weight: 600;
    font-size: 30px;
  }
  .container .contactInfo li span:first-child {
    width: 30px;
    min-width: 30px;
  }
  .container .contactInfo li span:first-child i {
    max-width: 100%;
    color: #7fffd4;
    font-size: 30px;
  }
  .container .contactInfo li span:nth-child(2) {
    color: #fff;
    margin-left: 10px;
    font-weight: 300;
  }
  @media (max-width: 1200px) {
    .container {
      width: 90%;
      min-width: auto;
      margin: 20px;
      flex-wrap: wrap;
    }
    .contactInfo {
      top: 0;
      height: 500px;
      position: relative;
      box-shadow: none;
    }
    .container .contactForm {
      position: relative;
      width: calc(100% - 350px);
      padding: 40px;
      height: 550px;
      box-shadow: none;
      margin-left: 400px;
    }
  }
  @media (max-width: 800px) {
    .cont {
      background: #bfc15f;
    }
    .cont:before {
      display: none;
    }
    .container {
      display: flex;
      flex-direction: r;
      flex-wrap: wrap;
    }
    .container .contactInfo {
      width: 100%;
      height: auto;
      flex-direction: row;
    }
    .container .contactForm {
      width: 100%;
      height: auto;
      margin-top: 420px;
      margin-left: 0;
    }
  }
  @media (max-width: 600px) {
    .container .contactInfo {
      padding: 25px;
      flex-direction: column;
      align-items: flex-start;
      display: flex;
    }
    .container .contactForm {
      padding: 25px;
      margin-top: 370px;
      margin-left: 0;
    }
    .container .contactForm .formBox .inputBox.w50 {
      width: 100%;
    }
  }
  .log {
    min-height: 100vh;
    background: #14233d;
    position: fixed;
    width: 100%;
  }
  .formulaire {
    position: relative;
    padding: 30px;
    border: 1px solid #f1f1f1;
    height: 300px;
    width: 500px;
    background: #fff;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2), 0 5px 5px 0 rgba(0, 0, 0, 0.24);
    margin-top: 15%;
    margin-left: 33%;
  }
  input[type="email"],
  input[type="password"] {
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    box-sizing: border-box;
  }
  input[type="submit"] {
    background-color: #5382af;
    color: #fff;
    padding: 14px 20px;
    margin: 8px 0;
    border: none;
    cursor: pointer;
    width: 100%;
  }
  input[type="submit"]:hover {
    background-color: #fff;
    color: #5382af;
    border: 1px solid #5382af;
  }
  .code {
    display: flex;
    flex-wrap: wrap;
    padding-bottom: 40px;
    padding-left: 10px;
    justify-content: center;
  }
  .codee {
    background-size: cover;
    background-position: 50%;
    height: auto;
  }
  .codee h1 {
    font-size: 30px;
    text-align: center;
    text-decoration: underline;
    text-shadow: 0 2px 10px #000;
    color: #fff;
    padding: 20px;
  }
  .mot {
    padding: 10px;
    width: 370px;
    margin-right: 20px;
    margin-left: 20px;
    margin-top: 40px;
    border-radius: 20px;
    box-shadow: 0 2px 10px 0 #000;
    justify-content: center;
    height: 80px;
    background-color: #fff;
  }
  .mot h4 {
    text-align: center;
    font-size: 15px;
    color: #000052;
  }
  .code input[type="text"] {
    width: 100%;
    padding: 10px;
    display: inline-block;
    border: 1px solid #ccc;
    box-sizing: border-box;
    height: 10px;
  }
  .code input[type="submit"] {
    background-color: #00515c;
    color: #fff;
    padding: 1px;
    margin: 3px 3px 3px 40%;
    border: none;
    cursor: pointer;
    width: 50px;
    height: 15x;
  }
  .code input[type="submit"]:hover {
    background-color: #fff;
    color: #00515c;
    border: 1px solid #00515c;
  }
  .grid {
    background-color: hsla(0, 0%, 100%, 0.973);
    height: 87.9vh;
  }
  .item {
    margin-right: 10px;
  }
  #Immeuble-à-usage-bureautique .show-btn {
    background: #fff;
    font-size: 10px;
    padding-top: 4px;
    font-weight: 700;
    color: #3498db;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    margin-top: 30%;
    width: 100px;
    height: 20px;
  }
  #Immeuble-à-usage-bureautique .show-btn,
  .prix {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
  #Immeuble-à-usage-bureautique input[type="checkbox"] {
    display: none;
  }
  #Immeuble-à-usage-bureautique .prix {
    display: none;
    height: 175px;
    background: #fffce1;
    width: 170px;
    padding-top: 50px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
  }
  #Immeuble-à-usage-bureautique #shhow:checked ~ .prix,
  #Immeuble-à-usage-bureautique #shn:checked ~ .prix,
  #Immeuble-à-usage-bureautique #shoow:checked ~ .prix,
  #Immeuble-à-usage-bureautique #shooww:checked ~ .prix,
  #Immeuble-à-usage-bureautique #show:checked ~ .prix,
  #Immeuble-à-usage-bureautique #shown:checked ~ .prix,
  #Immeuble-à-usage-bureautique #showw:checked ~ .prix,
  #Immeuble-à-usage-bureautique #sshow:checked ~ .prix,
  #Immeuble-à-usage-bureautique #tooshow:checked ~ .prix,
  #Immeuble-à-usage-bureautique #toshow:checked ~ .prix,
  #Immeuble-à-usage-bureautique #tshow:checked ~ .prix,
  #Immeuble-à-usage-bureautique #tsshow:checked ~ .prix,
  #Immeuble-à-usage-bureautique #ttshow:checked ~ .prix {
    display: block;
  }
  #Immeuble-à-usage-bureautique .prix .close-btn {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 18px;
    cursor: pointer;
    color: #00f;
  }
  #Immeuble-à-usage-bureautique .prix .close-btn:hover {
    color: #3498db;
  }
  #Immeuble-à-usage-bureautique .prix .msg {
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    color: #000;
  }
  #Immeuble-à-usage-bureautique .prix .datee {
    height: 25px;
    width: 90%;
    padding-left: 20px;
  }
  #Immeuble-à-usage-bureautique .datee label {
    font-size: 18px;
    margin-left: 20px;
  }
  #Immeuble-à-usage-bureautique .datee input {
    height: 100%;
    width: 100%;
    padding-left: 10px;
    font-size: 17px;
    border: 1px solid silver;
  }
  #Immeuble-à-usage-bureautique .datee input:focus {
    border-color: #3498db;
    border-bottom-width: 2px;
  }
  #Immeuble-à-usage-bureautique .btn {
    height: 25px;
    width: 80%;
    position: relative;
    overflow: hidden;
    left: 20px;
  }
  #Immeuble-à-usage-bureautique .btn .inner {
    height: 100%;
    width: 100%;
    position: absolute;
    left: -100%;
    z-index: -1;
    background: -webkit-linear-gradient(
      right,
      #56d8e4,
      #9f01ea,
      #56d8e4,
      #9f01ea
    );
    transition: all 0.4s;
  }
  #Immeuble-à-usage-bureautique .btn:hover .inner {
    left: 0;
  }
  #Immeuble-à-usage-bureautique .btn button {
    height: 100%;
    width: 100%;
    background: none;
    border: none;
    color: #000;
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
  }
  #groupe .show-btn {
    background: #fff;
    font-size: 10px;
    padding-top: 4px;
    font-weight: 700;
    color: #3498db;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    margin-top: 41%;
    width: 100px;
    height: 20px;
  }
  #groupe .show-btn,
  .prix {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
  #groupe input[type="checkbox"] {
    display: none;
  }
  #groupe .prix {
    display: none;
    height: 200px;
    background: #e1f9ff;
    width: 230px;
    margin-top: 10px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
  }
  #groupe #a:checked ~ .prix,
  #groupe #b:checked ~ .prix,
  #groupe #c:checked ~ .prix,
  #groupe #d:checked ~ .prix,
  #groupe #e:checked ~ .prix,
  #groupe #f:checked ~ .prix,
  #groupe #g:checked ~ .prix,
  #groupe #k:checked ~ .prix,
  #groupe #m:checked ~ .prix {
    display: block;
  }
  #groupe .prix .close-btn {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 18px;
    cursor: pointer;
    color: #00f;
  }
  #groupe .prix .close-btn:hover {
    color: #3498db;
  }
  #groupe .prix .msg {
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    color: #000;
    margin-top: 20px;
    padding-top: 30px;
  }
  #groupe .prix .datee {
    height: 25px;
    width: 90%;
    padding-left: 20px;
  }
  #groupe .datee label {
    font-size: 18px;
    margin-left: 20px;
  }
  #groupe .datee input {
    height: 100%;
    width: 100%;
    padding-left: 10px;
    font-size: 17px;
    border: 1px solid silver;
  }
  #groupe .datee input:focus {
    border-color: #3498db;
    border-bottom-width: 2px;
  }
  #groupe .btn {
    height: 25px;
    width: 80%;
    position: relative;
    overflow: hidden;
    left: 20px;
  }
  #groupe .btn .inner {
    height: 100%;
    width: 100%;
    position: absolute;
    left: -100%;
    z-index: -1;
    background: -webkit-linear-gradient(
      right,
      #56d8e4,
      #9f01ea,
      #56d8e4,
      #9f01ea
    );
    transition: all 0.4s;
  }
  #groupe .btn:hover .inner {
    left: 0;
  }
  #groupe .btn button {
    height: 100%;
    width: 100%;
    background: none;
    border: none;
    color: #000;
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
  }
  .grid {
    padding: 1em;
    background-color: #fff;
    height: auto;
  }
  .grid-inner {
    display: flex;
    flex-wrap: wrap;
    margin: 0 0 0 10px;
    justify-content: center;
  }
  .grid h1 {
    padding: 20px;
    color: #000030;
  }
  .grid-inner h1,
  .grid h1 {
    text-align: center;
    font-size: 40px;
    font-family: "EB Garamond", serif;
  }
  .grid-inner h1 {
    font-weight: 300;
    color: #001b3d;
    text-shadow: 1px 1px 1px #000;
    margin-bottom: 30px;
    margin-top: 20px;
    letter-spacing: 3px;
  }
  .item {
    flex: 1 1 100%;
    padding: 0.5em;
    max-width: 200px;
    border-radius: 20px;
    margin-bottom: 10px;
    height: 200px;
    justify-content: center;
    position: relative;
  }
  .grid img {
    width: 100%;
    height: 150px;
  }
  .item:hover {
    border-color: #08085a;
  }
  .item-inner {
    overflow: hidden;
  }
  .item .details {
    position: absolute;
    top: 10px;
    left: 10px;
    bottom: 10px;
    right: 10px;
    background: rgba(5, 1, 66, 0.726);
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    transition: -webkit-transform 0.5s;
    transition: transform 0.5s;
    transition: transform 0.5s, -webkit-transform 0.5s;
    border-radius: 20px;
  }
  .item:hover .details {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
  }
  .item .details .content {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    text-align: center;
    color: #fff;
    padding: 15px;
  }
  .item .details .content p {
    margin: 0;
    padding: 0;
    font-size: 11px;
    font-weight: 500;
  }
  #Office-building .show-btn {
    background: #fff;
    font-size: 10px;
    padding-top: 4px;
    font-weight: 700;
    color: #3498db;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    margin-top: 30%;
    width: 100px;
    height: 20px;
  }
  #Office-building .show-btn,
  .prix {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
  #Office-building input[type="checkbox"] {
    display: none;
  }
  #Office-building .prix {
    display: none;
    height: 175px;
    background: #fffce1;
    width: 170px;
    padding-top: 50px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
  }
  #Office-building #shhow:checked ~ .prix,
  #Office-building #shoow:checked ~ .prix,
  #Office-building #shooww:checked ~ .prix,
  #Office-building #show:checked ~ .prix,
  #Office-building #shown:checked ~ .prix,
  #Office-building #showw:checked ~ .prix,
  #Office-building #sshow:checked ~ .prix,
  #Office-building #tooshow:checked ~ .prix,
  #Office-building #toshow:checked ~ .prix,
  #Office-building #tshow:checked ~ .prix,
  #Office-building #tsshow:checked ~ .prix,
  #Office-building #ttshow:checked ~ .prix {
    display: block;
  }
  #Office-building .prix .close-btn {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 18px;
    cursor: pointer;
    color: #00f;
  }
  #Office-building .prix .close-btn:hover {
    color: #3498db;
  }
  #Office-building .prix .msg {
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    color: #000;
  }
  #Office-building .prix .datee {
    height: 25px;
    width: 90%;
    padding-left: 20px;
  }
  #Office-building .datee label {
    font-size: 18px;
    margin-left: 20px;
  }
  #Office-building .datee input {
    height: 100%;
    width: 100%;
    padding-left: 10px;
    font-size: 17px;
    border: 1px solid silver;
  }
  #Office-building .datee input:focus {
    border-color: #3498db;
    border-bottom-width: 2px;
  }
  #Office-building .btn {
    height: 25px;
    width: 80%;
    position: relative;
    overflow: hidden;
    left: 20px;
  }
  #Office-building .btn .inner {
    height: 100%;
    width: 100%;
    position: absolute;
    left: -100%;
    z-index: -1;
    background: -webkit-linear-gradient(
      right,
      #56d8e4,
      #9f01ea,
      #56d8e4,
      #9f01ea
    );
    transition: all 0.4s;
  }
  #Office-building .btn:hover .inner {
    left: 0;
  }
  #Office-building .btn button {
    height: 100%;
    width: 100%;
    background: none;
    border: none;
    color: #000;
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
  }
  .contai {
    height: auto;
    background-size: cover;
    background-position: 50%;
    justify-content: center;
  }
  .contai h1 {
    color: #fff;
    text-decoration: none;
    font-size: 50px;
    text-shadow: 2px 2px 10px #000;
    text-align: center;
  }
  .photo {
    position: relative;
    overflow: hidden;
    width: 300px;
    height: 200px;
    margin-right: 30px;
    margin-top: 30px;
    border-radius: 20px;
    margin-bottom: 30px;
    background-color: #fff;
  }
  .contai .row {
    display: flex;
    flex-wrap: wrap;
    margin-left: 30px;
    justify-content: center;
  }
  .photo:before {
    position: absolute;
    content: "";
    width: 70%;
    height: 220%;
    background-color: rgba(2, 61, 58, 0.575);
    top: -50%;
    left: -100%;
    z-index: 1;
    -webkit-transform: rotate(25deg);
    transform: rotate(25deg);
    -webkit-transform-origin: center top 0;
    transform-origin: center top 0;
    transition: 0.5s;
  }
  .photo:hover:before {
    left: 10%;
  }
  .cad-text {
    width: 100%;
    padding: 0 20px;
    position: absolute;
    top: -100%;
    color: #fff;
    left: 0;
    z-index: 2;
    transition: 1.1s;
  }
  .photo:hover .cad-text {
    top: 11px;
  }
  .cad-text p {
    font-size: 20px;
  }
  .cad img {
    width: 200px;
    margin-left: 40px;
    margin-top: 20px;
    height: 150px;
  }
  #data .show-btn {
    background: #fff;
    font-size: 10px;
    padding: 4px;
    font-weight: 700;
    color: #000;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-top: 30%;
    width: 300px;
    height: 40px;
  }
  #data .show-btn,
  .prix {
    position: relative;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
  #data input[type="checkbox"] {
    display: none;
  }
  #data .prix .close-btn {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 18px;
    cursor: pointer;
    color: #00f;
  }
  #data .prix {
    display: none;
    height: 190px;
    background: #e1f3ff;
    width: 270px;
    padding-top: 50px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
  }
  #data #ab:checked ~ .prix,
  #data #ac:checked ~ .prix,
  #data #ad:checked ~ .prix,
  #data #ae:checked ~ .prix,
  #data #af:checked ~ .prix,
  #data #ag:checked ~ .prix,
  #data #ak:checked ~ .prix,
  #data #al:checked ~ .prix,
  #data #am:checked ~ .prix,
  #data #an:checked ~ .prix {
    display: block;
  }
  #data .prix .close-btn:hover {
    color: #3498db;
  }
  #data .prix .msg {
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    color: #000;
  }
  #data .prix .datee {
    height: 25px;
    width: 90%;
    padding-left: 20px;
  }
  #data .datee label {
    font-size: 18px;
    margin-left: 20px;
  }
  #data .datee input {
    height: 100%;
    width: 100%;
    padding-left: 10px;
    font-size: 17px;
    border: 1px solid silver;
  }
  #data .datee input:focus {
    border-color: #3498db;
    border-bottom-width: 2px;
  }
  #data .btn {
    height: 25px;
    width: 80%;
    position: relative;
    overflow: hidden;
    left: 20px;
  }
  #data .btn .inner {
    height: 100%;
    width: 100%;
    position: absolute;
    left: -100%;
    z-index: -1;
    background: -webkit-linear-gradient(
      right,
      #56d8e4,
      #9f01ea,
      #56d8e4,
      #9f01ea
    );
    transition: all 0.4s;
  }
  #data .btn:hover .inner {
    left: 0;
  }
  #data .btn button {
    height: 100%;
    width: 100%;
    background: none;
    border: none;
    color: #000;
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
  }
  .gr {
    background-size: cover;
    background-position: 50%;
    height: auto;
  }
  .grp {
    margin-top: 30px;
    width: 100%;
    padding-bottom: 35px;
    justify-content: center;
    align-items: center;
    display: flex;
    flex-wrap: wrap;
  }
  .p p {
    font-size: 13px;
    padding: 6px;
    color: red;
  }
  .gr h1 {
    color: #fff;
    text-decoration: underline;
    font-size: 40px;
    text-shadow: 2px 2px 10px #000;
    text-align: center;
  }
  .middle {
    position: relative;
    justify-content: center;
    align-items: center;
  }
  .card {
    cursor: pointer;
    width: 250px;
    height: 230px;
    margin-right: 30px;
    margin-top: 20px;
  }
  .back,
  .front {
    width: 100%;
    height: 100%;
    overflow: hidden;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    position: absolute;
    transition: -webkit-transform 0.6s linear;
    transition: transform 0.6s linear;
    transition: transform 0.6s linear, -webkit-transform 0.6s linear;
    justify-content: center;
    align-items: center;
    box-shadow: 0 3px 10px #000;
    border-radius: 10px;
  }
  .front img {
    height: 150px;
    width: 200px;
    margin-top: 40px;
    margin-left: 20px;
  }
  .front {
    -webkit-transform: perspective(600px) rotateY(0deg);
    transform: perspective(600px) rotateY(0deg);
    background: #fff;
  }
  .back {
    background: #438286;
    -webkit-transform: perspective(600px) rotateY(180deg);
    transform: perspective(600px) rotateY(180deg);
  }
  .back-content {
    color: #fff;
    text-align: center;
    width: 100%;
    font-size: 17px;
    padding: 10px;
    justify-content: center;
  }
  .card:hover > .front {
    -webkit-transform: perspective(600px) rotateY(-180deg);
    transform: perspective(600px) rotateY(-180deg);
  }
  .card:hover > .back {
    -webkit-transform: perspective(600px) rotateY(0deg);
    transform: perspective(600px) rotateY(0deg);
  }
  @media screen and (max-width: 1036px) {
    .grp {
      height: auto;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
    }
    .grp .card {
      margin-bottom: 30px;
      margin-top: 10px;
    }
  }
  @media screen and (max-width: 580px) {
    .bac,
    .grp .card .front {
      width: 100%;
    }
  }
  @media screen and (max-width: 500px) {
    .grp {
      padding: 30px 20px 0;
    }
  }
  #transformation .show-btn {
    background: #fff;
    font-size: 10px;
    padding-top: 4px;
    font-weight: 700;
    color: #3498db;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    margin-top: 41%;
    width: 100px;
    height: 20px;
  }
  #transformation .show-btn,
  .prix {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
  #transformation input[type="checkbox"] {
    display: none;
  }
  #transformation .prix {
    display: none;
    height: 200px;
    background: #e1f9ff;
    width: 230px;
    margin-top: 10px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
  }
  #transformation #a:checked ~ .prix,
  #transformation #b:checked ~ .prix,
  #transformation #c:checked ~ .prix,
  #transformation #d:checked ~ .prix,
  #transformation #e:checked ~ .prix,
  #transformation #f:checked ~ .prix,
  #transformation #g:checked ~ .prix,
  #transformation #k:checked ~ .prix,
  #transformation #m:checked ~ .prix {
    display: block;
  }
  #transformation .prix .close-btn {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 18px;
    cursor: pointer;
    color: #00f;
  }
  #transformation .prix .close-btn:hover {
    color: #3498db;
  }
  #transformation .prix .msg {
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    color: #000;
    margin-top: 20px;
    padding-top: 30px;
  }
  #transformation .prix .datee {
    height: 25px;
    width: 90%;
    padding-left: 20px;
  }
  #transformation .datee label {
    font-size: 18px;
    margin-left: 20px;
  }
  #transformation .datee input {
    height: 100%;
    width: 100%;
    padding-left: 10px;
    font-size: 17px;
    border: 1px solid silver;
  }
  #transformation .datee input:focus {
    border-color: #3498db;
    border-bottom-width: 2px;
  }
  #transformation .btn {
    height: 25px;
    width: 80%;
    position: relative;
    overflow: hidden;
    left: 20px;
  }
  #transformation .btn .inner {
    height: 100%;
    width: 100%;
    position: absolute;
    left: -100%;
    z-index: -1;
    background: -webkit-linear-gradient(
      right,
      #56d8e4,
      #9f01ea,
      #56d8e4,
      #9f01ea
    );
    transition: all 0.4s;
  }
  #transformation .btn:hover .inner {
    left: 0;
  }
  #transformation .btn button {
    height: 100%;
    width: 100%;
    background: none;
    border: none;
    color: #000;
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
  }
  .indus {
    height: auto;
    background-color: #fff;
  }
  .indust {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .indus .picture {
    width: 250px;
    height: 200px;
    justify-content: center;
    margin-left: 20px;
    margin-right: 20px;
    border-radius: 20px;
  }
  .indus h1 {
    font-size: 50px;
    text-align: center;
    padding: 10px;
    color: #000041;
    font-family: "Oswald", sans-serif;
  }
  .image-container {
    display: flex; /* Utilise Flexbox pour aligner les éléments */
    flex-wrap: wrap; /* Permet de passer à la ligne lorsque l'espace est limité */
    justify-content: center; /* Centre les éléments horizontalement */
    margin: 20px; /* Espace autour de la conteneur d'images */
}

.image-box {
    margin: 10px; /* Espace autour de chaque boîte d'image */
    flex: 1 0 25%; /* Permet à chaque boîte de prendre 25% de la largeur, avec un minimum de 240px */
    max-width: 450px; /* Largeur maximale pour chaque boîte d'image */
    overflow: hidden; /* Cache les parties de l'image qui débordent */
    border-radius: 8px; /* Bords arrondis pour une apparence plus douce */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* Ajoute une ombre légère autour de chaque boîte */
    transition: transform 0.3s; /* Transition pour effet au survol */
}

.image-box img {
    width: 100%; /* Assure que l'image prend toute la largeur de son conteneur */
    height: 300px; /* Assure que l'image prend toute la hauteur de son conteneur */
    object-fit: contain; /* Maintient les proportions de l'image et s'assure qu'elle est complètement visible */
    transition: transform 0.3s; /* Transition pour effet de zoom sur l'image */
}

.image-box:hover img {
    transform: scale(1.1); /* Agrandit légèrement l'image au survol */
    transform-origin: center; /* Centre le zoom sur l'image */
}

.image-box:hover {
    cursor: pointer; /* Change le curseur pour indiquer que l'image est cliquable */
}

/* Style normal de l'image */
.regular-image {
  width: 200px;
  height: auto;
  cursor: pointer;
  transition: transform 0.3s ease;
}

/* Animation légère au survol */
.regular-image:hover {
  transform: scale(1.1);
}

/* Overlay plein écran */
.fullscreen-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

/* Image en plein écran */
.fullscreen-image {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  cursor: pointer;
}

/* Bouton de fermeture */
.close-button {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 30px;
  color: white;
  cursor: pointer;
}



/* Responsive Design pour petits écrans */
@media (max-width: 768px) {
  .image-box {
      flex: 1 1 calc(50% - 10px); /* 2 images par ligne */
  }
}

@media (max-width: 480px) {
  .image-box {
      flex: 1 1 100%; /* 1 image par ligne */
  }

  .fullscreen-image {
      max-width: 100%;
      max-height: 100%;
  }

  .close-button {
      font-size: 24px;
      top: 10px;
      right: 10px;
  }
}


.custom-one {
  width: 100%;            /* Full width */
  min-height: 100vh;       /* Full height of the viewport */
  display: flex;
  justify-content: center;
  box-sizing: border-box;  /* Include padding/margin in width calculations */
  padding-top: 0; /* Supprime le padding en haut */
  margin-top: 0;  /* Supprime les marges en haut */
}

.custom-one-ind {
  flex-direction: column;     /* Disposer les éléments en colonne */
  align-items: center;        /* Centrer les éléments horizontalement */
  justify-content: center;    /* Centrer les éléments verticalement (si nécessaire) */
  text-align: center;         /* Centrer le texte */
  width: 100%;            /* Full width */
  min-height: 100vh;       /* Full height of the viewport */
  box-sizing: border-box;  /* Include padding/margin in width calculations */
}

.custom-one-ind h1{
  font-size: 48px;
  text-align: center;
  padding: 10px;
  color: #000041;
  font-family: "Oswald", sans-serif;
}
.custom-image-container-ind {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;         /* Allow wrapping if needed */
  gap: 10px;               /* Space between images */
  padding: 20px;
  width: 100%;             /* Ensure it takes full width */
  max-width: 2800px;       /* Optional: limit width for better centering */
}

.custom-image-container {
  display: flex;
  justify-content: center; /* Center horizontally as a fallback */
  flex-wrap: wrap;         /* Allow wrapping if needed */
  gap: 50px;               /* Space between images */
  padding: 20px;
  width: 100%;             /* Ensure it takes full width */
  max-width: 1200px;       /* Optional: limit width for better centering */
}
.custom-image-container, 
.image-wrapper {
  margin-top: 0; /* Supprime les marges supérieures */
}

.image-wrapper {
  position: relative;
  overflow: hidden;
  width: 300px;
  height: 200px;
  margin-right: 30px;
  margin-top: 30px;
  margin-bottom: 30px;
  border-radius: 20px;
  background-color: #fff; /* Fond blanc du conteneur */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Ombre légère */
  
}

.image-wrapper:hover {
  background-color: #6BABF3; /* Couleur au survol (Alice Blue) */
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Ombre plus forte au hover */
}

.img-container-project {
  width: 100%;
  height: 100%;
  object-fit: contain; /* Ensures the image fills the wrapper, cutting excess */
  transition: transform 0.3s ease;
  padding: 20px;
}


.small-image {
  width: 100px; /* Réduit la largeur de l'image */
  height: 100px; /* Réduit la hauteur de l'image */
  object-fit: cover; /* S'assure que l'image remplit le conteneur tout en gardant son ratio */
}

.big-image {
  width: 350px; /* Réduit la largeur de l'image */
  height: 300px; /* Réduit la hauteur de l'image */
  object-fit: cover; /* S'assure que l'image remplit le conteneur tout en gardant son ratio */
}
.small-image-pwc {
  width: 150px; /* Réduit la largeur de l'image */
  height: 120px; /* Réduit la hauteur de l'image */
  object-fit: cover; /* S'assure que l'image remplit le conteneur tout en gardant son ratio */
}
.small-image-volvo {
  width: 150px; /* Réduit la largeur de l'image */
  height: 120px; /* Réduit la hauteur de l'image */
  object-fit: contain; /* S'assure que l'image remplit le conteneur tout en gardant son ratio */
}

.small-image-mall{
  width: 220px; /* Réduit la largeur de l'image */
  height: 130px; /* Réduit la hauteur de l'image */
  object-fit: contain; /* S'assure que l'image remplit le conteneur tout en gardant son ratio */
  padding-top: 50px;
  padding-left: 80px;
}

.big-image_moteur {
  width: 300px; /* Réduit la largeur de l'image */
  height: 250px; /* Réduit la hauteur de l'image */
  object-fit: cover; /* S'assure que l'image remplit le conteneur tout en gardant son ratio */
}

.img-container-project:hover {
  transform: scale(1.1); /* Zoom léger lors du survol */
}

.one-image {
  display: flex;
  flex-direction: column; /* Aligne les éléments en colonne */
  align-items: center; /* Centre les éléments horizontalement */
  margin: 20px; /* Marge autour de la section */
}

/* Styles pour le conteneur d'informations et d'image */
.info-container {
  display: flex; /* Affiche les éléments en flex */
  align-items: center; /* Centre verticalement */
  margin-bottom: 20px; /* Marge inférieure pour séparer des autres sections */
}

/* Styles pour la section d'informations */
.info-section {
  background-color: #f9f9f9; /* Couleur de fond légèrement grise */
  padding: 20px; /* Espacement interne */
  border-radius: 10px; /* Coins arrondis */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Ombre légère */
  margin-right: 20px; /* Marge droite pour séparer de l'image */
  flex: 1; /* Permet à cette section de prendre de l'espace */
  text-align: center; /* Centre le texte */

}

/* Styles pour le titre */
.info-section h1 {
  font-size: 24px; /* Taille de police */
  color: #333; /* Couleur du texte */
  margin-bottom: 10px; /* Marge inférieure */
  text-decoration: none;
}

/* Styles pour l'image de la banque */
.bank-image {
  max-width: 100%; /* Limite la largeur à 100% du conteneur */
  height: auto; /* Garde le ratio d'aspect */
  border-radius: 8px; /* Coins arrondis */
  margin-bottom: 15px; /* Marge inférieure */
}

/* Si nécessaire, pour garantir que l'image ne dépasse pas le conteneur */
.image-box {
  flex-shrink: 0; /* Empêche l'image de rétrécir */
}

/* Styles pour les paragraphes */
.info-section p {
  font-size: 16px; /* Taille de police */
  color: #555; /* Couleur du texte */
  margin: 5px 0; /* Marge verticale */
}


.image-container-biat {
  display: flex;
  justify-content: center;
  flex-wrap: wrap; /* Permet aux images de passer à la ligne si nécessaire */
  gap: 10px;
  margin: 60px; /* Espacement entre les images */
}

.image-box-biat {
  border: 2px solid #ccc; /* Bordure autour de chaque image */
  border-radius: 8px; /* Coins arrondis */
  overflow: hidden; /* Cache tout débordement */
  width: 450px; /* Largeur fixe pour chaque image */
  height: 300px; /* Hauteur fixe pour chaque image */
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s; /* Effet de transition lors du survol */
}

.image-box-biat:hover {
  transform: scale(1.05); /* Zoom sur l'image au survol */
}

.image-box-biat img {
  width: 100%; /* S'assure que l'image prend toute la largeur du conteneur */
  height: auto; /* Ajuste la hauteur en fonction de la largeur */
  border-radius: 8px; /* Coins arrondis pour les images */
}


.custom-swiper-pagination {
  display: flex; /* Utilisez Flexbox pour centrer */
  justify-content: center; /* Centre horizontalement les dots */
  align-items: center; /* Centre verticalement les dots */
  margin-bottom: 20px; /* Ajoutez un espace au-dessus si nécessaire */
}

.custom-swiper-container {
  width: 100%; /* Ajustez cette valeur selon la largeur souhaitée */
  margin: 0 auto; /* Centrer le Swiper */
  padding: 8px 0;
  border: 1px solid #ccc; /* Add a border (optional) */
  border-radius: 15px; /* Adjust the value for the desired roundness */
  overflow: hidden; /* Ensure contents are clipped within the rounded border */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Add shadow */
  margin: 20px;
}

/* Styles pour la classe wrapper du Swiper */
.swiper-wrapper {
  display: flex;
  align-items: center;
  
}

/* Styles pour chaque slide */
.swiper-slide {
  display: flex;
  justify-content: center; /* Centrer le contenu horizontalement */
  align-items: center; /* Centrer le contenu verticalement */
  width: auto; /* Largeur fixe pour chaque slide */
  height: auto; /* Hauteur fixe pour chaque slide */
  margin: 5px; /* Espace entre les slides */
  transition: transform 0.3s ease, box-shadow 0.3s ease; /* Transition pour un effet fluide */
}

.swiper-slide:hover {
  transform: scale(1.05); /* Agrandit légèrement l'élément au survol */
  box-shadow: 0 4px 15px #6BABF3; /* Ajoute une ombre portée pour un effet visuel */
}
/* Styles pour les images */
.swiper-slide img {
  width: 350px; /* Largeur fixe de l'image pour uniformiser */
  height: auto; /* Hauteur fixe de l'image pour uniformiser */
  object-fit: contain; /* Ajuste l'image sans distorsion */

}

.swiper-slide .m6{
  width: 250px;
  height: 250px;
}

.swiper-slide .m7{
  width: 250px;
  height: 250px;
}

/* Styles spécifiques pour .m1, .m2, et .m3 */
.swiper-slide .m1,
.swiper-slide .m2,
.swiper-slide .m3 {
  width: 500px; /* Largeur maximale */
  height: 350px; /* Réduire la hauteur */
}

/* Media queries pour les smartphones (écran de 600px ou moins) */
@media (max-width: 1000px) {
  .swiper-container{
    margin-left: 20px;
  }
  /* Réduire la taille des images pour les petits écrans */
  .swiper-slide img {
    width: 90%; /* Ajuste la largeur pour mieux s'adapter à l'écran */
    height: auto; /* Conserver le ratio de l'image */

  }

  .swiper-slide .m1,
  .swiper-slide .m2,
  .swiper-slide .m3,
  .swiper-slide .m4{
    width: 90%; /* Ajuste la largeur pour les images spécifiques */
    height: auto; /* Hauteur automatique pour garder le ratio d'aspect */
  }

  .swiper-slide .m3{
    padding-top: 100px;
  }


  /* Ajustements pour les espaces entre les slides */
  .swiper-slide {
    margin: 4px; /* Espace réduit */
  }
}






  /*# sourceMappingURL=main.5e706510.chunk.css.map */
  