:root {
    --small-margin: 40px;
    --medium-margin: 70px;
    --ltspace: 70px;
    --mdspace: 130px;
    --bigspace: 180px;
    --side-base: 7vw;
    --decalage: 70vw;
    --Noir: #000000;
    --Blanc: #FFFFFF;
    --Violet: #A60045;
    --Vert: #D3D73E;
    --Orange: #FEA524;
    --Bleu: #005BA3;
    --Page_Color: var(--Violet);
}

/* Changement de la couleur de la page */

.page-id-14{
    --Page_Color: var(--Orange);
}

.page-id-18{
    --Page_Color: var(--Vert);
}

.page-id-28{
    --Page_Color: var(--Bleu);

}

/***************************************/

::selection {
    background-color: var(--Page_Color);
    color: var(--Noir);
}

/* Firefox */
::-moz-selection {
    background-color: var(--Page_Color);
    color: var(--Noir);
}

/* width */
::-webkit-scrollbar {
    width: 2px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background-color: var(--Page_Color);
    border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: var(--Noir);
    width: 2px;
}
body{
    background: white;
}
#container{
    background: white;
    padding: 0;
    min-height: 100svh;
}
* {
    font-family: "Space Grotesk", sans-serif;
    font-weight: 400;
}


#header {
    padding: 57px var(--side-base);
    position: absolute;
    z-index: 9999;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    height: fit-content;
    max-height: 146px;
}

#header .logo_ollin{
    fill: var(--Page_Color);
}

#site-title a {
    color: var(--Blanc);
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    display: flex;
    align-items: flex-end;
    flex-wrap: wrap;
    text-decoration: none;
    width: auto;
}

#site-title a svg{
    margin-right: 18px;
}

#site-title a span{
    margin-bottom: -2px;
    margin-top: 4px;
}

#header #menu {
    width: fit-content;
}

#header #menu>.menu-toggle{
    position: relative;
    z-index:999;
}

#header #menu .menu{
    display: none;
}

#header #menu>.menu-toggle, #header #menu.toggled .menu {
    display: flex;
}

#header #menu.toggled{
    position: unset;
}

#header #menu.toggled #main-menu-container{
    transition: 0s;
    position: fixed;
    padding: 0 var(--side-base);
    margin: 0;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

#header #menu .menu-text{
    display: flex;
    color: var(--Blanc);
    font-size: 22px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    margin: 0;
    text-transform: none;
}

.page-id-28 #header #menu .menu-text{
    color: var(--Noir);
}

#menu .cercle_liste{
    height: 6px;
    width: 6px;
    background-color: var(--Blanc);
    border-radius: 50%;
    margin: auto 7px 10px 0;
}

.page-id-28 #menu .cercle_liste{
    background-color: var(--Noir);
}

#header #menu>.menu-toggle:hover .menu-text{
    transform: translateX(10px);
}

#header #menu>.menu-toggle:hover .menu-text .cercle_liste{
    transform: translateX(-7px);
}

.menu-toggled #header #menu>.menu-toggle .menu-text{
    transform: translateX(30px);
    opacity: 0;
}

.menu-toggled #header #menu>.menu-toggle .menu-text .cercle_liste{
    transform: translateX(-7px);
    opacity: 0;
}

#header #menu .menu-icon{
    width: 2vw;
    max-width: 40px;
    transform: scaleY(0%);
}

.menu-toggled #header #menu .menu-icon{
    transform: scaleY(100%);
}

#menu .menu-icon>span{
    background-color: var(--Blanc);
    height: 2px;
    width: 40px;
}


/* menu special */



#header #menu #main-menu-container.video_txt{
    padding: 0;
    position: fixed;
    inset: 0;
    opacity: 0;
    transition: 0.4s ease-in-out;
    pointer-events: none;
}

#header #menu #main-menu-container ul{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    aspect-ratio: 1/1;
    min-width: 200px;
    min-height: 200px;
    width: 600px;
    height: 600px;
    max-width: 50vw;
    max-height: 50vw;
    border-radius: 50%;
    border: solid 1px;
    border-color: var(--Blanc);
    color: var(--Blanc);
    box-sizing: border-box;
    transform: rotate(60deg) scale(0.6);
    opacity: 0;
    transition: 0.4s cubic-bezier(0.42, 0, 0.23, 1.11);
}

