/* Variables */
:root {
    --blanc: #ffffff;
    --blanc2:#F8F8F8;
    --blanc3: #E6E4E4;
    --gris-07: rgba(237, 237, 237, 0.7);
    --gris1: #CFCFCF;
    --gris2:#576E74;
    --gris3: #595959;
    --gris4: #3A3A3A;
    --gris5: #2B2B2A;
    --vert-clair: #0DA880;
    --vert1: #0F3038;
    --vert2: #07242A;
    --noir: #000000;
    --noir2: #1D1D1B;
    --red: #FF0000;
}
.txt-vert {
    color: var(--vert-clair);
}
.sbold {
    font-weight: 600;
}
.bold {
    font-weight: 700;
}
.ebold {
    font-weight: 800;
}
a {
    text-decoration: none;
}
body{
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    font-variation-settings: "wdth" 100;
    background-color: var(--blanc);
    line-height: 1.2;
    font-size: 12px;
    text-align: left;
}
.btn-demo {
    background-color: var(--vert-clair);
    color: var(--blanc);
    font-weight: 600;
    height: 45px;
    width: 220px;
    border-radius: 40px;
    padding: 12px 24px;
    text-align: center;
    font-size: 18px;
}
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: white; /* Important si tu veux éviter les effets de transparence */
  box-shadow: 0 2px 5px rgba(0,0,0,0.3); /* Optionnel, mais stylé */
}
section {
    padding: 48px 30px;
}
section:not(#marques) > div,
section:not(#marques) h2,
section p {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}
h1 {
    font-size: 2.66em;
    line-height: 1.2;
    font-weight: 600;
}
.s-titre,
section#allie .pre-titre {
    font-size: 1.33em;
}
p,
.st-fonctionnalites,
label,
footer {
    font-size:1em;
}
h2 {
    font-size: 1.66em;
    margin: 0;
}
section#avantages .s-titre {
    font-size: 1.33em;
}
.chiffres {
    font-size: 2em;
}
input::placeholder,
textarea::placeholder,
select {
    font-size: 11px;
}
input.is-invalid,
textarea.is-invalid,
select.is-invalid {
    border-color:  var(--red) !important;
    box-shadow: rgb(255, 55, 55, 0.5) 0px 0px 0px 0.25rem !important;
}
input.is-valid,
textarea.is-valid,
select.is-valid {
    border-color: var(--vert-clair) !important;
    box-shadow: rgb(13, 168, 128, 0.5) 0px 0px 0px 0.25rem !important;
}

nav {
    height: 80px;
    width: 100%;
    padding: 16px 30px;
    display:flex;
    align-items: center;
    align-content: center;
    justify-content: space-between;
    flex-wrap: wrap;
    row-gap: 10px;
    background-color: var(--gris-07);
}
nav .logo img {
    height: 48px;
    width: auto;
}

#first {
    background-color: var(--vert1);
    color: var(--blanc);
    margin-bottom: -6px;
}
.cadre-vert-penche {
    background-color: var(--vert-clair);
    border-radius: 4px;
    transform: rotate(-1deg);
    padding: 4px 8px;
    width:fit-content;
    font-size: 2em;
    margin-bottom: 10px;
    font-weight: 600;
}
h1 {
    margin-bottom: 24px;
    width: 77%
}

#first .s-titre {
    width: 80%;
    margin-bottom: 16px;
}
.list-div {
    margin-bottom: 16px;
}
.list-div div {
    margin-bottom: 8px;
    font-size: 1em;
}
.list-div img {
    width: 22px;
    margin-right: 12px;
}
section#first .photo {
    width: 100%;
    margin-top: 26px;
    position: relative;
}
section#first .photo img{
    width: 100%;
}
section#first .photo img.deco {
    position: absolute;
    bottom: -50px;
    left:0;
    width: auto;
    height: 55%;
    z-index: 2;
    pointer-events: none;
}


