/* Variables */
:root {
    --bleu: #0735E5;
    --noir: #000;
    --noir2: #1D1D1B;
    --blanc: #fff;
    --blanc2:#F4F4F4;
    --blanc-07: rgba(255, 255, 255, 0.7);
    --gris : #888888;
    --gris2 : #83849F;
    --gris-02: rgba(131, 132, 159, 0.2);
    --red: rgba(255, 0, 0, 1);

}
body {
    background-color: var(--blanc);
    font-family: 'spaceGrotesk', sans-serif;
    font-weight: 500;
    font-size: 12px;
    overflow-x: hidden;
}
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--noir2);
  box-shadow: 0 2px 5px rgba(0,0,0,0.3); /* Optionnel, mais stylé */
}
h1 {
    font-size: 20px;
    line-height: 1.2;
    font-weight: 600;;
}
p {
    font-size: 12px;
    line-height: 1.4;
}
.btn-devis {
    background-color: var(--bleu);
    color: var(--blanc);
    height: 38px;
    width: 179px;
    padding: 10px 30px;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.1;
    text-align: center;
}
.btn-devis:hover {
    background-color: var(--noir2);
    border: 1px solid var(--blanc2);
}
a {
    color: var(--blanc);
    text-decoration: none;
}
a:hover {
    color: var(--blanc2)
}
span.txt-blue {
    color: var(--bleu);
}
span.soul-blue {
    text-decoration: underline;
    text-decoration-color: var(--bleu);
    text-underline-offset: 3px;
}

section {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 50px 30px;
}
nav {
    background-color: var(--blanc-07);
    width: 100%;
    height: 70px;
    display: flex;
    align-items: center;
}
nav > div:first-child {
    width: 40%;
    margin: auto;
    padding-right: 30px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}
nav img {
    width: 66px;
    height:auto;
    display: inline-block;
}
nav > div:nth-child(2) {
    width: 55%;
    margin: auto;
    display: flex;
    justify-content: center;
}

section#first {
    background-color: var(--noir2);
    padding: 0;
    padding-bottom: 20px;
}
section#first > div{
    width: 330px;
    margin: 30px auto;
}

section#first h1{
    color: var(--blanc);
    font-family: "Space Grotesk", sans-serif;
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 25px;
}
section#first .list-div > div{
    background-color: var(--blanc);
    color: var(--noir2);
    width: fit-content;
    padding: 5px 10px;
    border:#000 solid 1px;
    box-shadow: 4px 4px var(--bleu);
    margin-bottom: 15px;
    vertical-align: middle;
}
section#first .list-div > div img {
    padding-right: 10px;
}
section#first .stars {
    height: 20px;
    margin-top: 20px;
    color: var(--blanc);
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    display: flex;
    align-items: center;
}
section#first .stars img {
    padding-right: 7px;
    display: inline;
    padding-bottom: 2px;
}
section#first .photo {
    width: 100%;;
}
section#first .photo img {
    width: 100%;
    height: auto;
    display: block;
}