#header #menu #main-menu-container ul:after{
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    width: 70%;
    height: 35%;
    border: solid 1px var(--Blanc);
    border-radius:  0 0 50% 50% / 0 0 100% 100%;
    transition: 0.5s cubic-bezier(0.42, 0, 0.14, 1.26);
    transform-origin: top center;
    transform: rotate(80deg);
}

#header #menu.toggled #main-menu-container.video_txt{
    opacity: 1;
    pointer-events: auto;
}

#header #menu.toggled #main-menu-container ul{
    transform: rotate(0deg) scale(1);
    opacity: 1;
}

#header #menu.toggled #main-menu-container ul:after{
    transform: rotate(0deg);
}

#main-menu-container ul li{
    position: absolute;
    padding: 0;
    max-width: 280px;
    text-align: left;
    transition: 0.2s cubic-bezier(0.25, 0.02, 0, 2.29);
    opacity: 0;
}

#header #menu.toggled #main-menu-container ul li{
    opacity: 1;
    transition: 0.6s cubic-bezier(1,-0.31, 0.74, 0.93);
}

#menu .menu>li>a{
    display: block;
    padding: 25px;
    margin: 0;
    color: var(--Blanc);
    font-size: 19px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    position: relative;
}

#menu .menu>li>a[aria-current="page"] {
    color: var(--Page_Color);
    text-shadow: var(--Noir) 1px 0 10px;
    font-weight: 500;
}



#menu .menu>li>a:after{
    content: "";
    display: block;
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: var(--Blanc);
    border-radius:  50%;
    transition: 0.2s ease-in-out;
}


.menu-item-52{
    left: 0;
    transform: translate(-100%);
}

.menu-item-52 a:after{
    top: 50%;
    right: 0;
    transform: translate(40%, -50%);
}

.menu-item-52:hover a:after{
    background-color: var(--Violet) !important;
}

.menu-item-49{
    bottom: 84%;
    left: 14%;
    transform: translateX(-100%);
}

.menu-item-49 a:after{
    bottom: 0;
    right: 0;
    transform: translate(30%, 20%);
}

.menu-item-49:hover a:after{
    background-color: var(--Bleu) !important;
}

.menu-item-47{
    bottom: 100%;
}

.menu-item-47 a:after{
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 50%);
}

.menu-item-47:hover a:after{
    background-color: var(--Violet) !important;
}

.menu-item-50{
    bottom: 84%;
    right: 14%;
    transform: translateX(100%);
}

.menu-item-50 a:after{
    bottom: 0;
    left: 0;
    transform: translate(-30%, 20%);
}

.menu-item-50:hover a:after{
    background-color: var(--Orange) !important;
}

.menu-item-51{
    right: 0;
    transform: translateX(100%);
}

.menu-item-51 a:after{
    top: 50%;
    left: 0;
    transform: translate(-40%, -50%);
}

.menu-item-51:hover a:after{
    background-color: var(--Vert) !important;
}



/*
    base composants
*/

/* bouton cercle */
.cercle_btn{
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: solid 1px;
    border-color: var(--Blanc);
    color: var(--Blanc);
    box-sizing: border-box;
}

/* video en fond */
.video_txt{
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    height: 100svh;
}

.video_txt>div, .video_txt>video{
    grid-area: 1 / 1;
    width: 100%;
    height: 100svh;
}

.video_txt>video{
    object-fit: cover;
    object-position: center;
    z-index: 0;
    position: relative;
}

