@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&display=swap');

/* SUMMARY */
/* ================== */
/* ================== */
/* VARIABLES */
/* GENERIC */
/* TEXT */
/* BUTTONS */
/* SPACING */
/* FORMS */
/* --- form-footer */
/* HEADER */
/* FOOTER */
/* NAV SUBMENU */
/* CAROUSELS */
/* TIMELINE */
/* SECTIONS */
/* --- title */
/* --- two columns */
/* --- two columns text */
/* --- grid three columns */
/* --- documents */
/* --- alert */
/* --- img gauche + texte */
/* --- lien page */
/* --- page produits */
/* --- page details produits */

/* VARIABLES */
/* ================== */
/* ================== */
:root {
    --color-dark: #333333;
    --color-light: #ffffff;
    --color-primary: #1c3c73;
    --color-grey: #e6e6e6;
    --color-alert: #c33d24;
    --font: 'Lato', sans-serif;
    --container-width: 1200px;
    --container-padding: 30px;
    --header-height: 100px;
}

/* GENERIC */
/* ================== */
/* ================== */
html,
body {
    width: 100%;
    min-height: 100%;
}
body {
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-dark);
    background-color: var(--color-light);
    overflow-x: hidden;
    position: relative;
}
.container {
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
    width: 100%;
    max-width: var(--container-width);
}

/* ==== Bootstrap Grid System - Version minimale ==== */

/* Container de base */
.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
}

