@import url('./root.css');
@import url('./wpcf7.css');

body{
    margin: 0;
    padding: 0;
    height: 100vh;
    font-family: 'geometria';
}

*{
    -webkit-box-sizing: border-box; 
    -moz-box-sizing: border-box; 
    box-sizing: border-box;  
}

.otgs-development-site-front-end,
.wpml-ls-statics-footer{
    display: none;
}

/*Mot menu*/
@media screen and (max-width: 645px) {
.menu__main span {
  margin-top: 0px !important;
}
}

/* ===CROSS=== */
cross{
    position: absolute;
}
cross svg{    
    width: 20px;
    height: 20px;
    padding: 2px;
    fill: var(--third-color);
    cursor: pointer;

    -webkit-transition: all 0.7s var(--cubic-bezier-1);
    -moz-transition: all 0.7s var(--cubic-bezier-1);
    -ms-transition: all 0.7s var(--cubic-bezier-1);
    -o-transition: all 0.7s var(--cubic-bezier-1);
    transition: all 0.7s var(--cubic-bezier-1);
}

cross:hover svg{
    fill: var(--second-color);
}

.cdf_section{
    background-color: var(--second-color);
}
.cdf-section_fixed{
    position: fixed !important;
    top: 30px;
    left: 30px !important;
    margin: 0!important;
    z-index: 0;
    box-shadow: unset;
}
.cdf_section_margin{
    user-select: none;
    pointer-events: none;
}

@media screen and (max-width: 645px) {
    .cdf-section_fixed{
        position: relative !important;
        top: unset !important;
        left: unset !important;
        margin: 0!important;
    }
    .cdf_section_margin{
        display: none;
    }
}

/* ============== */

/* ===CAROUSEL=== */
carousel{
    display: block;
    position: relative;
    background-color: black;
    overflow: hidden;
}
carousel > span{
    position: absolute;    
    top:0;
    left:0;
    width: 100%;
    height: 100%;
    opacity: 0;
    
    -webkit-transition: all 0.7s var(--cubic-bezier-1);
    -moz-transition: all 0.7s var(--cubic-bezier-1);
    -ms-transition: all 0.7s var(--cubic-bezier-1);
    -o-transition: all 0.7s var(--cubic-bezier-1);
    transition: all 0.7s var(--cubic-bezier-1);
}
carousel > span img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    user-select: none;
}
carousel dots{
    z-index: 1;
    position: absolute;
    transform: translate(-50%,-50%);
    left: 50%;
    bottom: 60px;
}
carousel dot{
    display: inline-block;
    width: 9px;
    height: 9px;
    border-radius: 9px;    
    margin: 0 5px;
    cursor: pointer;
    border: 2px solid var(--third-color);
    background-color: transparent;
}
carousel dot.active{
    background-color: var(--third-color);
}
carousel > span.active{
    opacity: 1;
}

/* === CDF_BORDER === */
.cdf_border{
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    box-sizing: border-box;
    border: 30px solid white;
    pointer-events: none;
    user-select: none;
}

@media screen and (max-width: 645px){
    .cdf_border{
  border: 30px solid white;
  border-top-color: white;
  border-top-style: solid;
  border-top-width: 35px;
  border-right-color: white;
  border-right-style: solid;
  border-right-width: 0px;
  border-bottom-color: white;
  border-bottom-style: solid;
  border-bottom-width: 0px;
  border-left-color: white;
  border-left-style: solid;
  border-left-width: 0px;
  border-image-outset: 0;
  border-image-repeat: stretch;
  border-image-slice: 50%;
  border-image-source: none;
  border-image-width: 1;
    }
}

/* === CDF_MENU ===  */
.cdf_menu{
    position: fixed;
    z-index: 1001;
    top: 0;
    left: 0;
}

.cdf_menu a{
    color: var(--fourth-color);
    text-decoration: none;
    letter-spacing: 2px;
    font-size: 10px;
    text-transform: uppercase;
    display: flex;
    justify-content: center;
    align-items: center;
    white-space: nowrap;
}

.cdf_menu .menu__main{
    position: absolute;
    top: 100vh;
    left: 50vw;
    height: 30px;
    transform: translate(-50%, -100%);
    display: flex;
    justify-content: center;
    align-items: center;
	z-index:9;
}
.cdf_menu .menu__main svg{
    height: 17px;
    width: 17px;
    margin-right: 5px;
	margin-top: -3px;
    stroke: var(--fourth-color);
}

.cdf_menu .menu__legals{
    position: absolute;
    top: 100vh;
    left: 30px;
    height: 30px;
    transform: translate(0, -100%);
    display: flex;
    justify-content: center;
    align-items: center;
}

.cdf_menu .menu__socials{
    position: absolute;
    top: 100vh;
    left: calc(100vw - 30px);
    height: 30px;
    transform: translate(-100%, -100%);
    display: flex;
    justify-content: center;
    align-items: center;
}
.cdf_menu .menu__socials a{
    margin-left: 20px;
}

.cdf_menu .menu__languages{
    position: absolute;
    top: 0;
    left: calc(100vw - 30px);
    height: 30px;
    transform: translate(-100%, 0);
    display: flex;
    justify-content: center;
    align-items: center;
}
.cdf_menu .menu__languages a{
    margin-left: 10px;
}

.cdf_menu .menu__languages a b{
    text-decoration: underline;
    text-underline-offset: 3px;
}

.cdf_menu .menu__over{
    display: none;
    position: fixed;
    z-index: 1;
    top: 30px;
    left: 30px;
    width: calc(100% - 60px);
    height: calc(100% - 60px);
    backdrop-filter: blur(5px);
    
    justify-content: center;
    align-items: center;
}

.cdf_menu .menu__over.menu__over-visible{
    display: flex;
}

.cdf_menu .menu__over cross{
    position: absolute;
    top: 20px;
    right: 40px;
    z-index: 1;
}

.cdf_menu .menu__over:before{
    position: absolute;
    content: '';
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    opacity: .3;
}

.cdf_menu .menu_over__links{
    display: flex;
    flex-direction: column;
    align-items: center;
	position: fixed;
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    left: 0;
    z-index: 2000;
    top: 5vh;
}

.cdf_menu .menu_over__links a{
    position: relative;
    color: var(--second-color);
    font-size: 22px;
    text-transform: uppercase;
    width: 100%;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    white-space: nowrap;
    transition: .3s ease all;
}
.cdf_menu .menu_over__links a::before{
    opacity: .8;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: '';
    position: absolute;
    transition: .3s ease all;
}
.cdf_menu .menu_over__links a:hover{
    color: var(--third-color);
    font-size: 24px;
}
.cdf_menu .menu_over__links a:hover:before{
    background-color: var(--fourth-color);
}

.cdf_menu .menu__dots{
    position: fixed;
    top: 50vh;
    left: 0;
    width: 30px;
    height: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.cdf_menu .menu__dots a{
    position: relative;
    width: 30px;
    height: fit-content;    
    margin: 5px 0;
}
.cdf_menu .menu__dots a:before{
    position: relative;
    background-color: var(--third-color);
    border: 1px solid var(--third-color);
    border-radius: 20px;
    width: 9px;
    height: 9px;
    content: '';
    box-sizing: border-box;    
}
.cdf_menu .menu__dots a.dot_link_active:before{
    background-color: var(--fourth-color);
    border: 1px solid var(--fourth-color);
}
.cdf_menu .menu__dots a span{
    position: absolute;
    display: none;
}

.flore1{
    position: absolute;
    display: none;
    transition: all 2.5s ease-out;
}
.menu__dots .flore1:hover .flore{   
    display:inline;
    margin-left:215px;
    color:white;
    font-size:16px;
    font-weight: bold;
}

.histoire1{
    position: absolute;
    display: none;
    transition: all 2.5s ease-out;
}
.menu__dots .histoire1:hover .histoire{   
    display:inline;
    margin-left:150px;
    color:white;
    font-size:16px;
    font-weight: bold;
}

.art1{
    position: absolute;
    display: none;
    transition: all 2.5s ease-out;
}
.menu__dots .art1:hover .art{   
    display:inline;
    margin-left:90px;
    color:white;
    font-size:16px;
    font-weight: bold;
}

.carte1{
    position: absolute;
    display: none;
    transition: all 2.5s ease-out;
}
.menu__dots .carte1:hover .carte{   
    display:inline;
    margin-left:120px;
    color:white;
    font-size:16px;
    font-weight: bold;
}

.photos1{
    position: absolute;
    display: none;
    transition: all 2.5s ease-out;
}
.menu__dots .photos1:hover .photos{   
    display:inline;
    margin-left:135px;
    color:white;
    font-size:16px;
    font-weight: bold;
}

.instaflore1{
    position: absolute;
    display: none;
    transition: all 2.5s ease-out;
}
.menu__dots .instaflore1:hover .instaflore{   
    display:inline;
    margin-left:183px;
    color:white;
    font-size:16px;
    font-weight: bold;
}

.boutique1{
    position: absolute;
    display: none;
    transition: all 2.5s ease-out;
}
.menu__dots .boutique1:hover .boutique{   
    display:inline;
    margin-left:160px;
    color:white;
    font-size:16px;
    font-weight: bold;
}

.contact1{
    position: absolute;
    display: none;
    transition: all 2.5s ease-out;
}
.menu__dots .contact1:hover .contact{   
    display:inline;
    margin-left:150px;
    color:white;
    font-size:16px;
    font-weight: bold;
}
html {
  scroll-behavior: smooth;
}

.icon-cf{
	position: fixed;
	top: 43vh;
	left: 0;
	width: 30px;
	height: fit-content;
	display: flex;
	flex-direction: column;
	align-items: center; 
	font-style:brandon
}

@media screen and (max-width: 645px){
	.cdf_menu .menu_over__links a {
		height: 20px;
		font-size: 18px !important;
	}
	.cdf_menu .menu__socials{
		display:none;
	}
	.cdf_menu .menu__legals{
		display:none;
	}
	.cdf_menu .menu__over{
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
	top:35px;
	right:0;
	bottom:0;
    height: 100vh;
	background-color: rgba(0,0,0,0.4);
	width: 100%;
    backdrop-filter: blur(5px);
    justify-content: center;
    align-items: center;
    }
	.icon-cf{
		display:none;
	}
	.cdf_menu .menu__dots{
		display:none;
	}
	.cdf_menu .menu__main{
    position: absolute;
    top: 4.2vh;
    left: 15vw;
    height: 30px;
    transform: translate(-50%, -100%);
    display: flex;
    justify-content: center;
    align-items: center;
   }
	.cdf_parcours{
		display:block !important;
		overflow: auto !important;
	}
	.cdf_art{
		display:block !important;
		overflow: auto !important;
	}
	.cdf_menu .menu_over__links{
    width: 100% !important;
	top:40vh;
   }
}

/* === CDF_HERO === */
.cdf_hero{
    position: relative;
    left: 30px;
    width: calc(100vw - 60px);
    height: calc(100vh - 30px);
}

.cdf_hero .hero__logo{
    position: absolute;
    left: 50%;
    top: 75px;
    height: 115px;
    z-index: 2;
    transform: scale(1.5);
}

.cdf_hero .hero__logo a{
    position: absolute;
    top: 34px;
    left: 50%;
    width: 283px;
    height: 86px;
    transform: translate(-50%, -50%);
    text-align: center;
    outline: none;
    font-family: 'BG_regular';
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 2px;
}

.cdf_hero .hero__logo a svg{
    fill: white;
    height: 100%;
    width: 85%;
}

.cdf_hero .hero__logo a div{
    position: relative;
    color: white;
    text-align: center;
    font-family: 'bg_regular';
    text-transform: uppercase;
    font-size: 9px;
    letter-spacing: 3px;
    position: absolute;
    top: 60px;
    left: 50%;
    transform: translate(-50%,0);
}

.cdf_hero .hero__logo a div span::before{
    content: "";
    height: 1px;
    width: 22px;
    background-color: white;
    display: inline-block;
    margin-right: 5px;
    margin-bottom: 2px;
}
.cdf_hero .hero__logo a div span::after{
    content: "";
    height: 1px;
    width: 22px;
    background-color: white;
    display: inline-block;
    margin-left: 1px;
    margin-bottom: 2px;
}

.cdf_hero carousel{
    width: 100%;
    height: 100%;
}

#scroll-down-animation {
    position: absolute;
    bottom: -40px;
    right: -50px;
    transform: translate(-50%,-50%) scale(.75);
}