.video_txt>div{
    padding: 64px var(--side-base);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

.video_txt>.degrade {
    grid-area: 1 / 1;
    width: 100%;
    height: 100%;
    padding: 0;
    /* Dégradé noir en haut vers transparent en bas */
    background: linear-gradient(to bottom, rgba(0,0,0,0) 70%, var(--Noir) 100%);
    pointer-events: none; /* permet de cliquer sur la vidéo si besoin */
}

.hero_section>div{
    padding-bottom: 20svh;
}

/* titre a cote du contenu */
.titre_cote{
    padding: 70px var(--side-base);
    display: flex;
    gap: 70px;
}

.first_white{
    padding-top: 140px;
}

.last_white{
    padding-bottom: 140px;
}

.titre_cote h2{
    color: var(--Page_Color);
    font-size: 25px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin: 0;
    width: 270px;
    flex: 0 0 1;
}

.titre_cote>div{
    width: auto;
    flex: 1;
}

.titre_cote>div p{
    margin: 0 0 22px 0;
    color: var(--Noir);
    font-size: 22px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}


/****************************/

/*
    Pages
 */

/* Page accueil */

.accueil h1{
    color: var(--Blanc);
    text-align: center;
    font-size: 45px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    width: 60%;
    margin-bottom: 70px;
}

.accueil>div>div{
    display: flex;
    gap: 43px;
}

.accueil .btn_accueil{
    min-width: 140px;
    min-height: 140px;
    width: 30vw;
    height: 30vw;
    max-width: 220px;
    max-height: 220px;
    padding: 30px;
    background-color: rgba(0, 0, 0, 0.25);
    font-size: 21px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    position: relative;
}

.accueil .btn_accueil:hover{
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    color: rgba(255, 255, 255, 0);
}

.accueil .btn_accueil:after{
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    width: 70%;
    height: 35%;
    border: solid 1px var(--Blanc);
    border-radius:  0 0 50% 50% / 0 0 100% 100%;
    transition: 0.3s cubic-bezier(0.25, 0.01, 0.12, 1.51);
    transform-origin: top center;
    transform: rotate(80deg);
    opacity: 0;
}

.accueil>div>div>.btn_accueil:last-child:after{
    transform: rotate(-80deg);
}

.accueil>div>div>.btn_accueil:hover:after{
    transform: rotate(0deg);
    opacity: 1;
}


/* prestation individuelles */

.hero_section h1{
    color: var(--Blanc);
    margin-bottom: 20px;

    text-align: center;
    font-size: 45px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}

.hero_section h1 em{
    color: var(--Page_Color);
}

.hero_section p {
    margin: 0;
}

.hero_section>div>p{
    color: var(--Blanc);
    text-align: center;
    font-size: 19px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}


.symptomes>p{
    width: 100%;
    max-width: 750px;
    padding: 20px 0;
    border-bottom: solid 1px var(--Page_Color);
    font-size: 26px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}

.symptomes>p:first-child{
    padding: 2px 0 20px;
}

.titre_cote .symptomes>p{
    margin: 0;
}

.paragraphe_cote{
    width: 100%;
    max-width: 775px;
}

.solutions>div{
    display: flex;
    gap: 86px;
    padding: 44px 0;
    width: 100%;
    max-width: 790px;
    border-bottom: solid 1px var(--Page_Color);
}

.solutions>div:last-child{
    border-bottom: 0px;
}

.solutions>div>img{
    width: 100%;
    max-width: 200px !important;
    object-fit: fill;
}

.solutions h3{
    color: var(--Page_Color);
    font-size: 26px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin: 13px 0 19px;
    width: 100%;
    max-width: 410px;
}

.solutions p{
    width: 100%;
    max-width: 410px;
}

/* section deroulante */

.video_deroule, .video_deroule>div{
    min-height: 100svh;
    height: fit-content;
}

.video_deroule>video{
    min-height: 100svh;
    height: 100%;
}

details{
    border-top: solid var(--Blanc) 1px;
    padding: 54px 37px 54px 25px;
    width: 100%;
    max-width: 1000px;
}

.video_txt>div>details:last-child{
    border-bottom: solid var(--Blanc) 1px;
}

summary{
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 0;
}

summary h2{
    color: var(--Blanc);
    font-size: 25px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    margin: 0;
    transition: 0.1s;
}

.open summary h2{
    font-weight: 500;
}

details .contenu{
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s ease, padding-bottom 0.1s ease-out;
    display: none;
}

details .contenu{
    max-height: fit-content; /* ou une valeur suffisante selon le contenu */
}

details .contenu, details .contenu p, details .contenu li{
    color: var(--Blanc);
    font-size: 22px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}

details .contenu p{
    margin: 37px 0 0;
}

summary::marker{
    display: none;
}

/* Enlève la flèche par défaut du <summary> */
summary::-webkit-details-marker {
    display: none;
}

/* Pour Firefox */
summary {
    list-style: none;
}

details .fleche{
    height: 42px;
    margin-left: 15px;
}

details .tourne_fleche svg {
    transform: rotate(-45deg);
    transition: transform 0.2s ease;
}

/* img de cote */

.video_left>video {
    object-position: left;
}

/* slider img */

.swiper {
    height: fit-content;
}

.swiper .swiper-slide{
    aspect-ratio: 1/1;
}

.swiper img{
    width: 100%;
    aspect-ratio: 1/1;
}


/* liste client */

.video_client>div{
    align-items: flex-start;
    padding-bottom: 140px;
}

.video_client, .video_client>div{
    height: fit-content;
}

.video_client>video{
    height: 100%;
}

.video_client h2{
    color: var(--Page_Color);
    font-size: 25px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.video_client p{
    color: var(--Blanc);
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    padding: 13px 0;
    border-bottom: solid 1px var(--Page_Color);
    margin: 0;
    width: 100%;
    max-width: 700px;
}


/* Page contact */

.colab{
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.colab-item{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.colab-item_clic{
    cursor: pointer;
}

.colab-item img {
    border-radius: 50%;
    aspect-ratio: 1/1;
    min-width: 142px;
    width: 30vw;
    max-width: 204px !important;
}

.colab-item_clic:hover img {
    transform: scale(1.05);
}

.colab-item h3 {
    color: var(--Page_Color);
    font-size: 22px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin: 36px 0 0 0;
    text-align: center;
}

div.colab-item p {
    color: var(--Noir);
    font-size: 17px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    margin: 0;
}

/* Modal */

/* Overlay */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    transition: 0s;
    padding: 20px;
}

/* Popup */
.modal-content {
    background: #fff;
    padding: 50px 60px 60px;
    border-radius: 18px;
    max-width: 1200px;
    position: relative;
    gap: 54px;
    margin: auto;
    max-height: 80svh;
}

/* Bouton fermer */
.modal-close {
    position: absolute;
    top: 30px;
    right: 30px;
    cursor: pointer;
}

.modal-content h2{
    width: fit-content;
    flex-shrink: 0;
}

.modal-content .paragraphe_cote{
    overflow-y: auto;
    flex: 1 1 auto;
}

.modal-content .colab-item{
    width: auto;
    margin-left: 5%;
}

.modal-content .colab-item img{
    margin: 0 !important;
}

.modal-content .colab-item a{
    display: flex;
    gap: 7px;
    margin-top: 21px;
    align-items: center;
}

.modal-content .colab-item a:hover svg{
    transform: translate(3px, -3px);
}


/* Page contact */

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.rdv_no_cote{
    padding-top: 183px;
    /*flex-direction: column;*/
    /*gap: 40px;*/
}

/*.rdv_no_cote iframe{*/
/*    overflow: hidden; !* empêche le scroll interne *!*/
/*    height: 864px;*/
/*    max-height: 100svh;*/
/*}*/

/*.rdv_no_cote .lien_rdv{*/
/*    display: none;*/
/*}*/

form{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 23px 29px;
}

form p {

}

form label {
    color: var(--Noir);
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

form input, form textarea, form input[type="submit"]{
    width: 100%;
    border-radius: 3px !important;
    border: 2px solid #757775;
    background: var(--Blanc);
    transition: 0s;
    color: var(--Noir);
    font-family: "Space Grotesk";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding: 10px 12px;
}

form input::placeholder,
form textarea::placeholder {
    color: #757775;
}


form input[type="submit"]{
    border-radius: 50px !important;
    padding: 22px;
    color: var(--Page_Color);
    font-size: 22px;
    font-weight: 500;
}

input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(50%) sepia(20%) saturate(500%) hue-rotate(360deg);
    cursor: pointer;
}

form p:nth-child(4), form p:nth-child(7), form p:nth-child(8),  form p:nth-child(9){
    grid-area: 1 span / 2 span;
}

/* message formulaire */

.wpcf7 form .wpcf7-response-output{
    position: fixed;
    inset: 0;
    height: fit-content;
    width: fit-content;
    max-width: 80vw;
    margin: auto !important;
    background: var(--Bleu);
    color: var(--Blanc);
    border-radius: 50px;
    padding: 10px 20px;
    pointer-events: none;
    opacity: 0; /* invisible au départ */
    transform: translateY(-100%); /* un petit effet zoom */
    animation: messageAnim 4s forwards; /* durée totale 3s */
    border-color: unset !important;
}
/* Animation en 3 étapes */
@keyframes messageAnim {
    0% {
        opacity: 0;
        transform: translateY(-100%);
    }
    20% {
        opacity: 1;
        transform: translateY(0%);
    }
    80% {
        opacity: 1;
        transform: translateY(0%);
    }
    100% {
        opacity: 0;
        transform: translateY(100%);
    }
}



.privacy-policy .content-page{
    padding: 140px var(--side-base);
}

.privacy-policy #footer{
    padding-top: 40px;
}




/* Footer */

#footer{
    background-color: var(--Noir);
    color: var(--Blanc);
    padding: 64px var(--side-base);
    position: relative;
}

#footer svg{
    fill: var(--Page_Color);
}