#section-form {
    background-color: var(--blanc2);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.cards {
    width: 360px;
    height: 220px;
    font-family: "Space Grotesk", sans-serif;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.card-div {
    padding: 20px;
    box-shadow: 5px 5px var(--bleu);
    transform-origin: center;
    font-size: 12px;
    font-weight: 500;
    width: 45%;
}

.card-div h2 {
    font-size: 45px;
    font-weight: 700;
    margin: 0.5rem 0;
}

.card-div p {
    margin: 0;
    font-size: 11px;
    line-height: 1.2;
}

/* Carte noire derriere */
.card-div.black {
    background: #000;
    color: #fff;
    z-index: 1;
    padding-top: 15px;
    padding-bottom: 15px;
}
.card-gche {
    transform: rotate(-4deg);
}

/* Carte blanche devant */
.card-div.white {
    background: #fff;
    color: #000;
    z-index: 2;
    padding-top: 25px;
    padding-bottom: 25px;
}
.card-dte {
    transform: rotate(4deg);
}

.card-div.white h2 {
    color: #0040ff;
}

#section-form .bloc-form {
    width : 330px;
    background-color: var(--blanc);
    padding: 20px;
    border: rgba(131, 132, 159, 0.2) solid 1px;
    font-family: "Poppins", sans-serif;
}
#section-form .bloc-form h2 {
    font-size: 20px;
    font-weight: 600;
}
#section-form .bloc-form h2 span{
    color: var(--bleu);
}
section#section-form form input:not([type="submit"]), 
section#section-form form select {
    background-color: var(--blanc2);
    color: var(--noir2);
    height: 40px;
    font-size: 10px;
    border: none;
    border-radius: 0;
}
section#section-form form input:not([type="submit"]):hover, 
section#section-form form select:hover {
    border: 1px solid var(--noir);
    box-shadow: none;
}
div.form-group {
    
    padding: 10px 10px 0px 10px;
}
section#section-form form .required-asterisk {
    color: var(--red);
    margin-left: 0.25em;
    font-weight: bold;
}
section#section-form form input[type='submit'] {
    flex-grow: 1;
    color: var(--blanc);
    border:none;
    margin: 25px 15px;
}


section#logo-clients {
    background-color: var(--blanc);
    padding: 26px 0 ;
}
section#logo-clients .carousel {
    position: relative;
    overflow: hidden;
    width: 100%;
    background: #fff;
    padding: 0;
}

section#logo-clients .carousel-track {
    display: flex;
    gap: 17px;
    animation: scroll 40s linear infinite;
    width: fit-content;
}

section#logo-clients .carousel img {
  height: 84px;
  object-fit: contain;
  flex-shrink: 0;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

section#avis-client {
    background-color: var(--blanc2);
}
.avis {
    background-color: var(--blanc);
    border: 1px solid var(--gris-02);
    padding: 20px 30px;
    width: 100%;
    position: relative;
}
.avis >img {
    position: absolute;
    top: -16px;
    left: -5px;
}
div.text-avis {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: 12px;
    line-height: 1.4;
    color: var(--noir2);
    padding: 10px 0;
}
.footer-avis {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.footer-avis .nom-client {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size:10px;
    color: var(--gris2);
}
.client-verifie {
    background-color: var(--noir2);
    color: var(--blanc);
    width: fit-content;
    padding: 4px 7px;
    text-transform: uppercase;
    font-size: 7px;
    display: flex;
    align-items: center;
    gap:2px;
}
section#simplifie {
    background-color: var(--blanc);
    color: var(--noir2);
}
section#simplifie > div {
    background-color: var(--blanc);
    color: var(--noir2);
    max-width: 100%;;
}
section#simplifie h1 {
    font-family: "Poppins", sans-serif;
}
section#simplifie p {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    color: var(--gris2);
}
section#simplifie .logo-type-etab {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px 38px;
    max-width: 361px;
    margin: auto;
}
section#simplifie .logo-type-etab div {
    text-align: center;
    flex-grow: 1;
}
section#simplifie .logo-type-etab div svg {
    max-height: 50px;
    max-width: 50px;
}
section#simplifie .logo-type-etab div p {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    text-align: center;
    color: #000;
    padding-top: 10px;
}

section#flexible {
    background-color: var(--noir2);
    color: var(--blanc);
    gap: 24px;
    font-family: 'Poppins', sans-serif;
}
section#flexible .photo-caisse {
    border-left: 8px solid var(--bleu);
    padding-left: 19px;
    overflow: hidden;
}
section#flexible > div {
    max-width: 600px;
    margin: auto;
}
section#flexible .photo-caisse img {
    width: 100% ;
    height: auto;
}
section#flexible .photo-caisse-desktop {
    display: none;
}