section#marques {
    padding: 48px 0;
    background-color: var(--blanc);
}
section#marques h2 {
    margin: 0 auto;
    max-width: 540px;
    text-align: center;
}
.carousel-auto {
    position: relative;
    overflow: hidden;
    width: 100%;
    background: #fff;
    padding: 0;
    margin-top: 26px;
}
.carousel-auto  .carousel-track {
    display: flex;
    gap: 56px;
    animation: scroll 40s linear infinite;
    width: fit-content;
}
.carousel-auto img {
    filter: grayscale(100%);
    height: 50px;
    object-fit: contain;
    flex-shrink: 0;
}
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}
section#avantages {
    background-color: var(--blanc2);
    color: var(--vert1)
}
.ol_fond_vert {
    background-color: var(--vert-clair);
    color: var(--blanc);
    height: 40px;
    min-height: 40px;
    width: 30px;
    min-width: 30px;
    vertical-align: middle;
    text-align: center;
    font-size: 2em;
    line-height: 40px;
    border-radius: 8px;
}
.titre-avantage {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}
section#avantages p {
    color: var(--gris2);
    margin: 24px auto;
}
section#avantages .photo,
section#avantages .photo img {
    width: 100%;
}
section#avantages .photo {
    margin-top: 26px;
    margin-bottom: 48px;
}
section#avantages .video {
    margin-top: 26px;
    margin-bottom: 48px;
    aspect-ratio: 330 / 280;
    width: 100%;
    overflow: hidden;
    border-radius: 48px;
}
section#avantages .video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    text-align: center;
    border-radius: 48px;
}
section#avantages .btn-demo {
    margin: auto;
}
section#temps {
    background-color: var(--vert1);
    color: var(--blanc);
    text-align: center;
}
section#temps > img.deco {
    display: none;
}
.div-temps {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 32px;
}
.div-temps > div {
    display: flex;
    flex-direction: column;
    width: 150px;
    gap: 8px;
}
.div-temps p {
    margin-bottom: 0;
}

section#fonctionnalites {
    background-color: var(--blanc);
    color: var(--vert1);
    text-align: center;
}
section#fonctionnalites .st-fonctionnalites {
    margin: 24px auto 32px auto;
}

.carousel-manuel {
    width: 100%;
    display: flex;
    flex-direction: row;
    position: relative;
    color: var(--noir);
}
.carousel-manuel .div-btn-carousel {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 28px;
}
.carousel-btn {
    filter: none;
    border: none;
    width: 25px;
    height: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    cursor: pointer;
    position: unset;
    padding: 0;
    background-color: transparent;
}
.carousel-btn.left img {
    rotate: 180deg;
}
.carousel-btn img {
    width: 100%;
}
.carousel-btn:disabled {
    filter: grayscale(100%);
}
.carousel-manuel {
    margin-bottom: 22px;
}
.carousel-manuel .carousel-container {
    width: 80%;
    position: relative;
    height: fit-content;
    max-width: 960px;
    margin: auto;
    overflow: hidden;
}
.carousel-manuel .carousel-track {
    display: flex;
    transition: transform 0.5s ease;
    will-change: transform;
    height: fit-content;
    width: fit-content;
}
.carousel-manuel .carousel-item {
    width: 188px;
    height: fit-content;
    text-align: center;
    padding: 10px;
    flex-shrink: 0;
    margin: 0;
    font-weight: 400;
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: left;
}

section#allie {
    background-color: var(--vert1);
    color: var(--blanc);
}
section#allie img.deco {
    display: none;
}
section#allie h2 {
    margin-bottom: 24px; 
}
section#allie .s-titre {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 11px;
    margin-bottom: 8px;
}
section#allie p {
    font-weight: 400;
}
section#allie .photo {
    margin-top: 24px;
}
section#allie .photo,
section#allie .photo img {
    width: 100%;
}
section#equipements {
    background-color: var(--blanc2);
    color: var(--vert1);
    text-align: center;
}
section#equipements > p {
    font-weight: 400;
    margin: 24px auto 32px auto;
}
.cards {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 32px;
}
.cards .card-equip {
    width: 150px;
}
section#equipements .photo,
section#equipements .photo img {
    width: 100%;
}
section#equipements .card-equip p {
    color: var(--noir);
    font-weight: 600;
    margin-top: 24px;
    margin-bottom: 0;
}

