/******************************** DEBUT STYLE GENERAL ********************************/ 
*{
    margin: 0;
    padding: 0;
    z-index: 2;
    box-sizing: border-box;
}

:root {
  --dark-blue: #233048;
  --white: #ffffff;
  --green: #50ddc4;
  --dark-green: #22aa91;
  --very-dark-green : #078673;
  --light-green: #f7fcfa;
  --very-light-green: #50ddc40D;
  --purple : #815EE5;
  --light-purple: #A492F21A;
  --dark-purple: #897acc;
  --shadow-img: 0px 15px 20px 10px rgba(0,0,0,0.1);
  --shadow-bloc: 0px 5px 10px 0px rgba(0,0,0,0.05);
}

svg{
    z-index: 0;
}


body {
    font-family: "Poppins", sans-serif;
    line-height: 1.6;
    color:var(--dark-blue);
}

a{
    color:var(--dark-blue);
}

.absolute{
    position: absolute;
}

.relative{
    position: relative;
}


.container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
}

.flex{
    display: flex !important;
}

.column {
    flex-direction: column !important;
    gap: 30px;
}

.row{
    flex-direction: row !important;
}

.center{
    align-items: center;
    justify-content: center !important;
}

.left{
    text-align: left;
}

.justify-content-start{
    justify-content: flex-start;
}

/* Définir les largeurs des colonnes */

.fb-33{
    flex-basis: 33%;
}

.fb-40{
    flex-basis: 40%;
}

.fb-50{
    flex-basis: 50%;
}

.fb-60{
    flex-basis: 60%;
}

h1{
    text-align:center;
    font-size: 4rem;
    letter-spacing: -2.5px;
    line-height: 1.4em;
    font-weight: 600;
}


h2{
    text-align:center;
    font-size: 2rem;
    font-weight: 600;
    max-width: 1200px;
    margin: auto;
}

h3{
    font-size: 1.5rem;
    font-weight: 600;
}

/* Media query pour mobile */
@media (max-width: 768px) {
    h1{
        font-size: 2.8rem;
    }
    h2{
        font-size: 1.8rem;
    }
}

h1 span{
    -webkit-background-clip: text;
    -webkit-text-fill-color: rgba(0, 0, 0, 0);
    background-clip: text;
    background-image: linear-gradient(to right, #50ddc4 10%, #22aa91 90%);
}

p{
    font-size: 1rem;
    font-weight: 300;
}

b{
    font-weight: 400;
}

a{
    cursor: pointer;
}

ul{
    padding-left: 30px;
}

section{
    margin: auto;
    padding: 50px 15px;
}

.btn{
    cursor: pointer;
    font-weight: 500;
    display: inline-block;
    color: var(--white);
    background-color: var(--dark-blue);
    border-radius: 50px;
    padding: 16px 45px;
    text-decoration: none;
    transition: transform 0.3s ease;
}
.btn:hover{
    background-color: var(--dark-green);
    transform: scale(1.05);
}

.bg-gradient{
    background : radial-gradient(28.53% 56.91% at 42.27% 34.57%,rgba(80,221,196,.16) 0%,rgba(80,221,196,0) 100%),radial-gradient(32.53% 64.89% at 53.87% 27.93%,rgba(255,225,249,.12) 6.77%,rgba(255,225,249,0) 100%),radial-gradient(31.33% 62.5% at 21.33% 26.06%,rgba(34,170,145,.12) 0%,rgba(34,170,145,0) 100%),radial-gradient(39.07% 77.93% at 90.93% 13.56%,rgba(164,146,242,.12) 1.04%,rgba(164,146,242,0) 100%),#fff
}
.bg-green{
    background-color: var(--light-green);
}

.bg-dark-green{
    background-color: var(--very-dark-green);
}

.text-green{
    color: var(--very-dark-green);
}

.wform-poweredby-container{
    display: none !important;
}

/******************************** FIN STYLE GENERAL ********************************/ 

/* DEBUT COOKIE BANNER */
/* Styles de l'overlay pour flouter et assombrir l'arrière-plan */
#overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.7); /* Assombrit le fond */
    backdrop-filter: blur(5px); /* Applique un flou */
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

/* Styles de la modale */
#cookieModal {
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    max-width: 500px;
    text-align: left;
}