section#outils-puissants {
    background-color: var(--blanc2);
    text-align: center;
}
section#outils-puissants h1 {
    width: 100%;
}
section#outils-puissants .div-rect-bleu {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 16px auto;
}
.rect-bleu {
    width: 40px;
    height: 8px;
    background-color: var(--bleu);
}
section#outils-puissants p {
    max-width: 600px;
    margin: auto;
    color: var(--gris2);
    margin-bottom: 34px;
}
section#outils-puissants .logo-type-etab {
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px 24px;
    max-width: 600px;
    margin: auto;
}
section#outils-puissants .logo-type-etab div  {
    text-align: center;
    width: 60px;
}
section#outils-puissants .logo-type-etab div p {
    font-size: 10px;
    font-weight: 700;
    color: #000;
    margin-bottom: 0;
}
section#outils-puissants .logo-type-etab div img {
    height: 45px;
    width: auto;
    margin-bottom: 15px;
}

section#performance-optimale {
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--blanc);
    color: var(--noir2);
    text-align: center;
    font-family: 'Poppins', sans-serif;
}
section#performance-optimale h1 {
    padding: 0 30px;
    margin-bottom: 16px;
}
section#performance-optimale > p {
    padding: 0 30px;
    color: var(--gris2);
    margin-bottom: 34px;
}
.carousel-container {
  position: relative;
  width: 100%;
  height: fit-content;
  max-width: 960px;
  margin: auto;
  overflow: hidden;
}
 .carousel-container {
    width: calc(100% - 20px);
}
.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
    will-change: transform;
    height: fit-content;
    width: fit-content;
}

section#performance-optimale .carousel-item {
  width: 90px;
  height: fit-content;
  text-align: center;
  padding: 10px;
  flex-shrink: 0;
  margin: 0;
  color: var(--bleu);
  font-size: 12px;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

section#performance-optimale .carousel-item img {
  width: 70px;
  height: auto;
  margin: 0 auto;
}

.carousel-btn {
    background-color: var(--bleu);
    color: white;
    border: none;
    width: 24px;
    height: 24px;
    font-size: 12px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    cursor: pointer;
}
.carousel-btn:disabled {
  background-color: #a0c4ff;
  opacity: 0.6;
  cursor: not-allowed;
}
.div-btn-desktop-carousel{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 32px;
}
.carousel-container {
    width: 80%;
}
.carousel-btn.left {
    position: unset;
    transform: none;
    z-index: 10;
}
.carousel-btn.right {
    position: unset;
    transform: none;
    z-index: 10;
}

section#performance-optimale > div {
    width: 100%;
    display: flex;
    flex-direction: row;
}
section#parcours-fluide {
    background-color: var(--noir2);
    color: var(--blanc);
    font-family: 'Poppins', sans-serif;
}
section#parcours-fluide .titre {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    justify-content: center;
    max-width: 600px;
    margin: auto;
}
section#parcours-fluide .titre .rb {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 20px;
    padding-right: 20px;
}
section#parcours-fluide .titre h1 {
    text-align: center;
}
section#parcours-fluide > p {
    max-width: 600px;
    margin: auto;
    line-height: 1.2;
    text-align: center;
    margin-top: 16px;
}
section#parcours-fluide .cards {
    max-width: 600px;
    margin: auto;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 24px;
    height: auto;
    width: 100%;
}
section#parcours-fluide .fleche-style {
    display: none;
}
section#parcours-fluide .cards .card-div.white {
    padding: 12px;
    height: 140px;
    width: 140px;
}
section#parcours-fluide .cards h2 {
    color: var(--noir2);
    margin-bottom: 0;
    margin-top: 0;
    line-height: 1;
}
section#parcours-fluide .cards h3 {
    font-family: 'Poppins', sans-serif;
    color: var(--bleu);
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
}
section#parcours-fluide .cards p {
    font-family: 'Poppins', sans-serif;
    font-size: 10px;
    font-weight: 400;
    text-transform: none;
    line-height: 1;
}
section#atout-strategique {
    background-color: var(--blanc2);
    font-family: 'Poppins', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
section#atout-strategique h1 {
    text-align: center;
    padding-bottom: 16px;
}
section#atout-strategique .titre {
    margin: auto;
    max-width: 600px;
}
section#atout-strategique .titre p {
    color: var(--gris2);
    text-align: center;
    margin-bottom: 24px;
}

