/*.poppins-regular {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
  }
  
  .poppins-light {
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: normal;
  }
  
  .poppins-semibold {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
  }
*/


:root {
    --color-0: #fff;
    --color-1: #ff004d;
    --color-2: rgb(202, 54, 74);
    --color-3: rgb(237,228,218);
    --color-4: rgb(222, 204, 183);
    --color-5: rgba(255,255,255,0.1);
    --color-6: #ffed00;
    --color-7: #e6007e;
    --color-8: #c8d400;
    --color-9: #620082;
    --color-10:#fff;
    --color-11: #eee;
    --color-12: #3b0807;
    --color-13: #620082;
    --color-14: rgb(76,6,136);

    --header-height: 80px;
    --header-logo-height: 55px;
    --header-menu-slide-font-size: 1.8rem;

    --font-family-1: "Poppins", sans-serif;
    --font-family-2: "Poppins", sans-serif;
    --font-family-3: "Poppins", sans-serif;

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

    --header-isTop-background: transparent;
    --header-isSticky-background: rgba(255,255,255,0.9);

    --padding-1: 8rem;
    --padding-2: 8rem;

    --background-gradient-1: linear-gradient(40deg, rgba(255,0,77,1) 30%, rgba(76,6,136,1) 100%);
    --background-gradient-2: linear-gradient(150deg, rgba(255,0,77,1) 30%, rgba(76,6,136,1) 100%);
    
}


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

    :root {
        --header-height: 100px;
        --header-logo-height: 70px;
        --header-menu-slide-font-size: 2rem;
        --padding-1: 15rem;
        --padding-2: 15rem;
    }


}

html {
    box-sizing: border-box;
    scroll-behavior: smooth;
    webkit-scroll-behavior: smooth;
    /*scrollbar-width: thin;*/
    scrollbar-color: var(--color-14) var(--color-11);
}
  
html:focus-within {    
    scroll-behavior: smooth;
    webkit-scroll-behavior: smooth;   
}

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

* {
    margin: 0px;
    padding: 0px;
}
/*
.phb {
    padding-top: var(--padding-1);
    padding-bottom: var(--padding-1);
}

.phb2 {
    padding-top: var(--padding-2);
    padding-bottom: var(--padding-2);
}
*/

body {
    position: relative;
    font-family: var(--font-family-1);
    margin: 0;
    font-size: 1rem;
    line-height: 1.8;
    letter-spacing: 0.04em;
    color: #000;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-family-2);
    font-weight: normal;
}



h1 {
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1.2;
}

h2 {
    text-transform: uppercase;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 1rem;
}

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

    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }

}



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

.header {
    display: none;
   /*border-bottom: 1px solid #eee;*/
}

.isTop .header {
    position: fixed;
    display: block;
    width: 100%;
    background-color: var(--header-isTop-background);
    z-index: 999;
    border-bottom: 1px solid rgba(255,255,255,0.3);
    /*border-top: 1px solid #eee;*/
}

.isSticky .header {
    position: fixed;
    display: block;
    width: 100%;
    background-color: var(--header-isSticky-background);
    z-index: 9;
    border-bottom: 1px solid rgba(213,54,99,0.3);
    /*border-top: 1px solid #eee;*/
}


.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 .logo  {
    height: var(--header-logo-height);
    width: auto;
}

.nopad.isTop .logo {
    fill: #fff;
}

.nopad.isTop .header_col2 > div > a {
    color: #fff;
}

.header_col1 a {
    display: flex;
    align-items: center;
}

.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: var(--header-height);*/
    padding-top: 0;
}

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










a {
    cursor: pointer;
    color: var(--color-1);
    text-decoration: none;
}

a:hover, a:focus {
    cursor: pointer;
    color: var(--color-2);
    text-decoration: none;
}


a.btn {
    border: 2px solid var(--color-1);
    padding: 0.75rem 4rem;
    text-transform: uppercase;
    font-weight: bold;
    color: var(--color-1);
    font-size: 1rem;
    cursor: pointer;
    display: inline-flex;
    transition: all ease .5s;
}

a.btn:hover, a.btn:focus {
    background: var(--color-1);
    color: #fff;
    transition: all ease .5s;
}

a.btn-inv {
    border: 2px solid var(--color-1);
    padding: 0.75rem 4rem;
    text-transform: uppercase;
    font-weight: bold;
    background: var(--color-1);
    color: var(--color-0);
    font-size: 1rem;
    cursor: pointer;
    display: inline-flex;
    transition: all ease .5s;
}

