@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Source+Sans+3:ital,wght@0,200..900;1,200..900&display=swap");
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-size: 1.6rem;
  color: #676767;
  background-color: #fff;
  margin: 0;
  padding: 0;
  font-family: "Source Sans 3", sans-serif;
  padding-top: 195px;
}

@media screen and (max-width: 998px) {
  body {
    padding-top: 110px;
  }
}
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 1.6rem;
  padding-right: 1.6rem;
  box-sizing: border-box;
}

.row {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding-inline: 40px;
}

@media (max-width: 768px) {
  .row {
    gap: 16px;
    padding-inline: 16px;
  }
}
@media (min-width: 992px) {
  .row {
    gap: 32px;
    padding-inline: 32px;
  }
}
[class*=col-] {
  flex: 0 0 100%;
  width: 100%;
}

.col-1 {
  flex: 0 0 auto;
  width: calc((100% - 0px) / 1);
}

.col-2 {
  flex: 0 0 auto;
  width: calc((100% - 40px) / 2);
}

.col-3 {
  flex: 0 0 auto;
  width: calc((100% - 80px) / 3);
}

.col-4 {
  flex: 0 0 auto;
  width: calc((100% - 120px) / 4);
}

.col-5 {
  flex: 0 0 auto;
  width: calc((100% - 160px) / 5);
}

.col-6 {
  flex: 0 0 auto;
  width: calc((100% - 200px) / 6);
}

.col-7 {
  flex: 0 0 auto;
  width: calc((100% - 240px) / 7);
}

.col-8 {
  flex: 0 0 auto;
  width: calc((100% - 280px) / 8);
}

.col-9 {
  flex: 0 0 auto;
  width: calc((100% - 320px) / 9);
}

.col-10 {
  flex: 0 0 auto;
  width: calc((100% - 360px) / 10);
}

.col-11 {
  flex: 0 0 auto;
  width: calc((100% - 400px) / 11);
}

.col-12 {
  flex: 0 0 auto;
  width: calc((100% - 440px) / 12);
}

