@keyframes animation-delay {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes out-loader {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes out-overlay {
  0% {
    opacity: 1;
    visibility: visible;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}
.checkbox-1 {
  margin-top: -40px;
  display: none;
}

.label-1 {
  cursor: pointer;
  width: 23px;
  height: 20px;
  margin-top: -61px;
  margin-left: 285px;
}

.heart-1 {
  display: flex;
  align-self: flex-end;
  align-items: center;
  justify-content: center;
  margin-top: -3px;
  margin-right: 2px;
  font-size: 25px;
  opacity: 0.9;
  color: black;
  background-color: transparent;
  --webkit-text-stroke: 1px black;
  transition: all 0.3s ease;
}
@media (min-width: 1024px) {
  .heart-1 {
    margin-left: 150px;
  }
}

.checkbox-1:checked ~ .label-1 .heart-1 {
  color: #9356DC;
  font-weight: 900;
}

.checkbox-page {
  margin-top: -40px;
  display: none;
}

.label-page {
  cursor: pointer;
  width: 23px;
  height: 20px;
  margin-left: -140px;
}

.heart-page {
  font-size: 22px;
  opacity: 0.9;
  padding-right: 150px;
}

.checkbox-page:checked ~ .label-page .heart-page {
  color: #9356DC;
  font-weight: 900;
}

.loader-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  animation: out-overlay 2s ease forwards;
}

.loader {
  width: 50px;
  height: 50px;
  border: 5px solid #f3f3f3;
  border-top: 5px solid #3498db;
  border-radius: 50%;
  animation: spin 1s linear infinite, out-loader 5s ease forwards;
}

body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  visibility: visible;
  font-family: Roboto, sans-serif;
  overflow-x: hidden;
}
@media (min-width: 1024px) {
  body {
    margin: 0;
  }
}

.container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
  padding: 0 20px;
  box-sizing: border-box;
}
@media (min-width: 1024px) {
  .container {
    margin: 0;
  }
}

.headers {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 375px;
  height: 63px;
}
@media (min-width: 1024px) {
  .headers {
    width: 1270px;
    height: 96.34px;
  }
}

.log {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.log__logo {
  width: 197px;
  height: 36px;
  padding-top: 15px;
}

.pages-log {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 375px;
  height: 63px;
}
.pages-log__icon-header {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
}
.pages-log__icon-header a {
  text-decoration: none;
  color: inherit;
}
.pages-log__icon-header .fa-arrow-left {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgb(53, 53, 53);
  font-size: 19px;
  padding-right: 105px;
}
@media (min-width: 1024px) {
  .pages-log__icon-header .fa-arrow-left {
    margin-left: -900px;
  }
}
.pages-log__logo {
  width: 197px;
  height: 36px;
}

.location {
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25), 0px 4px 4px rgba(0, 0, 0, 0.1) inset;
  margin-bottom: -8px;
  margin-top: 1px;
  width: 375px;
  height: 50px;
  background: rgb(234, 234, 234);
  font-size: 18.5px;
  color: rgb(53, 53, 53);
}
@media (min-width: 1024px) {
  .location {
    width: 1270px;
    box-shadow: none;
  }
}

.location-icon {
  padding-right: 25px;
  color: rgb(53, 53, 53);
}

.titre {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: rgb(246, 246, 246);
  margin-top: 11px;
  width: 375px;
  height: 300px;
}
@media (min-width: 1024px) {
  .titre {
    width: 1270px;
    margin-top: 0;
    height: 230px;
  }
}
.titre__page {
  width: 275px;
  height: 68px;
  font-size: 25px;
  margin-top: 40px;
  display: flex;
  justify-content: center;
  text-align: center;
}
@media (min-width: 1024px) {
  .titre__page {
    text-wrap: nowrap;
  }
}
.titre__p {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 315px;
  height: 46px;
  color: rgb(53, 53, 53);
  font-size: 18px;
  line-height: 21.09px;
  text-align: center;
  margin-top: -10px;
}
@media (min-width: 1024px) {
  .titre__p {
    text-wrap: nowrap;
    font-size: 11px;
    margin-top: -50px;
  }
}