section#atout-strategique .table {
    max-width: 600px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    border-collapse: collapse;
    margin-bottom: 30px;
}

section#atout-strategique .row {
    display: contents;
}

section#atout-strategique .cell {
    padding: 5px 10px 5px 0;
    border-bottom: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    line-height: 1.1;
}

section#atout-strategique .cell.label {
    justify-content: flex-start;
    font-weight: normal;
    color: #333;
}

section#atout-strategique .header .cell {
    font-weight: 500;
    font-size: 10px;
    text-align: center;
}

section#atout-strategique .popina-col {
    background: #fff;
    border-right: 1px solid var(--bleu);
    border-left: 1px solid var(--bleu);
    border-bottom: none;
    box-shadow: 6px 6px 0 0 var(--bleu);
    position: relative;
    z-index: 1;
}
section#atout-strategique .popina-col-start {
    border-top: 1px solid var(--bleu);
}
section#atout-strategique .popina-col-end {
    border-bottom: 1px solid var(--bleu);
}
section#atout-strategique .icon {
    font-size: 18px;
}

/* Remove bottom border for first row */
section#atout-strategique .row:first-child .cell {
    border-bottom: none;
}


section#communaute {
    text-align: center;
    align-items: center;
}
section#communaute  h1{
    padding-bottom: 26px;
}
.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 600px;
    aspect-ratio: 16 / 9;
    cursor: pointer;
    overflow: hidden;
}

.video-poster {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.play-button:hover {
    background: rgba(255, 255, 255, 1);
}
.play-button img {
    width: 60px;
    height: 60px;
}

section#carousel-avis  {
    padding: 50px 0;
    background-color: var(--blanc2);
    font-family: "Poppins", sans-serif;
    height: max-content;
}
section#carousel-avis .affichage-cards-avis {
    display: none;
}
section#carousel-avis .carousel {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: calc(100% - 80px);
    max-width: 600px;
    margin: auto;
    height: max-content;
}
section#carousel-avis .div-btn-desktop-carousel {
    display: flex;
}
section#carousel-avis .carousel-container {
    display: flex;
    flex-direction: row;
    height: 310px;
    margin:0 auto;
    width: 100%;
    text-align: left;
    height: max-content;
}
section#carousel-avis .carousel-container .left-btn,
section#carousel-avis .carousel-container .right-btn {
    width: 40px;
    min-width: 40px;
    height: 310px;
    background-color: var(--blanc2);
    z-index: 10;
}
section#carousel-avis .carousel-container .right-btn  {
    position: absolute;
    top: 100%;
    right: 0;
    transform: translateY(-100%);
    z-index: 10;
}
section#carousel-avis .carousel-btn.left {
    left: 20px;
}
section#carousel-avis .carousel-btn.right {
    right: 20px;
}

section#carousel-avis .carousel-track {
    width: 100%;
    padding: 0px;
    flex-direction: row;
    flex-wrap: nowrap;
    overflow: visible;
   /*  gap: 20px; */
}
section#carousel-avis .carousel-item {
    width: 100%;
    height: 310px;
    padding: 0 20px;
    flex-shrink: 0;
    margin: 0;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.4;
    display: flex;
    flex-direction: column;
    gap: 16px;
    height: max-content;
}
section#carousel-avis .avis-client {
    padding: 20px 3px;
    height: 100%;
    
}
section#carousel-avis .avis {
    background-color: var(--blanc);
    padding: 30px;
}
section#carousel-avis div.text-avis {
    padding: 12px 0;
    height: max-content;
}
section#carousel-avis div.footer-avis {
    padding-top: 12px
}



footer > div {
    background-color: #151514;
    display: block;
    width: 100%;
    height: fit-content;
    box-sizing: content-box;
    padding-top: 50px;
}
footer .row:first-child {
    justify-content: space-between;
    width: fit-content;
    margin: 0 auto 24px;
    align-items: center;
}
footer .gauche.logo {
    width: 130px;
    padding: 0;
}
footer .gauche img {
    width: 100%;

}
footer .droite {
    width: fit-content;
    padding: 0;
}
footer .rs {
    width: 100%;
    margin-top: 24px;
    display: flex;
    justify-content: flex-start;
    gap: 20px;
}
footer .rs > div {
    width: 25px;
    padding: 0;
    font-size: 18px;
    text-align: center;
}
footer hr {
    color: #404040;
    height: 2px;
    margin: 0 30px 24px 30px;
}
footer .liens {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    padding-bottom: 50px;
}
footer .liens a {
    color: #7A7A7A;
}

