@charset "UTF-8";
.absolute {
  position: absolute;
}

.relative {
  position: relative;
}

.fixed {
  position: fixed;
}

.top_left {
  top: 0;
  left: 0;
}

.rotate_p45 {
  transform: rotate(-45deg);
}

.rotate_45 {
  transform: rotate(45deg);
}

.h100dvh {
  height: 100dvh;
}

.w100pc {
  width: 100%;
}

.w80pc {
  width: 80%;
}

.w35pc {
  width: 35%;
}

.w100vw {
  width: 100vw;
}

.w50pc {
  width: 50%;
}

.w25pc {
  width: 25%;
}

.z-1 {
  z-index: -1;
}

.z-2 {
  z-index: -2 !important;
}

.z-3 {
  z-index: -3;
}

.z-4 {
  z-index: -4;
}

.z-5 {
  z-index: -5;
}

.z1 {
  z-index: 1;
}

.z2 {
  z-index: 2;
}

.z3 {
  z-index: 3;
}

.z4 {
  z-index: 4;
}

.z5 {
  z-index: 5;
}

.d-flex {
  display: flex;
}

.flex_row {
  flex-direction: row;
}

.flex_column {
  flex-direction: column;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.justify-around {
  justify-content: space-around;
}

.justify-evenly {
  justify-content: space-evenly;
}

.align-center {
  align-items: center;
}

.align-start {
  align-items: flex-start;
}

.align-end {
  align-items: flex-end;
}

.pad5pc {
  padding: 5%;
}

.pad2pc {
  padding: 2%;
}

.pad10pc {
  padding: 10%;
}

.text-justify {
  text-align: justify;
}

.gap_100px {
  gap: 100px;
}

.s400px {
  width: 400px;
  min-height: 400px;
  overflow: hidden;
}

.img_s400px {
  width: 400px;
  height: 400px;
}

.flex_col_center {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

#carousel {
  width: 80%;
}

#carousel .carousel-inner {
  display: block; /* Bootstrap gère les slides */
}

#carousel .carousel-item {
  display: none; /* Bootstrap cache les slides inactifs */
}

#carousel .carousel-item.active {
  display: flex; /* affiche le slide actif comme un flex container */
  justify-content: center; /* pour bien centrer les clones */
}

#carousel .carousel-item img {
  flex: 0 0 25%; /* 4 images visibles dans le slide */
  max-width: 25%;
  height: 240px;
  -o-object-fit: cover;
     object-fit: cover;
}

.service_card {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 10vw;
  aspect-ratio: 1/1;
  padding: 15px;
  border: solid rgb(129, 129, 129) 1px;
  box-shadow: 0 5px 8px rgb(133, 133, 121);
  border-radius: 10px;
}
.service_card:hover {
  box-shadow: 0 8px 10px rgb(133, 133, 121);
  border: solid #C61C4F 2px;
  cursor: pointer;
}

footer {
  margin-top: 100px;
}

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

/* 2) Ajuster la translation pour défiler d’1 item */
@media (min-width: 992px) { /* ≥ lg : 4 visibles → 25% */
  #carousel .carousel-item-next:not(.carousel-item-start),
  #carousel .active.carousel-item-end {
    transform: translateX(25%);
  }
  #carousel .carousel-item-prev:not(.carousel-item-end),
  #carousel .active.carousel-item-start {
    transform: translateX(-25%);
  }
}
/* 3) Responsive : 2 visibles en md (→ 50%), 1 en mobile (→ 100%) */
@media (min-width: 900px) and (max-width: 1199px) { /* sm–md : 2 visibles */
  #carousel {
    width: 100%;
  }
  #carousel .carousel-item {
    flex: 0 0 50%;
  }
  #carousel .carousel-item-next:not(.carousel-item-start),
  #carousel .active.carousel-item-end {
    transform: translateX(50%);
  }
  #carousel .carousel-item-prev:not(.carousel-item-end),
  #carousel .active.carousel-item-start {
    transform: translateX(-50%);
  }
  #carousel .carousel-item img {
    flex: 0 0 50%; /* 3 images visibles dans le slide */
    max-width: 50%;
    height: 240px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media (max-width: 900px) { /* < sm : 1 visible */
  #carousel {
    width: 100%;
  }
  #carousel .carousel-item {
    flex: 0 0 100%;
  }
  #carousel .carousel-item img {
    flex: 0 0 100%; /* 1 images visibles dans le slide */
    max-width: 100%;
    height: 240px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  /* pas besoin d’override : Bootstrap utilise 100% par défaut */
}
#carousel .carousel-control-prev-icon,
#carousel .carousel-control-next-icon {
  filter: invert(0%); /* noir */
}

/* CSS */
.button-36 {
  background-image: linear-gradient(140deg, #00acd1 9.16%, #0198ba 43.89%, #007a95 64.72%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border-style: none;
  box-sizing: border-box;
  color: #FFFFFF;
  cursor: pointer;
  flex-shrink: 0;
  font-family: "Inter UI", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  font-size: 16px;
  font-weight: 500;
  height: 4rem;
  padding: 0 1.6rem;
  text-align: center;
  text-shadow: rgba(0, 0, 0, 0.25) 0 3px 8px;
  transition: all 0.5s;
  -moz-user-select: none;
       user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.button-36:hover {
  box-shadow: rgba(80, 63, 205, 0.5) 0 1px 30px;
  transition-duration: 0.1s;
}

.contacts {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.contacts .contactChoice {
  margin-top: 20px;
  width: 100%;
  display: flex;
  justify-content: space-around;
}
.contacts img {
  width: 30px;
  margin: 5px;
}
.contacts a {
  color: black;
}
.contacts div {
  gap: 10px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.contacts .contactInfo {
  display: flex;
  flex-direction: column;
}
.contacts .flexCol {
  display: flex;
  justify-content: start;
  align-items: start;
  flex-direction: column;
}

.contactForm {
  display: flex;
  width: 35vw;
  min-width: 300px;
  flex-direction: column;
  gap: 10px;
  padding: 20px 10px 20px 10px;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 15px;
}
.contactForm input {
  font-size: 1.1rem;
  border-radius: 3px;
}
.contactForm #email, .contactForm #subject {
  height: 30px;
}
.contactForm textarea {
  font-size: 1.1rem;
  font-family: "Roboto", sans-serif;
  border-radius: 3px;
  min-height: 200px;
  padding: 5px;
}
.contactForm input[type=submit] {
  align-self: center;
}
.contactForm input[type=submit]:active {
  background-color: #072A5D;
}

.legal {
  width: 75%;
  display: flex;
  gap: 50px;
  padding: 20px;
}
.legal p {
  margin-bottom: 0 !important;
}

@media (min-width: 768px) {
  .button-36 {
    padding: 0 2.6rem;
  }
}
@media (orientation: portrait) or (max-width: 1020px) or ((hover: none) and (pointer: coarse) and (max-width: 1020px)) {
  .w100pc_resp {
    width: 100%;
  }
  .gap_resp_20px {
    gap: 20px;
  }
  .no_show_resp {
    display: none;
    visibility: hidden;
  }
  .s400px {
    width: 400px;
    max-width: 98vw;
    min-height: auto;
    overflow: hidden;
  }
  .service_card {
    width: 80vw;
    aspect-ratio: 1/0.2;
  }
  .align-center-resp {
    align-items: center;
  }
}/*# sourceMappingURL=general.css.map */