#cookieModal .btns{
    justify-content: flex-end;
}

#cookieModal button {
    padding: 10px 20px;
    background-color: var(--dark-blue);
    color: var(--white);
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

/* Version mobile : Modale fixe en bas de l'écran */
@media (max-width: 600px) {
    #overlay {
        align-items: flex-end; /* Optionnel, pour placer le contenu en bas */
    }

    #cookieModal {
        width: 100%;
        max-width: 100%;
        position: fixed;
        bottom: 0;
        left: 0;
        border-radius: 0;
        padding: 15px;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2); /* Ajoute une ombre pour séparer la modale du fond */
    }
}
/* FIN COOKIE BANNER */


/* DEBUT STYLE HEADER */
header{
    position: fixed;
    width: 100%;
    z-index: 3;
    top: 0;
}

.nav {
  width: 100%;
  background-color: var(--white);
  box-shadow: var(--shadow-bloc);
  display: flex;
  align-items: center;
  z-index: 3;
  justify-content: space-between;
  padding: 12px;
  font-weight: 500;
}
.nav > .nav-header {
    height: 58.55px;
    display: flex;
    align-content: center;
    flex-wrap: wrap;
}


.nav > .nav-header > .nav-title img{
  width: 160px;
  height: auto;
  display: flex;
}

.nav > .nav-list {
  display: flex;
  gap: 5px;
  z-index: 3;
  align-items: center;
}
.nav > .nav-list > li {
  list-style-type: none;
  padding: 8px 16px;
  border-radius: 16px;
  border-style: solid;
  border-width: 1px;
  border-color: var(--white);
}

.nav > .nav-list > li:hover{
  border-color: #ecf1fc;
}

.nav > .nav-list > li:hover a{
  color: var(--dark-green);
}

.nav > .nav-list > li a {
  text-decoration: none;
  cursor: pointer;
}

.nav > .nav-list > .contact{
    display: block;
    line-height: 1em;
    background-color: var(--green);
    transition: transform 0.3s ease;
    padding: 18px 22px;
    margin-right: 20px;
    margin-left: 35px;
}
.nav > .nav-list > .contact:hover{
    background-color: var(--dark-green);
    transform: scale(1.05);
}
.nav > .nav-list > .contact a{
    color: var(--white);
    letter-spacing: .5px;
}
.nav > .nav-list > .contact:hover a{
    color: var(--white);
}

.nav > .nav-list > .pro{
    display: block;
    line-height: 1em;
    background-color: var(--white);
    transition: transform 0.3s ease;
    padding: 18px 22px;
}
.nav > .nav-list > .pro:hover{
    background-color: var(--white);
    transform: scale(1.05);
}
.nav > .nav-list > .pro a{
    color: var(--green);
    letter-spacing: .5px;
}
.nav > .nav-list > .pro:hover a{
    color: var(--green);
}

.nav > #nav-check {
    display: none;
}
@media (max-width: 480px) {
  .nav {
    padding: 1rem;
  }
  .nav > .nav-btn {
    display: flex;
    /*position: absolute;*/
    right: 0;
    top: 0;
  }
  .nav > .nav-btn > label {
    display: inline-block;
    width: 50px;
    height: 50px;
    padding: 13px;
  }
  .nav > .nav-btn > label > span {
    display: block;
    width: 25px;
    height: 10px;
    border-top: 2px solid var(--dark-blue);
  }
  .nav > .nav-list {
    position: absolute;
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 100%;
    background-color: var(--white);
    height: 0;
    transition: all 0.3s ease-in;
    top: 90px;
    left: 0;
    overflow: hidden;
    padding: 0px 10px;
  }
  .nav > .nav-list > li {
    width: 100%;
    margin-top: 10px;
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .nav > #nav-check:checked ~ .nav-list {
    height: calc(100vh - 90px);
  }
  .nav .nav-submenu .container{
    flex-direction: row;
  }
}