.desktop {
    display: none;
}
.fleche-style {
    display: none;
}
@media (min-width: 576px) {
    section#first > div {
        width: 435px;
        margin: 30px auto;
    }
    section#first h1 {
        font-size: 30px;
    }
    .list-div {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap:20px
    }
    section#first .photo {
        max-width: 620px;
    }
    .avis {
        max-width: 500px;
        margin: auto;
    }
    section#simplifie > div {
        max-width: 500px;
        margin: auto;
    }
    section#performance-optimale .carousel-item {
        width: 110px;
    }

}
@media (min-width: 768px) {
    nav > div:first-child {
        width: 30%;
        justify-content: flex-start;
    }
    nav img {
        width: 80px;
    }
    nav > div:nth-child(2) {
        justify-content: flex-end;
    }
    #section-form .bloc-form {
        width: 600px;
    }
}

@media (min-width: 992px) {
    h1 {
        font-size: 28px
    }
    p {
        font-size: 14px;
    }
    .desktop {
        display: flex;
    }   
    .mobile {
        display: none;
    }
    nav img {
        width: 126px;
    }
    .btn-devis {
        font-size: 16px;
        width: 200px
    }
    section {
        padding: 80px 50px;
    }
    section#first {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        padding-left: 30px;
        padding-right: 30px;
    }
    section#first h1 {
        font-size: 35px;
    }
    section#first > div, section#first .photo { 
        width: 48%;
    }
    section#first div:first-child {
        position: relative;
    }
    section#first div:first-child .fleche-style {
        display: block;
        position: absolute;
        bottom: 43px;
        right:0;
    }
    #section-form {
        flex-direction: row;
    }
    #section-form .cards {
        height: 210px;
    }
    #section-form .card-gche {
        align-self: flex-end;
    }
    #section-form .card-dte {
        align-self: flex-start;
    }
    section#simplifie > div {
        display: flex;
        flex-direction: row;
        max-width: none;
        justify-content: space-between;
    }
    section#simplifie > div .text-simplifie {
        width:31%;
        padding-right: 15px;
    }
    section#simplifie > div .text-simplifie h1 {
        padding-right: 15px;
    }
    section#simplifie .logo-type-etab {
        width: 60%;
        max-width: none;
        margin: auto 0;
        gap: 0;
        justify-content: space-around;
    }

    section#flexible {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }
    section#flexible > div {
        margin: 0;
    }
    section#flexible div:nth-child(2) {
        margin: auto 0;
        width: 50%;
    }
    section#flexible .photo-caisse {
        max-height: 270px;
    }
    section#flexible .photo-caisse-desktop {
        display: block;
        height: 100%;
        object-fit: cover;
    }
    section#flexible .photo-caisse-mobile {
        display: none;
    }

    section#outils-puissants p {
        width: 70%;
        max-width: 860px;
    }
    section#outils-puissants .logo-type-etab {
        width: 85%;
        max-width: 1160px;
        justify-content: space-around;
        gap: 0;
    }
    section#outils-puissants .logo-type-etab div {
        width: 100px;
    }

    section#performance-optimale {
        max-width: 750px;

    }

    .div-btn-desktop-carousel{
        display: flex;
        justify-content: center;
        align-items: center;
        width: 60px;
    }
    .carousel-btn {
        width: 40px;
        height: 40px;
    }
    .carousel-container {
        width: 80%;
    }
    .carousel-btn.left {
        z-index: 10;
    }
    .carousel-btn.right {
        z-index: 10;
    }
    .carousel-track {
        padding: 0;
    }
    section#performance-optimale .carousel-item {
        width: 28%;
        max-width: 210px;
    }
    section#performance-optimale .carousel-item img {
        width: 90%;
        max-width: 170px;
    }

    section#parcours-fluide .cards {
        margin-top: 50px;
        max-width: 750px;
        gap: 80px 20px;
    }
    section#parcours-fluide .fleche-style, 
    section#parcours-fluide img {
        display: block;
        width: 50px;
    }
    section#atout-strategique .popina-col-end .btn-devis{
        margin: auto;
        font-size: 14px;
        margin-left: 10px;
        margin-bottom: 20px;
    }
    .video-wrapper {
        max-width: 800px;

    }
    .play-button, .play-button img {
        width: 80px;
        height: 80px;
    }
    div.text-avis {
        font-size: 14px;
    }
    .footer-avis .nom-client {
        font-size: 12px;
    }
    .client-verifie {
        font-size: 10px;
        padding: 7px;
    }
    .client-verifie img {
        width: 15px;
        height: 15px;
    }
    footer .row:first-child {
        width: 100%;
        padding-top: 80px;
        padding-left: 50px;
        padding-right: 50px;
        flex-direction: row;
    }
    footer .gauche.logo {
        order:1;
        width: 20%;
    }
    footer .gauche img {
        max-width: 138px;
    }
    footer .droite {
        order: 3;
        width: 20%;
        display: flex;
        justify-content: flex-end;
    }
    footer .rs {
        order: 2;
        width: 40%;
        justify-content: center;
        margin-top: 0;
    }
    footer .rs > div {
        width: 30px;
        font-size: 28px;
    }
    footer .liens {
        justify-content: center;
        gap: 50px;
    }
}