@media (min-width: 768px) {
  .col-md-1 {
    flex: 0 0 auto;
    width: calc((100% - 0px) / 1);
  }
}
@media (min-width: 768px) {
  .col-md-2 {
    flex: 0 0 auto;
    width: calc((100% - 40px) / 2);
  }
}
@media (min-width: 768px) {
  .col-md-3 {
    flex: 0 0 auto;
    width: calc((100% - 80px) / 3);
  }
}
@media (min-width: 768px) {
  .col-md-4 {
    flex: 0 0 auto;
    width: calc((100% - 120px) / 4);
  }
}
@media (min-width: 768px) {
  .col-md-5 {
    flex: 0 0 auto;
    width: calc((100% - 160px) / 5);
  }
}
@media (min-width: 768px) {
  .col-md-6 {
    flex: 0 0 auto;
    width: calc((100% - 200px) / 6);
  }
}
@media (min-width: 768px) {
  .col-md-7 {
    flex: 0 0 auto;
    width: calc((100% - 240px) / 7);
  }
}
@media (min-width: 768px) {
  .col-md-8 {
    flex: 0 0 auto;
    width: calc((100% - 280px) / 8);
  }
}
@media (min-width: 768px) {
  .col-md-9 {
    flex: 0 0 auto;
    width: calc((100% - 320px) / 9);
  }
}
@media (min-width: 768px) {
  .col-md-10 {
    flex: 0 0 auto;
    width: calc((100% - 360px) / 10);
  }
}
@media (min-width: 768px) {
  .col-md-11 {
    flex: 0 0 auto;
    width: calc((100% - 400px) / 11);
  }
}
@media (min-width: 768px) {
  .col-md-12 {
    flex: 0 0 auto;
    width: calc((100% - 440px) / 12);
  }
}
@media (min-width: 992px) {
  .col-lg-1 {
    flex: 0 0 auto;
    width: calc((100% - 0px) / 1);
  }
}
@media (min-width: 992px) {
  .col-lg-2 {
    flex: 0 0 auto;
    width: calc((100% - 40px) / 2);
  }
}
@media (min-width: 992px) {
  .col-lg-3 {
    flex: 0 0 auto;
    width: calc((100% - 80px) / 3);
  }
}
@media (min-width: 992px) {
  .col-lg-4 {
    flex: 0 0 auto;
    width: calc((100% - 120px) / 4);
  }
}
@media (min-width: 992px) {
  .col-lg-5 {
    flex: 0 0 auto;
    width: calc((100% - 160px) / 5);
  }
}
@media (min-width: 992px) {
  .col-lg-6 {
    flex: 0 0 auto;
    width: calc((100% - 200px) / 6);
  }
}
@media (min-width: 992px) {
  .col-lg-7 {
    flex: 0 0 auto;
    width: calc((100% - 240px) / 7);
  }
}
@media (min-width: 992px) {
  .col-lg-8 {
    flex: 0 0 auto;
    width: calc((100% - 280px) / 8);
  }
}
@media (min-width: 992px) {
  .col-lg-9 {
    flex: 0 0 auto;
    width: calc((100% - 320px) / 9);
  }
}
@media (min-width: 992px) {
  .col-lg-10 {
    flex: 0 0 auto;
    width: calc((100% - 360px) / 10);
  }
}
@media (min-width: 992px) {
  .col-lg-11 {
    flex: 0 0 auto;
    width: calc((100% - 400px) / 11);
  }
}
@media (min-width: 992px) {
  .col-lg-12 {
    flex: 0 0 auto;
    width: calc((100% - 440px) / 12);
  }
}
@media (min-width: 1200px) {
  .col-xl-1 {
    flex: 0 0 auto;
    width: calc((100% - 0px) / 1);
  }
}
@media (min-width: 1200px) {
  .col-xl-2 {
    flex: 0 0 auto;
    width: calc((100% - 40px) / 2);
  }
}
@media (min-width: 1200px) {
  .col-xl-3 {
    flex: 0 0 auto;
    width: calc((100% - 80px) / 3);
  }
}
@media (min-width: 1200px) {
  .col-xl-4 {
    flex: 0 0 auto;
    width: calc((100% - 120px) / 4);
  }
}
@media (min-width: 1200px) {
  .col-xl-5 {
    flex: 0 0 auto;
    width: calc((100% - 160px) / 5);
  }
}
@media (min-width: 1200px) {
  .col-xl-6 {
    flex: 0 0 auto;
    width: calc((100% - 200px) / 6);
  }
}
@media (min-width: 1200px) {
  .col-xl-7 {
    flex: 0 0 auto;
    width: calc((100% - 240px) / 7);
  }
}
@media (min-width: 1200px) {
  .col-xl-8 {
    flex: 0 0 auto;
    width: calc((100% - 280px) / 8);
  }
}
@media (min-width: 1200px) {
  .col-xl-9 {
    flex: 0 0 auto;
    width: calc((100% - 320px) / 9);
  }
}
@media (min-width: 1200px) {
  .col-xl-10 {
    flex: 0 0 auto;
    width: calc((100% - 360px) / 10);
  }
}
@media (min-width: 1200px) {
  .col-xl-11 {
    flex: 0 0 auto;
    width: calc((100% - 400px) / 11);
  }
}
@media (min-width: 1200px) {
  .col-xl-12 {
    flex: 0 0 auto;
    width: calc((100% - 440px) / 12);
  }
}
@media (max-width: 768px) {
  .row-reverse-sm {
    flex-direction: column-reverse;
  }
}
.contact-us {
  padding-bottom: 60px;
  text-align: center;
}

p {
  font-size: 1.6rem;
  line-height: 2.6rem;
}

h1 {
  font-size: 4.5rem;
  font-weight: 900;
  color: #676767;
  text-transform: uppercase;
}

@media screen and (max-width: 998px) {
  h1 {
    font-size: 3rem;
  }
}
h2, h3 {
  font-size: 2.5rem;
  font-weight: 900;
  color: #676767;
  text-transform: uppercase;
  margin-top: 0px;
}

@media screen and (max-width: 998px) {
  h2, h3 {
    font-size: 2rem;
  }
}
h2:after, h3:after {
  content: "";
  display: block;
  width: 30px;
  height: 4px;
  background-color: #f29653;
  margin-top: 15px;
}

h4 {
  font-size: 1.5rem;
  font-weight: 900;
  color: #676767;
  text-transform: uppercase;
}

a {
  text-decoration: none;
  color: #676767;
  transition: all 0.3s ease-in-out;
}

a:hover {
  color: #f29653;
  text-decoration: underline;
}

.simpletext {
  margin-bottom: 50px;
}

.not-found {
  margin: 50px auto;
  text-align: center;
}

.not-found .btn {
  display: inline-block;
  margin: 30px 0px;
}

.banner-hero {
  top: 0px;
  width: 100%;
  position: fixed;
  background-color: #363636;
  color: #676767;
  padding: 10px 0px;
  z-index: 500;
  transition: opacity 0.5s ease, transform 0.5s ease;
  opacity: 1;
  transform: translateY(0);
}

.banner-hero.hide-banner {
  height: 0;
  opacity: 0;
  padding: 0;
  margin: 0;
}

