@font-face {
    font-family: 'Quicksand';
    /* Nom de la police personnalisée */
    src: url('../typographie/Quicksand-Regular.ttf') format('truetype');
    /* Chemin vers le fichier TTF */
}

@font-face {
    font-family: 'ClearFace';
    /* Nom de la police personnalisée */
    src: url('../typographie/CLEARFA5.ttf') format('truetype');
    /* Chemin vers le fichier TTF */
}

.arial-font {
  font-family: arial, sans-serif;
}

.font-size-small {
  font-size: small;
}

.euro-symbol {
  font-family: 'Quicksand';
}

body {
    font-family: 'Quicksand', sans-serif;
}

a,href {
  color: inherit;
}

.dropdown-toggle::after {
    content: none;
}

.dropdown-toggle {
    transition: all 0.3s ease-in-out;
}

.px-10 {
  padding: 0 10rem;
}

/* Masquer l'élément sur les tablettes (largeur d'écran <= 992px) */
@media (max-width: 1400px) {
    .col-lg-118rem .d-lg-block {
        object-fit: cover;
        display: none !important;
    }
}

/* Masquer l'élément sur les tablettes (largeur d'écran <= 992px) */
@media (max-width: 1080px) {
    .displayNone {
        display: none !important;
    }
}

.bloc-titre-categorie {
  position: relative;
  margin-top: -2rem;
  box-shadow: 0 7px 30px rgb(37 47 93 / 12%);
  background-color: #fff;
  border-radius: 0px;
  padding: 10px 60px;
  max-width: 40rem;
}

.img-baniere {
  padding: 0;
  width: 100vw; /* La largeur de l'image est de 100% de la largeur de la fenêtre */
  height: auto; /* Ajuste automatiquement la hauteur en fonction de la largeur pour éviter la déformation */
  display: block; /* Supprime l'espace sous l'image dû à la mise en page en ligne par défaut */
  margin: 0 calc(-50vw + 50%);
}

@media (max-width: 700px) {
  .bloc-titre-categorie {
    margin-top: 0;
  }
  .px-10 {
    padding: 0;
  }
}


.dropdown-toggle {
    position: relative;
    /* Ajout de cela pour positionner le pseudo-élément par rapport à cet élément */
    width: 100%;
    color: #000;
    transition: background-color 0.3s, color 0.3s, box-shadow 0.3s;
    /* Pour une transition douce lors du survol */
}

/* Pseudo-élément pour le soulignement */
.dropdown-toggle::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    /* épaisseur de la ligne */
    background-color: #000;
    /* Couleur de la ligne */
    transition: width 0.3s;
    /* Animation de la largeur de la ligne */
}