a.btn-inv:hover, a.btn-inv:focus {
    border: 2px solid var(--color-2);
    background: var(--color-2);
    transition: all ease .5s;
}


a.btn2 {
    border: 2px solid var(--color-0);
    padding: 0.75rem 4rem;
    text-transform: uppercase;
    font-weight: bold;
    color: var(--color-0);
    font-size: 1rem;
    cursor: pointer;
    display: inline-flex;
    transition: all ease .5s;
}

a.btn2:hover, a.btn2:focus {
    background: var(--color-5);
    color: var(--color-0);
    transition: all ease .5s;
}


/*
.nopad.isTop .btn-inv {
    background: transparent;
    border: 2px solid var(--color-0);
    color: var(--color-0);
}
*/








.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;
}





.ctn {
    width: 100%;
    max-width: 1600px;
    margin: auto;
    padding-left: 1rem;
    padding-right: 1rem;
    position: relative;
}

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

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

}

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

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

}


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

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

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

}

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

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

}



.ctn3 {
    max-width: 768px;
    margin: auto;
}







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

.ms-label {
    text-transform: uppercase;
    font-weight: bold;
}

.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: var(--color-1);
}

[ms-statut="open"] .menu-slide-button-mobile a.active, [ms-statut="open"] .menu-slide-actions a.active {
    color: var(--color-9);
}

.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);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    line-height: 1.4;
    cursor: pointer;
    font-weight: bold;
    border-bottom: 2px solid #eee;
    padding-bottom: 1rem;
    padding-top: 1rem;
    font-weight: bold;
}

.menu-main a:hover, .menu-main a:focus {
    color: var(--color-2);
}

.menu-main li:first-child a {
    border-top: 2px solid #eee;
}

.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: var(--menu-main-font-size);
    text-transform: uppercase;
    font-weight: bold;
}

.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: 2px solid #eee;
}

.menu-slide .horaires-item:first-child {
    padding-top: 0.5rem;
    border-top: 2px solid #eee;
}

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

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

.menu-slide-btn-reserver .mention-reserver {
    color: #000;
    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: #fff;
}

.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;
}








.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;
}











::-webkit-scrollbar {
    width: 12px; 
}
  
  
::-webkit-scrollbar-thumb {
    background-color:var(--color-1); 
    border-radius: 6px; 
}
  

::-webkit-scrollbar-track {
    background-color: var(--color-11); 
}














.infos-contact {
    margin-bottom: 2rem;
}

.infos-adresse {
    margin-bottom: 2rem;
}

.infos-horaires {
    margin-bottom: 2rem;
}


.infos-contact p {
    margin-top: 0;
    margin-bottom: 0;
}

.infos-adresse p {
    margin-top: 0;
    margin-bottom: 0;
}


.infos-horaires h4 {
    margin-bottom: 1rem;
}








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

.footer {
    position: relative;
    display: block;
    color: #fff;
    /*padding-top: 1rem;
    padding-bottom: 1rem;*/
    text-align: center;
}

.footer .footer-items {
    position: relative;
    display: block;
}

.lastfooter {
    position: relative;
    display: block;
    padding-top: 1rem;
    padding-bottom: 1rem;
    color: #fff;
    background: #000;
    border-top: 2px solid #222;
    font-size: .9rem;
}



.prefooter {
    position: relative;
    display: block;
    padding-top: 3rem;
    padding-bottom: 2rem;
    background: var(--color-12);
    color: #fff;
}










/* ------ GRIDS ------ */

.d2cols-m1-items, .d2cols-m1-items-inv {
    display: grid;
    grid-gap: 4rem 2rem;
    grid-template-columns: repeat(1, 1fr);
    -moz-text-size-adjust: none;
    -webkit-text-size-adjust: none;
    -ms-text-size-adjust: none;
}

.d2cols-m1-items img, .d2cols-m1-items-inv img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.d2cols-m1-items > div, .d2cols-m1-items-inv > div {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

    .d2cols-m1-items {
        display: grid;
        grid-gap: 2rem 2rem;
        grid-template-columns: repeat(2, 1fr);
        -moz-text-size-adjust: none;
        -webkit-text-size-adjust: none;
        -ms-text-size-adjust: none;
        grid-template-rows: auto;
    }

    .d2cols-m1-items-inv {
        display: grid;
        grid-gap: 2rem 2rem;
        grid-template-columns: repeat(2, 1fr);
        -moz-text-size-adjust: none;
        -webkit-text-size-adjust: none;
        -ms-text-size-adjust: none;
        grid-template-rows: auto;
    }

    .d2cols-m1-item, .d2cols-m1-item-inv {
        padding: 2rem;
    }

    .d2cols-m1-items-inv > div:first-child {
        order: 2;
    }

    .d2cols-m1-items-inv > div:last-child {
        order: 1;
    }

}






