/********** Template CSS **********/
html, body {
    transform: none;
    zoom: 1;
}

:root {
    --primary: #6222CC;
    --secondary: #FBA504;
    --light: #F6F4F9;
    --dark: #04000B;
}

sectionId
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Heading ***/
h1,
h2,
.fw-bold {
    font-weight: 700 !important;
}

h3,
h4,
.fw-semi-bold {
    font-weight: 600 !important;
}

h5,
h6,
.fw-medium {
    font-weight: 500 !important;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn:hover {
    box-shadow: 0 0 10px rgb(0, 0, 0);
    color: #d400ff;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50px;
}

/*** barre de défilement ***/
/* Webkit-based browsers (Chrome, Safari) */
::-webkit-scrollbar {
    width: 5px;
  }
  
  ::-webkit-scrollbar-thumb {
    background-color: #6222cc;
    border-radius: 18px; 
    border: 2px solid #ffffff; 
  }
  
  /* Firefox */
  * {
    scrollbar-width: auto;
    scrollbar-color: #6222cc #ffffff;
  }
  

/*** Navbar ***/
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f067";
    font-family: "Font Awesome 5 Free";
    font-size: 10px;
    font-weight: bold;
    vertical-align: middle;
    margin-left: 8px;
    
}

.navbar-light .navbar-nav .nav-link {
    position: relative;
    margin-right: 25px;
    padding: 35px 0;
    font-family: 'Jost', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: var(--light) !important;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--dark) !important;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--secondary) !important; /* Change la couleur */
    transform: translateX(8px); /* Décale vers la droite */
    transition: transform 0.3s ease; /* Animation fluide */
}

.navbar-light .navbar-brand h1 {
    color: #FFFFFF;
}

.navbar-light .navbar-brand img {
    max-height: 100px;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-brand img {
    max-height: 45px;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-light {
        position: relative;
        background: #FFFFFF;
    }

    .navbar-light .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid #DDDDDD;
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        margin-left: 0;
        color: var(--dark) !important;
    }

    .navbar-light .navbar-brand h1 {
        color: var(--primary);
    }

    .navbar-light .navbar-brand img {
        max-height: 45px;
    }
}

@media (min-width: 992px) {
    .navbar-light {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 1px solid rgba(256, 256, 256, .1);
        z-index: 999;
    }
    
    .sticky-top.navbar-light {
        position: fixed;
        background: #FFFFFF;
    }

    .sticky-top.navbar-light .navbar-brand h1 {
        color: var(--primary);
    }

    .navbar-light .navbar-nav .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar-light .navbar-nav .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }

    .navbar-light .btn {
        color: var(--dark);
        background: #FFFFFF;
    }

    .sticky-top.navbar-light .btn {
        color: var(--dark);
        background: var(--secondary);
    }
}

/* Style par défaut pour le bouton hamburger */
.navbar-toggler {
    border: none; /* Supprime la bordure */
    background: transparent; /* Fond transparent */
    color: #ffffff !important; /* Couleur par défaut */
}

/* Style de l'icône hamburger */
.navbar-toggler .fa-bars {
    border: none; /* Supprime la bordure */
    color: #ffffff !important; /* Couleur par défaut */
    font-size: 24px; /* Taille de l'icône */
    transition: color 0.3s ease; /* Transition pour un effet visuel */
}

/* Couleur de l'icône quand le menu est fermé */
.navbar-toggler:not(.collapsed) .fa-bars {
    border: none; /* Supprime la bordure */
    color: #ff6600 !important; /* Couleur quand le menu est fermé */
}

/* Couleur de l'icône quand le menu est ouvert */
.navbar-toggler.collapsed .fa-bars {
    border: none; /* Supprime la bordure */
    color: #ff6600 !important; /* Couleur quand le menu est ouvert */
}



/*** Hero Header ***/
.hero-header {
    margin-bottom: 6rem;
    padding: 18rem 0;
    background:
        url(../img/blob-top-left.png),
        url(../img/blob-top-right.png),
        url(../img/blob-bottom-left.png),
        url(../img/blob-bottom-right.png),
        url(../img/blob-center.png),
        url(../img/bg-bottom.png);
    background-position:
        left 0px top 0px,
        right 0px top 0px,
        left 0px bottom 0px,
        right 0px bottom 0px,
        center center,
        center bottom;
    background-repeat: no-repeat;
}

