/*
.montserrat-<uniquifier> {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}
*/

html, body {
    overflow-x: hidden;
}

img, svg {
    max-width: 100%;
    height: auto;
}

* {
    min-width: 0; /* très important pour flexbox */
}

:root {

    --color-0: #000;
    --color-1: #fff;
    --color-2: #151515;
    --color-3: #252525;
    --color-4: #353535;
    --color-5: #eee;
    --color-6: #efefef;
    --color-7: #e6007e;
    --color-8: #c8d400;
    --color-9: #f7a600;
    --color-10:rgb(231, 215, 197);
    --color-11: rgb(219, 194, 165);
    --color-12: #3b0807;

    --header-height: 70px;
    --prefooter-height: 70px;
    --footer-height: 70px;
    
    
    --header-logo-height: 20px;

    --header-btn-menu-height: 40px;
    --header-menu-slide-font-size: 1.8rem;

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


    --header-isTop-background: #fff;
    --header-isSticky-background: #fff;

    --footer-background: #eee;
}





body[breakpoint="desktop"]  {
    --header-logo-height: 80px;
    --header-height: 90px;
    /* Ajoutez d'autres variables CSS ici */
}



html {    
    box-sizing: border-box;
    scrollbar-color: #000 #eee;
}
  
*, *:before, *:after {
    box-sizing: inherit;
}

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

body {
    position: relative;
    font-family: var(--font-family-1);
    margin: 0;
    
    color: #000;
    /*min-height: 100vh;*/
    font-optical-sizing: auto;
    
}

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

h1 {
    margin-bottom: 1rem;
    font-size: 2rem;
    font-weight: 600;
    text-transform: uppercase;
}

p {
    font-size: .95rem;
    line-height: 1.6;
    letter-spacing: 0.04em;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

h2 {
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: -0.04rem;
    font-size: 1.25rem;
    line-height: 1.4;
}

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

    p {
        font-size: 1.05rem;
    }

    h2 {
        font-size: 1.5rem;
    }

}

.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 {
    /*max-width: 1400px;
    margin: auto;
    padding-left: 1rem;
    padding-right: 1rem;*/
    padding-right: 2.5vmin;
    padding-left: 2.5vmin;
}

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

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

    .ctn, .ctn-2 {
        padding-right: 2.5vmin;
        padding-left: 2.5vmin;
    }

}











/* ---------- 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: 9;
    border-bottom: 1px solid #eee;
    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 #eee;
    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);
}


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

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

.header_col1 a {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}




a {
    color: #000;
    transition: all ease .5s;
}

a:hover, a:focus {
    color: #222;
    transition: all ease .5s;
}



.btn1 {
    display: inline-flex;
    cursor: pointer;
    border: 1px solid #000;
    padding: .5rem;
    color: #fff;
    padding: .75rem 1rem;
    background: #000;
    text-transform: uppercase;
    font-size: .9rem;
    text-decoration: none;
    transition: all ease .5s;
}

.btn1:hover {
    background: #151515;
	color:white;
    transition: all ease .5s;
}






.container {
    min-height: calc( 100dvh  -  var(--footer-height) -  var(--prefooter-height) );
    padding-top: var(--header-height);
}

.prefooter {
    min-height: var(--prefooter-height);
    line-height: 1.3;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.footer {
    font-size: 85%;
    min-height: var(--footer-height);
    text-align: center;
    line-height: 1.3;
    padding-top: 1rem;
    padding-bottom: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--footer-background);
}



/* PREFOOTER */

.prefooter .social_network {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.prefooter .social_network a {
    display: flex;
    height: 55px;
    width: 55px;
    padding: .5rem .8rem;
}

.prefooter .social_network a svg {
    width: 100%;
    height: 100%;
}


/* INFOS */

.infos-items .infos-item {
    padding-bottom: 2rem;
}

.infos-items .infos-item h3 {
    padding-bottom: .5rem;
}

.infos-items .infos_phone, .infos-items .infos_email, .infos-items .infos_adresse {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
}

.infos-items .infos_phone > div:first-child, .infos-items .infos_email > div:first-child, .infos-items .infos_adresse > div:first-child {
    margin-right: .5rem;
}

.infos-items .infos_phone, .infos-items .infos_email {
    align-items: center;
}

.infos-items .infos_phone > div, .infos-items .infos_email > div {
    display: flex;
}

.infos-items .social_network {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
}

.infos-items .social_network a {
    display: flex;
    height: 45px;
    width: 45px;
    margin-right: 1.2rem;
}

.infos-items .social_network a svg {
    width: 100%;
    height: 100%;
}

.infos-items .horaires-item {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
 














/* ********* APPARITION EFFECT ********* */


@keyframes viewAnimation-in {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes viewAnimation-out {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(0.8);
    }
}
  
  .elem {
    opacity: 0; /* Initial opacity */
    transform: scale(0.8); /* Initial scale */
    animation: viewAnimation-out 1s ease-in-out forwards; /* Apply animation */
  }
  
  /* Ensure element becomes visible when it enters the view */
  .elem.in-view {
    opacity: 1;
    transform: scale(1);
    animation: viewAnimation-in 1s ease-in-out forwards; /* Apply animation */
  }









.menu-slide .menu-slide-header .ms-label {
    text-transform: uppercase;
    font-weight: 600;
    font-size: .9rem;
}

.menu-slide h3 {
    font-weight: 600;
    text-transform: uppercase;
}

.menu-slide-actions [ms-go="ms-infos"] {
    display: none;
}

.menu-slide .horaires-item {
    padding-top: .5rem;
    padding-bottom: .5rem;
    border-bottom: 1px solid #ddd;
}

.menu-slide .horaires-item span.label {
    font-size: .8rem;
    text-transform: uppercase;
    font-weight: 500;
}

.menu-slide  .infos_adresse {
    line-height: 1.6rem;
}

.menu-slide  .infos_adresse .btn1 {
    margin-top: .5rem;
}

.menu-slide  .infos-contact-items {
    line-height: 2rem;
}

.menu-slide  .infos-contact-items a {
    text-decoration: none;
}

.menu-slide .infos_adresse svg, .menu-slide .infos-contact-items svg {
    height: 1.2rem;
}
.infos-items .infos_adresse > div:first-child {
    margin-top: .25rem;
}


.page__mentions-legales .container {
    min-height: calc(100dvh - var(--footer-height) - var(--prefooter-height));
    padding-top: calc( var(--header-height) + 2rem ) ;
}