* {
  box-sizing: border-box;
    padding: 0;
    margin: 0;
}



/* scroll behavior on html */
html {
  scroll-behavior: smooth;
}
/* scrollbar styling non-standard version */
html::-webkit-scrollbar {
  width: 8px;
  background-color: #1e2024; 
}
html::-webkit-scrollbar-thumb {
    background: #505050; 
  border-radius: 10px;
}
/* scrollbar styling standard version */
html {
  scrollbar-color: #505050 rgba(30,32,36,1);
  scrollbar-width: thin;
}


a{
    text-decoration:none;
}

/* Solid border */
hr.solid {
  border-top: 1px solid #1e2024;
    opacity: 0.2;
}

.wrapper
{
  display: grid;
  grid-template-columns: auto;
width: 100vw;
}



.fond{
    background: #1E2024;
    width: 100vw;
height: 100vh;
}

.fondpage{
background-image: url("../imagesite/black.jpg"); 
background-repeat: "repeat";
}

.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}



.footerfin{
    background-color:#1E2024;
    color: white;
    padding: 25px; 
    text-align: center;
}

 .grid 
{
        grid-gap: 68px;
        grid-template-rows: none;
        grid-template-columns: repeat(12, 68px);
        grid-auto-rows: auto;
        grid-auto-columns: auto;
        grid-auto-flow: row;
        -moz-column-gap: 48px;
        column-gap: 48px;
        align-content: center;
        align-items: stretch;
        justify-content: initial;
        justify-items:stretch
    }

.block__content {
        display: grid;
        grid-auto-rows: min-content;
        grid-column-gap: var(--cols-gutter);
        -moz-column-gap: var(--cols-gutter);
        column-gap:var(--cols-gutter)
    }


header {
padding: 0 2rem;
background: #1E2024;
-webkit-box-shadow: 0px 1px 5px 0px rgba(0,0,0,0.72);
-moz-box-shadow: 0px 1px 5px 0px rgba(0,0,0,0.72);
box-shadow: 0px 1px 5px 0px rgba(0,0,0,0.72);
        z-index: 300;
  }  

.bandeau
{
position: fixed;
top: 0;
left: 0;
right: 0;
    width: 100%;
}



.footer {

bottom: 0;
left: 0;
right: 0;
width: 100%;
  }   



main {
   grid-row-start:1;
grid-row-end:1;
grid-column-start:1;
grid-column-end:13;
     max-width: 990px;
    width: 100%;
    position: relative;
  }  

body{

    background: #5D5D5D;
}


/*----NAVBAR----*/


.navbar {
width: 100%;
max-width:1000px;
height: 80px;
margin: 0 auto;
display: flex;
align-items: center;
justify-content:space-around;
font-family: "Livvic", serif;
font-weight:200;
position: relative;
    z-index: 300;
}

.navbar .links{
display: flex;
gap: 2rem;
color: #fff;
}



.navbar-left {
    position: absolute;
    left: -10px;

}

.navbar-center {
    position: absolute;
    left: 50%;

}

.navbar > ul > li.active > a {
cursor: default;
    font-size: 1rem;
    color: #f5bb41;
    text-decoration:none;
}

.navbar > ul > li > a {
cursor: default;
font-size: 1rem;
    color: #fff;
    text-decoration:none;
}

.navbar > ul > li > a:hover {
cursor: pointer;
font-size: 1rem;
    color: #f5bb41;
    text-decoration:none;
}



/*----NAVBAR - BURGER----*/



nav{
	position: relative;
    background: #1e2024;
}

.logo{
	
	position: absolute;
    left: 15px;
    top: 8px;
	z-index: 1;
}

.logo2{
	
	position: absolute;
    left: -80px;
    top: 8px;
	z-index: 1;
}


nav > ul{
	width: min-content;
	display: flex;
	z-index: 20;
}
nav > ul li{
	position: relative;
	margin-right: 0;
	z-index: 10;
}