#footer svg.smiley_footer{
    aspect-ratio: 1/1;
    stroke: var(--Page_Color);
    position: absolute;
    z-index: 4;
    bottom: 56px;
    right: calc(var(--side-base) - 16px);
    min-width: 350px;
    min-height: 350px;
    width: 50vw;
    height: 50vw;
    max-width: 661px;
    max-height: 661px;
}

#footer p{
    font-size: 18px;
    line-height: normal;
    margin: 12px auto 0 0;
    width: 70%;
}

.no-wrap {
    white-space: nowrap;
}

#footer .btn_rdv{
    position: relative;
    z-index: 5;
    border-color: var(--Page_Color);
    line-height: normal;
    margin: 47px auto 188px 0;
}

#footer .btn_rdv:hover{
    background-color: var(--Page_Color);
    color: var(--Blanc);
}

.page-id-18 #footer .btn_rdv:hover{
    color: var(--Noir);
}

#footer #copyright{
    font-size: 13px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    color: var(--Blanc);
}

#footer #copyright a:visited, #footer #copyright a{
    color: var(--Blanc);
}

#footer #copyright .lien_footer{
    background-color: var(--Noir);
    color: var(--Blanc);
}

#footer #copyright .realisation-break a{
    display: inline-flex;
}

#footer #copyright .realisation-break a>svg{
    transform: translateY(3px);
    fill: var(--Blanc);
}