#scroll-down-animation:before{
    content: '';
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: black;
    filter: blur(30px);
    z-index: -1;
    opacity: 0.65;
}

#scroll-down-animation  h2 {
    color: #fff;
    font-weight: 200;
    font-size: 16px;
}

#scroll-down-animation .mouse {
    margin: 0 auto;
    display: block;
    border-radius: 50px;
    border: 3px solid #fff;
    height: 55px;
    width: 30px;
    position: relative;
    opacity:0.8;
}

#scroll-down-animation .move {
    position: absolute;
    background-color: #fff;
    height: 6px;
    width: 6px;
    border-radius: 50%;
    left: 50%;
    transform: translateX(-10%);
    animation: move 2s linear infinite;
}
  
  @keyframes move {
    0% {
      transform: translate(-50%,0px);
      opacity: 0;
    }
    50% {
      transform: translate(-50%,30px);
      opacity: 1;
    }
    100% {
      transform: translate(-50%,60px);
      opacity: 0;
    }
  }

@media screen and (max-width: 645px){
    .cdf_hero{
        left: 0;
        width: 100%;
        height: 80vh;
    }

    .cdf_hero .hero__logo{
        transform: scale(1);
    }
}

/* === CDF_VIEWER === */
.cdf_viewer{
    position: relative;
    background-color: var(--second-color);
    left: 30px;
    width: calc(100vw - 60px);
    height: calc(100vh - 60px); 
    display: flex;
    overflow: hidden;
}

.viewer__images{
    position: relative;
    width: 40%;
    height: 100%;
}
.viewer__images cross{
    display: none;
    z-index: 1;
    top: 10px;
    right: 10px;
}
.viewer__images carousel{
    width: 100%;
    height: 100%;
}
/*  */
.viewer__content{    
    position: relative;
    background-color: var(--second-color);
    display: inline-block;
    overflow-x: hidden;
    overflow-y: hidden;    
    width: 40%;
    height: 100%;
}
.viewer__content.active > *:not(.cross-art){
    animation: 1.4s ease 0s 1 viewerSlideDownToUp;
}
@keyframes viewerSlideDownToUp {
    0% { transform: translateY(55px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

.viewer__content cross{
    position: absolute;
    top: 11px;
    right: 20px;
}
.viewer__content cross svg{
    width: 25px;
    height: 25px;
}
.viewer__content cross:hover svg{
    fill: var(--third-color);
}

.viewer__content-name{
    height: 45px;
    display: flex;
    align-items: center;
    text-transform: uppercase;
    color: var(--fifth-color);
    letter-spacing: 3px;
    font-size: 13px;
    border-bottom: 1px solid #eee;
}
.viewer__content-name-icon{
    width: 20px;
    height: 20px;
    margin: 0 20px;
}
.viewer__content-name-icon svg{
    width: 100%;
    height: 100%;
    stroke: var(--third-color);
}
.viewer__content-title{
    margin: 20px 0;
    font-size: 30px;
    letter-spacing: 3px;
    text-align: center;
    text-transform: uppercase;
    padding: 0 20px;
}

.viewer__content-splitter{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.viewer__content-splitter svg{
    width: 25px;
    height: 25px;
    stroke: var(--third-color);
    margin: 0 7px;
}
.viewer__content-splitter img{
    width: 35%;
    height: 7px;
}
.viewer__content-text{
    width: 100%;
    height: auto;
    display: inline-block;
    padding: 0 20px;   
	/*overflow-y: scroll;*/
	position:absolute;
}
/*  */
.viewer__thumbs{
    background-color: gray;
    width: 20%;
    height: 100%;
}
.viewer__thumbs-arrow{
    width: 100%;
    height: 45px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    background-color: var(--third-color);   
}
.viewer__thumbs-arrow svg{
    stroke: var(--second-color);
    width: 35px;
    height: 35px; 

    -webkit-transition: all 0.5s var(--cubic-bezier-1);
    -moz-transition: all 0.5s var(--cubic-bezier-1);
    -ms-transition: all 0.5s var(--cubic-bezier-1);
    -o-transition: all 0.5s var(--cubic-bezier-1);
    transition: all 0.5s var(--cubic-bezier-1);
}
.viewer__thumbs-arrow:hover svg{
    stroke: var(--fourth-color);
}
.viewer__thumbs-thumbs{
    position: relative;
    width: 100%;
    height: calc(100% - 90px);
    overflow-x: hidden;
    overflow-y: auto;
    background-color: var(--second-color);
}
.viewer__thumbs-thumbs > div{
    position: relative;
    user-select: none;
    width: 100%;
    height: 25%;
}
.viewer__thumbs-thumbs-image{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
} 
.viewer__thumbs-thumbs-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;

    -webkit-transition: all 0.5s var(--cubic-bezier-1);
    -moz-transition: all 0.5s var(--cubic-bezier-1);
    -ms-transition: all 0.5s var(--cubic-bezier-1);
    -o-transition: all 0.5s var(--cubic-bezier-1);
    transition: all 0.5s var(--cubic-bezier-1);
}
.viewer__thumbs-thumbs-description{
    position: absolute;
    top:0;
    left:0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 20px;
    opacity: 0.8;
    background-color: rgba(var(--fourth-color-rgb),0.8);
    user-select: none;
    cursor: pointer;

    -webkit-transition: all 0.5s var(--cubic-bezier-1);
    -moz-transition: all 0.5s var(--cubic-bezier-1);
    -ms-transition: all 0.5s var(--cubic-bezier-1);
    -o-transition: all 0.5s var(--cubic-bezier-1);
    transition: all 0.5s var(--cubic-bezier-1);
}
.viewer__thumbs-thumbs-description span{
    letter-spacing: 3px;
    text-transform: uppercase;

    -webkit-transition: all 0.5s var(--cubic-bezier-1);
    -moz-transition: all 0.5s var(--cubic-bezier-1);
    -ms-transition: all 0.5s var(--cubic-bezier-1);
    -o-transition: all 0.5s var(--cubic-bezier-1);
    transition: all 0.5s var(--cubic-bezier-1);
}
.viewer__thumbs-thumbs-description span:first-child{
    font-size: 14px;
    font-weight: bold;
    color: var(--third-color);
}
.viewer__thumbs-thumbs-description span:last-child{
    font-size: 20px;
    font-weight: bold;
    color: var(--second-color);
}
.viewer__thumbs-thumbs-description:hover{
    opacity: 1;
    background-color: rgba(var(--fourth-color-rgb),0.3);
}
.viewer__thumbs-thumbs-description :hover span:nth-child(1){
    color: var(--second-color);
}
.viewer__thumbs-thumbs-description :hover span:nth-child(2){
    color: var(--third-color);
}
.viewer__thumbs-thumbs-arrow{
    position: absolute;
    top:50%;
    right: 0;
    transform-origin: center;
    transform: translate(50%, -50%) rotate(45deg);
    display: none;
    width: 25px;
    height: 25px;
    background-color: var(--third-color);
    z-index: 1;
}
.viewer__thumbs-thumbs > div.active .viewer__thumbs-thumbs-image img{
    width: 120%;
    height: 120%;
}
.viewer__thumbs-thumbs > div.active .viewer__thumbs-thumbs-description{
    opacity: 1;
    background-color: rgba(var(--fourth-color-rgb),0.3);
}
.viewer__thumbs-thumbs > div.active .viewer__thumbs-thumbs-description span:first-child{
    font-size: 20px;
    color: var(--second-color);
}
.viewer__thumbs-thumbs > div.active .viewer__thumbs-thumbs-description span:last-child{
    font-size: 14px;
    color: var(--third-color);
}
.viewer__thumbs-thumbs > div.active .viewer__thumbs-thumbs-arrow{
    display: block;
}
/*  */
.viewer__loop{
    display: none;
}

@media screen and (max-width: 1020px){ /* tablet screen */
    .viewer__images{
        width: 25%;
    }
    .viewer__content{
        width: 50%;
    }
    .viewer__thumbs{
        width: 25%;
    }
}

@media screen and (max-width: 645px){ /* phone screen */
    .cdf_viewer{
        flex-direction: column;
        height: auto;
        left: 0;
        width: 100%;
    }
    .viewer__images{
        width: 100%;
        height: 300px;
    }
    .viewer__images:not(.active){
        display: none;
    }
    .viewer__images cross{
        display: unset;
    }
    .viewer__content{
        width: 100%;
		height:auto;
		display:content;
    }
    .viewer__content:not(.active){
        display: none;
    }
    .viewer__thumbs{
        width: 100%;
        height: auto;
		/*delete*/
		overflow:auto;
    }
    .viewer__thumbs-arrow{
        display: none;
    }
    .viewer__thumbs-thumbs-image{
        height: 150px;
    }
    .viewer__thumbs-thumbs > div.active{
        display: none;
    }
	.viewer__content-text{
	position:relative;
    }
	.viewer__images carousel {
		height:70%;
	}
	#haut_arts{
		margin-top:-13vh;
	}
	#haut_parcours{
		margin-top:-13vh;
	}
	.cross-art{
		position:fixed !important;
	}
}
.cross-art{
		opacity:1;
		position:absolute;
		top:2vh;
		right: 20px;
	}
/* ================== */

/* === CDF_HISTORY === */
.cdf_history{
    position: relative;
    left: 30px;
    background-color: var(--second-color);
    width: calc(100vw - 60px);
    min-height: calc(100vh - 60px);   
   /* overflow-x: hidden;*/
    display: flex;
    flex-direction: column;
}

.cdf_history #scroll-down-animation{
    top: calc(100vh - 180px);
    left: 80px;
    z-index: 1;
    height: fit-content;
    width: fit-content;
    z-index: 1;
}
/*  */
.history__period{
    background-color: var(--second-color);
    min-width: 100%;
    width: auto;
    height: calc(100vh - 45px - 60px);
    display: flex;
}
.history__period-fixed{
    position: fixed;
    left: 30px;
    top: 30px;
}