.banner-hero .banner-hero-content {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.banner-hero .banner-hero-content a {
  font-size: 1.3rem;
  margin: 0 1rem;
  color: #fff;
  display: inline-flex;
}

.banner-hero .banner-hero-content p {
  margin: 0px;
}

.banner-hero .banner-hero-content .language {
  display: inline-flex;
  align-items: center;
}

.banner-hero .banner-hero-content .language .lang-name {
  display: inline-block;
  margin: 0 0.5rem;
  font-size: 1.3rem;
  color: #fff;
}

.banner-hero .banner-hero-content .language .switch {
  position: relative;
  display: inline-block;
  width: 30px;
  height: 18px;
}

.banner-hero .banner-hero-content .language .switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.banner-hero .banner-hero-content .language .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #676767;
  transition: 0.4s;
}

.banner-hero .banner-hero-content .language .slider:before {
  position: absolute;
  content: "";
  height: 13px;
  width: 13px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.4s;
}

.banner-hero .banner-hero-content .language input:checked + .slider {
  background-color: #676767;
}

.banner-hero .banner-hero-content .language input:focus + .slider {
  box-shadow: 0 0 0 4px rgba(21, 156, 228, 0.7);
  outline: none;
}

.banner-hero .banner-hero-content .language input:checked + .slider:before {
  transform: translateX(10px);
}

.banner-hero .banner-hero-content .language .slider.round {
  border-radius: 34px;
}

.banner-hero .banner-hero-content .language .slider.round:before {
  border-radius: 50%;
}

.banner-hero .banner-hero-content .contact {
  display: inline-flex;
  width: 30%;
  justify-content: flex-end;
}

@media screen and (max-width: 998px) {
  .banner-hero .banner-hero-content .contact {
    display: none;
  }
}
.btn {
  background-color: #f29653;
  color: #fff;
  border: 2px solid #f29653;
  text-transform: uppercase;
  padding: 13px 25px;
  margin: 10px 0px 0px 0px;
  border-radius: 5px;
  margin-left: 30px;
  text-decoration: none;
}

@media screen and (max-width: 998px) {
  .btn {
    display: block;
    margin-left: 0px;
  }
}
.btn:hover {
  background-color: #fff;
  color: #f29653;
  border: 2px solid #f29653;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
}

.cols-two {
  padding: 90px 0;
  background: #f9f5f2;
}

.cols-two .accordion-parent {
  padding-right: 50px;
}

@media screen and (max-width: 998px) {
  .cols-two .accordion-parent {
    padding-right: 0px;
  }
}
.cols-two .accordion {
  margin-top: 50px;
}

.cols-two .accordion .accordion-item {
  margin-bottom: 20px;
  border-radius: 5px;
  overflow: hidden;
}

.cols-two .accordion button {
  position: relative;
  display: block;
  text-align: left;
  width: 100%;
  padding: 15px 20px 15px 45px;
  color: #818181;
  font-size: 1.6rem;
  font-weight: 700;
  border: none;
  background: none;
  outline: none;
  background: #eae5e1;
}

.cols-two .accordion button:hover, .cols-two .accordion button:focus {
  cursor: pointer;
  color: #fff;
}

.cols-two .accordion button:hover::after, .cols-two .accordion button:focus::after {
  cursor: pointer;
  color: #fff;
  border: 1px solid #fff;
}

.cols-two .accordion button .accordion-title {
  padding: 1em 1.5em 1em 0;
}

.cols-two .accordion button .icon {
  display: inline-block;
  position: absolute;
  top: 13px;
  left: 10px;
  width: 22px;
  height: 22px;
  border: 1px solid;
  border-radius: 22px;
}

.cols-two .accordion button .icon::before {
  display: block;
  position: absolute;
  content: "";
  top: 9px;
  left: 5px;
  width: 10px;
  height: 2px;
  background: currentColor;
}

.cols-two .accordion button .icon::after {
  display: block;
  position: absolute;
  content: "";
  top: 5px;
  left: 9px;
  width: 2px;
  height: 10px;
  background: currentColor;
}

.cols-two .accordion button[aria-expanded=true] {
  color: #fff;
  background: #f29653;
}

.cols-two .accordion button[aria-expanded=true] .icon::after {
  width: 0;
}

.cols-two .accordion button[aria-expanded=true] + .accordion-content {
  opacity: 1;
  max-height: -moz-fit-content;
  max-height: fit-content;
  transition: all 200ms linear;
  will-change: opacity, max-height;
}

.cols-two .accordion .accordion-content {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 200ms linear, max-height 200ms linear;
  will-change: opacity, max-height;
  background: #fff;
}

.cols-two .accordion .accordion-content p {
  font-weight: 300;
  padding: 0px 15px;
}

.cols-two .certificates {
  margin-top: 30px;
  display: inline-flex;
  align-items: flex-start;
  justify-content: spaace-around;
}