.dropdown-toggle:hover {
    background-color: #f8f8f8;
    color: #000000;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

/* Animation au survol */
.dropdown-toggle:hover::before {
    width: 100%;
}

@media (hover: none) {
    .dropdown-toggle:hover {
        background-color: unset;
        color: unset;
        box-shadow: unset;
    }

    .dropdown-toggle:hover::before {
        width: 0;
        /* On remet la largeur à 0 pour le pseudo-élément */
    }
}

.hovered {
    background-color: #f8f8f8;
    color: #000000;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}


.hovered {
    background-color: #f8f8f8;
    /* Couleur de fond au survol */
    color: #000000;
    /* Couleur du texte au survol */
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    /* Ombre plus prononcée au survol */
}

input {
    font-size: 18px;
    padding: 10px 10px 10px 5px;
    display: block;
    width: 300px;
    border: none;
    border-bottom: 1px solid #757575;
}

input:focus {
    outline: none;
}

.et-slide {
    font-family: "Century Gothic", "Lato", sans-serif;
}

.et-slide {
    text-decoration: none;
}

.et-hero-tabs,
.et-slide {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    text-align: center;
}

.et-hero-tabs h1,
.et-slide h1 {
    font-size: 2rem;
    margin: 0;
    letter-spacing: 1rem;
}

.et-hero-tabs h3,
.et-slide h3 {
    font-size: 1rem;
    letter-spacing: 0.3rem;
    opacity: 0.6;
}

.et-hero-tabs-container {
    display: flex;
    flex-direction: row;
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 70px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    background: #fff;
    z-index: 10;
}

.et-hero-tabs-container--top {
    position: fixed;
    top: 0;
}

.et-hero-tab {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
    color: #000;
    letter-spacing: 0.1rem;
    transition: all 0.5s ease;
    font-size: 0.8rem;
}

.et-hero-tab:hover {
    color: white;
    background: rgba(102, 177, 241, 0.8);
    transition: all 0.5s ease;
}

.et-hero-tab-slider {
    position: absolute;
    bottom: 0;
    width: 0;
    height: 6px;
    background: #66B1F1;
    transition: left 0.3s ease;
}

@media (min-width: 800px) {

    .et-hero-tabs h1,
    .et-slide h1 {
        font-size: 3rem;
    }

    .et-hero-tabs h3,
    .et-slide h3 {
        font-size: 1rem;
    }

    .et-hero-tab {
        font-size: 1rem;
    }
}

.fadeOut {
    animation-name: fadeOut;
    animation-duration: 1s;
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

#hiddenDiv {
  overflow-y: scroll;
}

.btn-arrow-top {
  bottom: 40px;
  right: 0;
  display: block;
  position: fixed;
  z-index: 1000;
}

.btn-arrow-bot {
  bottom: 0;
  right: 0;
  display: block;
  position: fixed;
  z-index: 1000;
}

.btn-human {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    color: #333;
    background-color: #fff;
    border: 2px solid #ccc;
    border-radius: 25px;
    box-shadow: 0px 0px 0px #ccc;
    transition: box-shadow 0.2s ease-in-out;
}

.btn-human-noir {
    background-color: #2D2D2D;
    display: inline-block;
    line-height: 1.5;
    font-size: 18px;
    padding: 10px 30px;
    border: none;
    border-radius: 5px;
    color: #fff;
    fill: #fff;
    text-align: center;
    /* text-transform: uppercase; */
    /* Lettres en majuscules pour une impression de premium */
    transition: all 0.5s ease-in-out;
    /* Vous pouvez remplacer par la police de caractères de votre choix */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15), 0 3px 6px rgba(0, 0, 0, 0.1);
    font-weight: normal;
}

.btn-human-blanc {
  background-color: #ffffff;
  display: inline-block;
  line-height: 1.5;
  font-size: 18px;
  padding: 10px 30px;
  border: none;
  border-radius: 5px;
  color: #000000;
  fill: #fff;
  text-align: center;
  transition: all 0.5s ease-in-out;
  /* Vous pouvez remplacer par la police de caractères de votre choix */
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15), 0 3px 6px rgba(0, 0, 0, 0.1);
  font-weight: normal;
}

.btn-human-carrousel {
  line-height: 1.5;
  font-size: 18px;
  padding: 10px 30px;
  border-radius: 5px;
  color: #fff;
  fill: #fff;
  border-color: #fff;
  text-align: center;
  transition: all 0.5s ease-in-out;
  /* Vous pouvez remplacer par la police de caractères de votre choix */
  font-weight: bolder;
}

.btn-rose-fgb {
  line-height: 1.5;
  font-size: 18px;
  padding: 10px 30px;
  border-radius: 5px;
  color: #fff;
  fill: #fff;
  border-color: #fff;
  text-align: center;
  transition: all 0.5s ease-in-out;
  /* Vous pouvez remplacer par la police de caractères de votre choix */
  font-weight: bolder;
}

.btn-rose-fgb-mobile {
  line-height: 1.5;
  font-size: 18px;
  padding: 10px 30px;
  border-radius: 5px;
  color: #fff;
  background-color: #f58da7;
  fill: #fff;
  border-color: #fff;
  text-align: center;
  font-weight: bolder;
}

.btn-rose-fgb:hover {
  background-color: #f58da7;
  color: #fff;
}

.btn-the-vert {
  line-height: 1.5;
  font-size: 18px;
  padding: 10px 30px;
  border-radius: 5px;
  color: #fff;
  fill: #fff;
  border-color: #fff;
  text-align: center;
  transition: all 0.5s ease-in-out;
  /* Vous pouvez remplacer par la police de caractères de votre choix */
  font-weight: bolder;
}

.btn-the-vert:hover {
  background-color: #B2C891;
  color: #fff;
}