.list {
  display: flex;
  flex-direction: column;
  width: 375px;
  height: 440px;
}
@media (min-width: 1024px) {
  .list {
    width: 1270px;
    height: 228.38px;
  }
}

.list__titre {
  width: 275px;
  height: 31px;
  margin-top: 50px;
  margin-left: 20px;
  font-size: 24px;
  font-weight: bold;
}
@media (min-width: 1024px) {
  .list__titre {
    margin-left: 112px;
  }
}

.list__items {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
@media (min-width: 1024px) {
  .list__items {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }
}
.list__items--listItem {
  width: 335px;
  height: 72.38px;
  list-style-type: none;
}

.cards {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 375px;
  height: 1170px;
  background: rgb(246, 246, 246);
}
@media (min-width: 1024px) {
  .cards {
    width: 1270px;
    height: 730px;
  }
}
.cards .cards-titre {
  width: 275px;
  height: 48px;
  font-size: 24px;
  font-weight: bold;
  margin-top: 50px;
  margin-left: -60px;
  margin-bottom: -20px;
}
@media (min-width: 1024px) {
  .cards .cards-titre {
    width: 170px;
    margin-left: -870px;
  }
}
@media (min-width: 1024px) {
  .cards div {
    width: 1080px;
    height: 602px;
    gap: 100px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8%;
  }
}
.cards div a {
  text-decoration: none;
  color: inherit;
}

.footer {
  width: 375px;
  height: 207px;
  background: rgb(53, 53, 53);
  overflow: hidden;
}
@media (min-width: 1024px) {
  .footer {
    display: flex;
    flex-direction: row;
    width: 1270px;
    height: 114px;
    position: relative;
  }
}
.footer .footer-titre {
  color: white;
  width: 139px;
  height: 27px;
  font-family: Shrikhand;
  font-size: 22px;
  font-style: italic;
  margin-top: 0;
  padding-top: 20px;
  padding-left: 15px;
  padding-bottom: 20px;
  font-weight: bold;
  -webkit-text-stroke: 1px;
}
@media (min-width: 1024px) {
  .footer .footer-titre {
    margin-left: 150px;
    position: absolute;
    right: 0;
    bottom: -15px;
  }
}
.footer .footer-box {
  width: 205px;
  height: 115px;
  margin-top: -18px;
}
@media (min-width: 1024px) {
  .footer .footer-box {
    display: flex;
    flex-direction: row;
    margin-top: 77px;
    margin-left: 470px;
  }
}
.footer .footer-box p {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 14px;
  width: 290px;
  height: 25px;
  color: white;
  margin-top: -10px;
  white-space: nowrap;
}
.footer .footer-box .icon-restaurant {
  display: flex;
  flex-direction: row;
  width: 200px;
}
.footer .footer-box .icon-restaurant i {
  margin-right: 23px;
  width: 11px;
  height: 13px;
}
.footer .footer-box .icon-restaurant-2 {
  display: flex;
  flex-direction: row;
  width: 165px;
}
.footer .footer-box .icon-restaurant-2 i {
  margin-right: 23px;
  width: 11px;
  height: 13px;
}

.footer-1 {
  margin-top: 1110px;
}
@media (min-width: 1024px) {
  .footer-1 {
    margin-top: 1174px;
  }
}

.footer-2 {
  margin-top: 1000px;
}
@media (min-width: 1024px) {
  .footer-2 {
    margin-top: 1174px;
  }
}

.footer-3 {
  margin-top: 1180px;
}
@media (min-width: 1024px) {
  .footer-3 {
    margin-top: 1260px;
  }
}

.image {
  position: relative;
  width: 340px;
  height: 231px;
  -webkit-clip-path: inset(55px 0 0 0);
          clip-path: inset(55px 0 0 0);
  border-radius: 15px 15px 0 0;
  margin-top: -57px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 1024px) {
  .image {
    width: 492px;
  }
}

.page1-img {
  width: 375px;
  margin-top: 0;
  position: relative;
}
@media (min-width: 1024px) {
  .page1-img {
    width: 1270px;
    height: 430px;
    margin-top: -91px;
    -o-object-fit: cover;
       object-fit: cover;
    -webkit-clip-path: inset(90px 0 0 0);
            clip-path: inset(90px 0 0 0);
  }
}

.page2-img {
  margin-top: -97px;
  -webkit-clip-path: inset(97px 0 0 0);
          clip-path: inset(97px 0 0 0);
}

.pages-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  margin-top: -56px;
  width: 375px;
  height: 1170px;
  background: rgb(246, 246, 246);
  border-radius: 40px 40px 0 0;
}
@media (min-width: 1024px) {
  .pages-section {
    margin-left: 110px;
    width: 1055px;
    height: 1220px;
    margin-top: -46px;
  }
}
.pages-section div {
  display: flex;
  flex-direction: row;
}
.pages-section div h1 {
  width: 341px;
  height: 29px;
  font-family: Shrikhand;
  font-size: 28px;
  font-style: italic;
  font-weight: bold;
  -webkit-text-stroke: 1px;
  color: rgb(16, 16, 16);
  margin-left: 90px;
  margin-top: 35px;
}
@media (min-width: 1024px) {
  .pages-section div h1 {
    margin-left: 180px;
    margin-bottom: 50px;
  }
}
.pages-section div div {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 22px;
  height: 21px;
  margin-top: 43px;
  margin-right: 70px;
}
@media (min-width: 1024px) {
  .pages-section div div {
    margin-left: -20px;
  }
}
.pages-section article {
  width: 349px;
  height: 333px;
}
@media (min-width: 1024px) {
  .pages-section article {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
.pages-section article div {
  display: flex;
  flex-direction: column;
}
@media (min-width: 1024px) {
  .pages-section article div {
    width: 634px;
  }
}
.pages-section article div p {
  width: 275px;
  height: 27px;
  font-size: 17px;
  font-weight: 300;
  color: rgb(0, 0, 0);
}
@media (min-width: 1024px) {
  .pages-section article div p {
    padding-right: 361px;
  }
}
.pages-section article div div {
  width: 40px;
  height: 0;
  margin-top: -15px;
  border: 3px solid rgb(153, 226, 208);
}
@media (min-width: 1024px) {
  .pages-section article div div {
    margin-left: -518px;
    margin-bottom: -20px;
  }
}
@media (min-width: 1024px) {
  .pages-section article .page3-titre-entrees {
    margin-bottom: 24px;
  }
}
@media (min-width: 1024px) {
  .pages-section article div {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.pages-section article div ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
@media (min-width: 1024px) {
  .pages-section article div ul {
    width: 634px;
    height: 270px;
    justify-content: center;
  }
}

.page2-section {
  margin-top: -157px;
}
@media (min-width: 1024px) {
  .page2-section {
    margin-top: -46px;
  }
}

.page-section-3 {
  height: 1236px;
}
@media (min-width: 1024px) {
  .page-section-3 {
    height: 1305px;
  }
}

.list-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  position: relative;
  margin-left: -40px;
  width: 349px;
  height: 69px;
  border-radius: 15px 15px 15px 15px;
  background: rgb(255, 255, 255);
  box-shadow: 0px 4.01px 15.04px 0px rgba(0, 0, 0, 0.1);
  list-style-type: none;
  cursor: pointer;
  overflow: hidden;
  animation: animation-delay 0.8s ease-in both;
}
@media (min-width: 1024px) {
  .list-item {
    width: 634px;
  }
}
.list-item .card_dish {
  width: 230px;
  height: 50px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  margin-left: 10px;
  border: none;
  margin-top: 0;
}
@media (min-width: 1024px) {
  .list-item .card_dish {
    margin-top: -20px;
  }
}
.list-item .card_dish .list-item-titre {
  width: 267px;
  height: 21px;
  margin-bottom: -6px;
  font-size: 18px;
  font-weight: 500;
  text-wrap: nowrap;
}
.list-item .card_dish .list-item-p {
  width: 200px;
  height: 19px;
  font-size: 13px;
  text-wrap: nowrap;
}
.list-item .card_price {
  margin-top: 33px;
  margin-right: 15px;
  border: none;
  transition: 0.6s ease-in-out;
  font-weight: bold;
  font-size: 14px;
}
@media (min-width: 1024px) {
  .list-item .card_price {
    margin-top: 15px;
  }
}
.list-item .box-green {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgb(153, 226, 208);
  width: 56px;
  right: -126px;
  height: 71px;
  border: none;
  margin-top: -1px;
  border-radius: 0px 15px 15px 0px;
  transition: 0.6s ease-in-out;
}
@media (min-width: 1024px) {
  .list-item .box-green {
    margin-top: -20px;
  }
}
.list-item .box-green span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background-color: white;
  border-radius: 50px;
}
.list-item .box-green span i {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgb(153, 226, 208);
  font-size: 15px;
  padding: 2px 2px 0 2px;
}

.list--itam {
  margin-top: 60px;
}

.list-item-page3 {
  height: 85px;
}

.list-item:nth-child(1) {
  animation-delay: 1s;
}

.list-item:nth-child(2) {
  animation-delay: 2s;
}

.list-item:nth-child(3) {
  animation-delay: 3s;
}

.list-item:nth-child(4) {
  animation-delay: 4s;
}

.list-item:hover .card_price {
  transform: translateX(-200%);
}
@media (min-width: 1024px) {
  .list-item:hover .card_price {
    transform: translateX(-135%);
  }
}

.list-item:hover .box-green {
  transform: translateX(-100%);
}

.titre__button {
  width: 218px;
  height: 50px;
  background: linear-gradient(193.33deg, #9356DC -11.44%, #FF79DA 123.93%);
  color: rgb(255, 255, 255);
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.25);
  border: none;
  border-radius: 30px;
  font-size: 16px;
  margin-top: 20px;
  cursor: pointer;
  transition: opacity 0.3s, transform 0.3s;
}

.titre__button:hover {
  opacity: 0.9;
  transform: scaleX(1.01);
}

.button-listItam {
  cursor: pointer !important;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 322.49px;
  height: 72.38px;
  border: none;
  border-radius: 20px 20px 20px 20px;
  background: rgb(246, 246, 246);
  box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.15);
  margin-left: -6px;
  font-size: 16px;
  font-weight: 500;
}
.button-listItam span {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  width: 24px;
  height: 24px;
  background: rgb(147, 86, 220);
  font-size: 14.18px;
  font-weight: 500;
  border: none;
  border-radius: 50%;
  margin-right: 322px;
  color: white;
}
.button-listItam i {
  position: absolute;
  margin-right: 230px;
  width: 13.02px;
  height: 19.9px;
  color: rgb(126, 126, 126);
}
.button-listItam .fa-store {
  color: rgb(147, 86, 220);
}

.button-pages {
  width: 186px;
  height: 50px;
  background: linear-gradient(193.33deg, #9356DC -11.44%, #FF79DA 123.93%);
  color: white;
  border: none;
  font-family: Roboto;
  font-size: 16px;
  font-weight: 500;
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.25);
  border-radius: 25px;
  transition: opacity 0.3s, transform 0.3s;
  cursor: pointer;
}
@media (min-width: 1024px) {
  .button-pages {
    margin-top: 10px;
  }
}

.button-pages:hover {
  opacity: 0.9;
  transform: scaleX(1.01);
}

.cards-article {
  display: flex;
  flex-direction: column;
  width: 340px;
  height: 251px;
  border-radius: 15px;
  background-color: white;
  overflow: hidden;
  margin-bottom: 20px;
}
@media (min-width: 1024px) {
  .cards-article {
    width: 472px;
    height: 251px;
  }
}
.cards-article div {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: flex-end;
  margin-top: 10px;
  margin-right: 10px;
  width: 80px;
  height: 29px;
  background: rgb(153, 226, 208);
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.15);
  font-size: 14px;
  font-weight: 500;
  color: rgb(0, 135, 102);
}
.cards-article h3 {
  width: 267px;
  height: 20px;
  font-size: 18px;
  font-weight: bold;
  margin-left: 15px;
  margin-top: 15px;
}
.cards-article p {
  width: 247px;
  height: 24px;
  font-size: 16px;
  margin-left: 15px;
  margin-top: -10px;
}/*# sourceMappingURL=main.css.map */