.d3cols-m2-items {
    display: grid;
    grid-gap: 4rem 2rem;
    grid-template-columns: repeat(1, 1fr);
    -moz-text-size-adjust: none;
    -webkit-text-size-adjust: none;
    -ms-text-size-adjust: none;
}

.d3cols-m2-items img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

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

    .d3cols-m2-items {
        display: grid;
        grid-gap: 2rem 2rem;
        grid-template-columns: repeat(2, 1fr);
        -moz-text-size-adjust: none;
        -webkit-text-size-adjust: none;
        -ms-text-size-adjust: none;
    }

    .d3cols-m2-item {
        padding: 2rem;
    }

    .d3cols-m2-items > div:nth-child(1) {
        grid-row-start: span 1;
        grid-column-start: span 2;
    }

}

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

    .d3cols-m2-items {
        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;
    }

    .d3cols-m2-items > div:nth-child(1) {
        grid-row-start: span 1;
        grid-column-start: span 1;
    }

}




.d4cols-m2-items {
    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;
}

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

    .d4cols-m2-items  {
        display: grid;
        grid-gap: 2rem 2rem;
        grid-template-columns: repeat(2, 1fr);
        -moz-text-size-adjust: none;
        -webkit-text-size-adjust: none;
        -ms-text-size-adjust: none;
    }

    .d4cols-m2-item {
        padding: 2rem;
    }


}

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

    .d4cols-m2-items  {
        display: grid;
        grid-gap: 0;
        grid-template-columns: repeat(4, 1fr);
        -moz-text-size-adjust: none;
        -webkit-text-size-adjust: none;
        -ms-text-size-adjust: none;
    }



}

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

    .d4cols-m2-items  {
        display: grid;
        grid-gap: 2rem 2rem;
        grid-template-columns: repeat(4, 1fr);
        -moz-text-size-adjust: none;
        -webkit-text-size-adjust: none;
        -ms-text-size-adjust: none;
    }



}








/* ------ BACKGROUND SVG ------ */

.lb-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.lb-header, .lb-footer {
    height: 10vh;
    min-height: 8rem;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}


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

    .lb-header, .lb-footer {
        height: 20vh;
        min-height: 15rem;
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center center;
    }
    

}


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

    .lb-header, .lb-footer {
        height: 25vh;
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center center;
    }

}










.uls1 {

}

.uls1 li {
    list-style: none;
}



.btns {
    margin-top: 1rem;
}







.grid-5-items {
    display: grid;
    grid-gap: 2rem 2rem;
    grid-template-columns: repeat(2, 1fr);
    -moz-text-size-adjust: none;
    -webkit-text-size-adjust: none;
    -ms-text-size-adjust: none;
}

@media screen and (min-width: 500px) {
    .grid-5-items {
        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;
    }
}

@media screen and (min-width: 768px) {
    .grid-5-items {
        display: grid;
        grid-gap: 2rem 2rem;
        grid-template-columns: repeat(4, 1fr);
        -moz-text-size-adjust: none;
        -webkit-text-size-adjust: none;
        -ms-text-size-adjust: none;
    }
}

@media screen and (min-width: 961px) {
    .grid-5-items {
        display: grid;
        grid-gap: 2rem 2rem;
        grid-template-columns: repeat(5, 1fr);
        -moz-text-size-adjust: none;
        -webkit-text-size-adjust: none;
        -ms-text-size-adjust: none;
    }
}

.grid-5-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}


.grid-5-items img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.grid-5-item p {
    color: var(--color-1);
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;

}












.prix-1 {
    color: var(--color-13);
    font-size: 1.5rem;
    font-weight: bold;
    margin-top: 1.5rem;
}








.btn3 {
    border: 2px solid var(--color-1);
    padding: 0.75rem 4rem;
    text-transform: uppercase;
    font-weight: bold;
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    display: inline-flex;
    transition: all ease .5s;
    background: var(--color-1);
}



.btn3:hover, .btn3:focus {
    border: 2px solid var(--color-2);
    background: var(--color-2);
    transition: all ease .5s;
    color: #fff;
}