@media screen and (max-width: 998px) {
  .cols-two .certificates {
    display: block;
  }
}
.contact-section {
  padding: 60px 0px;
}

@media screen and (max-width: 998px) {
  .contact-section {
    padding: 30px 0px;
  }
}
.contact-section h1 {
  position: relative;
  text-align: center;
}

.contact-section h1::after {
  content: "";
  position: absolute;
  width: 75px;
  height: 5px;
  background: #f29653;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  transition: width 0.5s ease;
}

.contact-section .row .form-col {
  width: 70%;
}

@media screen and (max-width: 998px) {
  .contact-section .row .form-col {
    width: 100%;
  }
}
.contact-section .row .info-col {
  width: 25%;
}

@media screen and (max-width: 998px) {
  .contact-section .row .info-col {
    width: 100%;
  }
}
.contact-section .info-col {
  padding: 0px 20px;
}

.contact-section .info-col h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  font-weight: 700;
  color: #f29653;
}

.contact-section .info-col .info-col-item {
  margin-bottom: 10px;
  display: inline-flex;
  justify-content: flex-start;
  align-items: start;
  width: 100%;
}

.contact-section .info-col .info-col-item a {
  display: inline-flex;
  justify-content: flex-start;
  align-items: start;
}

.contact-section .info-col .info-col-item p {
  margin-top: 0px;
}

.contact-section .info-col .info-col-item i {
  margin-right: 10px;
  margin-top: 5px;
  color: #f29653;
}

.contact-section .info-col p {
  font-size: 1.6rem;
  margin: 10px 0px;
}

.contact-section .info-col a {
  font-size: 1.6rem;
  color: #f29653;
  text-decoration: none;
  transition: all 0.5s ease;
}

.contact-section .info-col a:hover {
  color: #676767;
  transition: all 0.5s ease;
}

.contact-section .info-col .icon {
  margin-right: 10px;
  font-size: 2rem;
}

.contact-section .info-col .info-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.contact-section form .row {
  padding: 0px;
}

.contact-section form .form-group {
  margin-bottom: 30px;
  margin-top: 30px;
}

@media screen and (max-width: 998px) {
  .contact-section form .form-group {
    margin-top: 0px;
    margin-bottom: 0px;
  }
}
.contact-section form .form-group dt {
  margin-bottom: 5px;
  font-weight: 600;
}

.contact-section form .form-group dd {
  margin-left: 0px;
}

.contact-section form .form-group dd input {
  border: 2px solid #d6d6d6;
  height: 50px;
  width: 100%;
  box-shadow: none;
  transition: all 300ms ease-in-out;
  padding: 15px;
}