.history__period > div{
    background-color: var(--second-color);
    width: fit-content;
    height: 100%;
    display: flex;
}
.history__period-thumb{    
    position: relative;
    width: calc(100vw / 4); /* = 1/6 screen width */
    height: 100%;
}
.history__period-thumb-image{
    width: 100%;
    height: 100%;
    
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;    
}
.history__period-thumb-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.history__period > div:nth-child(odd) .history__period-thumb-description{
    background-color: rgba(var(--fourth-color-rgb),0.5);
}
.history__period-thumb-description{
    background-color: rgba(0,0,0,0.5);
    position: absolute;
    overflow: hidden;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;    
    display: flex;
    flex-direction: column;
    text-transform: uppercase;
    color:var(--third-color);
    padding: 10px;
    cursor: pointer;
    user-select: none;
}
.history__period-thumb-description > div:first-child{
    position: relative;
    top:50%;
    font-size:24px;
    letter-spacing: 3px;  

    -webkit-transition: all 0.5s var(--cubic-bezier-1);
    -moz-transition: all 0.5s var(--cubic-bezier-1);
    -ms-transition: all 0.5s var(--cubic-bezier-1);
    -o-transition: all 0.5s var(--cubic-bezier-1);
    transition: all 0.5s var(--cubic-bezier-1);
}
.history__period-thumb-description > div:last-child{
    position: relative;
    top:50%;
    margin-top: 15px;
    font-size: 12px;
    letter-spacing: 3px;
    opacity: 0;
    transform: translateX(-40px);

    -webkit-transition: all 0.5s var(--cubic-bezier-1);
    -moz-transition: all 0.5s var(--cubic-bezier-1);
    -ms-transition: all 0.5s var(--cubic-bezier-1);
    -o-transition: all 0.5s var(--cubic-bezier-1);
    transition: all 0.5s var(--cubic-bezier-1);
}
.history__period-thumb-description > div:last-child span:first-child{
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}
.history__period-thumb-description svg{
    stroke: var(--third-color);
    width: 20px;
    height: 20px;
    margin-right: 10px;
}
.history__period-thumb-description:hover div:first-child{
    color: var(--second-color);
}
.history__period-thumb-description:hover div:last-child{
    transform: translateX(0px);
    opacity: 1;
}
.history__period-images{
    position: relative;
    /*width: calc(100vw / 3); /* = 2/6 screen width */
    width: 0;
    display: none;
    height: 100%;
}
.history__period-images-date{
    position: absolute;
    z-index: 1;
    bottom: 10px;
    left: 10px;
    font-size:24px;
    letter-spacing: 3px;  
    color: var(--third-color);

    opacity: 0;

    -webkit-transition: all 0.5s var(--cubic-bezier-1);
    -moz-transition: all 0.5s var(--cubic-bezier-1);
    -ms-transition: all 0.5s var(--cubic-bezier-1);
    -o-transition: all 0.5s var(--cubic-bezier-1);
    transition: all 0.5s var(--cubic-bezier-1);
}
.history__period-images cross{
    z-index: 1;
    top: 15px;
    right: -95%;
}
.history__period-images carousel{
    width: 100%;
    height: 100%;
}
/*  */
.history__period-content{
    display: none;
    overflow-x: hidden;
    overflow-y: auto;   
    background-color: var(--second-color);    
    /*width: calc(100vw / 3); /* = 2/6 screen width */
    width: 0;
    height: 100%;
}
.history__period-name{
    height: 45px;
    display: flex;
    align-items: center;
    text-transform: uppercase;
    color: var(--fifth-color);
    letter-spacing: 3px;
    font-size: 13px;
    border-bottom: 1px solid #eee;
}
.history__period-name-icon{
    width: 20px;
    height: 20px;
    margin: 0 20px;
}
.history__period-name-icon svg{
    width: 100%;
    height: 100%;
    stroke: var(--third-color);
    fill: var(--third-color)
}
.history__period-title{
    margin: 20px 0;
    font-size: 30px;
    letter-spacing: 3px;
    text-align: center;
    text-transform: uppercase;
    padding: 0 20px;
}
.history__period-splitter{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.history__period-splitter svg{
    width: 25px;
    height: 25px;
    stroke: var(--third-color);
    margin: 0 7px;
}
.history__period-splitter img{
    width: 35%;
    height: 7px;
}
.history__period-text{
    width: 100%;
    height: auto;
    display: inline-block;
    padding: 0 20px;    
}
/*  */
.history__timeline{
    position: relative;
    background-color: #222222;
    width: 100%;
    height: 45px;
    display: flex;
    justify-content: center;
    background-image: url("/wp-content/themes/cafedeflore/assets/images/dot.png");
    background-repeat: repeat-x;
    background-position: center center;
}
.history__timeline-fixed{
    position: fixed;
    left: 30px;
    bottom: 30px;
    width: calc(100vw - 60px);
}

.history__timeline > div{
    width: calc(100% - 240px);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.history__timeline-dot{
    position: relative;    
    width: 50px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.history__timeline-dot span{
    position: absolute;
    top: 0;
    display: inline-block;
    white-space: nowrap;
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    transform: translateY(-50%);
    color: var(--third-color);
    opacity: 0;

    -webkit-transition: all 0.5s var(--cubic-bezier-1);
    -moz-transition: all 0.5s var(--cubic-bezier-1);
    -ms-transition: all 0.5s var(--cubic-bezier-1);
    -o-transition: all 0.5s var(--cubic-bezier-1);
    transition: all 0.5s var(--cubic-bezier-1);
}
.history__timeline-dot dot{
    display: block;
    position: relative;
    width: 9px;
    height: 9px;
    background-color: var(--second-color);
    border-radius: 10px;

    -webkit-transition: all 0.5s var(--cubic-bezier-1);
    -moz-transition: all 0.5s var(--cubic-bezier-1);
    -ms-transition: all 0.5s var(--cubic-bezier-1);
    -o-transition: all 0.5s var(--cubic-bezier-1);
    transition: all 0.5s var(--cubic-bezier-1);
}

.history__timeline-dot:hover span{
    top: -20px;
    opacity: 1;
}
.history__timeline-dot:hover dot{
    background-color: var(--third-color);
}

.history__timeline-dot.active span{
    top: -20px;
    opacity: 1;
}
.history__timeline-dot.active dot{
    border-radius: 0;    
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;    
    border-bottom: 12px solid var(--third-color);
    transform: translateY(-2px);
    background-color: transparent;
}

/*  */
.history__period > div.active .history__period-images{
    width: calc(100vw / 4 * 1.5);
    display: block;
}
.history__period > div.active .history__period-content{
    width: calc(100vw / 4 * 1.5);
    display: inline-block;
    animation: 1.4s ease 0s 1 historySlideDownToUp;
}
.history__period > div.active .history__period-thumb{
    width: 0;
}
@keyframes historySlideDownToUp {
    0% { transform: translateY(55px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

@media screen and (max-width: 1020px){ /* tablet screen */
    .history__period-thumb{    
        width: calc(100vw / 3);
    }
    .history__period-images{
        width: 0;
        display: none;
    }
    .history__period-images-date{
        opacity: 1;
    }
    .history__period-content{
        width: 0;
        display: none;
    }      
    .history__period > div.active .history__period-thumb{
        width: 0;
        display: none;
    }
    .history__period > div.active .history__period-images{
        width: calc(100vw / 3);
        display: block;
    }
    .history__period > div.active .history__period-content{
        width: calc(100vw / 2);
        display: inline-block;
    }

    .history__timeline > div{
        width: calc(100% - 60px);
    }
}

@media screen and (max-width: 645px){ /* phone screen */
    .cdf_history{
        left: 0;
        width: 100vw;
        height: fit-content!important;
    }
    .history__period{
        transform: unset!important;
        flex-direction: column;
        height: 100%;
    }
    .history__period > div{
        width: 100%;
        height: fit-content;
        flex-direction: column;
    }

    .history__period-thumb{    
        width: 100%;
        height: 150px;
    }
    .history__period-images{
        width: 0;
        height: 0;
        display: none;
    }
    .history__period-content{
        width: 0;
        height: 0;
        display: none;
    }

    .history__period-thumb-description > div:first-child{
        transform: translateY(-50%);
    }
    .history__period-thumb-description > div:last-child{
        display: none;
    }

    .history__period > div.active .history__period-thumb{
        width: 0;
        height: 0;
        display: none;
    }
    .history__period > div.active .history__period-images{
        width: 100%;
        height: 300px;
        display: block;
    }
    .history__period > div.active .history__period-content{
        width: 100%;
        height: fit-content;
        display: inline-block;
    }

    .history__timeline{
        display: none;
        transform: unset!important;
    }
    .history__period-fixed{
        position: relative;
        left: 0;
        top: 0;
    }
	.cdf_menu .menu_over__links{
	margin-top:-170px;
    }
	.carte__content-menu_select {
    width: 93% !important;
    }
}
/* ================ */

/* === CDF_ART-PARCOURS === */
.cdf_art-parcours{
    position: relative;
    left: 30px;
    width: calc(100vw - 60px);
    height: calc(100vh - 60px);   
    display: flex;
    flex-direction: column;
}
/*  */
.art-parcours__link{
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    z-index: 1;
}
.art-parcours__link a{
    width: 50%;
    height: 100%;
    display: flex;
	font-weight: 600;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    letter-spacing: 3px;
    color: var(--second-color);
    text-transform: uppercase;
    cursor: pointer;
    background-color: transparent;

    backdrop-filter: blur(0px);    

    -webkit-transition: all 0.5s var(--cubic-bezier-1);
    -moz-transition: all 0.5s var(--cubic-bezier-1);
    -ms-transition: all 0.5s var(--cubic-bezier-1);
    -o-transition: all 0.5s var(--cubic-bezier-1);
    transition: all 0.5s var(--cubic-bezier-1);
}
.art-parcours__link:hover a{
    color: white;
    backdrop-filter: blur(5px);  
}
.art-parcours__link a:hover{
    color: var(--third-color);
    background-color: rgba(0,0,0,0.5);
    backdrop-filter: blur(0px);;
}
/*  */
.art-parcours__images{
    position: absolute;
    z-index: 0;
    width: 100%;
    height: 100%;
    background-color: var(--main-color);
}
.art-parcours__images carousel{
    width: 100%;
    height: 100%;
    opacity: 0.8;
}

.cdf_viewer_art-parcours{
	position: fixed;
    top: 30px;
    left: 30px;
	max-height:100vh;
    z-index: 90;
    transform: translateY(170px);
    opacity: 0;
    pointer-events: none;
    user-select: none;
    transition: transform .7s ease, opacity .7s ease;
}
.cdf_viewer_art-parcours.active{
    pointer-events: all;
    user-select: all;
    transform: translateY(0);
    opacity: 1;
}

@media screen and (max-width: 645px){ /* phone screen */
    .cdf_viewer_art-parcours{
        /*top: 0;*/
        left: 0;
    }
    .cdf_art-parcours{
        left: 0;
        width: 100vw;
        height: 100vh;
    }
    .art-parcours__link{
        position: relative;
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
    }
    .art-parcours__link a{
        width: 100%;
        height: 50%;
    }
    .art-parcours__link a:first-child{
        box-shadow: inset 0 -10px 50px rgba(0,0,0,1), inset 0 -10px 10px rgba(0,0,0,0.5);
		background-color: rgba(0,0,0,0.3);
    }
    .art-parcours__link a:last-child{
        box-shadow: inset 0 10px 50px rgba(0,0,0,1), inset 0 10px 10px rgba(0,0,0,0.5);
		background-color: rgba(0,0,0,0.3);
    }
	carousel dots {
    bottom: 0px !important;
    }
}
/* ================== */

/* === CDF_CARTE === */
.cdf_carte{
    position: relative;
    left: 30px;
    width: calc(100vw - 60px);
    height: calc(100vh - 60px);   
    display: flex;    
}
/*  */
.carte__content{
    position: absolute;
    z-index: 1;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 280px);
    height: calc(100% - 140px);
    background-color: var(--second-color);
    display: flex;
    flex-direction: column;
	font-family: geometria;
}
.carte__content-menu_select{
    display: none;
    outline: none;
    letter-spacing: 2px;
    width: 80%;
    margin: 0 auto;
    margin-top: 30px;
    color: var(--fourth-color);
    font-size: 14px;
    text-transform: uppercase;
    border: 1px solid var(--fifth-color);
    background-color: var(--second-color);
    padding: 5px;
}

.carte__content-menu_select:hover{
    background-color: #f2f2f2;
    border-color: #999999;
}
.carte__content-menu{
    position: relative;
    width: 100%;
    height: 70px;
    display: flex;
    justify-content: space-between;
}
.carte__content-menu > div{
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    cursor: pointer;
    color: var(--third-color);
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 3px;
    border-bottom: 1px solid var(--fifth-color);
    background-color: #f1f1f1;
}
.carte__content-menu > div.active{
    color: var(--fourth-color);
    border-left: 1px solid var(--fifth-color);
    border-right: 1px solid var(--fifth-color);
    border-bottom: 1px solid transparent;
    background-color: var(--second-color);
}
.carte__content-submenu{
    position: relative;
    width: 100%;
    height: 70px;
    border-bottom: 1px solid var(--fifth-color);
}
.carte__content-submenu > div{
    position: absolute;  
    top: 0;
    left: 0;  
    width: 100%;
    height: 100%;
    display: none;
    align-items: center;
    justify-content: center;
    color: var(--third-color);    
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 3px;
}
.carte__content-submenu > div > span{
    margin: 0 20px;
    padding: 10px 0;
    cursor: pointer;
}
.carte__content-submenu > div.active{
    display: flex;
	padding-right: 20px;
}
.carte__content-submenu > div > span.active{
    color: var(--fourth-color);
}
/*  */
.carte__content-items{
    position: relative;
    width: 100%;
    padding: 0 20px;
    flex-grow: 1;
    overflow-y: auto;
}
.carte__content-items > div{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;    
    padding-top: 15px;
	padding-bottom:50px;
    display: none;
    flex-direction: column;
}
.carte__content-items > div.active{
    display: flex;
}
.carte__content-items-line{
    position: relative;
    width: 100%;
    display: none;
    margin: 15px 0;
    background-image: url("/wp-content/themes/cafedeflore/assets/images/dot.png");
    background-repeat: repeat-x;
    background-position: center left;
}
.carte__content-items-line.active{
    display: flex;
}

.carte__items-name{
    width: fit-content;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 0 10px 0 40px;
    background-color: var(--second-color);
}
.carte__items-price{
    position: absolute;
    top: 0;
    right: 0;
    padding: 0 40px 0 10px;
    background-color: var(--second-color);
}
.carte__items-description{
    position: absolute;
    top: 100%;
    left: 0;
    font-style: italic;
    color: var(--fifth-color);
    font-size: 14px;
    padding: 0 10px 0 40px;
}
.carte__border{
    z-index: 1;
    user-select: none;
    pointer-events: none;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 140px);
    height: calc(100% - 70px);
    border-radius: 7px 7px 0 0;
    overflow:hidden;
}
.carte__border > div:last-child{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-top: 70px solid transparent;
    border-left: 70px solid var(--fourth-color);
    border-right: 70px solid var(--fourth-color);
    filter: drop-shadow(0 2px 5px rgba(0,0,0,0.7));
}
.carte__border > div:first-child{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-top: 70px solid var(--fourth-color);
    border-left: 70px solid transparent;
    border-right: 70px solid transparent;
    filter: drop-shadow(0 0 5px rgba(0,0,0,0.7));
}
/*  */
.carte__images{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background-color: var(--main-color);
}
.carte__images carousel{
    width: 100%;
    height: 100%;
    opacity: 0.6;
}

@media screen and (max-width: 1020px){ /* tablet screen */
    .carte__content{
        width: calc(100% - 210px);
        height: calc(100% - 105px);
    }
    .carte__border{
        width: calc(100% - 70px);
        height: calc(100% - 35px);
    }
    .carte__content-menu > div{
        font-size: 12px;
    }
}

@media screen and (max-width: 645px){ /* phone screen */
    .cdf_carte{
        left: 0;
        width: 100vw;
    }
    .carte__content-menu_select{
        display: block;
    }
    .carte__content-menu{
        display: none;
    }
    .carte__content{
        width: 100%;
        height: 100%;
    }
    .carte__content-items-line{
        left: 50%;
        transform: translateX(-50%);
        width: calc(100% - 0px);
        margin: 18px 0; /* CHANGER LA MARGIN EN JS, en fonction de la hauteur de la description */
    }
    .carte__border, .carte__images{
        display: none;
    }
    .carte__content-menu_select{
        border: none;
		font-family: Geometria;
        font-weight: bold;
    }
    .carte__content-menu_select:hover{
        background-color: unset;
    }
    .carte__content-submenu{
        border: none;
    }
    .carte__content-submenu > div{
        justify-content: flex-start;
        overflow-x: scroll;
        white-space: nowrap;
    }
	.carte__items-name {
    margin-right: 90px;
    }
	.carte__content-items-line.active{
    display: flex;
	flex-wrap:wrap;
    }
    .carte__items-description{
    position: relative;
    }
	.carte__content-items-line{
    background-image:none;
    }
	.shop__fabric {
    /*top: 50px !important;*/
    }
	.shop__products {
    margin-top: 50px;
    }
}

/* =================== */

/* === CDF_GALLERY === */

.cdf_gallery{
    position: relative;
    left: 30px;
    width: calc(100vw - 60px);
    min-height: calc(100vh - 60px);   
    display: flex;    
    background-color: var(--main-color);
}
.cdf_gallery *{
    box-sizing: border-box;
}
.cdf_gallery .gallery__grid-wrapper{
    width: 100%;
    height: 100%;
    background-color: black;
    overflow-x: hidden;
    overflow-y: auto;
}
.cdf_gallery .gallery__grid-wrapper img{
	max-width: 100%;
	height: auto;
	vertical-align: middle;
	display: inline-block;
}
.cdf_gallery .gallery__grid-wrapper > div{
	display: flex;
	justify-content: center;
	align-items: center;
    cursor: pointer;
    opacity: 0.5;

    -webkit-transition: all 0.5s var(--cubic-bezier-1);
    -moz-transition: all 0.5s var(--cubic-bezier-1);
    -ms-transition: all 0.5s var(--cubic-bezier-1);
    -o-transition: all 0.5s var(--cubic-bezier-1);
    transition: all 0.5s var(--cubic-bezier-1);
}
.cdf_gallery .gallery__grid-wrapper > div:hover{
    opacity: 1;
}
.cdf_gallery .gallery__grid-wrapper > div > img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 0px;
}
.normal{
	width:auto;
	height:300px;
}
.cdf_gallery .gallery__grid-wrapper{
	display: grid;
	grid-gap: 10px;
	grid-template-columns: repeat(auto-fit, minmax(284px, 1fr));
	grid-auto-rows: 300px;
	grid-auto-flow: dense;
}
@media screen and (max-width: 645px){
	.normal{
	 width:48% !important;
    }
	.cdf_gallery .gallery__grid-wrapper{
	display: flex !important;
	flex-wrap:wrap !important;
   }
	
}
.cdf_gallery .gallery__grid-wrapper .wide{
	grid-column: span 2;
}
.cdf_gallery .gallery__grid-wrapper .tall{
	grid-row: span 2;
}
.cdf_gallery .gallery__grid-wrapper .big{
	grid-column: span 2;
	grid-row: span 2;
}

.gallery__slider{
    position: fixed;
    top: 30px;
    left: 30px;
    z-index: 1;
    width: calc(100vw - 60px);
    height: calc(100vh - 60px);
}
.gallery__slider::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    background-color: black;
    opacity: .7;
    width: 100%;
    height: 100%;
}

.gallery_slider__actions,
.gallery_slider__images{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% - 60px);
    max-width: 550px;
    max-height: calc(100% - 60px);
    aspect-ratio: 1 / 1;
}

.gallery_slider__images img{
    position: absolute;
    user-select: none;
    pointer-events: none;
    opacity: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.gallery_slider__images img.active{
    opacity: 1;
}

.gallery_actions__arrow{
    position: absolute;
    top: 50%;
    left: -25px;
    width: 50px;
    height: 50px;
    transform: translate(-50%, -50%);
}

.gallery_actions__right{
    left: unset;
    right: -25px;
    transform: translate(50%, -50%);
}

.gallery_actions__arrow svg{
    width: 50px;
    height: 50px;
    stroke: var(--third-color);
    transition: stroke .7s ease;
    cursor: pointer;
}
.gallery_actions__arrow:hover svg{
    stroke: var(--second-color);
}

.gallery_actions__close{
    position: absolute;
    top: -10px;
    right: -10px;
    width: 20px;
    height: 20px;
    transform: translate(100%, -100%);
}

@media screen and (max-width: 645px){ /* phone screen */
    .cdf_gallery{
        left: 0;
        width: 100vw;
    }
    .cdf_gallery .gallery__grid-wrapper > div{
        opacity: 1;
    }
}

/* ====================== */

/* === CDF_INSTAFLORE === */

.cdf_instaflore{
    position: relative;
    left: 30px;
    width: calc(100vw - 60px);
    min-height: calc(100vh - 60px);   
    display: flex;    
}

.instaflore__container{
    background-color: black;
    position: relative;
    width: 100%;
    height: fit-content;
}

@media screen and (max-width: 645px){ /* phone screen */
    .cdf_instaflore{
        left: 0;
        width: 100vw;
    }
	.contact__content-infos {
    flex-wrap: wrap !important;
    }
}

/* ================= */

/* === CDF_SHOP === */

.cdf_shop{
    position: relative;
    left: 30px;
    width: calc(100vw - 60px);
    height: calc(100vh - 60px);     
    display: flex;    
}

.shop__fabric{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 115px;
   /*background: url(https://shop.cafedeflore.fr/wp-content/themes/cdfshop/assets/images/auvent.png) repeat-x transparent;*/
	background: url(https://cdf.mapreprod.fr/wp-content/uploads/2023/03/cdf-devanture.svg) repeat-x transparent;
    z-index: 2;
}

.shop__fabric a{
    position: absolute;
    top: 50px;
    left: 50%;
    width: 283px;
    height: 86px;
    transform: translate(-50%, -50%);
    text-align: center;
    outline: none;
    font-family: 'BG_regular';
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 2px;
}

.shop__fabric a svg{
    fill: #2f5761;
    height: 100%;
    width: 85%;
}

.shop__fabric a div{
    position: relative;
    color: #777;
    text-align: center;
    font-family: 'bg_regular';
    text-transform: uppercase;
    font-size: 9px;
    letter-spacing: 3px;
    position: absolute;
    top: 60px;
    left: 50%;
    transform: translate(-50%,0);
}

.shop__fabric a div span::before{
    content: "";
    height: 1px;
    width: 22px;
    background-color: #777;
    display: inline-block;
    margin-right: 5px;
    margin-bottom: 2px;
}
.shop__fabric a div span::after{
    content: "";
    height: 1px;
    width: 22px;
    background-color: #777;
    display: inline-block;
    margin-left: 1px;
    margin-bottom: 2px;
}

.shop__products{
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.shop__products > div{
    width: calc(100% - 60px);
    max-width: 1500px;
}
.shop_products__title{
    position: relative;
    margin-top: 120px;
    color: #2f5761;
    font-family: 'BG_regular';
    font-size: 18px;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.shop_products__title::before{
    content: '';
    position: absolute;
    top: 85%;
    left: 0;
    width: 80px;
    height: 3px;
    background-color: var(--third-color);
    border-radius: 5px;
}

.shop_products__container{
    margin-top: 50px;
    display: flex;
    justify-content: space-between;
}
.shop_products__container > div{
    position: relative;
    width: calc(33% - 60px);
    aspect-ratio: 1 / 1.1;
    max-height: 40vh;    
}
@media screen and (max-width: 645px){ /* phone screen */
    .shop_products__container > div{
        width: calc(100% - 0px);   
		margin-bottom: 50px;
    }
	.shop_products__action {
		position: relative !important;
	}
	.shop_products__container{
		margin-top: 50px;
		flex-direction: column;
	}
	.cdf_shop {
		height: 200vh;
	}
	.cdf_gallery {
		min-height: calc(0vh - 60px);
	}
	.cdf_instaflore {
    min-height: calc(0vh - 60px);
    }
	.cdf_menu a {
		font-size:15px;
		margin-top: 10px;
	}
	.shop_products__action a{
    font-size: 10px !important;
   }
	
}
.shop_products__container > div img{
    width: calc(100% - 30px);
    height: calc(100% - 30px);
    object-fit: cover;
    transition-duration: 1s;
    margin-left: 10px;
    margin-top: 10px;
}
.shop_products__container > div img:hover{
    width: calc(100% - 20px);
    height: calc(100% - 20px);
margin-bottom: 10px;
margin-right: 10px;
   
}
.shop_products__container > div::before{
    content: '';
    position: absolute;
    top: -0px;
    left: -0px;
    width: calc(100% + 0px);
    height: calc(100% + 0px);
    background-color: var(--second-color);
    z-index: -1;
    border: 6px solid #2f5761;
   
}
.shop_products__container > div a{
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translate(-50%, 50%);
    background-color: var(--third-color);
    padding: 18px 24px;
    text-decoration: none;
    color: black;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'BG_regular';
    font-size: 16px;
    white-space: nowrap;
}

.shop_products__action{
    position: absolute;
    bottom: 20px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.shop_products__action a{
    background-color: var(--fourth-color);
    padding: 18px 26px;
    text-decoration: none;
    color: white;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'BG_regular';
    font-size: 12px;
	margin-top: 40px;
}
.shop_products__action a:hover{
    background-color:white ;
    color: var(--fourth-color);
}

.shop__background-image{
    position: absolute;
    z-index: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background-color: var(--second-color);
}
.shop__background-image::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 70%;
    background: rgb(0,0,0,0);
    background: linear-gradient(0deg, rgba(0,0,0,0) 0%, rgba(255,255,255,1) 90%);
    z-index: 1;
}
.shop__background-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

@media screen and (max-width: 645px){ /* phone screen */
    .cdf_shop{
        left: 0;
        width: 100vw;
    }
    .shop_products__container{
        /*flex-direction: column;*/
        width: 100%;
        align-items: center;
    }
    .shop_products__container > div a {
      text-indent: -9999px;
      line-height: 0;
    }
    .shop_products__container > div a::after {
      content: "Voir +";
      text-indent: 0;
      display: block;
    }
}

/* =================== */

/* === CDF_CONTACT === */

.cdf_contact{
    position: relative;
    left: 30px;
    width: calc(100vw - 60px);
    height: calc(100vh - 30px);
    display: flex;
    padding-bottom: 30px;   
}
/*  */
.contact__images{
    width: 25%;
    height: 100%;
    background-color: black;
}
.contact__images carousel{
    width: 100%;
    height: 100%;
}
/*  */
.contact__content{
    width: 50%;
    height: 100%;
    box-sizing: border-box;
    padding: 25px;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    overflow-y: hidden;
}

.contact__content > div{
    width: 100%;
}

.contact__content-address h2{
    margin: 0;
    line-height: 30px;
    font-size: 30px;
    font-family: 'BG_regular';    
    font-weight: normal;
    text-transform: uppercase;
}

.contact__content-address span{
    margin-top: 5px;
    display: flex;
    align-items: center;
    font-family: 'geometria';
    font-size: 16px;
    line-height: 24px;
}

.contact__content-address span svg{
    width: 20px;
    height: 20px;
    stroke: var(--third-color);
}

.contact__content-infos{
    margin-top: 25px;
    display: flex;
}
.contact__content-infos span{
    margin: 5px 0;
    font-family: 'geometria';
    font-size: 16px;
}
.contact__content-infos span:nth-child(n+2){
    margin-left: 20px;
}
.contact__content-infos span a{
    color: var(--fourth-color);
    text-decoration: none;

    -webkit-transition: all 0.5s var(--cubic-bezier-1);
    -moz-transition: all 0.5s var(--cubic-bezier-1);
    -ms-transition: all 0.5s var(--cubic-bezier-1);
    -o-transition: all 0.5s var(--cubic-bezier-1);
    transition: all 0.5s var(--cubic-bezier-1);
}
.contact__content-infos span a:hover{
    color: var(--third-color);
}

.contact__content-hour{
    margin-top: 25px;
    display: flex;
}

.contact__content-moment{
    margin-top: 25px;
    display: flex;
    flex-direction: column;
}
.contact__content-moment span{
    font-family: 'geometria';
    font-size: 16px;
}

.contact__content-form{
    margin-top: 0px;
}

.contact__content-form .wpcf7{
    width: 100%;
}

.contact__content-form form{
    width: 100%;
    display: flex;
    flex-direction: column;
}

.contact__content-form .contact-row{
    justify-content: space-between;
    /*margin-bottom: 25px;
	margin-right:40px;*/
}

.contact__content-form .contact-col{
    display: flex;
    justify-content: space-between;
}
.input-left{
	margin-right:5px;
	width:50%;
}
.input-right{
	margin-left:5px;
	width:50%;
}

.contact__content-form .contact-row span{
    display: block;
    width: 100%;
}

.contact__content-form .contact-row span input{
    display: block;
    width: 100%;
    padding: 15px;
}

.contact__content-form .contact-row span textarea{
    width: 100%;
    min-height: 150px;
    resize: vertical;
    padding: 15px;
}


.contact__content-form .contact-row-acceptance{
    font-size: 0.875rem;
    color: #4d4d4d;
}
.contact__content-form .contact-row-acceptance > span{
    width: fit-content;
    margin-right: 10px;
    display: flex;
    align-items: center;
}

.contact__content-form  .contact-row-acceptance > span > span > span{
    width: fit-content;
    margin: 0;
}

.contact__content-form  .contact-row-acceptance span input{
    width: 15px;
    margin: 0;
}

.contact__content-form input[type=submit]{
    border: none;
    background-color: var(--fourth-color);
    color: var(--third-color);
    width: 100%;
    min-width: 100%;
    padding: 15px;
    letter-spacing: 3px;
    font-size: 16px;
}
.contact__content-form input.wpcf7-submit:disabled{
    opacity: 0.3;
}

/*  */
.contact__map{
    width: 25%;
    height: 100%;
}

.contact__map > .wpgmza_map{
    height: 100%!important;
}

@media screen and (max-width:1024px) {
    .cdf_contact .contact__images{
        display: none;
    }

    .cdf_contact .contact__content{
        width: 70%;
    }

    .cdf_contact .contact__map{
        width: 30%;
    }
}

@media screen and (max-width: 645px) {
    .cdf_contact{
        left: 0;
        width: 100vw;
    }
    .cdf_contact{
        flex-direction: column;
        height: fit-content;
    }

    .cdf_contact .contact__content{
        width: 100%;
        height: fit-content;
    }

    .cdf_contact .contact__map{
        width: 100%;
        height: 350px;
    }
}

/* ===CDF_MENTIONS=== */
.cdf_mentions{
    position: relative;
    left: 30px;
    width: calc(100vw - 60px);
    height: calc(100vh - 30px);
    display: flex; 
}

.cdf_mentions .viewer__content{
    width: 60%;
}

.cdf_mentions .sep{
    width: 100%;
    height: 1px;
    background-color: #eee;
    margin: 26px 0;
}

.cdf_mentions .viewer__content-title{
    margin-top: 40px;
}

@media screen and (max-width: 1020px){
    .cdf_mentions .viewer__content{
        width: 75%;
    }
}

@media screen and (max-width: 645px){
    .cdf_mentions .viewer__content{
        width: 100%;
    }
	.margin-edit{
		margin-left: 20px !important;
	}
}

.loop-title{
margin: 20px 0;
font-size: 30px;
letter-spacing: 3px;
text-align: center;
text-transform: uppercase;
padding: 0 20px;
}
.loop-content{
width: 100%;
height: auto;
display: inline-block;
padding: 0 20px;
}
.span1{
  font-size: 14px;
  font-weight: bold;
  color: var(--third-color);
  letter-spacing: 3px;
  text-transform: uppercase;	
}
.span2{
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 20px;
  font-weight: bold;
  color: var(--second-color);
}
.description-prix{	
top: 0;
left: 0;
width: 100%;
height: 100%;
display: flex;
flex-direction: column;
justify-content: center;
padding: 0 20px;	
}
.bg-prix{
   background-color: rgba(var(--fourth-color-rgb),0.8);
   height: 200px;
   width: 100vh;
   background-size: cover;
   background-position: center;
   background-blend-mode: overlay;
}	
#sec-2{
		display:none;
}
 .full-width-button {
  display: block;
  width: 100%;
  padding: 10px; 
  background-color: #f0c68e; 
  color: white;
  border: none;
  border-radius: 0px;
  margin-top: 35px;
  margin-bottom: -1px;
  font-family: geometria;
}
.accordion-header {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #ddd;
}

.accordion-content {
  display: none;
  background-color: #f9f9f9;
  padding: 10px;
}

.accordion-item.active .accordion-content {
  display: block;
}
.accordion{
		width: 100%;
}
.accordion-item.active .accordion-header {
  background-color: #ccc;
}

.accordion-item .icon {
  width: 10px;
  height: 10px;
  border-left: 2px solid black;
  border-bottom: 2px solid black;
  transform: rotate(-45deg);
  transition: transform 0.2s ease;
}

.accordion-item.active .icon {
  transform: rotate(45deg);
}

.viewer__content:not(.active) {
    display: block;
	z-index: 1;
	padding:20px;
}
.dot-line {
  width: 45%;
  height: 2px;
  background-image: radial-gradient(circle at 1px 1px, rgba(0,0,0,1) 1px, rgba(0,0,0,0) 1px);
  background-size: 18px 18px;
  margin-top: 0px;
  margin-bottom: 30px;
}
.dot-line2 {
  width: 45%;
  height: 2px;
  background-image: radial-gradient(circle at 1px 1px, rgba(0,0,0,1) 1px, rgba(0,0,0,0) 1px);
  background-size: 18px 18px;
  margin-top: 0px;
  margin-bottom: 30px;
}
.dot {
  margin-top: -8px;
  margin-bottom: 30px;
  margin-right: 10px;
  margin-left: 10px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #f0c68e;
}
.dot1 {
  margin-top: -8px;
  margin-bottom: 30px;
  margin-right: 10px;
  margin-left: 10px;
  width: 22px;
  height: 20px;
  border-radius: 50%;
  background-color: #f0c68e;
}
.fas{
  margin-top: -8px;
  margin-bottom: 30px;
  margin-right: 10px;
  margin-left: 10px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  color: #f0c68e;
  Font-size: 20px;
}
.haut{
		text-align: center;
        background-color: #0f3e3b;
        color: white;
		padding:1px;
}

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


body #cdawrap {
  justify-self: start;
}



.js .loading:before, .js .loading:after {
  content: "";
  z-index: 1000;
  position: fixed;
}

.js .loading:before {
  width: 100%;
  height: 100%;
  background: var(--color-bg);
  top: 0;
  left: 0;
}

.js .loading:after {
  width: 60px;
  height: 60px;
  opacity: .4;
  background: var(--color-link);
  border-radius: 50%;
  margin: -30px 0 0 -30px;
  animation: .7s linear infinite alternate forwards loaderAnim;
  top: 50%;
  left: 50%;
}

@keyframes loaderAnim {
  to {
    opacity: 1;
    transform: scale3d(.5, .5, 1);
  }
}

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

a:hover {
  color: var(--color-link);
  outline: none;
}

a:focus {
  background: #d3d3d3;
  outline: none;
}

a:focus:not(:focus-visible) {
  background: none;
}

a:focus-visible {
  background: none;
  outline: 2px solid red;
}

.unbutton {
  font: inherit;
  cursor: pointer;
  background: none;
  border: 0;
  margin: 0;
  padding: 0;
}

.unbutton:focus {
  outline: none;
}

.oh {
  position: relative;
  overflow: hidden;
}

.oh__inner {
  will-change: transform;
  display: inline-block;
}

.line {
  transform-origin: 0;
  white-space: nowrap;
  will-change: transform;
}

main {
  width: 100%;
  height: 100vh;
  grid-template-rows: auto auto;
  grid-template-columns: 100%;
  display: grid;
}

.frame {
  color: var(--color-title);
  padding: var(--page-padding);
  grid-gap: .5rem;
  z-index: 2;
  pointer-events: none;
  width: 100%;
  grid-template: "title"
                 "prev"
                 "sponsor"
                 "nav"
                 / 100%;
  grid-area: 1 / 1 / 2 / 2;
  justify-content: start;
  justify-items: start;
  font-size: .75rem;
  display: grid;
  position: relative;
}

.frame a {
  pointer-events: auto;
}

.frame a:not(.frame__title-back) {
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.frame a:not(.frame__title-back):before {
  content: "";
  height: 1px;
  width: 100%;
  transform-origin: 0%;
  background: currentColor;
  transition: transform .3s;
  position: absolute;
  top: 90%;
}

.frame a:not(.frame__title-back):hover:before {
  transform-origin: 100%;
  transform: scaleX(0);
}

.frame__title {
  grid-area: title;
  display: flex;
}

.frame__title-main {
  margin: 0;
  font-size: .75rem;
  font-weight: 300;
}

.frame__title-back {
  align-items: flex-end;
  display: flex;
  position: relative;
}

.frame__title-back span {
  display: none;
}

.frame__title-back svg {
  fill: currentColor;
}

.frame__prev {
  grid-area: prev;
}

.frame__demos {
  flex-wrap: wrap;
  grid-area: nav;
  justify-self: stretch;
  gap: 1.5rem;
  display: flex;
}

.content {
  z-index: 1;
  grid-row: 2;
  line-height: 1;
  position: relative;
}

.preview-open .content {
  pointer-events: none;
}

.demo-3.preview-open .content {
  z-index: 3;
}
/*
.content__item {
  width: 100%;
  max-width: 500px;
  margin: 0;
  padding: calc(3rem + 5vh) 2rem 4rem;
}

.content__item:nth-child(2n) {
  padding-top: calc(3rem + 15vh);
}
*/
.content__item-img-wrap {
  width: 100%;
  aspect-ratio: .75;
  cursor: pointer;
  will-change: transform;
  position: relative;
  overflow: hidden;
  margin-bottom: -350px;
}

.demo-3 .preview__item .content__item-img-wrap {
  width: auto;
  height: 100%;
  aspect-ratio: auto;
}

.content__item-img {
  width: 100%;
  height: 100%;
  will-change: transform;
  background-position: 50%;
  background-size: cover;
}

.content__item-title {
  margin: 0 0 .5rem;
  font-family: kudryashev-d-excontrast-sans, sans-serif;
  font-size: clamp(2rem, 3.25vw, 1.85rem);
  font-weight: 300;
}

.content__item-title .oh__inner {
  padding-top: .75vw;
  line-height: 1.2;
}

.content__item-caption {
  margin-top: .75rem;
}

.content__overlay {
  background: var(--color-bg-overlay);
  width: 150vmax;
  height: 150vmax;
  pointer-events: none;
  will-change: transform;
  z-index: 3;
  position: fixed;
  top: calc(50% - 75vmax);
  left: calc(50% - 75vmax);
}

.overlay__inner {
  background: var(--color-bg-overlay);
  width: 100%;
  height: 100%;
  position: relative;
}

.demo-1 .content__overlay {
  background: none;
  transform: rotate(45deg);
}

.demo-2 .content__overlay {
  border-radius: 50%;
  transform: scale(0);
}

.demo-3 .content__overlay {
  width: 100vw;
  height: 100%;
  top: 0;
  left: 0;
  transform: scaleY(0);
}

.preview {
  height: 100vh;
  width: 100%;
  pointer-events: none;
  z-index: 4;
  color: var(--color-text-preview);
  display: grid;
  position: fixed;
  top: 0;
  left: 0;
}

.preview__item {
  opacity: 0;
  pointer-events: none;
  grid-gap: 1rem;
  will-change: clip-path;
  grid-template: "title"
                 "subtitle"
                 "meta"
                 "box-left"
                 "box-right"
                 "." 1fr
                 / 100%;
  grid-area: 1 / 1 / -1 / -1;
  padding-top: 2rem;
  display: grid;
}

.preview__item--current {
  opacity: 1;
  pointer-events: auto;
}

.preview__item-img-outer {
  width: 60vw;
  max-width: 800px;
  grid-area: 1 / 1 / -1 / -1;
  place-self: center;
}

.demo-1 .preview__item-img-outer {
  aspect-ratio: .7;
  width: 33vw;
  transform: rotate(45deg);
}

.demo-2 .preview__item-img-outer, .demo-3 .preview__item-img-outer {
  height: 100%;
  width: 36vw;
}

.preview__item-img-wrap {
  width: 100%;
  height: 100%;
  will-change: transform;
  position: relative;
  overflow: hidden;
}

.preview__item-img {
  width: 100%;
  height: 100%;
  will-change: transform;
  background-position: 50%;
  background-size: cover;
}

.preview__item-title {
  will-change: transform;
  grid-area: title;
  place-self: center;
  margin: 0;
  padding-top: 1vw;
  font-family: kudryashev-d-excontrast-sans, sans-serif;
  font-size: clamp(3rem, 24vw, 17rem);
  font-weight: 300;
  line-height: 1;
}

.preview__item-subtitle {
  color: var(--color-title-preview);
  grid-area: subtitle;
  justify-self: center;
  margin: 0;
  font-weight: 300;
  position: relative;
}

.preview__item-meta {
  grid-area: meta;
  justify-self: center;
  position: relative;
}

.preview__item-box {
  padding: var(--preview-padding);
  max-width: 450px;
  will-change: transform;
  text-align: center;
  justify-self: center;
  position: relative;
}

.preview__item-box--right {
  grid-area: box-right;
}

.preview__item-box--left {
  grid-area: box-left;
}

.preview__item-box-title {
  color: var(--color-title-preview);
  margin: 0;
  font-weight: 400;
}

.preview__item-box-desc {
  will-change: transform, opacity;
}

.preview__back {
  cursor: pointer;
  z-index: 300;
  opacity: 0;
  pointer-events: none;
  will-change: transform, opacity;
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
}

.preview-open .preview__back {
  pointer-events: auto;
}

.preview__back svg {
  pointer-events: none;
  stroke: var(--color-text-preview);
  stroke-width: 1px;
  transition: stroke .3s;
}

@media screen and (min-width: 53em) {


  .frame {
    height: 100vh;
    grid-gap: 2rem;
    grid-template: "title prev sponsor"
                   "nav nav nav"
                   / auto auto 1fr;
    grid-area: 1 / 1 / -1 / -1;
    align-content: space-between;
  }

  .content {
    height: 100vh;
    grid-area: 1 / 1 / -1 / -1;
    align-content: center;
    align-items: center;
    display: flex;
  }

  .content__item {
    height: 100%;
    width: 25%;
  }

  .preview__item {
    grid-template: "title title title" 1fr
                   "box-left subtitle box-right"
                   "box-left meta box-right"
                   "box-left . box-right"
                   / 30% 1fr 30%;
    padding-top: 0;
  }

  .preview__item-title {
    grid-row: 1 / span 4;
  }

  .preview__item-box--right {
    text-align: right;
    justify-self: end;
  }

  .preview__item-box--left {
    text-align: left;
    justify-self: start;
  }

  body #cdawrap {
    justify-self: end;
  }
}

/*# sourceMappingURL=index.d046a61c.css.map */

.titre-div{
	font-family:kudryashevheadline-s;
	color: var(--third-color); 
	text-align: center;
}
.para-div{
	font-family:kudryashevheadline-s;
	max-height: 70vh; 
	overflow-y: auto;
	padding-right:50px	
}	
.text-div{
	margin-left:100px;
	margin-right:50px;
	margin-top:50px;
	margin-bottom:100px	
}	
@media only screen and (max-width: 767px) {
	.content__item-img{
	width: 100%;
	height: 60% !important;
	}
	#pc{
		display:none;
	}
	#mobile{
		display:block;
	}
	.content__item {
     width: 100%;
     padding: 0;
     margin: 0;
    }
	.para-div{
	margin-left: 20px;
    margin-right: 0px;
	margin-top:0px;
	color:white;
	font-size:18px;
	height:42vh;
	}
	.titre-div{
	margin-top: 20px;
    overflow: visible;
    margin-right: 20px;
    margin-left: 20px;
	}
   .img-boucle{
	width: 100vh;
    height: 200px;
    margin-top: -12px;
    }	
	.text-div{
	margin:10px;
	height : 100vh;	
    }
}
	
	
.slider {
  width: 100%;
  overflow: hidden;
}
.slider-items {
  display: flex;
  width: 300%;
}
.item {
  flex: 1 0 100%;
}
.item img {
  width: 100%;
  height: auto;
}
.prev, .next {
  position: absolute;
  top: 50%;
  z-index: 1;
  font-size: 30px;
  font-weight: bold;
  color: white;
  cursor: pointer;
  transition: 0.6s ease;
  border-radius: 50%;
  padding: 10px;
  background-color: rgba(0,0,0,0.5);
  text-align: center;
}
.prev {
  left: 0;
}
.next {
  right: 0;
}

.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}
@keyframes loaderAnim {
	to {
		opacity: 1;
		transform: scale3d(0.5,0.5,1);
	}
}

