.Presentation-section{
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    position: relative;
    padding:80px 50px  !important;
}
.quotes{
    position: absolute;
    left:22%;
    bottom:75%;
    z-index: -1;
}

.circle{
    background-color:  cadetblue;
    width: 120px;
    height:120px;
    border-radius: 100%;
    position: relative;
}
.circle i{
    position: absolute;
    top: 50%;
    left: 40%;
    transform: translate(-50%,-50%);
    font-size: 6rem;

}
.citation{
    font-size: 1.5rem;
    width:500px;

}
.presentation{
    display: flex;
    justify-content: center;
    align-items: center;
    gap:3rem;
    flex-wrap: wrap;

}

.card {
    overflow:hidden  !important;
    height:300px  !important;
    width:250px  !important;
    border-radius:  100px 100px 0px 0px  !important;
}

.card img{
    height:100%;
    object-fit:cover;

}

.text-presentation{
    width:500px;
}

.Favorites-section{
    padding:50px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.favorites{
    display: flex;
    justify-content: center;
    align-items: center;
    gap:1rem;
    flex-wrap: wrap;

}
.favorites-meal{
    display: flex;
    flex-direction: column;
    gap:1rem;
    text-align: center;
    /* width:250px; */
}

.card2:hover{
    animation:shadow-drop-center .4s cubic-bezier(.25,.46,.45,.94) both; -webkit-animation:shadow-drop-center .4s cubic-bezier(.25,.46,.45,.94) both;
}

@keyframes shadow-drop-center{
    0%{box-shadow:0 0 0 0 transparent}
    100%{box-shadow:0 0 20px 0 rgba(0,0,0,.35)}
}

/* .meal-title{
    width:150px;
    
} */

.card2 {
    overflow:hidden;
    height:250px;
    width:200px;
    border-radius:  100px 100px 0px 0px;
}

.card2 img{
    height:100%;
    object-fit:cover;
}

.Schedule-section{
    padding:20px 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap:3rem;
    background-color: #5f9ea0;
    flex-wrap: wrap;
    color:#dbdbdb


}

.grey{
    color:#f4f4f4;

}

.bold.pink{
    color:#FFDAC6;
}

.Introduction-section{
    background-color:  #F9F5EB;
    padding:50px 50px;
    margin-top:50px;
}

.intro-container{
    margin: auto;
}

.intro-container{
    display: flex;
    justify-content: center;
    align-items: start;
    gap:3rem;
    flex-wrap: wrap;
    padding-bottom:20px ;

}
.intro-img{
    width:400px;
    height: 250px;
}
.intro-text{
    width:500px;
}

.intro-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.Menu-Section{
    padding: 20px 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap:2rem;
    position: relative;
}

.btn-menu {
    width:200px;
    padding: 10px 25px;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    outline: none;
    text-align: center;

  }

.btn-menu {
    background:  #FFDAC6;
    border: none;
    z-index: 1;
  }
  .btn-menu:after {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    top: 0;
    right: 0;
    z-index: -1;
    background-color: cadetblue;
    transition: all 0.3s ease;
  }
  .btn-menu:hover {
    color: #fff;
  }
  .btn-menu:hover:after {
    left: 0;
    width: 100%;
  }
  .btn-menu:active {
    top: 2px;
  }


.square-block{
    display: flex;
    gap:2rem;
    margin-top:0.5rem;
    flex-wrap: wrap;
}

.square1{
    overflow:hidden;
    height:380px;
    width:350px;

}

.square2{
    overflow:hidden;
    height:300px;
    width:350px;

}

.square1 img, .square2 img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.float{
    animation: floating 6s ease-in-out 0s infinite;
}

@keyframes floating{
	0%{
		transform: translateY(0px);
	}
	50%{
		transform: translateY(-10px);
}
	100%{
		transform: translateY(0px);
}
}

/* aside menu */

.big-container {
    background-color: rgb(251, 251, 247);
    border: double #FFDAC6 13px;
    padding-top: 20px;
    padding-bottom: 50px;
    width: 700px;
    font-size: 13px;
    height:100vh;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: fixed;
    z-index: 1000;
    display: none;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.closing-cross-menu{
    align-self: flex-end;
    cursor: pointer;
    font-size: 20px;
    padding-top:20px;
}

.menu-introduction{
    text-align: center;
}
.carte-container{
    margin:auto;
    width:450px;
}

.meal{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    display: none;
  }
  

/* fin aside menu */

@media screen and (max-width: 768px){
   
    img[alt="logo"]{
        width:100px;
    }
    .quotes{
        left:10%;
        top:3%;
    }
    
    .circle{
        width: 85px;
        height:85px;
    }
    .circle i{
        position: absolute;
        top: 50%;
        left: 40%;
        font-size: 5rem;
    
    }
    .citation{
        width:350px;
    }

    .text-presentation{
        width:400px;
    }
    .intro-text{
        width:400px;
    }


    .big-container {
        width: 400px;
        font-size: 10px;
    }
    
    .closing-cross-menu{
        align-self: flex-end;
        cursor: pointer;
    }
    
    .menu-introduction{
        text-align: center;
    }
    .carte-container{
        width:300px;
    }
    
}

@media screen and (min-width: 768px){
    img[alt="logo"]{
        width:300px;
    }

    
}

@media screen and (min-width: 800px){
    .quotes{
        left:10%;
        top:3%;

    
    } 
}



@media screen and (min-width: 1024px){

    .quotes{
        left:22%;
        bottom:75%;
    
    }
        

}