.page-id-28 #footer, .page-id-28 #footer a, .page-id-28 #footer #copyright,  .page-id-28 #footer #copyright a,  .page-id-28 #footer #copyright a:visited, .page-id-23 #footer, .page-id-23 #footer a, .page-id-23 #footer #copyright,  .page-id-23 #footer #copyright a:visited, .page-id-23 #footer #copyright .lien_footer, .page-id-28 #footer #copyright .lien_footer{
    background-color: var(--Blanc);
    color: var(--Noir);
}

.page-id-28 #site-title a span{
    color: var(--Noir);
}

.menu-toggled .page-id-28 #site-title a span{
    color: var(--Blanc);
}

.page-id-28 #footer #copyright .realisation-break a>svg, .page-id-23 #footer #copyright .realisation-break a>svg{
    fill: var(--Noir);
}



@media (max-width: 1300px) and (min-width: 750px){
    #footer svg.smiley_footer{
        bottom: 50px;
    }

    #footer #copyright{
        max-width: 38vw;
    }
}

@media (max-width: 1000px){

    #header #menu #main-menu-container.video_txt {
        height: 100svh;
    }

    #main-menu-container ul li {
        max-width: 240px;
    }

    #menu .menu>li>a{
        font-size: 16px;
    }

    /* titre a cote du contenu */
    .titre_cote{
        padding: 50px var(--side-base);
        flex-direction: column;
        gap: 40px;
    }

    .rdv_no_cote{
        padding-top: 130px;
    }

    .first_white{
        padding-top: 70px;
    }

    .last_white{
        padding-bottom: 100px;
    }

    .titre_cote h2{
        font-size: 22px;
        width: 100%;
    }

    .titre_cote>div p{
        font-size: 16px;
    }

    .modal-content .colab-item{
        margin-left: 0;
    }

    .modal-content {
        max-height: 90svh;
    }

}