.unbutton {
	background: none;
	border: 0;
	padding: 0;
	margin: 0;
	font: inherit;
	cursor: pointer;
}

.unbutton:focus {
	outline: none;
}

.oh {
	position: relative;
	overflow: hidden;
}

.oh__inner {
	will-change: transform;
	display: inline-block;
	font-size: 30px;
	color:#b3ac99;
}

.line {
	transform-origin: 0;
	white-space: nowrap;
	will-change: transform;
}

main {
	display: grid;
	width: 100%;
	height: 100vh;
	grid-template-rows: auto auto;
	grid-template-columns: 100%;
}

.frame {
	color: red;
	padding: 1rem 2rem;;
	position: relative;
	grid-gap: 0.5rem;
	z-index: 2;
	font-size: 0.75rem;
	pointer-events: none;
	grid-template-columns: 100%;
	grid-template-rows: auto auto auto auto;
	display: grid;
	grid-template-areas: 'title' 'prev' 'sponsor' 'nav';
	justify-content: start;
	justify-items: start;
	grid-area: 1 / 1 / 2 / 2;
	width: 100%;
}

.frame a {
	pointer-events: auto;
}

.frame a:not(.frame__title-back) {
	white-space: nowrap;
	overflow: hidden;
	position: relative;
}

.frame a:not(.frame__title-back)::before {
	content: '';
	height: 1px;
	width: 100%;
	background: currentColor;
	position: absolute;
	top: 90%;
	transition: transform 0.3s;
	transform-origin: 0% 50%;
}