@media screen and (max-width: 998px) {
  .contact-section form .form-group dd input {
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 998px) {
  .contact-section form .form-group.submit {
    text-align: right;
  }
}
.contact-section form .checkbox {
  margin-top: 10px;
}

@media screen and (max-width: 998px) {
  .contact-section form .checkbox {
    margin-bottom: 15px;
  }
}
.contact-section form .checkbox label {
  display: inline-block;
  margin-right: 5px;
  margin-bottom: 5px;
}

@media screen and (max-width: 998px) {
  .contact-section form .checkbox label {
    display: block;
  }
}
.contact-section form p {
  margin: 0px;
}

.contact-section form textarea {
  height: 200px;
  width: 100%;
  border: 2px solid #d6d6d6;
  box-shadow: none;
  margin-bottom: 15px;
}

.contact-section form button[type=submit] {
  background: #f29653;
  color: #fff;
  padding: 0px 20px;
  border-radius: 5px;
  margin-left: 0px;
  border: none;
  cursor: pointer;
  font-size: 1.5rem;
  font-weight: 600;
  margin-top: 20px;
  transition: all 0.5s ease;
  height: 55px;
  display: inline-block;
}

.contact-section form button[type=submit]:hover {
  background: #676767;
  transition: all 0.5s ease;
}

.map-section.desktop {
  display: block;
}

.map-section.mobile {
  display: none;
}

@media screen and (max-width: 998px) {
  .map-section.desktop {
    display: none;
  }
  .map-section.mobile {
    display: block;
  }
}
.dl-files {
  padding-bottom: 60px;
}

.dl-files .download_files {
  list-style: none;
}

.dl-files .download_files li {
  padding: 10px 0px;
  border-bottom: 1px solid #e9e9e9;
}

.dl-files .download_files li a {
  color: #f29653;
}

footer {
  background-color: #282828;
  padding: 60px 0px 0px 0px;
  color: #777777;
}

footer p {
  font-size: 1.5rem;
  line-height: 2.5rem;
  color: #a0a0a0;
  margin: 0px;
}

footer .footer-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

footer .footer-menu li {
  border-bottom: 1px solid #393939;
  padding: 10px 0px;
}

footer .footer-menu li a {
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 400;
  color: #a0a0a0;
}

footer .footer-menu li:hover a {
  color: #f29653;
}

footer .contact-info {
  display: inline-flex;
  margin-bottom: 15px;
}

@media screen and (max-width: 998px) {
  footer .contact-info {
    width: 100%;
  }
}
footer .contact-info .icon {
  margin-right: 20px;
  font-size: 2rem;
}

footer .contact-info .icon i {
  font-size: 1.5rem;
}

footer .contact-info .icon svg path {
  fill: #a0a0a0;
}

footer .contact-info .info {
  font-size: 1.5rem;
  color: #a0a0a0;
}

footer .credits {
  background-color: #1b1b1b;
  padding: 23px 0px 50px 0px;
  margin-top: 90px;
}

footer .credits .content {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

@media screen and (max-width: 998px) {
  footer .credits .content {
    display: block;
  }
}
footer .credits .content p {
  max-width: 50%;
  font-size: 1.3rem;
}

@media screen and (max-width: 998px) {
  footer .credits .content p {
    max-width: 100%;
  }
}
footer .credits .content p a {
  color: #f29653;
  font-weight: 500;
}

.global-filter {
  display: flex;
  justify-content: center;
  padding: 2rem 1rem;
}

.filter-wrapper {
  max-width: 850px;
  width: 100%;
  text-align: center;
}

.filter-wrapper label {
  display: block;
  font-weight: 600;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.select-reset-wrapper {
  position: relative;
}

#product-filter {
  position: relative;
  height: 70px;
  width: 70%;
  border: 1px solid #f1f1f1;
  background-color: #f8f8f8;
  border-radius: 0;
  padding: 15px 40px 15px 20px !important; /* padding right réduit ici */
  margin-bottom: 25px;
  box-shadow: none;
  text-align: center;
  text-transform: uppercase;
  font-weight: 700;
  font-family: "Source Sans 3", sans-serif;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url('data:image/svg+xml;utf8,<svg fill="%23000" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
  background-repeat: no-repeat;
  background-position: right 15px center; /* espace entre flèche et bord droit */
  background-size: 16px;
}

#product-filter:hover,
#product-filter:focus {
  border-color: #888;
  outline: none;
}

.btn-reset {
  position: relative;
  top: 6px;
  left: -3px;
  font-size: 3rem; /* grosse croix */
  right: 2.5rem; /* pour l’aligner avec le nouveau padding */
  width: 20%;
  right: 1.5rem;
  height: 70px;
  background-color: #f4a46b;
  border: none;
  color: #fff;
  cursor: pointer;
  transition: color 0.2s ease;
}

.btn-reset:hover {
  color: #333;
}

.global-listing {
  padding: 30px 0px;
}

.global-listing .icon {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 3;
  transition: opacity 0.5s ease;
}

.global-listing .card {
  position: relative;
  display: block;
  text-align: center;
  overflow: hidden;
}

.global-listing .card img:first-of-type {
  transition: transform 0.6s ease;
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

.global-listing .card-body {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease;
  z-index: 2;
  padding: 15px;
}

.global-listing .card h3, .global-listing .card h2 {
  position: relative;
  color: #fff;
  text-transform: uppercase;
  font-weight: 900;
  font-size: 2rem;
  margin: 0;
  display: -webkit-box;
  text-overflow: ellipsis;
}

.global-listing .card h3::after, .global-listing .card h2::after {
  content: "";
  position: absolute;
  width: 75px;
  height: 5px;
  background: #f29653;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  transition: width 0.5s ease;
}

.global-listing .card:hover img:first-of-type {
  transform: scale(1.1);
}

.global-listing .card:hover .card-body {
  opacity: 0;
}

.global-listing .card:hover .icon {
  opacity: 0;
}

.global-listing .card:hover h3::after {
  width: 100px;
}

.header-inner-page {
  text-align: center;
  padding: 90px 0px 50px 0px;
}

@media screen and (max-width: 998px) {
  .header-inner-page {
    padding: 90px 0px 0px 0px;
  }
}
.header-inner-page h1, .header-inner-page h2 {
  position: relative;
  font-size: 4rem;
  line-height: 4.5rem;
}

.header-inner-page h1:after, .header-inner-page h2:after {
  position: absolute;
  left: 50%;
  margin-left: -15px;
}

.header-inner-page hr {
  display: block;
  width: 30px;
  height: 4px;
  background-color: #f29653;
  margin-bottom: 30px;
  border: none;
  box-shadow: none;
}

header #navbar {
  background: #F9F5F2;
  color: #676767;
  position: fixed;
  width: 100vw;
  display: flex;
  top: 43px;
  height: 150px;
  line-height: 60px;
  z-index: 100;
  box-shadow: 0 0px 5px 0 rgba(41, 19, 3, 0.3);
  transition: all 0.5s ease;
}

@media screen and (max-width: 998px) {
  header #navbar {
    height: 87px;
  }
}
header #navbar .nav-wrapper {
  margin: auto;
  text-align: center;
  width: 100%;
  max-width: 1200px;
}