@media (min-width: 1200px) {
    body {
        font-size: 16px;
    }
    section {
        padding: 80px 60px;
    }
    h1 {
        font-size: 32px;
    }
    p { 
        font-size: 16px;
    }

    section#first {
        padding: 80px 60px;
        font-size: 16px;
    }
    section#first h1 {
        font-size: 48px;
        margin-bottom: 60px;
    }
    section#first .list-div > div {
        padding: 10px;
    }
    .list-div {
        gap: 20px 24px;
    }
    section#first > div {
        width: 49.7%;
        max-width: 630px
    }
    section#first > div {
        margin-right: 0;
        margin-left: auto;
    }
    section#first div:first-child .fleche-style {
        right: 59px;
    }
    section#first .photo {
        width: 60%;
        max-width: 630px;
        margin-left: -90px;
        margin-right: auto;
    }

    #section-form .cards {
        height: 550px;
        width: 50%;
        max-width: 600px;
    }
    #section-form .bloc-form {
        height: max-content;
        width: 56%;
        max-width: 650px;
    }
    .card-div {
        width: 49%;
        max-width: 268px;
        min-height: 250px;
        aspect-ratio: 1.1 / 1 ;
        box-shadow: 10px 10px var(--bleu);
    }
    .card-div p {
        font-size: 21px;
        line-height: 1.1;
    }
    .card-div h2 {
        font-size: 72px;
    }
    #section-form .card-dte {
        margin-bottom: 60px;
        align-self: center;
    }
    #section-form .card-gche {
        margin-top: 60px;
        align-self: center;
    }

    #section-form .bloc-form {
        padding: 40px 72px;
    }
    #section-form .bloc-form h2 {
        font-size: 24px;
    }
    section#section-form form input:not([type="submit"]),
    section#section-form form select {
        font-size: 14px;
        height: 36px;
    }
    section#logo-clients {
        padding: 40px 0;
    }
    section#logo-clients .carousel img {
        height: 100px;
    }
    section#avis-client .avis {
        max-width: 970px;
        padding: 30px;;
    }
    div.text-avis {
        font-size: 18px;
        padding: 24px 0;
    }
    .footer-avis .nom-client {
        font-size: 16px;
    }

    section#simplifie > div {
        max-width: 1300px;
    }
    section#simplifie > div .text-simplifie {
        width: 35%;
    }
    section#simplifie .logo-type-etab div svg {
        max-height: 70px;
        max-width: 70px;
    }
    section#simplifie .logo-type-etab div p {
        padding-top: 20px;
    }
    section#flexible {
        justify-content: center;
        gap: 85px;
    }
    section#flexible > div {
        max-width: 760px;
    }

    section#outils-puissants p {
        margin-bottom: 40px;
    }
    section#outils-puissants .logo-type-etab {
        width: 100%;
    }
    section#outils-puissants .logo-type-etab div {
        width: 140px;
    }
    section#outils-puissants .logo-type-etab div img {
        height: 70px;
    }
    section#outils-puissants .logo-type-etab div p {
        font-size: 16px;
    }
    section#performance-optimale {
        max-width: 1250px;
    }
    section#performance-optimale h1 {
        text-align: center;
        padding: 0;
        margin: 0 auto 16px;
    }
    section#performance-optimale > p {
        padding: 0 90px;
        margin-bottom: 40px;
    }
    section#performance-optimale > div {
        max-width: 900px;
        margin: auto;
    }
    .carousel-container {
        max-width: 750px;
    }
    section#performance-optimale .carousel-item {
        width: 33%;
        max-width: 250px;
    }
    section#performance-optimale .carousel-btn {
        width: 27px;
        height: 27px;
    }
    section#parcours-fluide {
        padding-bottom: 90px;
    }
    section#parcours-fluide .titre, section#parcours-fluide > p {
        max-width: 1200px;
    }
    section#parcours-fluide .titre h1 br {
        display: none;
    }
    section#parcours-fluide .cards {
        max-width: 1200px;
        margin: 50px auto 0;
        gap: 80px 30px
    }
    section#parcours-fluide .cards .card-div.white {
        height: 234px;
        width: 251px;
        padding: 30px;
    }
    section#parcours-fluide .cards h2 {
        font-size: 80px;
        margin-bottom: 8px;
    }
    section#parcours-fluide .cards h3,
    section#parcours-fluide .cards p {
        font-size: 16px;
    }
    section#parcours-fluide .fleche-style, section#parcours-fluide img {
        width: 60px;
    }

    section#atout-strategique .titre {
        max-width: 1200px;
    }
    section#atout-strategique .titre h1 br {
        display: none;
    }
    section#atout-strategique .titre p {
        margin-bottom: 40px;
    }

    section#atout-strategique .table {
        max-width: 900px;
        grid-template-columns: 2fr 1fr 2fr;
    }

    section#atout-strategique .header .cell, 
    section#atout-strategique .cell,
    section#atout-strategique .popina-col-end .btn-devis  {
        font-size: 16px;
    }
    section#atout-strategique .header .cell br {
        display: none;
    }
    section#atout-strategique .header .cell img {
        width: 80px;
        padding-left: 6px;
    }
    section#atout-strategique .cell img {
        width: 32px;
        padding: 0;
    }
    section#atout-strategique .cell {
        padding: 15px 10px;
    }
    section#atout-strategique .other-col {
        padding-right: 46px;
    }
    section#atout-strategique .popina-col-end {
        padding-top: 23px;
        padding-bottom: 3px;
    }
    
    section#communaute  h1 {
        padding-bottom: 32px;
    }
    .video-wrapper {
        max-width: 1050px;
    }
    section#carousel-avis {
        padding: 80px 60px;
    }
    section#carousel-avis .carousel {
        display: none;
    }
    section#carousel-avis .affichage-cards-avis {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 48px;
        max-width: 1100px;
        margin: auto;
    }
    section#carousel-avis .affichage-cards-avis .avis-client{
        padding: 0;
        height: max-content;
    }
    section#carousel-avis div.text-avis {
        height: 245px;
    }

}

.is-valid {
  border: 2px solid #28a745 !important;
}
.is-invalid {
  border: 2px solid #dc3545 !important; 
}
.errorMessageContainer {
    color: rgb(250, 28, 28);
    font-size: 13px;
    font-weight: bold;
    text-align: center;
    margin-top: 20px;
    text-align: center;
}