.frame a:not(.frame__title-back):hover::before {
	transform: scaleX(0);
	transform-origin: 100% 50%;
}

.frame__title {
	grid-area: title;
	display: flex;
}

.frame__title-main {
	font-size: 0.75rem;
	margin: 0;
	font-weight: 300;
}

.frame__title-back {
	position: relative;
	display: flex;
	align-items: flex-end;
}

.frame__title-back span {
	display: none;
}

.frame__title-back svg {
	fill: currentColor;
}

.frame__prev {
	grid-area: prev;
}

.frame__demos {
	grid-area: nav;
	display: flex;
	flex-wrap: wrap;
	justify-self: stretch;
	gap: 1.5rem;
}

.content {
	font-family: kudryashev-d-excontrast-sans;
	line-height: 1;
	position: relative;
	z-index: 1;
	grid-row: 2;
	background-color:none;
}

.preview-open .content {
	pointer-events: none;
}
/*
.content__item {
	width: 100%;
	max-width: 500px;
	padding: calc(3rem + 5vh) 2rem 4rem;
	margin: 0;
}

.content__item:nth-child(even) {
	padding-top: calc(3rem + 15vh);
}
	*/

.content__item-img-wrap {
	overflow: hidden;
	position: relative;
	width: 100%;
	aspect-ratio: 0.50;
	cursor: pointer;
	will-change: transform;
}