@media (max-width: 768px) {
  header #navbar .nav-wrapper {
    width: 90%;
  }
}
@media (max-width: 638px) {
  header #navbar .nav-wrapper {
    width: 100%;
  }
}
header #navbar .logo {
  float: left;
  margin-left: 28px;
  font-size: 1.5em;
  height: 60px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  header #navbar .logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 15px;
  }
  header #navbar .logo img {
    width: 225px;
    display: block;
  }
}
header #navbar ul {
  float: right;
  list-style: none;
  margin-top: -2px;
  margin-bottom: 0px;
  text-align: right;
  padding-right: 25px;
  transition: transform 0.5s ease-out;
}

@media (max-width: 998px) {
  header #navbar ul {
    display: none;
  }
}
@media (orientation: landscape) {
  header #navbar ul {
    display: inline-block;
  }
}
header #navbar li {
  display: inline-block;
}

header #navbar li.active a {
  color: #f29653;
  transition: all 0.5s ease;
}

header #navbar li.active a:hover {
  color: #f29653;
  transition: all 1s ease;
}

header #navbar li.active a::before, header #navbar li.active a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 3px;
  top: -1px;
  background: #f29653;
  width: 100%;
}

header #navbar li.active a::before {
  left: 0;
  transition: width 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
}

header #navbar li.active a::after {
  right: 0;
}

header #navbar li.active a:hover::before {
  width: 100%;
}

header #navbar li.active a:hover::after {
  background: transparent;
  width: 100%;
}

header #navbar li a {
  color: #363636;
  display: block;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 1;
  height: 50px;
  letter-spacing: 1px;
  margin: 0 10px;
  padding: 0 4px;
  position: relative;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.5s ease;
}

header #navbar li a:hover {
  color: #f29653;
  transition: all 1s ease;
}

header #navbar li a::before, header #navbar li a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  top: -1px;
  background: #f29653;
}

header #navbar li a::before {
  left: 0;
  transition: width 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
}

header #navbar li a::after {
  right: 0;
}

header #navbar li a:hover::before {
  width: 100%;
}

header #navbar li a:hover::after {
  background: transparent;
  width: 100%;
}

header #navbar.navbar-shrink {
  height: 55px;
  transition: all 0.5s ease;
  top: 0px;
}

header #navbar.navbar-shrink .menuIcon {
  top: 0px;
}

header #navbar.navbar-shrink .logo {
  font-size: 3rem;
}

header #navbar.navbar-shrink .logo img {
  width: 138px;
  margin-top: 8px;
}

@media (max-width: 998px) {
  header #navbar.navbar-shrink .logo img {
    margin-top: 0px;
  }
}
@media (max-width: 998px) {
  header .menuIcon {
    cursor: pointer;
    display: block;
    position: fixed;
    right: 15px;
    top: 78px;
    height: 23px;
    width: 27px;
    z-index: 5000;
    transition: all 0.5s ease;
  }
  header .menuIcon.menuIcon-shrink {
    top: 21px;
    transition: all 0.5s ease;
  }
  header .menuIcon .icon-bars {
    background: #676767;
    position: absolute;
    left: 1px;
    top: 45%;
    height: 2px;
    width: 20px;
    transition: 0.4s;
  }
  header .menuIcon .icon-bars::before, header .menuIcon .icon-bars::after {
    content: "";
    position: absolute;
    left: 0;
    height: 2px;
    width: 20px;
    background: #676767;
    transition: 0.3s width 0.4s;
  }
  header .menuIcon .icon-bars::before {
    top: -8px;
  }
  header .menuIcon .icon-bars::after {
    bottom: -8px;
  }
  header .menuIcon .icon-bars.overlay {
    background: rgb(183, 199, 211);
    width: 20px;
    animation: middleBar 3s infinite 0.5s;
  }
  header .menuIcon .icon-bars.overlay::before {
    background: rgb(183, 199, 211);
    width: 10px;
    animation: topBar 3s infinite 0s;
  }
  header .menuIcon .icon-bars.overlay::after {
    background: rgb(183, 199, 211);
    width: 15px;
    animation: bottomBar 3s infinite 1s;
  }
  header .menuIcon.toggle .icon-bars {
    top: 5px;
    transform: translate3d(0, 5px, 0) rotate(135deg);
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  }
  header .menuIcon.toggle .icon-bars::before {
    top: 0;
    opacity: 0;
  }
  header .menuIcon.toggle .icon-bars::after {
    top: 10px;
    transform: translate3d(0, -10px, 0) rotate(-270deg);
  }
  header .menuIcon.toggle .icon-bars.overlay {
    opacity: 0;
    transition: all 0s ease 0s;
  }
  @keyframes middleBar {
    0%, 100% {
      width: 0px;
    }
    50% {
      width: 20px;
    }
  }
  @keyframes topBar {
    0%, 100% {
      width: 0px;
    }
    50% {
      width: 10px;
    }
  }
  @keyframes bottomBar {
    0%, 100% {
      width: 0px;
    }
    50% {
      width: 15px;
    }
  }
}
header .overlay-menu {
  background: #F9F5F2;
  color: #676767;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  z-index: 555;
  top: 0;
  right: 0;
  padding-right: 15px;
  transform: translateX(-100%);
  width: 100vw;
  height: 100vh;
  transition: transform 0.2s ease-out;
}