@media (max-width: 991.98px) {
    .hero-header {
        padding: 6rem 0 9rem 0;
    }
}


/*** Section Title ***/
.section-title {
    position: relative;
    display: flex;
    align-items: center;
    font-weight: 500;
    text-transform: uppercase;
}

.section-title span:first-child,
.section-title span:last-child {
    position: relative;
    display: inline-block;
    margin-right: 30px;
    width: 30px;
    height: 2px;
}

.section-title span:last-child {
    margin-right: 0;
    margin-left: 30px;
}

.section-title span:first-child::after,
.section-title span:last-child::after {
    position: absolute;
    content: "";
    width: 15px;
    height: 2px;
    top: 0;
    right: -20px;
}

.section-title span:last-child::after {
    right: auto;
    left: -20px;
}

.section-title.text-primary span:first-child,
.section-title.text-primary span:last-child,
.section-title.text-primary span:first-child::after,
.section-title.text-primary span:last-child::after {
    background: var(--primary);
}

.section-title.text-secondary span:first-child,
.section-title.text-secondary span:last-child,
.section-title.text-secondary span:first-child::after,
.section-title.text-secondary span:last-child::after {
    background: var(--secondary);
}

.section-title.text-white span:first-child,
.section-title.text-white span:last-child,
.section-title.text-white span:first-child::after,
.section-title.text-white span:last-child::after {
    background: #FFFFFF;
}


/*** Feature ***/
.feature-item {
    transition: .5s;
    align-items: center;
    
}

.feature-item:hover {
    margin-top: -15px;
}


/*** About ***/
.progress {
    height: 5px;
}

.progress .progress-bar {
    width: 0px;
    transition: 3s;
}


/*** Fact ***/
.fact {
    margin: 6rem 0;
    background:
        url(../img/blob-top-left.png),
        url(../img/blob-top-right.png),
        url(../img/blob-bottom-left.png),

        
        center center;
    background-repeat: no-repeat;
}


/*** Service ***/
.service-item {
    position: relative;
    padding: 45px 30px;
    background: var(--light);
    overflow: hidden;
    transition: .5s;
}

.service-item:hover {
    margin-top: -15px;
    padding-bottom: 60px;
    background: var(--primary);
}

.service-item .service-icon {
    margin: 0 auto 20px auto;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    background: url(../img/blob-primary.png) center center no-repeat;
    background-size: contain;
    transition: .5s;
}

.service-item:hover .service-icon {
    color: var(--dark);
    background: url(../img/blob-secondary.png) center center no-repeat;
    background-size: contain;
}

.service-item h5,
.service-item p {
    transition: .5s;
}

.service-item:hover h5,
.service-item:hover p {
    color: #FFFFFF;
}

.service-item a.btn {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--primary);
    background: #FFFFFF;
    border-radius: 40px 40px 0 0;
    transition: .5s;
    z-index: 1;
}

.service-item a.btn:hover {
    color: var(--dark);
    background: var(--secondary);
}

.service-item:hover a.btn {
    bottom: 0;
}


