

/*



font-family: "abolition", sans-serif;
font-weight: 400;
font-style: normal;

font-family: "abolition", sans-serif;
font-weight: 400;
font-style: italic;

font-family: "abolition-soft", sans-serif;
font-weight: 400;
font-style: normal;

font-family: "abolition-soft", sans-serif;
font-weight: 400;
font-style: italic;

font-family: "nunito-sans", sans-serif;
font-weight: 400;
font-style: normal;

font-family: "nunito-sans", sans-serif;
font-weight: 400;
font-style: normal;
*/

:root {
    --header-height: 80px;
    --header-logo-height: 40px;
    --header-menu-slide-font-size: 1.8rem;

    --font-family-1: 'Nunito Sans', sans-serif;
    --font-family-2: "abolition", sans-serif;
    --font-family-3: "abolition", sans-serif;

    --menu-main-font-size: 4rem;

    --header-isTop-background: #000;
    --header-isSticky-background: #000;
}

@media screen and (min-width: 961px) {

    :root {
        --header-height: 100px;
        --header-logo-height: 40px;
        --header-menu-slide-font-size: 2rem;
        --menu-main-font-size: 4rem;
    }


}

html {
    box-sizing: border-box;
    scroll-behavior: smooth;
    webkit-scroll-behavior: smooth;
}
  
html:focus-within {    
    scroll-behavior: smooth;
    webkit-scroll-behavior: smooth;   
}

*, *:before, *:after {
    box-sizing: inherit;
}

* {
    margin: 0px;
    padding: 0px;
}




body {
    font-family: 'Nunito Sans', sans-serif;
    margin: 0;
    font-size: 17px;
    line-height: 1.4705882353;
    letter-spacing: 0.04em;
    color: #000;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "abolition", sans-serif;
    font-weight: bold;
}

h1 {
    font-family: "abolition", sans-serif;
    font-size: clamp(4rem, 13vw, 9rem);
    text-transform: uppercase;
    text-align: center;
    line-height: .9;
}

h2 {
    font-family: "abolition", sans-serif;
    font-size: clamp(2.5rem, 5vw, 6rem);
    text-transform: uppercase;
    text-align: center;
    line-height: .9;
}

h3 {
    font-family: "abolition", sans-serif;
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    text-transform: uppercase;
    text-align: center;
    line-height: .9;
}

h4 {
    font-family: "abolition", sans-serif;
    font-size: 1.8rem;
}


.t12, .t12-inv  {
    line-height: 1;
    text-align: center;
}

.t12 .t1 {
    font-family: "abolition", sans-serif;
    font-style: normal;
    font-weight: bold;
    color: #000;
    display: inline-flex;
    align-items: baseline;
    margin-right: clamp(.3rem, 1vw,.5rem);
}

.t12 .t2 {
    font-family: "abolition", sans-serif;
    font-style: italic;
    font-weight: bold;
    background: #000;
    color: #fff;
    padding: .2rem .4rem;
    display: inline-flex;
    align-items: baseline;
    margin-right: clamp(.3rem, 1vw,.5rem);
}

.t12-inv .t1 {
    font-family: "abolition", sans-serif;
    font-style: normal;
    font-weight: bold;
    color: #fff;
    display: inline-flex;
    align-items: baseline;
    margin-right: clamp(.3rem, 1vw,.5rem);
}

.t12-inv .t2 {
    font-family: "abolition", sans-serif;
    font-style: italic;
    font-weight: bold;
    background: #fff;
    color: #000;
    padding: .2rem .4rem;
    display: inline-flex;
    align-items: baseline;
    margin-right: clamp(.3rem, 1vw,.5rem);
}










/* ---------- HEADER ---------- */

.header {
    display: none;
    border-bottom: 1px solid #000;
}

.isTop .header {
    position: fixed;
    display: block;
    width: 100%;
    background-color: var(--header-isTop-background);
    z-index: 9;
    border-bottom: 1px solid #000;
    border-top: 1px solid #000;
}