@media (max-width: 998px) {
  header .overlay-menu {
    transform: translateX(-110%);
  }
}
header .overlay-menu ul, header .overlay-menu li {
  display: block;
  position: relative;
}

header .overlay-menu li a {
  display: block;
  font-size: 1.8em;
  letter-spacing: 4px;
  padding: 10px 0;
  text-align: right;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

header .overlay-menu li a:hover, header .overlay-menu li a:active {
  color: #f29653;
}

.main-hero {
  position: relative;
}

.main-hero .swiper {
  width: 100%;
  height: 100%;
}

.main-hero .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (max-width: 998px) {
  .main-hero .swiper-slide {
    height: 350px;
  }
}
.main-hero .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.main-hero .swiper-slide img {
  transition: transform 5s ease; /* durée du zoom, ajuste selon besoin */
  transform: scale(1); /* état normal */
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.main-hero .swiper-slide-active img {
  transform: scale(1.1); /* zoom léger sur slide active */
}

.main-hero .swiper-button-next, .main-hero .swiper-button-prev {
  color: #fff;
  background-color: #000;
  padding: 10px;
  height: 60px;
  width: 50px;
}

.main-hero .swiper-button-next {
  right: 0px;
}

.main-hero .swiper-button-prev {
  left: 0px;
}

.main-hero .hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%);
  text-align: left;
  color: #333;
  z-index: 10;
  max-width: 570px;
  background-color: hsla(0, 0%, 100%, 0.85);
  padding: 55px 45px 35px 45px;
  margin-left: -585px;
}

@media screen and (max-width: 998px) {
  .main-hero .hero-content {
    position: initial;
    transform: none;
    margin-left: 0px;
    max-width: 90vw;
    padding: 35px 20px 25px 20px;
  }
}
.main-hero .hero-content h1 {
  color: #333333;
  margin: 0px;
}

.map-all-references {
  text-align: center;
}

.map-all-references .content-title {
  padding: 28px 0px;
  background-color: #363636;
  color: #fff;
}

.map-all-references .content-title h3 {
  text-transform: uppercase;
  margin: 0px;
  font-size: 1.6rem;
}

.partners {
  padding: 90px 0;
  background: #222222;
  margin-top: 50px;
  text-align: center;
}

.partners .col-lg-4 {
  display: flex;
  justify-content: center;
  align-items: center;
}

.partners a {
  display: block;
  border-radius: 8px;
  width: 100%;
}

.partners a img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  transition: transform 0.3s ease;
}

@media (max-width: 998px) {
  .partners a img {
    width: 70%;
    height: auto;
    max-width: 250px;
  }
}
.partners a:hover img {
  transform: scale(1.1);
}

.product-details .header-product-details {
  text-align: center;
}

@media (max-width: 998px) {
  .product-details .header-product-details {
    padding: 20px 0px;
  }
}
.product-details .header-product-details .parent {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  border-bottom: 1px solid #e9e9e9;
}

.product-details .header-product-details h1 {
  line-height: 4.5rem;
  max-width: 770px;
}

@media (max-width: 998px) {
  .product-details .header-product-details h1 {
    font-size: 2rem;
    line-height: 2.5rem;
    max-width: 100%;
  }
}
.product-details .header-product-details .navigation {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0px;
}

.product-details .header-product-details .navigation a {
  text-decoration: none;
}

.product-details .header-product-details .navigation .swiper-button-next, .product-details .header-product-details .navigation .swiper-button-prev {
  position: initial;
  margin: 0px 10px;
  color: #676767;
}

.product-details .header-product-details .navigation .swiper-button-next:after, .product-details .header-product-details .navigation .swiper-button-prev:after {
  font-size: 3rem;
}