nav > ul li a{
	display: block;
	color: #fff;
	background: #1e2024;
	font-size: 16px;
	padding: 30px 30px;
    font-family: "Livvic", serif;
    font-weight: 100;
	text-decoration: none;
	transition: all .3s ease;
}

nav > ul li.active a{
	color: #f5bb41;
}

.active1 {
	color: #f5bb41;
}


nav > ul li li a{
	display: block;
	color: #fff;
	background: #282B32;
	font-size: 14px;
	padding: 15px 30px 15px 40px;
	text-decoration: none;
	transition: all .3s ease;
}


li a:hover{
	background: #1e2024;
	color: #f5bb41;
}

li li a:hover{
	background: #1e2024;
	color: #f5bb41;
}

nav > ul li > a i.fa{
	position: absolute;
	top: 15px;
	left: 12px;
	font-size: 28px;
}

/*====SUB MENU=====*/
nav li ul{
	position: absolute;
	min-width: 200px;
	display: none;
    padding: 2px 0 0 0;
    left: -30px;
    box-shadow: 0px 1px 5px 0px rgba(0,0,0,0.72);
}

nav li > ul li a{
	padding: 10px;
	font-size: 16px;
	border-bottom: .5px solid #808080;
}


nav li > ul li:first-child a{
	padding: 10px;
	text-transform: none;
	border-top: .5px solid #808080;
}


nav li > ul li ul{
	position: absolute;
	right: -150px;
	top: 0;
    background: #282B32;
}
nav li:hover > ul{
	display: block;
}
input[type="checkbox"],
label.toggleSubmenu{
	display: none;
}
nav label.toggleMenu{
	color: #fff;
	padding: 15px 40px;
	position: relative;
	cursor: pointer;
	display: none;
}

/*Hamburger*/

nav label.toggleMenu .fa{
position: absolute;
    top: 25px;
    right: 25px;
    font-size: 24px;
    color: #fff;
}


/*Survol oui ou non selon écran*/


@media (min-width: 851px) {
  .showHide2  {
    display: none;}
}



@media (max-width: 850px) {
  .showHide  {
    display: none;}
}


.signature1 { 
  font-size: 16px;
  font-weight:200;
font-family: "Livvic", serif;
	color: #f5bb41;
}

.signature2 { 
  font-size: 16px;
  font-weight:200;
font-family: "Livvic", serif;
	color: #fff;
}

/*====Mobile=====*/
@media (max-width: 880px){
	header{
		margin: 0;
		padding: 0;
        margin-right: 0;
        box-shadow: 0px 1px 5px 0px rgba(0,0,0,0.72);
	}
    
    
	nav{
		overflow: hidden;
		background: #1e2024;
		width: 100%;
	}	
    
	nav ul{
		display: block;
		max-height: 0;
		transition: max-height 0.3s;
		width: 100%;
	}
    

      nav label.toggleMenu .fa::before{
		content: "\2630";
		color: #fff;
	}

    	nav input:checked ~ label.toggleMenu .fa::before{
		content: "\274C";
        color: #fff;
	}
    
    nav label.toggleMenu .fa{
		position: absolute;
		top: 25px;
		right: 30px;
	}
    
	nav label.toggleMenu{
		display: block;
	}
	input:checked ~ ul{
		display: block;
		position: relative;
		max-height: 5000px;
		transition: max-height 2s ease;
	}
	nav label.toggleSubmenu{
		position: absolute;
		top: 0;
		right: 0;
		width: 100%;
		height: 100%;
		display: block;
		cursor: pointer;

	}
    
    nav > ul >li:first-child a{
	border-top: .5px solid #808080;
}
    
    nav ul li ul a {
         font-size: 14px;
    }
       
    
    nav li ul{
	position: absolute;
	min-width: 210px;
	display: none;
    padding: 2px 0 0 0;
}
    
	nav > ul > li{
		margin: 0 !important;
        text-align: left;
        margin-left: 0;
        border-bottom: .5px solid #808080;
	}
    
    nav > ul li a{

	padding: 10px 30px;
    font-family: "Livvic", serif;
    font-weight: 100;
        font-size: 14px;
	text-decoration: none;
	transition: all .3s ease;
}

    
li li a:hover{
	background: #1e2024;
	color: #f5bb41;
}
    
    nav > ul > li> ul {
        position: absolute;
		margin: 0 !important;
        text-align: left;
        text-indent: 50px;
        width: 100%;
        left: 0;
	}
    

    
	nav li > ul > li ul{
		position: absolute;
		margin-left: 0;
		top: auto;
	}
    

    
	input:checked ~ a{
		background: #1e2024;
		color: #f5bb41;
	}
    

	nav label.toggleSubmenu .fa::before{
		content: "\f0d7";
		color: #fff;
	}
    
    
	nav label.toggleSubmenu .fa{
		position: absolute;
		top: 15px;
		right: 50px;
	}
	nav input:checked ~ label.toggleSubmenu .fa::before{
		content: "\f0d8";
        color: #f5bb41;
	}
    


}