/* Container pleine largeur */
.container-fluid {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

/* Ligne de la grille */
.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.justify-content-center {
    justify-content: center;
}
.justify-content-between {
    justify-content: space-between;
}
.align-items-center {
    align-items: center;
}

/* Colonnes génériques */
[class*="col-"] {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

/* Colonnes fixes de 1 à 12 */
.col-1  { flex: 0 0 8.333333%;  max-width: 8.333333%; }
.col-2  { flex: 0 0 16.666667%; max-width: 16.666667%; }
.col-3  { flex: 0 0 25%;        max-width: 25%; }
.col-4  { flex: 0 0 33.333333%; max-width: 33.333333%; }
.col-5  { flex: 0 0 41.666667%; max-width: 41.666667%; }
.col-6  { flex: 0 0 50%;        max-width: 50%; }
.col-7  { flex: 0 0 58.333333%; max-width: 58.333333%; }
.col-8  { flex: 0 0 66.666667%; max-width: 66.666667%; }
.col-9  { flex: 0 0 75%;        max-width: 75%; }
.col-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
.col-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
.col-12 { flex: 0 0 100%;       max-width: 100%; }

/* Responsive - col-sm-* */
@media (min-width: 576px) {
  .col-sm-1  { flex: 0 0 8.333333%;  max-width: 8.333333%; }
  .col-sm-2  { flex: 0 0 16.666667%; max-width: 16.666667%; }
  .col-sm-3  { flex: 0 0 25%;        max-width: 25%; }
  .col-sm-4  { flex: 0 0 33.333333%; max-width: 33.333333%; }
  .col-sm-5  { flex: 0 0 41.666667%; max-width: 41.666667%; }
  .col-sm-6  { flex: 0 0 50%;        max-width: 50%; }
  .col-sm-7  { flex: 0 0 58.333333%; max-width: 58.333333%; }
  .col-sm-8  { flex: 0 0 66.666667%; max-width: 66.666667%; }
  .col-sm-9  { flex: 0 0 75%;        max-width: 75%; }
  .col-sm-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
  .col-sm-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
  .col-sm-12 { flex: 0 0 100%;       max-width: 100%; }
}

/* Responsive - col-md-* */
@media (min-width: 768px) {
  .col-md-1  { flex: 0 0 8.333333%;  max-width: 8.333333%; }
  .col-md-2  { flex: 0 0 16.666667%; max-width: 16.666667%; }
  .col-md-3  { flex: 0 0 25%;        max-width: 25%; }
  .col-md-4  { flex: 0 0 33.333333%; max-width: 33.333333%; }
  .col-md-5  { flex: 0 0 41.666667%; max-width: 41.666667%; }
  .col-md-6  { flex: 0 0 50%;        max-width: 50%; }
  .col-md-7  { flex: 0 0 58.333333%; max-width: 58.333333%; }
  .col-md-8  { flex: 0 0 66.666667%; max-width: 66.666667%; }
  .col-md-9  { flex: 0 0 75%;        max-width: 75%; }
  .col-md-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
  .col-md-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
  .col-md-12 { flex: 0 0 100%;       max-width: 100%; }
}

/* Responsive - col-lg-* */
@media (min-width: 992px) {
  .col-lg-1  { flex: 0 0 8.333333%;  max-width: 8.333333%; }
  .col-lg-2  { flex: 0 0 16.666667%; max-width: 16.666667%; }
  .col-lg-3  { flex: 0 0 25%;        max-width: 25%; }
  .col-lg-4  { flex: 0 0 33.333333%; max-width: 33.333333%; }
  .col-lg-5  { flex: 0 0 41.666667%; max-width: 41.666667%; }
  .col-lg-6  { flex: 0 0 50%;        max-width: 50%; }
  .col-lg-7  { flex: 0 0 58.333333%; max-width: 58.333333%; }
  .col-lg-8  { flex: 0 0 66.666667%; max-width: 66.666667%; }
  .col-lg-9  { flex: 0 0 75%;        max-width: 75%; }
  .col-lg-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
  .col-lg-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
  .col-lg-12 { flex: 0 0 100%;       max-width: 100%; }
}

.bg-primary {
    background-color: var(--color-primary);
    color: var(--color-light);
}
.bg-dark {
    background-color: var(--color-dark);
    color: var(--color-light);
}
.text-primary {
    color: var(--color-primary);
}

.w-100 {
    width: 100%;
}

iframe {
    max-width: 100%;
}

/***** fil ariane */
.fil_ariane li{display: inline-block; margin-right: 5px;}

.fil_ariane li a{color:var(--color-primary)}

/*** ***/

/* TEXT */
/* ================== */
/* ================== */
p {
    margin-bottom: 10px;
}
p:last-child {
    margin-bottom: 0;
}
.text-large {
    font-size: 22px;
}
.text-lg {
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 1;
    text-transform: uppercase;
}
.text-md {
    font-size: 1.125rem;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.text-small {
    font-size: 0.75rem;
}
.text-link {
    text-transform: uppercase;
    font-size: 0.875rem;
}
.text-bold,
strong {
    font-weight: bold;
}

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

.list {
    list-style: disc;
    list-style-position: inside;
}

.clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media (min-width: 768px) {
    .text-lg {
        font-size: 2.25rem;
    }
}

/* BUTTONS */
/* ================== */
/* ================== */
.btn {
    padding: 6px 10px;
    background-color: var(--color-primary);
    border: 1px solid var(--color-primary);
    color: var(--color-light);
    display: inline-block;
}
.btn.btn-border {
    border: 1px solid var(--color-light);
}
.btn.btn-light {
    background-color: var(--color-light);
    color: var(--color-dark);
    border: 1px solid var(--color-primary);
}

@media (min-width: 768px) {
    .btn {
        transition: all 0.2s ease-in-out;
    }
    .btn:hover {
        background-color: var(--color-light);
        color: var(--color-primary);
    }
    .btn.btn-light:hover {
        background-color: var(--color-primary);
        color: var(--color-light);
        border: 1px solid var(--color-light);
    }
}

/* SPACING */
/* ================== */
/* ================== */
.mx-auto {
    margin-right: auto;
    margin-left: auto;
}
.mb-0 {
    margin-bottom: 0 !important;
}
.mb-2 {
    margin-bottom: 20px;
}
.mb-3 {
    margin-bottom: 30px;
}
.mb-5 {
    margin-bottom: 50px;
}

@media (min-width: 768px) {
    .mb-2 {
        margin-bottom: 40px;
    }
    .mb-3 {
        margin-bottom: 60px;
    }
    .mb-5 {
        margin-bottom: 100px;
    }
}


/* FORMS */
/* ================== */
/* ================== */
label {
    display: block;
    margin-bottom: 10px;
}
input,
textarea,
select {
    display: block;
    padding: 6px 15px;
    width: 100%;
    border: 1px solid #cfcfcf;
}
textarea {
    resize: none;
}
.form-group {
    margin-bottom: 20px;
}
.form .form-group.textarea,
.form .form-group.checkbox {
    grid-column: 1 / -1;
}
.form .form-group.checkbox {
    display: flex;
    align-items: center;
}
.form .form-group.checkbox label {
    margin-bottom: 0;
}
input[type='checkbox'] {
    width: auto;
    margin-right: 10px;
}
.form .form-submit {
    text-align: right;
}

/* --- form-footer */
.form-footer .form-submit {
    display: flex;
    justify-content: flex-end;
}
.form-footer .form-submit button {
    margin-left: 20px;
}

/* --- page-form */
.page-form {
    text-align: center;
}
.page-form .form-group {
    text-align: left;
}

@media (min-width: 768px) {
    .form form {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        column-gap: 50px;
    }
    .form .form-submit {
        grid-column: span 2;
    }
}
@media (min-width: 992px) {
    .form form {
        grid-template-columns: repeat(3, 1fr);
    }
    .form .form-submit {
        grid-column: span 3;
    }
}

/* HEADER */
/* ================== */
/* ================== */

.header-top {
    padding: 10px 0;
    display: flex;
    justify-content: flex-end;
    background-color: var(--color-primary);
}
.header-top a {
    margin-left: 20px;
}

.header {
    background-color: var(--color-light);
    border-top: 1px solid var(--color-primary);
    border-bottom: 1px solid var(--color-primary);
    position: sticky;
    z-index: 99;
    top: 0;
    width: 100%;
}

.logo {
    height: 100%;
    max-width: 250px;
}

.nav__mobile .nav__btn {
    display: flex;
    align-items: center;
    height: var(--header-height);
}

.nav__mobile {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
}
.nav__mobile a {
    height: var(--header-height);
}

.nav__menu {
    display: flex;
    flex-direction: column;
}
.nav__menu .home-icon svg {
    height: 30px;
    width: 20px;
    fill: var(--color-light);
}

.nav__menu li {
    position: relative;
    white-space: nowrap;
    border-top: 1px solid var(--color-light);
    padding-left: 30px;
    padding-right: 30px;
}

.nav__menu li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    text-decoration: none;
}

.nav-toggle {
    display: block;
    width: 30px;
    height: 100%;
    cursor: pointer;
    padding: 4px;
    position: relative;
}
.nav-toggle span {
    position: absolute;
    top: 50%;
    left: 0;
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--color-dark);
    transition: all 0.25s;
}
.nav-toggle span:first-child {
    transform: translateY(-7px);
}
.nav-toggle span:last-child {
    transform: translateY(7px);
}
.nav-toggle.open span:first-child {
    transform: rotate(45deg) translate(0);
}
.nav-toggle.open span:nth-child(2) {
    width: 0%;
    opacity: 0;
}
.nav-toggle.open span:last-child {
    transform: rotate(-45deg) translate(0);
}

.menu-toggle {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    background-color: var(--color-primary);
    color: var(--color-light);
}

.menu-toggle.active {
    max-height: 100vh;
    transition: all 0.4s ease;
}

.resize-animation-stopper * {
    transition: none !important;
    animation: none !important;
}

@media screen and (min-width: 1050px) {
    .menu-toggle {
        display: flex !important;
        max-height: 100vh;
        overflow: visible;
        background-color: var(--color-light);
        color: var(--color-primary);
    }

    .nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-direction: row;
        max-width: var(--container-width);
        margin: auto;
        padding-left: var(--container-padding);
        padding-right: var(--container-padding);
    }

    .nav__mobile {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0;
    }

    .nav__mobile .nav__btn {
        display: none;
    }

    .nav__menu {
        display: flex;
        flex-direction: row;
        max-height: 100%;
        overflow: visible;
        height: var(--header-height);
    }

    .nav__menu .home-icon svg {
        height: var(--header-height);
        fill: var(--color-primary);
        transition: fill 0.2s ease-in-out;
    }

    .nav__menu li {
        position: relative;
        padding: 0;
    }

    .nav__menu li a {
        line-height: var(--header-height);
        padding: 0;
        padding-left: 10px;
        padding-right: 10px;
        transition: all 0.2s ease-in-out;
    }

    .nav__menu li a:hover {
        color: var(--color-light);
        background-color: var(--color-primary);
    }
    .nav__menu li a:hover svg {
        fill: var(--color-light);
    }
}