.content__item-img {
	background-size: cover;
	background-position: 50% 50%;
	width: 100%;
	height: 100%;
	will-change: transform;
}

.content__item-title {
	font-size: clamp(2rem, 3.25vw, 1.85rem);
	font-family:kudryashevheadline-s;;
	font-weight: 300;
	margin: 0 0 0.5rem;
	text-align:center;
}

.content__item-title .oh__inner {
	padding-top: 0.75vw;
	line-height: 1.0;
    font-family: kudryashevheadline-s;
}

.content__item-caption {
	margin-top: 0.75rem;
	color:#b3ac99;
	font-size:20px;
	font-family: kudryashevheadline-s;
}

.content__overlay {
	background:none;
	position: fixed;
	top: calc(50% - 75vmax);
	left: calc(50% - 75vmax);
	width: 150vmax;
	height: 150vmax;
	pointer-events: none;
	will-change: transform;
	z-index: 3;
}

.overlay__inner {
	background: none;
	width: 100%;
	height: 100%;
	position: relative;
}

.demo-1 .content__overlay {
	transform: rotate(45deg);
	background: transparent;
}

.preview {
	height: 100vh;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	display: grid;
	pointer-events: none;
	z-index: 4;
	color: #b3ac99;
}

.preview__item {
	grid-area: 1 / 1 / -1 / -1;
	opacity: 0;
	pointer-events: none;
	display: grid;
	grid-gap: 1rem;
	padding-top: 2rem;
	grid-template-columns: 100%;
	grid-template-rows: auto auto auto auto auto 1fr;
	grid-template-areas: 'title' 'subtitle' 'meta' 'box-left' 'box-right' '...';
	will-change: clip-path;
}