/* Style du sous-menu */
.nav-item {
  position: relative;
}

/* Ajoute une zone invisible sous le menu principal */
.nav-item:after {
  content: '';
  position: absolute;
  left: 0;
  top: 100%;
  height: 30px; /* La taille du "gap" souhaité */
  width: 100%;
}

.nav-submenu {
  position: absolute;
  left: calc(50% - (350px/2));
  top: calc(100% + 30px); /* Ajuste la position pour inclure l'espace */
  width: 350px;
  display: none;
  background-color: var(--white);
  box-shadow: var(--shadow-bloc);
  border-radius: 12px;
  padding: 0.5rem;
  flex-direction: column;
  font-size: 0.9rem;
  gap: 10px;
}

.nav-submenu .column {
  gap: 0px;
}

.nav-submenu .column span {
  color: var(--dark-blue);
  line-height: 1.2;
}
.nav-submenu .column span:nth-child(2) {
  opacity: 50%;
}

.nav-submenu a:hover span:nth-child(1){
  color: var(--green);
}



.nav-submenu > li {
  list-style-type: none;
}

.nav-submenu > li > a {
  text-decoration: none;
  color: #efefef;
  display: block;
  padding: 0.5rem;
}

/* Afficher le sous-menu au survol */
.nav-item:hover .nav-submenu {
  display: flex;
}

/* Mobile responsive pour le sous-menu */
@media (max-width: 480px) {
  .nav-submenu {
    width: 100%;
    box-shadow: none;
    position: static;
    display: none;
  }

  .nav-item:focus-within .nav-submenu {
    display: flex;
  }
  .nav-item:active .nav-submenu {
    display: flex;
  }

  .nav-submenu > li {
    margin-top: 1rem;
  }
}
/* FIN STYLE HEADER */




/********************************* FIN STYLE HOMEPAGE ********************************/
#section-title{
    padding-top: 140px;
}

#section-title p{
    margin: 20px 0 20px 0;
    max-width: 700px;
    text-align: center;
}

#press .row{
    gap: 50px;
    flex-wrap: wrap;
}

/* Media query pour mobile */
@media (max-width: 768px) {
    #press .row{
        gap: 20px;
    }
}


#expertise img{
    border-radius: 16px;
    max-width: 100%; /* L'image ne sera jamais plus large que son conteneur */
    height: auto; 
    transform: translate(0px, 50px);
}

#expertise .container-tag {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}

#expertise .tag {
    animation: floatingTag;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    border-radius: 4px;
    box-shadow: 0 4px 18px 0 rgba(0, 0, 0, .1);
    display: inline-flex;
    font-size: 0.7rem;
    font-weight: 600;
    line-height: 14px;
    padding: 5px 8px 4px;
    position: absolute;
    transform-origin: 50% 1px;
}

@keyframes floatingTag {
    0% {
        transform: rotate(0deg) translateX(20px) rotate(0deg)
    }

    to {
        transform: rotate(1turn) translateX(20px) rotate(-1turn)
    }
}

#expertise .tag-1 {
    animation-duration: 25s;
    background-color: #fff;
    color: #013a51;
    left: 175px;
    top: 87px;
}
#expertise .tag-2 {
    animation-direction: reverse;
    animation-duration: 30s;
    background-color: var(--dark-blue);
    color: #fff;
    right: 70px;
    top: 240px;
}
#expertise .tag-3 {
    animation-duration: 27s;
    background-color: var(--dark-green);
    color: #fff;
    left: 124px;
    top: 318px;
}


section .logos{
    border-radius: 0px;
    box-shadow: none;
    max-width: 100px; /* L'image ne sera jamais plus large que son conteneur */
    height: auto; 
}





.customer-reviews {
    width: 100%; /* Ajuster la largeur du conteneur des avis */
    margin: 0 auto; /* Centrer le carrousel */
}

.slick-track
{
    display: flex !important;
}

.slick-slide
{
    height: inherit !important;
}