/* FOOTER */
/* ================== */
/* ================== */
.footer {
    position: relative;
}
.footer__img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.08;
    background-image: url(./assets/img/footer.jpg);
    background-size: cover;
    background-attachment: fixed;
}
.footer__content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 40px;
}

.footer__content span {
    display: inline-block;
    margin-bottom: 20px;
}
.footer__content p {
    margin-bottom: 5px;
}
.footer__social {
    display: flex;
}
.footer__social a {
    margin-right: 15px;
}
.footer__social img {
    height: 40px;
    width: 40px;
}

@media (min-width: 768px) {
    .footer__content {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 992px) {
    .footer__content {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* NAV SUBPAGE */
/* ================== */
/* ================== */
.nav-submenu ul {
    background-color: var(--color-grey);
}
.nav-submenu ul a {
    display: block;
    padding: 6px 10px;
}
.nav-submenu ul a.active {
    background-color: var(--color-primary);
    color: var(--color-light);
}
@media (min-width: 768px) {
    .nav-submenu {
        position: sticky;
        top: var(--header-height);
        z-index: 90;
    }
    .nav-submenu ul {
        display: flex;
    }
    .nav-submenu ul a {
        transition: all 0.2s ease-in-out;
    }
    .nav-submenu ul a:hover {
        background-color: var(--color-primary);
        color: var(--color-light);
    }
}

/* CAROUSELS */
/* ================== */
/* ================== */

/* --- full-swiper */
.full-swiper {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.swiper-slide img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.swiper-slide .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 75%);
    padding: 50px;
    color: var(--color-light);
    text-align: center;
}

.full-swiper__overlay {
    position: absolute;
    width: 100%;
    bottom: 0;
    padding: 30px;
    background: linear-gradient(180deg, rgba(22, 22, 22, 0), rgba(22, 22, 22, 0.5));
    color: var(--color-light);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease-in-out;
    transition-delay: 0.2s;
}

.swiper-slide-active .full-swiper__overlay {
    opacity: 1;
    transform: translateY(0);
}

/* --- swiper-button */
.swiper-button-prev,
.swiper-button-next {
    background-image: url(./assets/icons/left-arrow.svg);
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: center;
    width: 20px;
}
.swiper-button-next {
    transform: rotate(180deg);
}
.swiper-button-prev::after,
.swiper-button-next::after {
    display: none;
}

.swiper-button-prev {
    left: 30px;
}
.swiper-button-next {
    right: 30px;
}

@media (min-width: 768px) {
    /* --- swiper-button */
    .swiper-button-prev,
    .swiper-button-next {
        width: 40px;
    }
    .swiper-button-prev {
        left: 100px;
    }
    .swiper-button-next {
        right: 100px;
    }
}

/* TIMELINE */
/* ================== */
/* ================== */
.timeline {
    max-width: 400px;
    margin: 0 auto;
}
.timeline-block {
    padding-top: 0;
    padding-bottom: 30px;
    position: relative;
}
.timeline-block::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    width: 5px;
    height: 0;
    background-color: var(--color-primary);
    transition: all 0.5s ease-in-out;
}
.timeline-date {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
    opacity: 0;
    transition: all 0.3s ease-in-out;
}
.timeline-date::before {
    content: '';
    position: absolute;
    left: 2px;
    top: 4px;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border: 1px solid var(--color-primary);
    border-radius: 50%;
    background-color: var(--color-light);
    transition: all 0.3s ease-in-out;
}
.timeline-text {
    position: relative;
    padding-left: 30px;
    opacity: 0;
    transition: all 0.3s ease-in-out;
}

.timeline-block.visible::before {
    height: 100%;
}
.timeline-block.visible .timeline-date::before {
    width: 20px;
    height: 20px;
}
.timeline-block.visible .timeline-date {
    opacity: 1;
}
.timeline-block.visible .timeline-text {
    opacity: 1;
}

@media (min-width: 768px) {
    .timeline {
        max-width: 600px;
    }
    .timeline-block {
        width: 50%;
    }
    .timeline-block:nth-child(odd) {
        margin-left: 50%;
    }
    .timeline-block:nth-child(even)::before {
        left: 100%;
    }
    .timeline-block:nth-child(even) .timeline-date,
    .timeline-block:nth-child(even) .timeline-text {
        text-align: right;
        padding-right: 30px;
    }
    .timeline-block:nth-child(even) .timeline-date::before {
        left: auto;
        right: -22px;
    }
}

/* SECTIONS */
/* ================== */
/* ================== */
.page-section {
    padding-top: 50px;
    padding-bottom: 50px;
}
.page-section.small-section {
    padding-top: 30px;
    padding-bottom: 30px;
}

@media (min-width: 768px) {
    .page-section {
        padding-top: 100px;
        padding-bottom: 100px;
    }
    .page-section.small-section {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}

/* --- title */
.title {
    text-align: center;
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 20px;
}
.title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    max-width: 100%;
    height: 1px;
    background-color: var(--color-primary);
}

@media (min-width: 768px) {
    .title {
        padding-bottom: 30px;
        margin-bottom: 30px;
    }
}

/* --- two columns */
.two-columns {
    display: grid;
    gap: 30px;
    text-align: justify;
    hyphens: auto;
    margin-top: 50px;
}
.two-columns:first-child {
    margin-top: 0;
}
@media (min-width: 768px) {
    .two-columns {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 50px;
    }
}
/* --- two columns text */
.two-columns-text {
    text-align: justify;
    hyphens: auto;
}

@media (min-width: 768px) {
    .two-columns-text {
        columns: 2;
        column-gap: 50px;
    }
}

/* ---  grid three columns */
.grid-three-columns {
    display: grid;
    gap: 30px;
}

.video-responsive {
    overflow: hidden;
    padding-bottom: 56.25%;
    position: relative;
    height: 0;
}

.video-responsive iframe {
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    position: absolute;
}

@media (min-width: 768px) {
    .grid-three-columns {
        grid-template-columns: repeat(3, 1fr);
        gap: 50px;
    }
}

/* --- documents */
.documents {
    display: grid;
    gap: 20px;
}
.documents a {
    border-bottom: 1px solid var(--color-primary);
}

.documents .doc {
    display: flex;
    align-items: center;
    padding-bottom: 10px;
}
.documents .doc img {
    margin-right: 20px;
    height: 30px;
    align-self: flex-start;
}

@media (min-width: 768px) {
    .documents {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px;
        row-gap: 30px;
    }
    .documents.documents-long {
        grid-template-columns: 1fr;
    }
    .documents .doc {
        padding-bottom: 30px;
    }
    .documents .doc > * {
        transition: transform 0.2s ease-in-out;
    }
    .documents .doc:hover > * {
        transform: translateX(10px);
    }
}

/* --- alert */
.alert {
    padding: 20px;
    background-color: var(--color-alert);
    color: var(--color-light);
}

/* --- img gauche + texte */
.post {
    display: grid;
    gap: 30px;
}

.post .img-wrapper {
    position: relative;
    overflow: hidden;
}

.post .img-wrapper::after {
    content: '';
    display: block;
    padding-bottom: 50%;
}
.post .img-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (min-width: 768px) {
    .post {
        grid-template-columns: repeat(3, 1fr);
    }
    .post .text-wrapper {
        grid-column: 2/4;
    }
    .post .img-wrapper::after {
        padding-bottom: 66.66%;
    }
}

/* --- lien page */
.lien-page {
    position: relative;
    width: 100%;
    max-width: 500px;
    min-height: 200px;
    max-height: 500px;
    margin: auto;
    overflow: hidden;
}

.lien-page .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(28, 59, 114, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color-light);
    transition: all 0.3s ease;
}