h1
{
  font-size: 50px;
  font-family:"Livvic", serif;
    letter-spacing: 3px;
  color: #f5bb41;
  padding:16px;text-align: center;
  font-weight:bold;
}


h2
{
  font-size: 30px;
  font-family:"Livvic", serif;
  color: #fff;
  padding:16px;
  font-weight:bold;
  text-align:left;

}

/*----Cartes de la galerie----*/

.ombre {box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);}

.ombre2 {box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.6), 0 6px 20px 0 rgba(0, 0, 0, 0.25);}


div.gallery {
	padding: 0;
    max-width:  900px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    text-decoration: none;
    height: auto;
}

div.gallery:hover {
	transition: box-shadow .2s ease-in-out;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.6), 0 6px 20px 0 rgba(0, 0, 0, 0.25);
     text-decoration: none;
}



div.gallery img {
    text-decoration: none;
  width: 100%;
  height: auto;
padding: 0;
}
    


div.gallery:hover img {
  width: 100%;
  height: auto;
    text-decoration: none;
}

div.desc {
  padding:  10px;
  text-align: left;
  background: #383C44;
  position: relative;
    text-decoration: none;
}



.titre2lignes {
   overflow: hidden;
   display: -webkit-box;
   -webkit-line-clamp: 2;
           line-clamp: 2; 
   -webkit-box-orient: vertical;
  min-width: 140px;
  height: 40px;
}

/*---- Cartes de l'accueil ----*/



div.gallery2 {
	padding: 0;
    max-width:  450px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    text-decoration: none;
    height: auto;
}

div.gallery2:hover {
	transition: box-shadow .2s ease-in-out;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.6), 0 6px 20px 0 rgba(0, 0, 0, 0.25);
     text-decoration: none;
}



div.gallery2 img {
    text-decoration: none;
  width: 100%;
  height: 250px;
border-radius: 0;
padding: 0;
}
    


div.gallery2:hover img {
	transition: box-shadow .2s ease-in-out;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.6), 0 6px 20px 0 rgba(0, 0, 0, 0.25);
    text-decoration: none;
}

div.desc2 {
  padding:  20px;
  text-align: left;
  background: #313439;
  border-radius: 0;
  position: relative;
  text-decoration: none;
}

/*---- Cartes Technique ----*/



div.technique a{
	padding: 0;
    max-width:  450px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    font-size: 16px;
  font-weight:100;
  font-family:"Livvic", serif;
        height: auto;
    color: #fff;
  float: left;
  background: transparent;
  transition: background-color .3s;
  border: .5px solid #ddd;
  margin: 6px;
}

div.technique:hover {
	transition: box-shadow .2s ease-in-out;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.6), 0 6px 20px 0 rgba(0, 0, 0, 0.25);
      font-size: 16px;
  font-weight:100;
font-family: "Livvic", serif;
	color: #f5bb41;
         border: 1px solid #fff;
}



div.carteactive {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.6), 0 6px 20px 0 rgba(0, 0, 0, 0.25);
}