.btn-the-noir {
  background-color: #630304;
  color: #ffffff;
  padding: 10px 30px;
  font-size: 18px;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.btn-the-noir:hover {
  transform: scale(1.1);
  color: #630304;
  border-color: #630304;
  font-weight: bolder;
  line-height: 1.5;
}

.btn-grey {
  line-height: 1.5;
  font-size: 18px;
  padding: 10px 30px;
  border-radius: 5px;
  color: #000000;
  fill: #fff;
  border-color: #1a1d20;
  text-align: center;
  transition: all 0.5s ease-in-out;
  /* Vous pouvez remplacer par la police de caractères de votre choix */
  font-weight: bolder;
}

.btn-grey:hover {
  background-color: #6c696a;
  color: #fff;
}

.btn-light-grey {
  line-height: 1.5;
  font-size: 18px;
  padding: 10px 30px;
  border-radius: 5px;
  color: #fff;
  fill: #fff;
  border-color: #fff;
  text-align: center;
  transition: all 0.5s ease-in-out;
  /* Vous pouvez remplacer par la police de caractères de votre choix */
  font-weight: bolder;
}

.btn-light-grey:hover {
  background-color: #6c696a9e;
  border-color: #fff;
  color: #fff;
}

.btn-skin:hover {
  background-color: #d2ae9fab;
  border-color: #fff;
  color: #fff;
}

.btn-human-noir-commande {
    background-color: #ffffff;
    display: inline-block;
    line-height: 1.5;
    font-size: 18px;
    padding: 10px 30px;
    border: none;
    border-radius: 5px;
    color: #000000;
    fill: #fff;
    text-align: center;
    font-family: 'Arial', sans-serif;
    /* Vous pouvez remplacer par la police de caractères de votre choix */
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.1);
    /* Ombre pour un effet 3D */
    transition: all 0.5s ease-in-out;
}

.btn-human-noir-commande:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15), 0 3px 6px rgba(0, 0, 0, 0.1) !important;
    /* Un léger mouvement vers le haut pour montrer que le bouton est actif */
    transform: scale(1.01);
    background-color: #ffffff !important;
    /* transition: all 5s ease-in-out; */
}

.btn-sac-cadeau {
  background-color: #e5e3e3;
  color: black;
  width: fit-content;
  font-size: smaller;
}

.btn-sac-cadeau:hover {
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2), 0 5px 10px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px) scale(1.01);
  background-color: grey;
  color: snow;
}

.btn-human-noir:hover {
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2), 0 5px 10px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
    color: black;
    /* Un léger mouvement vers le haut pour montrer que le bouton est actif */
}

.btn-human-noir:active {
    transform: translateY(1px);
    /* Un léger mouvement vers le bas lorsqu'on clique sur le bouton */
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2), 0 3px 6px rgba(0, 0, 0, 0.1);
}

.btn-human-blanc:hover {
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2), 0 5px 10px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
  background-color: #2D2D2D;
  color: #ffffff;
}

.btn-human-blanc:active {
  transform: translateY(1px);
  /* Un léger mouvement vers le bas lorsqu'on clique sur le bouton */
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2), 0 3px 6px rgba(0, 0, 0, 0.1);
}

.btn-human:hover {
    box-shadow: 5px 10px 10px #ccc;
}

.hover-background {
  position: relative;
}
.background-image {
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
  min-height: 35rem;
  width: 100%;
  display: flex;
  align-items: center; /* Centre verticalement */
  justify-content: center; /* Centre horizontalement si nécessaire */
}
.content {
  position: absolute;
  top: 50%;
  left: 30%;
  transform: translate(-50%, -50%);
  width: 28rem;
}
@media (max-width: 1048px) {
  .background-image {
    min-height: 30rem; /* Ajustez la hauteur selon vos besoins */
  }
  .content {
    position: relative;
    top: 0;
    left: 0;
    transform: none;
    margin-bottom: 20px;
    background: transparent;
    color: black;
    text-align: center;
    width: auto;
    padding: 0 2rem;
  }
  .mobile-stack {
    display: flex;
    flex-direction: column-reverse;
  }
}

#cart-container {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100%;
    background-color: #ffffff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease-in-out;
    z-index: 99999999999999999999999999999999999999;

}

#cart-container.show {
    right: 0;
    overflow: auto;
}

#cart-container h2 {
    font-size: 1.2rem;
    margin: 10px;
}

#cart-items {
    list-style: none;
    padding: 0;
    margin: 0;
}

#cart-items li {
    margin: 10px;
    font-size: 0.9rem;
}

#cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    display: none;
}

#cart-container.show {
    right: 0;
}

#cart-container.show+#cart-overlay {
    display: block;
}

#cart-container .close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 1.2rem;
    cursor: pointer;
}

.anim-alert {
    position: fixed;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 999;
    width: 90%;
    max-width: 350px;
    padding: 1rem;
    text-align: center;
    opacity: 0;
    transition: all 0.3s ease-in-out;
}