section#temoignages {
    background-color: var(--blanc);
    color: var(--vert1);
    text-align: center;
}
section#temoignages .spirale {
    display: none;
}
section#temoignages p {
    margin: 0;
}
section#temoignages p.stitre-temoignage .desktop {
    display: none;
}
section#temoignages p.stitre-temoignage {
    font-weight: 400;
    margin: 24px auto 32px auto;
}
section#temoignages .temoignage {
    margin-bottom: 32px;
}
section#temoignages .video-container,
section#temoignages .video-container img,
section#temoignages .video-container video  {
    width: 100%;
    cursor: pointer;
    object-fit: cover;
    border-radius: 48px;
}
section#temoignages .video-container {
    max-width: 330px;
    margin: auto;
}
.video-wrapper {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
section#temoignages .temoignage p {
    padding: 6px 
}

section#formulaire {
    position: relative;
    background-color: var(--blanc2);
    color: var(--vert1);
}
section#formulaire .deco{
  position: absolute;
  top: -30px;
  right: 10%;
  width: auto;
  height: 136px;
  z-index: 2;
  pointer-events: none; 
}
section#formulaire h2 {
    padding-top: 8px;
    text-align: center;
    width: 50%;
    margin: auto;
    color: var(--noir2);
}
section#formulaire form {
    margin: auto;
    margin-top: 32px;
    width: 100%;
    gap: 12px 16px;
    justify-content: space-between;
    max-width: 550px;
}
section#formulaire form .form-group {
    padding: 0;
}
section#formulaire form .form-group {
   width: 47%;
}
section#formulaire form .form-group.full-w {
    width: 100%;
}
section#formulaire form .form-group input:not([type='checkbox']),
section#formulaire form .form-group textarea,
section#formulaire form .form-group .form-select {
    border-radius: 8px;
    padding: 8px 16px;
    font-size: 12px;
    border: 0.5px var(--gris2) solid;
}