@media (max-width: 820px){
    #header #menu.toggled .menu-main-menu-container{
        width: 100%;
    }

    #header #menu.toggled #main-menu-container.video_txt>div {
       padding: 80px 0 0 0;
    }

    #header #menu.toggled #main-menu-container ul {
        min-width: 100%;
        width: 100%;
        max-height: 80svh;
        max-width: 100%;
        aspect-ratio: unset;
    }

    #header #menu #main-menu-container ul{
        transition: 0s cubic-bezier(0.42, 0, 0.23, 1.11);
        border-color: rgba(0, 0, 0, 0);
        transform: rotate(0deg) translateX(0) scale(1);
        justify-content: space-evenly;
    }

    #header #menu #main-menu-container ul:after{
        transform: rotate(0deg) translateX(var(--decalage));
        transition: 0.5s cubic-bezier(0.42, 0, 0.27, 1.55);
    }

    #header #menu.toggled #main-menu-container.video_txt{
        opacity: 1;
    }

    #header #menu #main-menu-container ul:before{
        content: "";
        display: block;
        position: absolute;
        inset: 0;
        border: solid 1px;
        border-color: var(--Blanc);
        border-radius: 50%;
        transform: translateX(var(--decalage));

        min-width: 200px;
        min-height: 200px;
        width: 600px;
        height: 600px;
        max-height: 80svh;
        max-width: 80svh;
    }

    #header #menu.toggled #main-menu-container ul {
        transform: rotate(0deg) translateX(0) scale(1);
        opacity: 1;
        padding: 50px 0 70px;
    }

    #header #menu.toggled #main-menu-container ul:after{
        transform: rotate(0deg) translateX(var(--decalage));

    }

    #main-menu-container ul li{
        position: absolute;
        padding: 0;
        max-width: 280px;
        text-align: left;
        transition: 0.6s cubic-bezier(1,-0.31, 0.74, 0.93);
        opacity: 0;
    }

    /****************/

    #header #menu #main-menu-container ul{
        position: static;
    }

    #main-menu-container ul li{
        transition: 1s cubic-bezier(1,-0.31, 0.74, 0.93);
        inset: 0;
        transform: translate(0);
        position: static;
        width: 100%;
        /*transform: translateX(-200px);*/
    }

    #main-menu-container .menu>li>a{
        margin: 0px var(--side-base);
        padding: 25px 0;
        max-width: 68vw;
        position: relative;
        display: inline-block;
    }

    #main-menu-container .menu>li>a::before {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        min-width: 170px;
        width: 30vw;
        height: 1px; /* épaisseur de la bordure */
        background: linear-gradient(to right, white, transparent);
    }

    #main-menu-container .menu>li>a:after{
        display: none;
    }

    #menu .menu>li{
        max-width: 100vw;
    }

    .menu-item-47{
        display: none;
    }

    .menu-item-49 br {
        display: none;
    }

    #menu .menu>.menu-item-49{ order: 4;}

    #menu .menu>.menu-item-52{ order: 3;}

    #menu .menu>.menu-item-50{ order: 1;}

    #menu .menu>.menu-item-51{ order: 2;}

}


@media (max-width: 750px) {

    .accueil h1, .hero_section h1 {
        width: 100%;
        font-size: 35px;
    }

    /* Propositions */

    .solutions>div{
        gap: 5vw;
    }

    /* lien rdv */

    .rdv_no_cote iframe{
        display: none;
    }

    .rdv_no_cote .lien_rdv{
        display: block;
        color: var(--Blanc);
        background-color: var(--Page_Color);
        padding: 15px 25px;
        border-radius: 50px;
        width: fit-content;
        margin: 10px auto;
    }

    /* Footer */

    #footer{
        padding: 0px var(--side-base) 64px;
    }

    #footer p{
        font-size: 16px;
        width: 100%;
    }

    #footer .btn_rdv{
        margin: 47px auto 100px 0;
    }

    #footer svg.smiley_footer{
        display: none;
    }

}