div.technique p {
    font-size: 16px;
     font-weight:100;
    font-family: "Livvic", serif;
	color: #fff;
}

div.technique:active p {
    font-size: 16px;
     font-weight:100;
    font-family: "Livvic", serif;
	color: #f5bb41;
}



div.desctech {
  padding:  6px;
  text-align: center;
  background: #313439;
  position: relative;
  text-decoration: none;
    border: 1px solid #7E7E7E;
}


.responsivetech {
  padding: 8px;
  float: left;
  width: 24.99999%;
}

@media only screen and (max-width: 800px) {
  .responsivetech {
    width: 49.99999%;
padding: 3px ;
  }
}


/*---- Bouton voir plus----*/


.button {
  background-color: #2a2e35;
  border: 1px solid #f5bb41;
    font-family: "Livvic", serif;
    font-weight:100;
  color: #f5bb41;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
}



/*---- Galerie : Carte et Détails----*/

.titre { 
  font-size: 16px;
  font-weight:200;
font-family: "Livvic", serif;
	color: #fff;
}

.titrej { 
  font-size: 16px;
  font-weight:200;
  text-align: justify; 
font-family: "Livvic", serif;
	color: #fff;
}

.texte { 
  font-size: 18px;
  font-weight:200;
font-family: "Livvic", serif;
	color: #fff;
}

.texteg { 
  font-size: 18px;
  font-weight:400;
font-family: "Livvic", serif;
color: #f5bb41;
}

.textej { 
  font-size: 18px;
  font-weight:200;
  text-align: justify; 
font-family: "Livvic", serif;
	color: #fff;
}

.titremore { 
  font-size: 22px;
  font-weight:400;
font-family: "Livvic", serif;
	color: #fff;
}

.titremini { 
  font-size: 11px;
  font-weight:100;
font-family: "Livvic", serif;
	color: #CDCDCD;
}


.titre16 { 
  font-size: 16px;
  font-weight:200;
font-family: "Livvic", serif;
	color: #f5bb41;
}

.titre18 { 
  font-size: 18px;
  font-weight:100;
font-family: "Livvic", serif;
	color: #f5bb41;
}

.titre2 { 
  font-size: 18px;
  font-weight:300;
font-family: "Livvic", serif;
	color: #f5bb41;
}

.titre24 { 
  font-size: 18px;
  font-weight:100;
font-family: "Livvic", serif;
	color: #fff;
}


.titre36 { 
  font-size: 30px;
  font-weight:300;
font-family: "Livvic", serif;
	color: #fff;
}

.titrejustifie { 
  font-size: 15px;
  font-weight:100;
font-family: "Livvic", serif;
text-align: justify;
	color: #fff;
}

.dimensions { 
  font-size: 12px;
  font-weight:300;
font-family: "Livvic", serif;
	color: #777;
}

.dimensions2 { 
  font-size: 12px;
  font-weight:100;
font-family: "Livvic", serif;
	color: #f5bb41;
}

.parution { 
  font-size: 11px;
  font-weight:200;
font-family: "Livvic", serif;
	color: #777;
    margin-bottom: 10px;
}

.droits { 
  font-size: 10px;
  font-weight:100;
font-family: "Livvic", serif;
	color: #fff;
}


/*----FOOTER columns----*/
.boite {
  display: block; 
  grid-auto-flow: column; 
  grid-template-columns: 0.9fr 0.9fr 1.3fr;  
  grid-template-rows: 1fr; 
  gap: 0px 30px; 
max-width: 1000px;
	margin:auto;
}


/* tablet breakpoint */
@media (min-width:880px) {
    .boite {
        display: grid;
        grid-auto-rows: 1fr;
        grid-template-columns: 0.9fr 0.9fr 1.3fr;
    }
}



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


.flotte {
float: left;
     padding-right: 10px;
}


.container{
	max-width: 1000px;
	margin:auto;
}
.row{
	display: flex;
	flex-wrap: wrap;
    justify-content: space-between;
}
ul{
	list-style: none;
}