.review {
    gap: 10px;
    background-color: var(--white);
    padding: 20px;
    margin: 10px;
    border-radius: 20px;
    border: 1px solid var(--dark-green);
    height: 100%;
}

.review > .stars{
    max-width: 90px;
    color: var(--dark-green);
}


.review > .name{
    font-weight: 500;
}

.review > p{
    font-size: 0.8rem;
}

#accompagnement .stroke{
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    z-index: 0;
}

#accompagnement .draw {
    -webkit-animation: draw 2s ease-in-out forwards;
    -moz-animation: draw 2s ease-in-out forwards;
    animation: draw 2s ease-in-out forwards;
}

#accompagnement .path {
    stroke-dasharray: 1;
    stroke-dashoffset: 1;
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    transform: translateZ(0);
    will-change: transform;
}

@keyframes draw {
    0% {
        stroke-dashoffset: 1;
    }

    to {
        stroke-dashoffset: 0;
    }
}

#accompagnement h2{
    color: var(--white);
    padding-bottom: 30px;
    z-index: 2;

}

#accompagnement .bloc{
    background-color: var(--white);
    padding: 20px;
    border-radius: 16px;
    max-width: 450px;
    translate: 0px 0px;
    box-shadow: var(--shadow-bloc);
    z-index: 2;
    margin-top: 60px;
    margin-bottom: 60px;
    justify-content: space-between;
}

#accompagnement .bloc:first-child{
    translate: 0px -60px;
    margin-top: 60px;
}
#accompagnement .bloc:last-child{
    translate: 0px 60px;
    margin-bottom: 60px;
}

/* Media query pour mobile */
@media (max-width: 768px) {
    #accompagnement .bloc{
        translate: 0px !important;
        margin-top: 0px !important;
        margin-bottom: 0px !important;
    }
}

#accompagnement a{
    color: var(--very-dark-green);
    text-decoration: none;
    font-weight: 500;
    text-align: right;
}

#valeurs .bloc{
    background-color: var(--light-purple);
    padding: 20px;
    border-radius: 16px;
}

#valeurs .icon{
    height: 48px;
    width: 48px;
    border-radius: 48px;
    background-color: var(--light-purple);
}

#valeurs .bloc .container{
    align-items: center;
    margin: 0;
}

#chiffre h3{
    font-size: 3rem;
    -webkit-background-clip: text;
    -webkit-text-fill-color: rgba(0, 0, 0, 0);
    background-clip: text;
    background-image: linear-gradient(to right, #50ddc4 10%, #22aa91 90%);
}

#chiffre p{
    font-weight: 500;
}


/* Media query pour mobile */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }

    .fb-40, .fb-50, .fb-60 {
        flex-basis: 100%;
    }
}

#avis a{
    margin: auto;
}


#faq .container {
    max-width: 650px;
    gap: 10px;
}

#faq h2 {
    padding-bottom: 20px;
}


.faq {
    margin-bottom: 10px;
    border: 1px solid var(--purple);
    border-radius: 12px;
    background-color: var(--white);
}

.faq-question {
    display: block;
    background-color: var(--white);
    padding: 15px;
    cursor: pointer;
    user-select: none;
    border-radius: 12px;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 15px;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    margin: 10px 0;
}

#faq input{
    display: none;
}

/* Lorsque le checkbox est coché, la réponse devient visible */
#faq input[type="checkbox"]:checked + .faq-question + .faq-answer {
    max-height: 400px; /* Ajuste selon la taille de la réponse */
}

#faq input[type="checkbox"]:checked + .faq-question {
    font-weight: 500
}

#contact .container {
    max-width: 650px;
}

#contact p{
    text-align: center;
}

#contact form{
    box-sizing: border-box;
    background-color: var(--light-purple);
    border-radius: 25px;
    width: 100%;
    padding: 25px;
}

#contact form, #contact label, #contact input, #contact textarea {
    width: 100%;
    padding: 10px;
}

#contact .checkbox-group input, #contact .checkbox-group label{
    width: auto;
    height: auto;
    display: inline-block;
}

