html,body{
    /*font-family: 'DM Serif Display', serif;*/
    font-family: 'Tajawal', sans-serif;
    color:#232426;
	scroll-behavior: smooth;
}
nav{
    height: 100px;
    position: fixed;
    width: 100%;
    background: white;
    display:flex;
    align-items: center;
    justify-content: center;
	z-index: 1000
}
a{
	text-decoration: none;
	color: #232426;
}
p{
    font-size:1.15em;
    color: #57595e;
    padding: 1em 2em 0 0;
}
h2{
	font-family: 'Zen Antique Soft', serif;
	font-size: 2.5em;
	color: #44BBAE;
}
#navigation{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width:90vw;
}
#menu{
    display: flex;
    flex-direction: row;
    max-width: 700px;
    justify-content: space-between;
    font-size: 1.3em;
	width: 100%;
	margin: 0 40px;
}
#burger{
	display: none;
}
#logo{
    height: 40px;
    width: auto;
}
#menuCache {
    position: fixed;
    height: 100vh;
    width: 100%;
    background: #ffffff;
    display: flex;
    align-items: center;
	top:-110vh;
	left:0;
	transition: 1s ;
	
}
#menuCache a{
	font-size: 2em;
	padding:20px;
}
#menuCache ul {
    display: grid;
    height: 50vh;
    width: 100%;
    justify-content: inherit;
    text-align: center;
}
#page1 {
  min-height: 100vh;
  width: 100%;
	display: flex;
	justify-content: center;
}
video{
	margin-top: 100px;
	width: 100%;
}
.item-a {
  grid-area: titre;
	margin: 0 20px;
}
.item-b {
  grid-area: txt;
	display: flex;
flex-direction: column;
justify-content: start;
align-content: center;
}
.item-c {
  grid-area: photo;
}
#imgMesure{
	width: 50%;
}
#page2 {
    height: auto;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 5vh 0 ;
}

#page2 > div{
	padding: 0 20px;
	width: 90%;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;				
}
#txtDevis{
	width:50%;
}
#ensembleTXT{
	margin: 0 20px;
}
#page2 img{
    max-width: 100%;
    height:auto;
	min-width: 300px;
}
#btFormulaire{
    margin: 50px auto;
    width: 75%;
    background-color: #44BBAE;
    text-align: center;
}
.boutonFormulaire {
	display:inline-block;
	text-align: center;
	cursor:pointer;
	color:#ffffff;
    font-family: 'Zen Antique Soft', serif;
	font-size:1.5em;
	padding:22px 76px;
	text-decoration:none;
}
#page3 {
    height:auto;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: #f9f3f3;
	padding: 5vh 0;
}
#exempleCuisine{
	text-align:center;
	width: 90%;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 15px;
	
}
#exempleCuisine::-webkit-scrollbar{
	width: 0;
}
#exempleCuisine p{
    text-align: left;
}
#exempleCuisine img{
max-width: 100%;
/*aspect-ratio: 1/1.5;
object-fit: cover;
border-radius: 5px;*/
}
#vitrine{
	min-width: 350px;
    width: 25%;
}
#vitrine img{
	width : 100%;
}
#googlemap{
	min-height: 250px;
    width: 25%;
}
#googlemap iframe{
	width: 100%;
	height: 100%;
}
.bleu{
    color:#107166;
}
.grandir {
  transition: background-size 1s; 
}
.grandir:hover {
  background-size: 150%; 
}
#noscuisines{
    width:90vw;
    min-height: 8em;
}
#noscuisines p{
    width: 70%;
	margin-bottom: 20px;
}
#page4{
	height: auto;
	width: 100%;
	padding: 5vh 0;
}
#contact{
	width: 90%;
max-width: 1800px;
display: flex;
margin: 0 auto;
flex-wrap: wrap;
}
#contact > div {
	padding: 20px;
	flex-grow: 1;
}
#contact img {
	max-width:100%;
}
#textContact{
	width: 300px;
}

.visible{
	top:0 !important;
}
@media  screen and (max-width: 900px) {
	#menu {
		display: none;
	}
	#burger{
		display: block;
	}
	#exempleCuisine {
        grid-template-columns: initial;
	}
	#txtDevis{
	width:90%;
	}
	#imgMesure{
	width: auto;
	}
	#btFormulaire {
    width: 95%;
	}
}