.preview__item--current {
	opacity: 1;
	pointer-events: auto;
}

.preview__item-img-outer {
	align-self: center;
	justify-self: center;
	width: 60vw;
	max-width: 800px;
	justify-self: center;
	grid-area: 1 / 1 / -1 / -1;
}

.demo-1 .preview__item-img-outer {
	transform: rotate(45deg);
	aspect-ratio: 0.7;
	width: 33vw;
}

.preview__item-img-wrap {
	width: 100%;
	height: 100%;
	position: relative;
	overflow: hidden;
	will-change: transform;
}

.preview__item-img {
	background-size: cover;
	background-position: 50% 50%;
	width: 100%;
	height: 100%;
	will-change: transform;
}

.preview__item-title {
	justify-self: center;
	grid-area: title;
	font-size: clamp(3rem, 24vw, 17rem);
	font-family: kudryashevheadline-s;;
	font-weight: 300;
	margin: 0;
	line-height: 1;
	will-change: transform;
	padding-top: 1vw;
	background-color:#131312;
}

.preview__item-subtitle {
	justify-self: center;
	position: relative;
	grid-area: subtitle;
	font-weight: 300;
	margin: 0;
	color: #923538;
}

.preview__item-meta {
	justify-self: center;
	position: relative;
	grid-area: meta;
}