.footer{
	background-color: #1E2024;
    padding: 20px;
    margin:auto;

}
.footer-col{
   width: 32,9999999%;
    text-align: left;
   padding: 20px;
}


.footer-col h4{
    font-family: "Livvic", serif;
	font-size: 18px;
	color: #f5bb41;
	margin-bottom: 35px;
	font-weight: 100;
	position: relative;
}
.footer-col h4::before{
	content: '';
	position: absolute;
	left:0;
	bottom: -10px;
	background-color: #fff;
	height: 1px;
	box-sizing: border-box;
	width: 90px;
}
.footer-col ul li:not(:last-child){
	margin-bottom: 10px;

}

.footer-col ul li a{
    font-family: "Livvic", serif;
	font-size: 16px;
	color: #ffffff;
	text-decoration: none;
	font-weight: 200;
    text-align: left; 
	display: inline-block;
	transition: all 0.3s ease;
}

.footer-col .links li {
  list-style: none;
}

.footer-col .links li a {
  text-decoration: none;
  color: #fff;
}

.footer-col .links li a:hover {
  color: #f5bb41;
}

/*responsive*/

    
@media(max-width: 767px){
  .footer-col{
    width: 50%;
    margin-bottom: 30px;
}
    
}
@media(max-width: 574px){
  .footer-col{
    width: 100%;
}
}




/*----RESPONSIVE images et tables----*/

.responsivegallery{
  max-width: 100%;
  height: auto;
}



.responsive {
  padding: 10px;
  float: left;
  width: 32.99999%;
}


@media only screen and (max-width: 800px) {
  .responsive {
    width: 49.99999%;
padding: 10px ;
  }
}

@media only screen and (max-width: 800px){
    .titre {
font-size: 14px;
  }
}

.responsive2 {
  padding: 15px;
  float: left;
  width: 49.99999%;
}


@media only screen and (max-width: 800px) {
  .responsive2 {
    width: 100%;
padding: 10px 0;
  }
}


.responsive3 {
  padding: 10px 16px;
  float: left;
  width: 32.99999%;
}


@media only screen and (max-width: 800px) {
  .responsive3 {
    width: 100%;
padding: 10px 16px;
  }
}


.responsive4 {
  padding: 10px 15px;
  float: left;
  width: 24.99999%;
}


@media only screen and (max-width: 800px) {
  .responsive4 {
    width: 49.99999%;
padding: 20px ;
  }
}


.clearfix:after {
  content: "";
  display: table;
  clear: both;
}
	
.center {
  text-align: center;
}



.rimage {
  max-width: 100%;
  height: auto;
}



#cssmenu ul {font-size:0;}



.center {
  text-align: center;
}

/*---- Pagination ----*/

.pagination {
  display: inline-block;
}

.pagination a {
  color: #fff;
  float: left;
  padding: 8px 16px;
  background: transparent;
  font-weight:400;
  font-family:"Livvic", serif;
  text-decoration: none;
  transition: background-color .3s;
  border: .5px solid #ddd;
  margin: 6px;
}

.pagination a.active {
  background-color: #f5bb41;;
  color: #282b32;
  border: .5px solid #ddd;
}

.pagination a:hover:not(.active) {
    background-color: #f5bb41;
    color: #282b32;
}




.cadre {
	border: 1px groove #e6e3e6;
    padding: 5px;
  text-decoration:none;
}







.flex-container {
  display: flex;
  flex-wrap: wrap;
  text-align: center;
}

.flex-container2 {
  display: flex;
  flex-wrap: wrap;
  text-align: center;
  align-items: baseline;
}

.flex-item-left {
  padding: 10px;
  flex: 50%;
 
}

.flex-item-right {
  padding: 10px;
  flex: 50%;

}

/* Responsive layout - makes a one column-layout instead of a two-column layout */
@media (max-width: 800px) {
  .flex-item-right, .flex-item-left {
    flex: 100%;
  }
}