.anim-alert.show {
    opacity: 1;
}

.anim-alert.hide {
    opacity: 0;
}

/* Pour Firefox */
ul#cart-items::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

ul#cart-items::-webkit-scrollbar-thumb {
    background-color: rgb(255, 255, 255);
    border-radius: 5px;
}

/* Pour Chrome, Edge et Safari */
ul#cart-items::-webkit-scrollbar-track {
    background-color: transparent;
}

ul#cart-items::-webkit-scrollbar-thumb:hover {
    background-color: rgba(255, 255, 255, 0.4);
}

#placeholder {
    background-color: #f5f5f5;
    /* ou une autre couleur de fond */
    z-index: -1;
    /* placer la div sous la liste des éléments du panier */
}


/* Pour Firefox */
body::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

body::-webkit-scrollbar-thumb {
    background-color: rgb(75, 75, 75);
    border-radius: 5px;
}

/* Pour Chrome, Edge et Safari */
body::-webkit-scrollbar-track {
    background-color: transparent;
}

body::-webkit-scrollbar-thumb:hover {
    background-color: rgba(255, 255, 255, 0.4);
}

.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
    color: #000000;
    background-color: #93939349;
    border-left: 1px solid black;
    border-top: 1px solid black;
    border-right: 1px solid black;
}



.dropdown-menu-ht {
    width: 100vw;
    position: absolute !important;
}

.header {
    height: 0;
    transition: height 0.4s ease;
    top: 285px;
    background: #f8f8f8;
}

.header-active {
    height: 350px;
    z-index: 99999;
    
}


.carousel-control-next,
.carousel-control-prev {
    width: 5%;
}

.titre-catalogue {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.categorie-catalogue {
    opacity: 0;
    transition: opacity 0.5s ease;
    color: inherit;
    /* Hérite de la couleur du texte du parent */
    text-decoration: none;
}

.fade-out {
    animation: fadeOut 0.5s forwards;
}

@keyframes fadeOut {
    from {
        opacity: 1;
        visibility: visible;
    }

    to {
        opacity: 0;
        visibility: hidden;
    }
}

.fade-in {
    animation: fadeIn 0.5s forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        visibility: hidden;
    }

    to {
        opacity: 1;
        visibility: visible;
    }
}

.dropdown-item {
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    padding: 10px;
    margin: 5px 0;
    border-radius: 5px;
    animation: slide-up 0.5s ease;
}

@keyframes slide-up {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#product-result {
    top: 48px;
}

@media (max-width: 768px) {
    #product-result {
        left: 0;
        width: 100%;
    }
}

.loaderSearch {
    border: 4px solid #f3f3f3;
    /* Light grey */
    border-top: 4px solid #3498db;
    /* Blue */
    border-radius: 50%;
    width: 18px;
    height: 18px;
    animation: spin 2s linear infinite;
    position: absolute;
    top: 6.5px;
    left: 20px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

#search-icon,
#loader {
    position: absolute;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}


.premium-link {
    display: flex;
    align-items: center;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2);
    margin: 0;
    padding: 10px;
    text-decoration: none;
    background-color: #ffffff;

}

.product-image {
    width: 50px;
    height: 50px;
    margin-right: 10px;
}

.product-name {
    margin: 0;
    margin-right: 10px;
    font-weight: bold;
}

.product-description {
    margin: 0;
    color: #555;
    text-align: center;
    white-space: normal;
    word-wrap: break-word;
}


.hide-form {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.5s ease-in-out, max-height 0.5s ease-in-out;
}

.show-form {
    opacity: 1;
    max-height: 1000px;
    /* Ajustez cette valeur selon votre besoin */
    transition: opacity 0.5s ease-in-out, max-height 0.5s ease-in-out;
}

.to-white:hover {
    background-color: white;
    color: black;
}

.to-white-btn {
    background-color: white;
    color: black;
    border-radius: 0;
    font-weight: 700 !important;
    transition: box-shadow 0.3s ease-in-out;
}

.to-white-btn:hover {
    box-shadow: 4px 4px 10px 0px rgba(255, 255, 255, 0.488);
}

.progress-bar-container {
    position: relative;
}

.progress-bar {
    background-color: #eee;
    height: 20px;
    border-radius: 10px;
    overflow: hidden;
}

.progress {
    background-color: #333;
    height: 100%;
    width: 0%;
    /* Ce sera ajusté en JavaScript */
    transition: width 0.5s ease;
}