section#formulaire form .required-asterisk {
    color: var(--red);
}
.rgpd {
    display: flex;
    padding: 0;
}
form a, form a:hover {
    color: var(--vert-clair);
    text-decoration: underline;
}
.btn-demo.submit {
    width: 100%;
    border: none;
    vertical-align: middle;
}
footer {
    width: 100%;
}
footer > div {
    display: block;
    background-color: var(--vert2);
    color: var(--blanc);
    height: fit-content;
    box-sizing: content-box;
    padding: 50px 30px;
}
footer .row:first-child {
    justify-content: space-between;
    width: fit-content;
    margin: 0 auto 24px;
    align-items: center;
}
footer .gauche.logo {
    width: 60px;
    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 a {
    color: var(--blanc);
}
footer a:hover {
    color: var(--vert-clair);
}
footer .rs > div {
    width: 25px;
    padding: 0;
    font-size: 18px;
    text-align: center;
}
footer hr {
    color: var(--blanc);
    opacity: 1;
    height: 2px;
}
footer .liens {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    padding-bottom: 50px;
}


@media (min-width: 768px) {
    body {
        font-size: 14px;
    }
    .mobile {
        display: none;
    }
    .div-temps > div {
        width: 190px;
    }
    section#formulaire .deco {
        height: 150px;
    }
    footer .row:first-child {
        width: 80%;
    }

}
@media (min-width: 992px) {
    body {
        font-size: 16px;
    }
    h1,
    .chiffres,
    section#allie h2 {
        font-size: 3em;
    }
    .s-titre,
    section#marques h2,
    section#avantages h2 {
        font-size: 1.5em;
    }
    .cadre-vert-penche,
    section#temoignages h2 {
        font-size: 2.5em;
    }
    section#avantages .s-titre,
    div.st-fonctionnalites,
    section#allie p {
        font-size: 1.13em;
    }
    section#temps h2,
    section#fonctionnalites h2,
    section#equipements h2,
    section#formulaire h2,
    section#allie .pre-titre {
        font-size: 2em;
    }
    section:not(#marques) > div, 
    section:not(#marques) h2,
    section p {
        max-width: 900px;
    }
    input::placeholder,
    textarea::placeholder,
    select {
        font-size: 14px;
    }
   
    section#first {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        padding: 120px 60px;
    }
    section#first > div {
        width: 100%;
    }
    section#first h1,
    section#first .s-titre {
        width: 95%;
    }
    section#first .list-div {
        margin-top: 48px;
        margin-bottom: 48px;
    }
    .list-div div {
        margin-bottom: 16px;
    }
    section#first .photo {
        margin-top: 0;
        text-align: right;
    }
    section#first .photo img:first-child {
        object-fit: cover;
        height: 100%;
        border-radius: 48px;
        max-height: 425px;
        align-self: flex-end;
    }   
    section#first .photo img.deco {
        bottom:-75px;
        left: -55px;
    }
    section#marques {
        padding: 80px 0;
    }
    .carousel-auto {
        margin-top: 48px;
    }
    section#avantages {
        padding: 80px 144px;
        display: flex;
        flex-direction: column;
        gap: 168px;
    }
    section#avantages .avantage {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        gap: 40px;
    }
    section#avantages p {
        margin: 32px auto;
    }
    section#avantages .avantage > div {
        width: 50%;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    section#avantages .avantage .photo {
        width: 48%;
        max-width: 500px;
        margin: 0;
        vertical-align: middle;
    }
    .photo-1 {
        order: 1;
    }
    .text-1 {
        order: 2;
    }
    section#temps {
        padding: 120px 30px;
        position: relative;
    }
    section#temps >img.deco {
        display: inline;
        position: absolute;
        top: -90px;
        left: 3%;
        width: auto;
        height: 260px;
        z-index: 2;
        pointer-events: none;
    }
    section#temps  .div-temps {
        max-width: 680px;
        margin-top: 64px;
    } 
    .div-temps > div {
        width: 280px;
    }

    section#fonctionnalites {
        padding: 120px 60px;
    }
    section#fonctionnalites div.st-fonctionnalites{
        max-width: 840px;
        margin-top: 32px;
        margin-bottom: 64px;
    }

    .carousel-manuel {
        margin-bottom: 64px;
    }
    .carousel-manuel .div-btn-carousel {
        width: 55px;
    }
    .carousel-btn {
        width: 50px;
        height: 50px;
    }
    .carousel-manuel .carousel-container {
        max-width: none;
        width: auto;
        margin:0 32px;
    }
    .carousel-manuel .carousel-track {
        gap: 43px;
    }
    .carousel-manuel .carousel-item {
        padding: 0;
        width: 200px;
    }

    section#allie {
        padding: 120px 60px;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        gap: 20px;
        position: relative;
    }
    section#allie h2,
    section#allie > div > p.first-p {
        margin-bottom: 60px;
    }
    section#allie > div > p {
        max-width: 600px;
        margin-left: 0;
    }

    section#allie .photo {
        margin-top: 0;
        width: 40%;
        max-width: 500px;
        height: 472px;
        z-index: 3;
    }
    section#allie .photo img {
        object-fit: cover;
        height: 100%;
        border-radius: 48px;
    }
    section#allie img.deco {
        display: inline;
        position: absolute;
        top: -90px;
        right: 35px;
        width: auto;
        height: 260px;
        z-index: 2;
        pointer-events: none;
        padding-right: 60px;
    }
    section#equipements {
        padding: 120px 60px;;
    }
    section#equipements > p {
        margin-bottom: 48px;
    }
    .cards {
        gap: 32px;
        margin-bottom: 48px;
    }
    .cards .card-equip {
        width: 238px;
    }
    section#equipements .card-equip p {
        width: 200px;
        margin: auto;
        margin-top: 24px;
    }
    section#temoignages {
        padding: 120px 60px;
    }
    section#temoignages p.stitre-temoignage {
        margin-bottom: 46px;
    }
    section#temoignages p.stitre-temoignage .desktop {
        display: inline;
    }
    section#temoignages .list-temoignages {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    section#temoignages .temoignage {
        width: 260px;
    }
    section#temoignages > div:first-child {
        position: relative;
    }
    section#temoignages .spirale {
        width: 100px;
        display: inline;
        position: absolute;
        top: 15px;
    }
    section#temoignages .spirale_gch {
        left: -50px;
    }
    section#temoignages .spirale_dte {
        right: -50px;
    }
    section#formulaire {
        padding: 156px 75px 120px 75px;
    }
    section#formulaire .deco {
        width: auto;
        height: 260px;
        top: -35px;
    }
    section#formulaire form {
        max-width: 800px;
        margin-top: 36px;
        gap: 16px;
    }
    section#formulaire form .form-group {
        width: 49%;
    }
    section#formulaire form .form-group input:not([type='checkbox']), 
    section#formulaire form .form-group textarea, 
    section#formulaire form .form-group .form-select {
        padding: 10px 16px;
        font-size: 14px;
    }

    footer > div {
        padding: 80px 60px 20px 60px;
    }
    footer .row:first-child {
        width: 100%;
    }
    footer .gauche.logo {
        width: 33%;
    }
    footer .gauche.logo img {
        width: 75px;
    }
    footer .rs {
        width: 33%;
        order: 2;
        margin-top: 0;
        gap: 30px;
        justify-content: center;
    }
    footer .droite {
        order: 3;
        width: 33%;
        display: flex;
        justify-content: flex-end;
    }
    footer .rs > div {
        width: 30px;
        font-size: 30px;
    }
    hr {
        margin: 32px 0;
    }
    footer .liens {
        justify-content: center;
        gap: 30px;
    }
}
@media (min-width: 1200px) {
    section:not(#marques) > div, 
    section:not(#marques) h2,
    section p {
        max-width: 1600px;
    }

    section#marques h2 {
        max-width: 1400px;
    }

    section#temps >img.deco {
        left: 5%;
    }
    .carousel-manuel .carousel-item {
        width: 250px;
    }
    section#allie {
        align-items: flex-start;
        gap: 40px;
    }
    section#allie h2 {
        white-space: nowrap;
    }
    section#equipements {
        padding-left: calc((100vw - 900px)/2);
        padding-right: calc((100vw - 900px)/2);
        
    }
    section#temoignages .temoignage {
        width: 300px;
    }
        section#temoignages .spirale {
        width: 130px;
        display: inline;
        position: absolute;
        top: 0;
    }
    section#temoignages .spirale_gch {
        left: 0;
    }
    section#temoignages .spirale_dte {
        right: 0;
    }
    #form_l_phygieneexpert_pays {
        width: 47%;
    }
    footer .row:first-child {
        width: 94%;
        max-width: 1210px;
    }
}
@media (min-width: 1400px) {
    nav,
    section#first,
    section#marques,
    section#avantages,
    section#temps,
    section#allie img.deco ,
    section#temoignages,
    section#formulaire {
        padding-left: calc((100vw - 1200px)/2);
        padding-right: calc((100vw - 1200px)/2);
    
    }
    section#fonctionnalites{
        padding-left: calc((100vw - 1300px)/2);
        padding-right: calc((100vw - 1300px)/2);

    }
    section#allie {
        padding-left: calc((100vw - 1320px)/2);
        padding-right: calc((100vw - 1320px)/2);
    }
    section#equipements {
        padding-left: calc((100vw - 1400px)/2);
        padding-right: calc((100vw - 1400px)/2);
        
    }
    section#temoignages .temoignage {
        width: 330px;
    }
    footer > div {
        padding-left: calc((100vw - 1300px)/2);
        padding-right: calc((100vw - 1300px)/2);
    }
}

@media (min-width: 1500px) {
    footer > div {
        padding-left: calc((100vw - 1500px)/2);
        padding-right: calc((100vw - 1500px)/2);
    }
}