@media (max-width: 600px) {
    #header{
        height: auto;
        align-items: flex-start;
    }

    #header #menu>.menu-toggle{
        align-items: stretch;
    }

    #header #menu .menu-icon {
        margin-top: 6px;
    }


    #header #menu .menu-text {
        padding-bottom: 30px;
    }

    #menu .cercle_liste {
        margin: auto 7px 8px 0;
    }

    .accueil h1, hero_section h1 {
        font-size: 29px;
    }

    .accueil .btn_accueil {
        font-size: 16px;
    }

    .accueil>div>div {
        gap: 7vw;
    }

    .titre_cote {
        padding: 20px var(--side-base);
        flex-direction: column;
        gap: 20px;
    }

    .first_white {
        padding-top: 40px;
    }

    .last_white {
        padding-bottom: 50px;
    }

    .rdv_no_cote{
        padding-top: 150px;
    }

    .solutions h3, .colab h3{
        font-size: 18px;
        margin: 0;
    }

    details{
        padding: 45px 6% 45px 4%;
    }

    summary{
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
        padding: 0;
    }

    summary h2, .video_client h2{
        font-size: 22px;
    }

    details .contenu, details .contenu p, details .contenu li, .colab>div p, #header #menu .menu-text {
        font-size: 16px;
    }

    form{
        grid-template-columns: 1fr;
    }

    form p:nth-child(4), form p:nth-child(7), form p:nth-child(8),  form p:nth-child(9){
        grid-area: 1 span / 1 span;
    }

    .titre_cote form p {
        margin-bottom: 0;
    }

}



@media (max-width: 500px) {

    .solutions>div{
        flex-direction: column-reverse;
        gap: 6px;
        padding: 16px 0;
    }

    .solutions>div>img{
        display: none;
    }

    .colab{
        flex-direction: column;
    }

    .colab-item img {
        width: 90vw;
    }

    .colab-item h3 {
        color: var(--Page_Color);
        font-size: 22px;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
        margin: 26px 0 0 0;
    }

    .modal-content {
        gap: 20px;
        padding: 30px 30px 40px;
    }

    .modal-content .colab-item img {
         width: 30vw;
    }

}


/* Cookie */

.cookie-popup {
    position: fixed;
    inset: auto auto 0 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}
.cookie-popup.show {
    visibility: visible;
    opacity: 1;
}
.cookie-popup-content {
    background: rgba(0, 0, 0, 0.77);
    padding: 2rem;
    width: 100%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.cookie-popup-content>div{
    display: flex;
    align-items: center
}
.cookie-popup-content h3 {
    margin-top: 0;
    color: var(--Blanc);
    font-weight: 700;
    margin-bottom: 10px;
}
.cookie-popup-content p {
    color: var(--Blanc);
    margin: 1rem 0;
    font-size: 0.95rem;
}
.cookie-popup-content a {
    color: var(--Blanc);
    text-decoration: underline;
}
.cookie-popup-content button {
    background: var(--Blanc);
    color: var(--Noir);
    border: none;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    padding: 0.7rem 1.5rem;
    cursor: pointer;
    font-size: 1rem;
    height: fit-content;
    width: fit-content;
    transition: 0.2s;
    margin-left: 20px;
}
.cookie-popup-content button:hover {
    background-color: var(--Noir);
    color: var(--Blanc);
}
@media (max-width: 500px){
    .cookie-popup-content>div{
        flex-direction: column;
        align-items: flex-start;
    }
    .cookie-popup-content h3{
        font-size: 18px;
    }
    .cookie-popup-content p{
        font-size: 14px;
    }
    .cookie-popup-content button{
        margin: 0;
        padding: 8px 16px;
    }
}


/* recaptcha */

.grecaptcha-badge{
    display: none !important;
}




