.milestone {
    position: absolute;
    top: -30px;
    font-size: 12px;
    color: #777;
}

.milestone-30 {
    left: 50%;
    transform: translateX(-50%);
}

.milestone-60 {
    right: 0;
    transform: translateX(0%);
}

.shipping-message {
    margin-top: 10px;
    font-size: 14px;
    text-align: center;
    color: #555;
}

.nav-item {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 15px;
    /* Choisissez une valeur adaptée à votre texte le plus long */
    margin: 0 auto;
    /* Centre chaque élément <li> horizontalement */
}

.burger-menu {
    position: fixed;
    top: 0;
    right: -100%;
    /* Cela cache le menu par défaut */
    width: 100%;
    height: 100vh;
    background-color: #f5f5f5;
    transition: right 0.3s ease;
    /* Animation pour le déplacement */
    overflow-y: auto;
    padding: 20px;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
    z-index: 1000;
}

.burger-menu a {
    display: block;
    color: rgb(0, 0, 0);
    text-decoration: none;
    padding: 10px 0;
}

.menu-content {
    transition: transform 0.5s;
    display: flex;
    overflow: hidden;
}



.main-menu,
.sub-menu,
.sub-sub-menu {
    width: 100%;
    transition: transform 0.5s;
    transform: translateX(0);
}

.menu-content .menu-slide .main-menu {
    transform: translateX(-100%);
}

.menu-content .menu-slide-sub .sub-menu {
    transform: translateX(-100%);
}

.menu-content .menu-slide-sub .sub-sub-menu {
    transform: translateX(-200%);
}

.menu-slide {
    transform: translateX(-100%);
}

.menu-slide-sub {
    transform: translateX(-200%);
}

.modal-header button.close {
  background: none;
  border: none;
  position: absolute;
  top: 0;
  right: 0;
}

.btn-newsletter-subscribe {
  padding: .375rem .75rem;
  height: fit-content;
}

#newsletterModal .modal-content h5 {
  font-size: inherit;
}

.modal-content {
  border: none;
}

input {
  border-bottom: none;
  width: auto;
  font-size: inherit;
  line-height: normal;
}


input::file-selector-button {
  background-color: #ffffff;
  max-height: 3rem;
  font-size: 18px;
  padding: 15px 30px;
  border: 1px solid #2D2D2D;
  border-radius: 5px;
  color: #000000;
  fill: #fff;
  text-align: center;
  transition: all 0.5s ease-in-out;
  /* Vous pouvez remplacer par la police de caractères de votre choix */
  font-weight: normal;
}

input::file-selector-button:hover {
  transform: translateY(-3px);
  background-color: #2D2D2D;
  color: #ffffff;
}

input::file-selector-button:active {
  transform: translateY(1px);
  /* Un léger mouvement vers le bas lorsqu'on clique sur le bouton */
}

.logo-mobile img {
    height: auto;
}

/* Media query spécifique pour la résolution 1024px */
@media (min-width: 992px) and (max-width: 1199px) {
    /* S'assurer que "Nos boutiques" reste visible */
    #navbar .displayNone {
        display: block !important;
    }
    
    /* Ajuster l'espace pour "Nos boutiques" */
    #navbar a.nav-link.ml-2 {
        margin-left: 5px !important;
    }
    
    /* Ajuster la hauteur de la navbar pour accommoder deux lignes */
    #navbar {
        height: auto !important;
        min-height: 60px;
    }
}
.ligne {
    border-bottom: 1px solid white;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    text-align: left;
  }
  
  .livraison-text {
    text-align: center;
    padding-top: 1.5rem;
    font-size: 0.8rem;
  }
  
  .livraison-details {
    font-size: 0.8rem;
    text-align: center;
    display: block;
  }
  
  @media (min-width: 768px) {
    .livraison-text::after {
      content: " dès 40€ en relais colis et 60€ à domicile";
    }
    .mobile-only {
      display: none;
    }
    .livraison-details {
      display: none;
    }
  }
  
  @media (min-width: 992px) {
    .reassurance {
      flex: 0 0 20%;
      max-width: 20%;
    }
    .ligne {
      border-bottom: none !important;
      margin-bottom: none !important;
    }
  }
  
  @media (max-width: 992px) {
    .ligne img {
      max-width: 30% !important;
    }
    .ligne {
      margin-top: 0 !important;
      text-align: center;
    }
    .reassurance p {
      font-size: 0.8rem;
    }
    .reassurance img {
        transform: scale(1.5);
      }
  }