@media (min-width: 768px) {
    .lien-page img {
        transition: transform 0.3s ease;
    }

    .lien-page a:hover .overlay {
        background-color: rgba(28, 59, 114, 0.9);
    }

    .lien-page a:hover img {
        transform: scale(1.05);
    }
}

/* --- page produits */
.produits-gallery {
    display: grid;
    gap: 30px;
}
.produits-gallery .item {
    position: relative;
}
.produits-gallery .item .img-wrapper {
    background-color: var(--color-primary);
    overflow: hidden;
    margin-bottom: 10px;
}
.produits-gallery .item img {
    width: 100%;
    height: auto;
    transition: all 0.3s ease;
}
.produits-gallery .item p {
    text-align: center;
}

@media (min-width: 600px) {
    .produits-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px;
    }
    .produits-gallery .item a:hover img {
        opacity: 0.5;
        transform: scale(1.1);
    }
}
@media (min-width: 992px) {
    .produits-gallery {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* --- page details produits */

.produits-header {
    margin-top: 20px;
    margin-bottom: 20px;
}

.produits-header img {
    margin-bottom: 20px;
}
.produits-header .header-content {
    display: flex;
    flex: 1;
}
.produits-header p {
    width: auto;
    max-width: 70%;
    margin-bottom: 0;
}
.produits-header hr {
    display: block;
    margin-left: 20px;
    margin-top: 12px;
    flex: 1;
    height: 2px;
    background-color: var(--color-primary);
}

@media (min-width: 768px) {
    .produits-header {
        display: flex;
        flex-direction: row-reverse;
        align-items: center;
    }

    .produits-header img {
        margin-left: 20px;
    }
}