/*** Project Portfolio ***/
#portfolio-flters li {
    display: inline-block;
    font-weight: 500;
    color: var(--dark);
    cursor: pointer;
    transition: .5s;
    border-bottom: 2px solid transparent;
}
#welcomeMessage {
    position: absolute; /* Positionne le div de manière absolue par rapport à son conteneur le plus proche positionné */
    top: 10px; /* Distance du haut */
    right: 20px; /* Distance du bord droit de l'écran */
    padding: 10px; /* Espace intérieur pour mieux encadrer le texte */
    background-color: rgba(0, 0, 0, 0.7); /* Fond semi-transparent noir */
    color: white; /* Texte blanc pour un contraste élevé */
    font-size: 16px; /* Taille de police adéquate */
    z-index: 1050; /* S'assure qu'il reste au-dessus d'autres éléments potentiels */
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-item .portfolio-overlay {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(98, 34, 204, .9);
    transition: .5s;
    opacity: 0;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolioinfo-item:hover img {
    transform: scale(1.1);
}

.portfolioinfo-item .portfolioinfo-overlay {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    margin: auto;
    top: 0;
    left: 0;
    backdrop-filter: blur(3px); 
    -webkit-backdrop-filter: blur(3px); 
    transition: .5s;
    opacity: 0;
}

.portfolioinfo-item:hover .portfolioinfo-overlay {
    opacity: 1;
}

/*** Newsletter ***/
.newsletter {
    margin: 6rem 0;
    background:
        url(../img/blob-top-left.png),
        url(../img/blob-top-right.png),
        url(../img/blob-bottom-left.png),
        url(../img/blob-bottom-right.png),
        url(../img/blob-center.png);
    background-position:
        left 0px top 0px,
        right 0px top 0px,
        left 0px bottom 0px,
        right 0px bottom 0px,
        center center;
    background-repeat: no-repeat;
}


/*** Testimonial ***/
.testimonial-carousel .testimonial-item {
    padding: 0 30px 30px 30px;
}

.testimonial-carousel .owl-nav {
    display: flex;
    justify-content: center;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin: 0 12px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    background: var(--light);
    border-radius: 60px;
    font-size: 22px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: #FFFFFF;
    background: var(--primary);
    box-shadow: 0 0 10px rgba(0, 0, 0, .5);
}


/*** Team ***/
.team-item .btn {
    color: var(--primary);
    background: #FFFFFF;
}

.team-item .btn:hover {
    color: #FFFFFF;
    background: var(--primary);
}


/*** Footer ***/
.footer {
    margin-top: 6rem;
    padding-top: 9rem;
    background:
        url(../img/bg-top.png),
        url(../img/map.png);
    background-position:
        center top,
        center center;
    background-repeat: no-repeat;
}

.footer .btn.btn-social {
    margin-right: 5px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid rgba(256, 256, 256, .1);
    border-radius: 40px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 10px;
    padding: 0;
    text-align: left;
    color: var(--light);
    font-weight: normal;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
    color: var(--secondary);
}

.footer .copyright {
    padding: 25px 0;
    font-size: 14px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

.footer .copyright a:hover,
.footer .footer-menu a:hover {
    color: var(--secondary);
}

/* ajouts le 21/05/2024 */

/* lettres roses pour le titre, avec liseret blanc */
.first-letter {
    color: #be2991; /* Intérieur en rose */
    text-shadow: 
        -1px -1px 0 #ffffff, 
         1px -1px 0 #ffffff, 
        -1px  1px 0 #ffffff, 
         1px  1px 0 #ffffff; /* Liseret blanc autour des lettres */
  }
  
  /* rebond d'image */
  .imagezoom{
    -webkit-transform: scale(1);
      transform: scale(1);
      -webkit-transition: .3s ease-in-out;
      transition: .3s ease-in-out;
    box-shadow: 0 5px 15px 0px rgba(0, 0, 0, 0.6);
    border-radius: 15px;
    margin-bottom: 10px;
  }
  
  .imagezoomso{ /*sans l'ombre pour les images png transparentes */
    -webkit-transform: scale(1);
      transform: scale(1);
      -webkit-transition: .3s ease-in-out;
      transition: .3s ease-in-out;
    margin-bottom: 10px;
  }
  
  .imagezoom:hover {
      -webkit-transform: scale(1.2);
      transform: scale(1.2);
    box-shadow: 0 10px 30px 0px rgba(0, 0, 0, 0.6);
  
  }
  
  .imagezoomso:hover {
      -webkit-transform: scale(1.2);
      transform: scale(1.2);
  }
  
  .imagezoomj {
    position: relative;
    display: inline-block;
    color: #3a76f0;
    cursor: pointer;
    font-size: 20px;
    }
  
  /* Définit la transformation de l'icône uniquement */
  .imagezoomj i {
    -webkit-transform: scale(1.8);
    transform: scale(1.8);
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
  }
  
  /* Lorsque le bouton est survolé, agrandit uniquement l'icône */
  .imagezoomj:hover i {
    -webkit-transform: scale(2.8);
    transform: scale(2.8);
  }

  .container-relatif {
    position: relative; /* Le conteneur parent doit avoir une position relative */
}

.logo-absolu {
    position: absolute;
    top: -20px;  /* Ajustez la valeur pour le positionner verticalement */
    left: 20px;  /* Ajustez la valeur pour le positionner horizontalement */
    width: auto; /* Maintient le ratio d'aspect si la hauteur est définie */
    height: 350px; /* Hauteur fixée */
    z-index: 1000; /* Assurez-vous qu'il est au-dessus des autres éléments */
}

/* Style du formulaire de connexion */
/* Boutons du formulaire */
#loginForm button {
    margin-top: 10px;
}

#mainContent.blurred {
    filter: blur(5px); /* flou du formulaire */
}