.product-details .hero-image {
  width: 100%;
  height: 100%;
  max-height: 750px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-details .hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.product-details .select-nav {
  padding: 60px 0px 0px 0px;
  text-align: center;
}

.product-details .select-nav select {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  height: 35px;
  padding: 6px 12px;
  font-size: 15px;
  line-height: 1.42857;
  color: #555555;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}

@media screen and (max-width: 998px) {
  .product-details .select-nav select {
    max-width: 300px;
  }
}
.product-details .content-infos {
  padding: 60px 0px;
}

.product-details .content-infos .content {
  position: relative;
  overflow: hidden;
  padding-bottom: 50px;
  padding-right: 50px;
}

@media screen and (max-width: 998px) {
  .product-details .content-infos .content {
    padding-right: 0px;
  }
}
.product-details .content-infos .content.with-padding-left {
  padding-left: 50px;
}

@media screen and (max-width: 998px) {
  .product-details .content-infos .content.with-padding-left {
    padding-left: 0px;
  }
}
.product-details .content-infos .content .dl-files {
  padding-bottom: 0px;
  margin-bottom: 50px;
}

.product-details .content-infos .content .dl-files ul {
  padding-left: 0px;
}

.product-details .content-infos .content .dl-files ul li:before {
  display: none;
}

.product-details .content-infos .content a {
  display: inline-block;
  margin: 10px 0px;
}

.product-details .content-infos .content .swiper-pagination {
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 10;
}

.product-details .content-infos .content .swiper-pagination .swiper-pagination-bullet {
  background: transparent;
  border: 1px solid #fff;
}

.product-details .content-infos .content .swiper-pagination .swiper-pagination-bullet-active {
  background: #fff;
}

.product-details .content-infos .content ul {
  list-style: none;
  padding-left: 25px;
}

.product-details .content-infos .content ul li {
  border-bottom: 1px solid #e9e9e9;
  padding: 0px 0px 10px 0px;
}

.product-details .content-infos .content ul li:before {
  position: relative;
  top: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  content: "✔";
  font-style: normal;
  font-size: 10px;
  font-weight: normal;
  text-decoration: inherit;
  color: #fff;
  background-color: #f29653;
  height: 15px;
  width: 15px;
  border-radius: 50%;
  margin-left: -25px;
  margin-right: 5px;
}

.product-details .discover-projects {
  background: #2c2c2c;
  padding: 90px 0px;
}

.product-details .discover-projects .swiper-wrapper-container {
  position: relative;
  padding: 0 50px;
}

@media screen and (max-width: 998px) {
  .product-details .discover-projects .swiper-wrapper-container {
    padding: 0px 20px;
  }
}
.product-details .discover-projects .discover-prev,
.product-details .discover-projects .discover-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 40px;
  height: 40px;
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.product-details .discover-projects .discover-prev {
  left: -20px;
}

.product-details .discover-projects .discover-next {
  right: -20px;
}

.product-details .discover-projects h2 {
  text-align: center;
  color: #fff;
  margin-bottom: 50px;
}

.product-details .discover-projects h2:after {
  display: none;
}

.product-details .discover-projects .card {
  position: relative;
  display: block;
  text-align: left;
  overflow: hidden;
  height: 380px;
}

.product-details .discover-projects .card img:first-of-type {
  transition: transform 0.6s ease;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.product-details .discover-projects .card-body {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  transition: opacity 0.5s ease;
  z-index: 2;
}

.product-details .discover-projects .card-body .content {
  position: absolute;
  height: 110px;
  bottom: 0px;
  background-color: #fff;
  padding: 15px 20px 0px 20px;
  transition: bottom 0.5s ease;
  width: 100%;
}

.product-details .discover-projects .card-body .content ul {
  list-style: none;
  padding-left: 0px;
}

.product-details .discover-projects .card h3 {
  position: relative;
  color: #f29653;
  font-weight: 600;
  font-size: 1.8rem;
  margin: 0;
  padding-bottom: 5px;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-details .discover-projects .card h3::after {
  content: "";
  position: absolute;
  width: 75px;
  height: 5px;
  background: #f29653;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  transition: width 0.5s ease;
}

.product-details .discover-projects .card .icon {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 3;
  transition: opacity 0.5s ease;
}

.product-details .discover-projects .card:hover img:first-of-type {
  transform: scale(1.1);
}

.product-details .discover-projects .card:hover .content {
  bottom: -63px;
  transition: bottom 0.5s ease;
}

.product-details .discover-projects .card:hover .icon {
  opacity: 0;
}

.product-details .discover-projects .card:hover h3::after {
  width: 100px;
}

.product-details.reference-details ul {
  list-style: initial !important;
}

.product-details.reference-details ul li:before {
  display: none !important;
}
/*# sourceMappingURL=styles.min.css.map */