.isSticky .header {
    position: fixed;
    display: block;
    width: 100%;
    background-color: var(--header-isSticky-background);
    z-index: 9;
    border-bottom: 1px solid #eee;
    border-top: 1px solid #000;
}


.header_wrapper {
    position: relative;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
    background: var(--header-isTop-background);
}


.header img.logo  {
    height: var(--header-logo-height);
    width: auto;
}

.header_col2 {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.header_col2 > div:first-child {
    margin-right: 1rem
}

.header-btn-reserver {
    display: none;
}

@media screen and (min-width: 961px) { 

    .header-btn-reserver {
        display: block;
    }

}


.container {
    padding-top: calc( var(--header-height) + 2rem );
}

.page_accueil .container {
    padding-top: 0;
}











a {
    cursor: pointer;
    color: #ccfb06;
    text-decoration: none;
}

a:hover, a:focus {
    cursor: pointer;
    color: #b2ce09 ;
    text-decoration: none;
}


a.btn10 {
    border: 2px solid #ccfb06;
    padding: 0.75rem 3rem;
    text-transform: uppercase;
    font-weight: bold;
    color: #000;
    font-size: 1rem;
    cursor: pointer;
	background:#ccfb06;
}

a.btn11 {
    padding: 0.75rem 3rem;
    text-transform: uppercase;
    font-weight: bold;
	background:#ccfb06;
    color: #ffffff;
    font-size: 1rem;
    cursor: pointer;
}





.visuallyhidden {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
    clip: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    position: static;
}





.ctn10 {
    max-width: 1920px;
    margin: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

@media screen and (min-width: 961px) {

    .ctn10 {
        padding-left: 2rem;
        padding-right: 2rem;
    }

}

@media screen and (min-width: 1200px) {

    .ctn10 {
        padding-left: 4rem;
        padding-right: 4rem;
    }

}



 /* A SUPPRIMER */
.accesRapide {
    display: none;
}










/* ---------- MENU ---------- */

.ms-label {
    text-transform: uppercase;
}

.menu-slide-header {
    position: relative;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
}

.menu-slide-button-mobile, .menu-slide-actions {
    font-size: var(--header-menu-slide-font-size);
    display: flex;
    flex-direction: row;
    align-items: center;
}

.menu-slide-button-mobile a, .menu-slide-actions a {
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: .5rem;
    padding-bottom: .5rem;
    display: inline-flex;
}

[ms-statut="open"] .menu-slide-button-mobile a, [ms-statut="open"] .menu-slide-actions a {
    color: #fff;
}

[ms-statut="open"] .menu-slide-button-mobile a.active, [ms-statut="open"] .menu-slide-actions a.active {
    color: #ccfb06;
}

.menu-slide-button-mobile a:last-child, .menu-slide-actions a:last-child {
    padding-right: 0;
} 

[ms-content="ms-main-menu"] {
    padding-bottom: 2rem;
}

[ms-content="ms-main-menu"] li {
    list-style: none;
}

.menu-main a, .menu-main summary {
    text-transform: uppercase;
    font-family: var(--font-family-2);
    font-size: var(--menu-main-font-size);
    font-weight: bold;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    line-height: 1.1;
    cursor: pointer;
    
}

.menu-main summary {
    color: #fff;
}

.menu-main details summary:after {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    content: "\2b";
    margin-left: 1rem;
    font-size: 1rem;
    color: var(--color4);
    padding: .5rem;
    border: 1px solid #fff;
    margin-top: .7rem;
}

.menu-main details[open] summary:after {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    content: "\f068";
    margin-left: 1rem;
    font-size: 1rem;
    color: var(--color4);
    padding: .5rem;
    border: 1px solid #fff;
    margin-top: .7rem;
}

.menu-slide .infos  {
    padding-bottom: 2rem;
}
.menu-slide .infos h4 {
    font-size: 3rem;
}

.menu-slide-infos-telephone, .menu-slide-infos-email {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.menu-slide-infos-telephone > div, .menu-slide-infos-email > div {
    padding-top: .5rem;
    padding-bottom: .5rem;
}

.menu-slide-infos-telephone > div:first-child, .menu-slide-infos-email > div:first-child {
    margin-right: .5rem;
}

.menu-slide .infos .btnX {
    display: block;
    margin-top: 2rem;
    margin-bottom: 1rem;
    text-align: left;
}

.menu-slide-infos-rs {
    display: flex;
    flex-direction: row;
}

.menu-slide-infos-rs > div {
    margin-right: 2rem;
    font-size: 2.5rem;
}

.menu-slide .horaires-item {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding-bottom: 0.5rem;
    margin-bottom: 0.5rem;
    border-bottom: 1px solid #222;
}

.menu-slide-btn-reserver {
    position: relative;
    display: block;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.menu-slide-btn-reserver .btn10 {
    width: 100%;
    display: block;
    text-align: center;
}

.menu-slide-btn-reserver .mention-reserver {
    color: #fff;
    text-align: center;
    margin-top: 0.5rem;
}






/* POPUP */

body.popup-open {
    overflow: hidden;
}

.popup-wrapper {
    display: none;
}

.popup-open .popup-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 20;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0,0,0,0.7);
}

.popup {
    /*height: 90%;
    max-height: 600px;*/
    min-height: 450px;
    width: 90%;
    max-width: 500px;
    min-width: 300px;
    background: #000;
	border: solid #ccfb06 1px; 
}

.popup-content {
    padding-left: 1rem;
    padding-right: 1rem;
}

.popup-content-text {
    text-align: center;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.popup-content-picture img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.popup-content-button {
    text-align: center;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.popup-content-button a {
    display: inline-flex;
}

.popup-navigation {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    
}

a.popup-navigation-button {
    padding: 1rem;
    display: inline-flex;
    font-size: 2rem;
}

.popup-navigation-count {
    font-size: .9rem;
}

.popup-header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

a.popup-close {
    padding: 1rem;
    display: inline-flex;
    font-size: 2rem;
}

.popup-title {
    font-size: 1rem;
    text-transform: uppercase;
    padding: 1rem;
    font-weight: bold;
}








.seance-essai {
    text-align: center;
    padding-top: 4rem;
}

.seance-essai p {
    margin-top: .5rem;
}

span.mention-reserver {
    display: block;
    font-size: .85rem;
    margin-top: 1rem;
    /*color: #555;*/
    color: #ccc;
}

















.grid-slide-block .items::-webkit-scrollbar {
    width: 12px;
    height: 0;
}
/*
.grid-slide-block .items::-webkit-scrollbar {
    height: 0;
    background-color: var(--color-scrollbar-bg);
}
*/


.grid-slide-block {
    position: relative;
}

.grid-slide-block .items {
    position: relative;
    display: flex;
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    cursor: grab;
    margin-top: 2rem;
}

.grid-slide-block .item {
    cursor: pointer;
    display: flex;
    flex-shrink: 0;
    overflow: hidden;
    position: relative;
    word-wrap: ellipsis;
    transition: all ease 0.5s;
    flex-direction: column;
    width: 80%;
    max-width: 350px;
    height: 50vh;
    min-height: 450px;
    max-height: 650px;
    margin-right: 2rem;
}

.grid-slide > .item:first-child {
    margin-left: 1rem;
}

@media screen and (min-width: 961px) {

    .grid-slide > .item:first-child  {
        margin-left: 2rem ;
    }

}


@media screen and (min-width: 1200px) {

    .grid-slide > .item:first-child  {
        margin-left: 4rem ;
    }

}

@media screen and (min-width: 1920px) {

    .grid-slide > .item:first-child  {
        margin-left: calc( ( 100vw - 1920px ) / 2 + 4rem );
    }

}







.grid-slide-block img {
    filter: grayscale(20%);
    width: 100%;
    height: 100%;
    position: absolute;
    object-fit: cover;
}

.grid-slide-block  .item-block-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    /* right: 2rem; */
    background: rgba(0,0,0,0.6);
    color: #fff;
    padding: 1rem;
    padding-top: 2rem;
    padding-bottom: 2rem;
    text-align: center;
    width: 100%;
    min-height: 40%;
}


.grid-slide-block  .actSL2 {
    font-size: 3.6rem;
    font-family: "abolition", sans-serif;
    font-style: normal;
    font-weight: bold;
    font-weight: 500;
    line-height: 1;
}

.grid-slide-block  .item .item-activites {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    font-size: 85%;
    justify-content: center;
    margin-top: 1rem;
}

.grid-slide-block  .item .item-activites > li, .grid-slide-block  .item .item-activites > p {
    list-style: none;
    margin-left: 0.45rem;
    margin-right: 0.45rem;
    text-transform: lowercase;
}

.grid-slide-block  .item .item-block-btn {
    text-align: center;
    position: absolute;
    top: 1rem;
    /* width: 100%; */
    text-align: center;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    right: 1rem;
}

.grid-slide-block  .item a {
    background: #000;
    color: #fff;
    /* padding: 1rem; */
    border-radius: 3rem;
    width: 4rem;
    height: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: 1.5rem;
}

.navGrideSlide {
    display: none;
    opacity: 0;
    transition: all ease .5s;
}


@media screen and (min-width: 768px) {

    .navGrideSlide {
        display: block;
        opacity: 1;
        transition: all ease .5s;
    }

    .navGrideSlideBefore {
        cursor: pointer;
        position: absolute;
        left: 3.5rem;
        top: 50%;
        transform: translateY(-50%);
        padding: 1rem;
        z-index: 2;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .navGrideSlideNext {
        cursor: pointer;
        position: absolute;
        right: 3.5rem;
        top: 50%;
        transform: translateY(-50%);
        padding: 1rem;
        z-index: 2;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .navGrideSlideBtn svg {
        height: 70px;
        width: 70px;
        fill: #000;
        transition: all ease .5s;
        transform: scale(1);
        background: rgba(255,255,255,0.4);
        border-radius: 50%;
        padding: 1.8rem;
    }

    .navGrideSlideBtn svg {
        height: 70px;
        width: 70px;
        fill: #000;
        transition: all ease .5s;
        transform: scale(1);
        background: #ccfb06;
        border-radius: 50%;
        padding: 1.8rem;
    }

}

















/* ------------- FOOTER ------------- */

.footer {
    color: #fff;
}

.footer .footer-items {
    position: relative;
    display: flex;
    flex-direction: column;
    
}


.footer .footer-item-1-items .w {
    display: grid;
    grid-gap: 2rem 2rem;
    grid-template-columns: repeat(1, 1fr);
    -moz-text-size-adjust: none;
    -webkit-text-size-adjust: none;
    -ms-text-size-adjust: none;
    align-items: flex-start;
}

.footer-item-1-item {
    text-align: center;
}

@media screen and (min-width: 961px) {

    .footer .footer-item-1-items .w {
        display: grid;
        grid-gap: 2rem 2rem;
        grid-template-columns: repeat(3, 1fr);
        -moz-text-size-adjust: none;
        -webkit-text-size-adjust: none;
        -ms-text-size-adjust: none;
        grid-auto-rows: 1fr;
        align-items: flex-start;
    }

}

.footer h6 {
    font-family: 'Nunito Sans', sans-serif;
    font-size: .9rem;
}

.footer h5 {
    font-size: 1.8rem;
    padding-bottom: 1rem;
    text-transform: uppercase;
}

.footer li {
    padding-top: .25rem;
    padding-bottom: .25rem;
    list-style: none;
}

.footer .w {
    max-width: 1100px;
    margin: auto;
}

.footer-item-1 {
    padding-top: 3rem;
    padding-bottom: 2rem;
    background: #151515;
   
}

.footer-item-2 {
    padding-top: 2rem;
    padding-bottom: 2rem;
    background: #000;
    font-size: .85rem;
    text-align: center;
}

.footer-item-1-item.footer-item-1-item-3 {
    padding-bottom: 2rem;
    padding-top: 2rem;
}


.footer .horaires-item {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    font-size: .9rem;
    max-width: 300px;
    margin: auto;
}

.footer .footer-infos-telephone, .footer .footer-infos-email, .footer .footer-infos-adresse {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.footer .footer-infos-telephone > div:first-child, .footer .footer-infos-email  > div:first-child, .footer .footer-infos-adresse  > div:first-child {
    margin-right: .5rem;
}

.footer-infos-rs {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.footer-infos-rs  a {
    padding: 1rem;
    font-size: 2rem;
}


.footer-item-1-item-2 > div:last-child {
    margin-top: 2rem;
}
.footer-item-1-item-2 > div > div {
    margin-top: .5rem;
    margin-bottom: .5rem;
    font-size: .9rem;
}

@media screen and (min-width: 961px) { 

    .footer-item-1-item.footer-item-1-item-3 {
        padding-bottom: 2rem;
        padding-top: 1rem;
    }

}

.footer-item-1-item-3-item-2 {
    margin-top: 3rem;
}

.footer-infos-rs {
    margin-top: 2rem;
}





.page_maintenance p {
    text-align: center;
    padding-bottom: 3rem;
    padding-top: 3rem;
}

.page_mentions_legales h2 {
    text-align: left;
    margin-top: 2rem;
    margin-bottom: 1rem;
}
.page_mentions_legales .container {
    padding-bottom: 3rem;
}





details {
    list-style-type: none;
}

details > summary::-webkit-details-marker {
    display: none;
  }




  .page_politique_meta h1 {
    text-align: left;
  }

  .page_politique_meta .container {
    padding-bottom: 3rem;
  }

 .page_politique_meta p {
    margin-top: .25rem;
    margin-bottom: .25rem;
 } 

 .page_politique_meta ul li {
    margin-left: 1.5rem;
 }

 .page_politique_meta h3,  .page_politique_meta h2 {
    margin-top: 1rem;
    margin-bottom: 1rem;
    text-align: left;
 }

 .page_politique_meta .center {
    text-align: left;
    padding-bottom: 1rem;
    padding-top: 1rem;
 }








/* AVIS GOOGLE */

.prefooter {
    background: #efefef;
    padding-bottom: 3rem;
    padding-top: 3rem;
}

.prefooter h2 {
    margin-bottom: 2rem;
}




 /* Styles de base pour le conteneur des avis */
.review-container {
    display: flex;
    overflow-x: auto; /* Permet le défilement horizontal */
    padding: 20px;
    box-sizing: border-box;
}

.review-title {
    text-align: center;
}

.review-title h3 {
    font-size: 2rem;
}

.review-title img {
    height: 60px;
    width: auto;
}



.review-rate {
    /*display: flex;*/
    align-items: center;
    text-align: center;
    position: relative;
    display: block;
    margin-top: .5rem;
    margin-bottom: .5rem;
}

.review-rate p {
    font-size: .85rem;
}





.stars-bg {
    background-image: url('/public/images/star.svg');
    background-repeat: repeat-x;
    display: inline-block;
    overflow: hidden;
    position: relative;
    background-size: 14px 11.4px;
    height: 11.4px;
    width: 68px;
}

.stars-bg span {
    background-image: url('/public/images/star-c.svg');
    background-repeat: repeat-x;
    display: block;
    background-size: 14px 11.4px;
    height: 11.4px;
}

.review-text {
    font-size: .9rem;
}

.source-txt {
    text-align: center;
    font-size: .85rem;
    margin-bottom: 1rem;
    margin-top: 1rem;
}


.rate-global {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}


.rate-global-value {
    font-size: .8rem;
    text-transform: uppercase;
    margin-right: .5rem;
    font-weight: bold;
}

.rate-global-txt {
    font-size: .8rem;
    margin-left: .5rem;
}



/* Styles de base pour chaque avis */
.review {
    flex: 0 0 300px; /* Largeur fixe de chaque avis */
    margin: 10px;
    padding: 20px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
}

/* Centrage des avis lorsque l'écran est suffisamment large */
@media (min-width: 960px) {
    .review-container {
        justify-content: center;
    }
}