#loginForm {
    display: none; 
    position: fixed; 
    left: 50%; 
    top: 50%; 
    transform: translate(-50%, -50%); 
    z-index: 100; 
    background: white; 
    padding: 20px; 
    box-shadow: 0 0 15px rgba(0,0,0,0.5); 
    border-radius: 20px;
}

#welcomeMessage {
    position: absolute; /* Positionne le div de manière absolue par rapport à son conteneur le plus proche positionné */
    top: 75px; /* Distance du haut */
    right: 180px; /* Distance du bord droit de l'écran */
    color: white; /* Texte blanc pour un contraste élevé */
    background-color: transparent;
    font-size: 12px; /* Taille de police adéquate */
    z-index: 1050; /* S'assure qu'il reste au-dessus d'autres éléments potentiels */
}
#loginMessage {
    display: none; /* le message est initialement caché */
    color: red;
    font-weight: bold;
    padding: 10px;
    border: 1px solid red;
    text-align: center;
    margin-top: 10px;
}

/* CSS pour l'affichage iframe des PDF */
.service-item {
    background-color: #f8f9fa;
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 20px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.service-icon {
    margin-bottom: 15px;
}

.btn-square {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.btn-square:hover {
    background-color: #0056b3;
}

.modal-content {
    border-radius: 20px;
}

.modal-body iframe {
    width: 100%;
    height: 650px;
    
}

.wow {
    visibility: hidden;
}

.wow.animated {
    visibility: visible;
}

/* Style pour la lightbox sécurité des données */
.lightbox2 {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0,0.6);
}

.lightbox2-content {
    background-color: #eabff5;
    color: #000;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    box-sizing: border-box; 
    border-radius: 20px;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
    animation-name: zoom;
    animation-duration: 0.6s;
}

.lightbox2-content p {
    font-size: 16px; 
    color: black;
    line-height: 1.5; /* Hauteur de ligne pour éviter le chevauchement */
    letter-spacing: 0.5px; /* espace entre les caractères */
    word-wrap: break-word; /* fin de ligne non coupée */
    overflow-wrap: break-word; 
}

.close {
    color: #aaaaaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

@keyframes zoom {
    from {transform: scale(0)} 
    to {transform: scale(1)}
}

/* Iframe des liens Lity */
.lity {
    z-index: 9990;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    white-space: nowrap;
    background: #0b0b0b;
    background: rgba(0, 0, 0, 0.9);
    outline: none !important;
    opacity: 0;
    -webkit-transition: opacity 0.3s ease;
    -o-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
  }
  .lity.lity-opened {
    opacity: 1;
  }
  .lity.lity-closed {
    opacity: 0;
  }
  .lity * {
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
            box-sizing: border-box;
  }
  .lity-wrap {
    z-index: 9990;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    text-align: center;
    outline: none !important;
  }
  .lity-wrap:before {
    content: '';
    display: inline-block;
    height: 100%;
    vertical-align: middle;
    margin-right: -0.25em;
  }
  .lity-loader {
    z-index: 9991;
    color: #fff;
    position: absolute;
    top: 50%;
    margin-top: -0.8em;
    width: 100%;
    text-align: center;
    font-size: 14px;
    font-family: Arial, Helvetica, sans-serif;
    opacity: 0;
    -webkit-transition: opacity 0.3s ease;
    -o-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
  }
  .lity-loading .lity-loader {
    opacity: 1;
  }
  .lity-container {
    z-index: 9992;
    position: relative;
    text-align: left;
    vertical-align: middle;
    display: inline-block;
    white-space: normal;
    max-width: 100%;
    max-height: 100%;
    outline: none !important;
  }
  .lity-content {
    z-index: 9993;
    width: 100%;
    -webkit-transform: scale(1);
        -ms-transform: scale(1);
         -o-transform: scale(1);
            transform: scale(1);
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    -o-transition: -o-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease, -o-transform 0.3s ease;
  }
  .lity-loading .lity-content,
  .lity-closed .lity-content {
    -webkit-transform: scale(0.8);
        -ms-transform: scale(0.8);
         -o-transform: scale(0.8);
            transform: scale(0.8);
  }
  .lity-content:after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    display: block;
    right: 0;
    width: auto;
    height: auto;
    z-index: -1;
    -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
            box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  }
  .lity-close {
    z-index: 9994;
    width: 35px;
    height: 35px;
    position: fixed;
    right: 0;
    top: 0;
    -webkit-appearance: none;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    padding: 0;
    color: #fff;
    font-style: normal;
    font-size: 35px;
    font-family: Arial, Baskerville, monospace;
    line-height: 35px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
    border: 0;
    background: none;
    outline: none;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .lity-close::-moz-focus-inner {
    border: 0;
    padding: 0;
  }
  .lity-close:hover,
  .lity-close:focus,
  .lity-close:active,
  .lity-close:visited {
    text-decoration: none;
    text-align: center;
    padding: 0;
    color: #fff;
    font-style: normal;
    font-size: 35px;
    font-family: Arial, Baskerville, monospace;
    line-height: 35px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
    border: 0;
    background: none;
    outline: none;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .lity-close:active {
    top: 1px;
  }
  /* Image */
  .lity-image img {
    max-width: 100%;
    display: block;
    line-height: 0;
    border: 0;
  }
  /* iFrame */
  .lity-iframe .lity-container,
  .lity-youtube .lity-container,
  .lity-vimeo .lity-container,
  .lity-facebookvideo .lity-container,
  .lity-googlemaps .lity-container {
    width: 100%;
    max-width: 964px;
    
  }
  .lity-iframe-container {
    border-radius: 15px;
    width: 100%;
    height: 0;
    padding-top: 56.25%;
    overflow: auto;
    pointer-events: auto;
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
    -webkit-overflow-scrolling: touch;

  }
  .lity-iframe-container iframe {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
            box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #000;
  }
  .lity-hide {
    display: none;
  }
  /* fin iframe des liens Lity*/

  
/* --- Accordéon ---*/

.accordion {
    background-color: #6222cc;
    cursor: pointer;
    padding: .5em;
    width: 98%;
    border: none;
    outline: none;
    font-size: 20px;
    color: #fff;
    transition: 0.6s;
    border-radius: 20px;
    margin: .7em;
    position: relative; 
}

.accordion:hover {
    background-color: #a67ce9;
    color: #fff;
    margin: 1em;
}

.accordion:after {
    content: '\25BC'; /* Flèche vers le bas */
    color: #ffffff;
    font-weight: bold;
    position: absolute;
    right: 1em; 
    top: 50%;
    transform: translateY(-50%);
}

.active.accordion:after {
    content: '\25B2'; /* Flèche vers le haut */
    color: #E75E8D;
}

.panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s ease-out;
    border-radius: 12px;
}

/* fin accordéon */

/* positionnement des divs des newsletters */
.container-xxl {
    margin-top: -80px; 
}
.feature-item {
    margin-bottom: 20px; 
}

/* ajout du carousel des maximes */

/* Style des citations */
.carousel-inner .carousel-item {
    background: transparent; /* Suppression du fond gris */
    border: none;
    border-radius: 18px;
    padding: 20px;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.3); /* Ombre discrète */
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.carousel-inner .carousel-item.active {
    transform: scale(1.05);
    opacity: 1;
}

/* Police et style des citations */
.carousel-inner .carousel-item p {
    font-family: "Georgia", serif;
    font-size: 1.2rem;
    color: #333; /* Couleur légèrement plus sombre pour un meilleur contraste */
    line-height: 1.8;
    position: relative;
    background: #fff; /* Ajout d'un fond blanc au texte */
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Légère ombre sur le texte */
}

/* Ajout des icônes de guillemets */
.carousel-inner .carousel-item p::before,
.carousel-inner .carousel-item p::after {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 2rem;
    color: #6c757d;
    position: absolute;
}

.carousel-inner .carousel-item p::before {
    content: "\f10d"; /* Font Awesome left quote */
    left: -10px;
    top: -10px;
}

.carousel-inner .carousel-item p::after {
    content: "\f10e"; /* Font Awesome right quote */
    right: -10px;
    bottom: -10px;
}

/* Cacher les boutons de navigation par défaut */
.carousel-control-prev,
.carousel-control-next {
    opacity: 0; /* Invisible par défaut */
    transition: opacity 0.3s ease;
}

.carousel:hover .carousel-control-prev,
.carousel:hover .carousel-control-next {
    opacity: 1; /* Visible au survol */
}

/* Amélioration des icônes de navigation */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(40%);
    width: 40px;
    height: 40px;
}

/* Suppression du fond gris derrière */
.carousel {
    background: transparent !important; /* Supprime complètement le fond */
}