#contact label{
    padding-left: 2px;
}

#contact input, #contact textarea{
    background-color: var(--white);
    border-radius: 16px;
    border-color: var(--purple);
    border-width: 1px;
    height: 45px;
}

#contact input[type=submit]{
    border: none;
    background-color: var(--purple);
    color: var(--white);
    font-size: 1rem;
    cursor: pointer;
}

#contact input[type=submit]:hover{
    background-color: var(--dark-purple);
}

#contact textarea{
    height: auto;
}

#contact2 .container {
    max-width: 650px;
}

#contact2 p{
    text-align: center;
}

#articles .bloc{
    background-color: var(--white);
    box-shadow: var(--shadow-bloc);
    padding: 20px;
    border-radius: 16px;
}

.card {
  gap: 0;
  background-color: white;
  border-radius: 8px;
  overflow: hidden; /* pour éviter que l'image dépasse */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.card-img {
  width: 100%; /* l'image prend toute la largeur de la carte */
  height: auto; /* l'image conserve son ratio d'aspect */
  display: block; /* supprime l'espace en bas de l'image */
  max-height: 150px;
  object-fit: cover;
  object-position: 0px -50px;
}

.card-content {
  padding: 15px;
}

.card h3 {
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 1.1em;
}

.card a {
  color: var(--very-dark-green);
  font-size: 0.9em;
  line-height: 1.4;
}

#partenaires .row{
    gap: 50px;
}

/* Media query pour mobile */
@media (max-width: 768px) {
    #partenaires .row{
        gap: 20px;
    }
}

/* Media query pour mobile */
@media (max-width: 768px) {
    .no-mobile{
        display: none !important;
    }
}
/* FIN STYLE HOMEPAGE */

/* DEBUT STYLE LANDING PAGE */
#section-title-lp{
    padding-top: 200px;
    margin-bottom: 50px;
}
#section-title-lp h1{
    text-align:center;
    font-size: 2.8rem;
    font-weight: 600;
    max-width: 1200px;
    margin: auto;
}
#section-title-lp span{
    font-weight: 500;
}
#section-title-lp img{
    border-radius: 16px;
    max-width: 100%; /* L'image ne sera jamais plus large que son conteneur */
    height: auto; 
    transform: translate(0px, 50px);
}

.section-lp .btn{
    margin-top: 50px;
}

.lp-pro img{
    border-radius: 0px !important;
    max-width: 80% !important;
    transform: translate(0px, 100px) !important;
}

.bloc-demo{
    background-color: #233048;
    border-radius: 30px;
    color: #fff;
    padding: 50px;
}

.bloc-demo span{
    color: #22aa91 !important;
    text-transform: uppercase;
    font-size: 11px;
    font-weight: bold;
}

.bloc-demo h3{
    font-size : 32px
}

.bloc-demo .btn-container{
    justify-content: flex-end;
}

.bloc-demo .btn{
    background-color: #22aa91;
    margin: 0;
}

.bloc-demo .btn span{
    color: #fff !important;
    font-size: 14px;
    text-transform: none;
    font-weight: 500;
}

.timeline {
    position: relative;
  }

.timeline .icon{
    height: 60px;
    width: 60px;
    background: var(--white);
    border-radius: 50px;
    fill: var(--dark-blue);
}

.timeline .icon.active {
    background: var(--dark-green);
    fill: var(--white);
  }

  .timeline-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 60px;
    text-align: center;
  }
  
  .timeline-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
  }
  
  .timeline-text {
    max-width: 600px;
    text-align: left;
  }

  .timeline-text h2{
    text-align: left;
  }
  
  /* Desktop layout avec centrage vertical */
  @media screen and (min-width: 768px) {
    .timeline-item {
      flex-direction: row;
      align-items: center; /* ✅ centrage vertical */
      text-align: left;
      gap: 40px;
    }
  
    .timeline-image,
    .timeline-text {
      flex: 1;
    }
  
    .timeline-icon {
      display: flex;
      justify-content: center;
      align-items: center;
    }
  }
  

  @media screen and (min-width: 768px) {
    .timeline-item.reverse {
      flex-direction: row-reverse;
    }
  
    .timeline-item.reverse .timeline-text {
      text-align: right;
    }
    .timeline-item.reverse .timeline-text h2{
        text-align: right;
      }
  }
  
  
  
  .progress-bar-bg {
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: calc(100% - 100px);
    background-color: var(--white);
    border-radius: 4px;
    z-index: 1;
    overflow: hidden;
  }
  
  .progress-bar-fill {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background-color: var(--dark-green);
    border-radius: 4px;
    z-index: 2;
  }
  
  .gap-80{
    gap: 80px;
  }