.preview__item-box {
	padding: 0 2rem 1rem;;
	position: relative;
	max-width: 450px;
	will-change: transform;
	justify-self: center;
	text-align: center;
}

.preview__item-box--right {
	grid-area: box-right;
}

.preview__item-box--left {
	grid-area: box-left;
}

.preview__item-box-title {
	margin: 0;
	font-weight: 400;
	color: #923538;
}

.preview__item-box-desc {
	will-change: transform, opacity;
}

.preview__back {
	cursor: pointer;
	position: absolute;
	left: 90%;
	z-index: 300;
	bottom:87%;
	will-change: transform, opacity;
	background-color: #f0c68e;
    border-radius: 900%;
    height: 35px;
    width: 35px;
}

.preview-open .preview__back {
	pointer-events: auto;
}

.preview__back svg {
	pointer-events: none;
	stroke: white;
	stroke-width: 2px;
	transition: stroke .3s;
    border-radius: 999px;
    padding: 4px;
}

@media screen and (min-width: 53em) {
	
	.frame {
		grid-area: 1 / 1 / -1 / -1;
		height: 100vh;
		grid-gap: 2rem;
		align-content: space-between;
		grid-template-columns: auto auto 1fr;
		grid-template-rows: auto auto;
		grid-template-areas: 'title prev sponsor' 'nav nav nav';
	}
	.content {
		height: 100vh;
		display: flex;
		align-items: center;
		align-content: center;
		grid-area: 1 / 1 / -1 / -1;
	}
	.content__item {
		height: 100%;
		width: 25%;
	}
	.preview__item {
		padding-top: 0;
		grid-template-columns: 30% 1fr 30%;
		grid-template-rows: 1fr auto auto auto;
		grid-template-areas:'title title title'
						'box-left subtitle box-right'
						'box-left meta box-right'
						'box-left ... box-right';
	}
	.preview__item-title {
		grid-row: 1 / span 4;
	}
	.preview__item-box--right {
		justify-self: end;
		text-align: right;
	}
	.preview__item-box--left {
		justify-self: start;
		text-align: left;
	}
	body #cdawrap {
		justify-self: end;
	}
}

.menu_reseau a{
	color:white;
}
.menu_reseau {
	margin-top: 30vh;
}
@media only screen and (max-width: 767px) {
.btn-menu{
	background-color:#204f53;
	padding: 7px;
    border: 0;
    margin-top: 10px;
}
}
.btn-menu{
	background-color:#204f53;
	padding: 15px;
    border: 0;
    margin-top: 0px;
}
.btn-menu:hover a{
	color:var(--third-color);
}
.btn-menu a{
	font-family: geometria;
	color:white;
	float: left;
    margin-left: 60px; 
	font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 3px;
}
.viewer__thumbs-thumbs {
  overflow: auto;
  -ms-overflow-style: none; /* masquer la barre de défilement pour Internet Explorer */
  scrollbar-width: none; /* masquer la barre de défilement pour Firefox */
}

.viewer__thumbs-thumbs::-webkit-scrollbar {
  display: none; /* masquer la barre de défilement pour Chrome et Safari */
}
body {
  overflow: auto;
  -ms-overflow-style: none; /* masquer la barre de défilement pour Internet Explorer */
  scrollbar-width: none; /* masquer la barre de défilement pour Firefox */
}

body::-webkit-scrollbar {
  display: none; /* masquer la barre de défilement pour Chrome et Safari */
}