.timeline img{
    max-width: 100%;
    margin: auto;
    border-radius: 10px;
}

/* FIN STYLE LANDING PAGE */


/* DEBUT LANG SWITCHER */
.lang-switcher {
    position: fixed;
    top: 100px;
    right: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 9999;
  }
  
  .lang-switcher a {
    display: block;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 1px 5px rgba(0,0,0,0.15);
    transition: transform 0.2s ease;
  }
  
  .lang-switcher a:hover {
    transform: scale(1.1);
  }
  
  .lang-switcher img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
/* FIN LANG SWITCHER */


/* DEBUT MODAL DEMANDE DEMO */
/* MODALE */
#demoModal.modal {
    display: none;
    position: fixed;
    z-index: 999;
    inset: 0;
    background-color: rgba(0,0,0,0.6);
    padding: 20px;
  }
  
  #demoModal .modal-content {
    background-color: #fff;
    margin: auto;
    padding: 30px;
    max-width: 480px;
    width: 100%;
    border-radius: 12px;
    position: relative;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    font-family: 'Segoe UI', sans-serif;
  }
  
  #demoModal .close {
    position: absolute;
    top: 12px;
    right: 16px;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    transition: color 0.2s;
  }
  #demoModal .close:hover {
    color: #333;
  }
  
  #demoModal .modal-content h2 {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 24px;
    color: #333;
    text-align: center;
  }
  
  /* FORMULAIRE */
  #demoModal form label {
    display: block;
    margin-bottom: 16px;
    color: #444;
    font-size: 14px;
  }
  
  #demoModal form input {
    width: 100%;
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid #ccc;
    margin-top: 6px;
    font-size: 14px;
    transition: border-color 0.2s;
  }
  #demoModal form input:focus {
    border-color: #007bff;
    outline: none;
  }
  
  /* BOUTON */
  #demoModal form button[type="submit"] {
    background-color: var(--dark-green);
    color: #fff;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 15px;
    cursor: pointer;
    transition: background-color 0.2s;
    width: 100%;
    margin-top: 10px;
  }
  #demoModal form button[type="submit"]:hover {
    background-color: var(--very-dark-green);
  }
  
  /* MESSAGE DE FEEDBACK */
  #demoModal #formMessage {
    text-align: center;
    font-size: 14px;
    margin-top: 12px;
    color: #333;
  }
  
  /* Success & Error (à gérer via JS) */
  #demoModal #formMessage.success {
    color: green;
  }
  #demoModal #formMessage.error {
    color: red;
  }
  
/* FIN MODAL DEMANDE DEMO */



/* DEBUT STYLE FOOTER */
footer {
    position: relative;
    background-color: var(--dark-blue);
    color: var(--white);
    text-align: center;
    padding: 12px;
    margin-top: 40px;
    padding-top: 50px;
    font-size: 0.875rem;
}

footer .colibri{
    position: absolute;
    right: 100px;
    top: -126px;
}

footer .container {
    max-width: none;
    margin: initial;
    justify-content: flex-start;
    gap: 10px;
}

footer > .container{
    gap: 40px;
}

footer .container .column{
    flex: 1;
}
footer .container .column:first-child{
    flex: 2;
}

footer a{
    color: var(--white);
    text-decoration: none;
    font-weight: 300;
}

footer .sous-footer{
    font-size: 0.75rem;
    margin-top: 80px;
    gap: 10px;
}
/* FIN STYLE FOOTER */

