@import url("https://fonts.googleapis.com/css2?family=Shrikhand&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto&display=swap");
h1,
.footer h3 {
  font-family: Shrikhand, Roboto, sans-serif;
}

body,
html {
  font-family: Roboto, sans-serif;
}

/* ==== NORMALIZE ==== */
/****** Elad Shechter's RESET *******/
/* box sizing border-box for all elements */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

button {
  background-color: transparent;
  color: inherit;
  border-width: 0;
  padding: 0;
  cursor: pointer;
}

figure {
  margin: 0;
}

ul,
ol,
dd {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-weight: inherit;
}

p {
  margin: 0;
}

cite {
  font-style: normal;
}

fieldset {
  border-width: 0;
  padding: 0;
  margin: 0;
}

/* ============= VARIABLES ============= */
/* === couleurs === */
@keyframes heart {
  0% {
    fill-opacity: 0;
    transform: scale(1);
  }
  50% {
    fill-opacity: 0.5;
    transform: scale(1.2);
  }
  100% {
    fill-opacity: 1;
    transform: scale(1);
  }
}
@keyframes loadingSpinner {
  0% {
    opacity: 1;
    transform: translateX(0%);
    z-index: 4;
  }
  20% {
    transform: translateX(0%);
  }
  50% {
    transform: translateX(100%);
  }
  100% {
    opacity: 1;
    transform: translateX(100%);
    z-index: 0;
    display: none;
  }
}
@keyframes lds-dual-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes apparition {
  0% {
    opacity: 0;
    transform: translateY(100%);
  }
  50% {
    transform: translateY(50%);
    opacity: 0;
  }
  100% {
    transform: translateY(0%);
    opacity: 1;
  }
}
.loader-container {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: loadingSpinner 3s alternate;
  animation-iteration-count: 1;
  background: white;
  opacity: 0;
  z-index: -1;
}
.loader-container img {
  position: absolute;
  width: 50px;
  height: 50px;
  animation: lds-dual-ring 1.4s ease-in-out;
}
.loader-container::before {
  content: "Chargement...";
  position: absolute;
  top: 58%;
  font-weight: bold;
  font-size: 1.2rem;
  color: #000;
}

.lds-dual-ring {
  width: 80px;
  height: 80px;
}

.lds-dual-ring:after {
  content: " ";
  display: block;
  width: 64px;
  height: 64px;
  margin: 8px;
  border-radius: 50%;
  border: 6px solid #ce23ce;
  border-color: #b600b6 transparent #e913e9 transparent;
  animation: lds-dual-ring 1.2s linear infinite;
}

.header {
  z-index: 5;
  height: 63px;
  box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.212);
}
.header__logo {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer {
  background: #353535;
  height: 200px;
}
.footer .content {
  margin-left: 25px;
  height: 100%;
  padding-top: 25px;
}
.footer .content__logo {
  color: #fff;
  padding-bottom: 15px;
}
.footer .content__list li {
  color: #fff;
  margin: 7px 0;
}
.footer .content__list li:nth-child(1) span {
  padding-right: 11px;
  font-size: 18px;
}
.footer .content__list span {
  font-size: 15px;
  padding-right: 8px;
}

/* ================================================= MOBILE ================================================= */
.home .header {
  position: fixed;
  background-color: rgba(255, 255, 255, 0.788);
  right: 0;
  left: 0;
  top: 0;
  height: 83px;
}
.home .main {
  padding-top: 80px;
}
.home .main__locationInfo {
  height: 50px;
  margin-top: 4px;
  background: #e2e1e1;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #353535;
}
.home .main__locationInfo .locationInfo__content {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 0 15px;
}
.home .main__locationInfo .locationInfo__content span {
  font-weight: bold;
  margin-left: 15px;
}
.home .main__heroBanner {
  background: #f6f6f6;
  position: relative;
}
.home .main__heroBanner .content {
  margin: 0 25px;
  padding: 40px 0;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.home .main__heroBanner .content__title {
  font-weight: bold;
  margin: 0px 30px 20px;
}
.home .main__heroBanner .content__paragraph {
  color: #353535;
  margin-bottom: 30px;
}
.home .main__heroBanner .content__link {
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: linear-gradient(to right bottom, #ee8fe9, #eb7fe2, #e86edb, #c160dc, #ac5bdc, #9356dc, #9356dc);
  box-shadow: 2px 10px 21px -4px #a8a8a8;
  -webkit-box-shadow: 2px 10px 21px -4px #a8a8a8;
  -moz-box-shadow: 2px 10px 21px -4px #a8a8a8;
  color: #fff;
  font-weight: 580;
  padding: 20px 0;
  border-radius: 50px;
  width: 230px;
}
.home .main__howItWorks .content {
  margin: 0 20px;
  padding: 50px 0;
}
.home .main__howItWorks .content__title {
  margin-bottom: 30px;
  font-weight: bold;
}
.home .main__howItWorks .content__list {
  counter-reset: my-awesome-counter;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.home .main__howItWorks .content__listItem {
  margin: 0 0 1.5rem 0;
  counter-increment: my-awesome-counter;
  position: relative;
  background: #f6f6f6;
  height: 65px;
  width: 97%;
  max-width: 350px;
  padding: 0 20px;
  border-radius: 20px;
  border: 1px solid rgba(221, 221, 221, 0.247);
  box-shadow: 2px 10px 21px -4px #a8a8a8;
  -webkit-box-shadow: 2px 10px 21px -4px #a8a8a8;
  -moz-box-shadow: 2px 10px 21px -4px #a8a8a8;
}
.home .main__howItWorks .content__listItem span {
  display: flex;
  height: 100%;
  align-items: center;
  margin-left: 10px;
  color: #7a7a7a;
  font-size: 1.2rem;
  font-weight: bold;
}
.home .main__howItWorks .content__listItem span span {
  color: #000;
  font-size: 1rem;
  margin-left: 15px;
}
.home .main__howItWorks .content__listItem-active {
  background: #F5EDFF;
}
.home .main__howItWorks .content__listItem-active span {
  color: #9356DC;
}
.home .main__howItWorks .content__listItem-active span span {
  color: #000;
}
.home .main__howItWorks .content__listItem::before {
  content: counter(my-awesome-counter);
  --size: 25px;
  width: var(--size);
  height: var(--size);
  line-height: var(--size);
  background: #9356DC;
  color: #fff;
  font-weight: bold;
  position: absolute;
  top: 50%;
  left: -13px;
  transform: translateY(-50%);
  text-align: center;
  border-radius: 50%;
}
.home .main__restaurants {
  padding-top: 50px;
  background: #f6f6f6;
}
.home .main__restaurants .content {
  margin: 0 20px;
}
.home .main__restaurants .content__title {
  margin-bottom: 30px;
  font-weight: bold;
}
.home .main__restaurants .content__cards {
  margin-bottom: 50px;
}
.home .main__restaurants .content__cards .card {
  height: 280px;
  margin-bottom: 20px;
  position: relative;
  background-color: white;
  box-shadow: 2px 10px 21px -4px #a8a8a8;
  -webkit-box-shadow: 2px 10px 21px -4px #a8a8a8;
  -moz-box-shadow: 2px 10px 21px -4px #a8a8a8;
  border-radius: 15px;
}
.home .main__restaurants .content__cards .card__img {
  height: 100%;
  width: 100%;
}
.home .main__restaurants .content__cards .card img {
  border-radius: 15px 15px 0 0;
  height: 70%;
  width: 100%;
  object-fit: cover;
}
.home .main__restaurants .content__cards .card__overlay {
  height: 30%;
  display: flex;
}
.home .main__restaurants .content__cards .card__overlay .overlay__left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
  height: 100%;
  margin-left: 20px;
}
.home .main__restaurants .content__cards .card__overlay .overlay__title {
  font-weight: bold;
  margin-bottom: 10px;
}
.home .main__restaurants .content__cards .card__overlay .overlay__right {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  flex: 0.2;
  padding-left: 40px;
  margin-right: 20px;
}
.home .main__restaurants .content__cards .card__overlay .overlay__right input[type=checkbox] {
  opacity: 0;
  position: relative;
}
.home .main__restaurants .content__cards .card__overlay .overlay__right input[type=checkbox] + label {
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 28px;
  position: absolute;
  stroke: #000;
  stroke-width: 25px;
  fill: #fff;
}
.home .main__restaurants .content__cards .card__overlay .overlay__right input[type=checkbox]:checked + label {
  fill: url(#lgrad);
  animation: heart 0.7s ease-in-out;
  stroke-width: 5px;
}
.home .main__restaurants .content__cards .card.card--exclu::after {
  content: "Nouveau";
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 20px;
  right: 20px;
  width: 100px;
  height: 30px;
  color: #0A8C6D;
  font-weight: bold;
  border-radius: 3px;
  background: #99E2D0;
}

/* ================================================= TABLETS ================================================= */
@media screen and (min-width: 768px) {
  .home .main__heroBanner .bg-overlay {
    position: absolute;
    background: url("https://images.unsplash.com/photo-1498654896293-37aacf113fd9?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=870&q=80");
    height: 100%;
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
  }
  .home .main__heroBanner .bg-overlay::after {
    content: "";
    position: absolute;
    background: rgba(0, 0, 0, 0.61);
    width: 100%;
    height: 100%;
  }
  .home .main__heroBanner .content {
    color: #eeeeee;
    font-size: 1.2rem;
    font-weight: normal;
  }
  .home .main__heroBanner .content .content__title {
    z-index: 0;
  }
  .home .main__heroBanner .content .content__paragraph {
    z-index: 0;
    color: #f6f6f6;
    font-weight: normal;
  }
  .home .main__heroBanner .content .content__link {
    z-index: 0;
    box-shadow: none;
  }
  .home .main__howItWorks .content {
    margin: 0 80px;
  }
  .home .main__howItWorks .content__list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 25px;
  }
  .home .main__restaurants .content {
    margin: 0 80px;
  }
  .home .main__restaurants .content__cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 25px;
  }
}
/* ================================================= DESKTOP ================================================= */
@media screen and (min-width: 992px) {
  .home .main__howItWorks .content {
    margin: 0 180px;
  }
  .home .main__restaurants .content {
    margin: 0 180px;
  }
}
/* ================================================= MOBILE ================================================= */
.menuRestaurants .header {
  position: relative;
}
.menuRestaurants .header .go-back {
  position: absolute;
  height: 100%;
  width: 50px;
  font-size: 1.2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.menuRestaurants .main .card {
  display: flex;
  flex-direction: column;
}
.menuRestaurants .main .card__overlay {
  border-radius: 25px 25px 0 0;
  margin-top: -30px;
  background-color: #f6f6f6;
}
.menuRestaurants .main .card__overlay .head {
  height: 100%;
  display: flex;
  background: #f6f6f6;
  border-radius: 25px 25px 0 0;
}
.menuRestaurants .main .card__overlay .head__left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
  height: 100%;
  margin-left: 20px;
}
.menuRestaurants .main .card__overlay .head__title {
  height: 100%;
  margin-top: 20px;
  padding: 10px 0;
  font-family: Shrikhand, Roboto, sans-serif;
  display: flex;
  align-items: center;
  font-weight: bold;
}
.menuRestaurants .main .card__overlay .head__right {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 0.2;
  margin-right: 20px;
  padding-top: 20px;
}
.menuRestaurants .main .card__overlay .head__right input[type=checkbox] {
  opacity: 0;
  position: relative;
}
.menuRestaurants .main .card__overlay .head__right input[type=checkbox] + label {
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  font-size: 1.5rem;
  position: absolute;
  stroke: #000;
  stroke-width: 25px;
  fill: #f6f6f6;
}
.menuRestaurants .main .card__overlay .head__right input[type=checkbox]:checked + label {
  fill: url("#lgrad");
  font-size: 1.5rem;
  animation: heart 0.7s ease-in-out;
  stroke-width: 5px;
}
.menuRestaurants .main .card__overlay .entrees:not(:nth-child(1)) {
  padding-top: 40px;
}
.menuRestaurants .main .card__overlay .entrees {
  display: flex;
  flex-direction: column;
  margin: 20px 15px;
  row-gap: 13px;
  overflow: hidden;
}
.menuRestaurants .main .card__overlay .entrees .title-entree {
  text-transform: uppercase;
  position: relative;
  margin-bottom: 10px;
}
.menuRestaurants .main .card__overlay .entrees .title-entree::after {
  content: "";
  position: absolute;
  width: 50px;
  height: 3.4px;
  bottom: -10px;
  left: 0;
  background-color: #99E2D0;
}
.menuRestaurants .main .card__overlay .entrees .item:nth-child(2) {
  animation: apparition 1s ease-out;
}
.menuRestaurants .main .card__overlay .entrees .item:nth-child(3) {
  animation: apparition 1.8s ease-out;
}
.menuRestaurants .main .card__overlay .entrees .item:nth-child(4) {
  animation: apparition 2.2s ease-out;
}
.menuRestaurants .main .card__overlay .entrees .item:nth-child(5) {
  animation: apparition 2.5s ease-out;
}
.menuRestaurants .main .card__overlay .entrees .item {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  height: 80px;
  border-radius: 13px;
  background: white;
  width: 99%;
  margin-bottom: 5px;
  box-shadow: 0px 3px 5px rgba(138, 138, 138, 0.342);
}
.menuRestaurants .main .card__overlay .entrees .item__left {
  flex: 1;
  margin: 15px 10px;
  white-space: nowrap;
  overflow-x: hidden;
}
.menuRestaurants .main .card__overlay .entrees .item__left .item__title {
  overflow-x: hidden;
  text-overflow: ellipsis;
  font-weight: bold;
}
.menuRestaurants .main .card__overlay .entrees .item__left .item__paragraph {
  overflow-x: hidden;
  text-overflow: ellipsis;
}
.menuRestaurants .main .card__overlay .entrees .item__right {
  display: flex;
  padding: 0;
  margin: 0;
  height: 100%;
  overflow: hidden;
  transition: flex 0.7s ease-in-out;
}
.menuRestaurants .main .card__overlay .entrees .item__right .price {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  margin-top: 10px;
  font-weight: bold;
  border-radius: 0 13px 13px 0;
}
.menuRestaurants .main .card__overlay .entrees .item__right .wrap-icon {
  color: #fff;
  font-size: 1.5rem;
  border-radius: 0 13px 13px 0px;
  background: #99E2D0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  transition: transform 0.7s ease-in-out;
  transform: translateX(100%);
}
.menuRestaurants .main .card__overlay .entrees .item__right .wrap-icon span {
  transition: transform 0.5s ease-in-out;
}
.menuRestaurants .main .card__overlay .entrees .item:hover {
  cursor: pointer;
  transition: all 0.5s ease-in-out;
}
.menuRestaurants .main .card__overlay .entrees .item:hover .item__left .item__title,
.menuRestaurants .main .card__overlay .entrees .item:hover .item__left .item__paragraph {
  text-overflow: ellipsis;
  white-space: nowrap;
}
.menuRestaurants .main .card__overlay .entrees .item:hover .item__right {
  flex: 0.6;
  transition: flex 1s ease;
}
.menuRestaurants .main .card__overlay .entrees .item:hover .item__right .wrap-icon {
  transform: translate(0%);
  transition: transform 0.7s ease;
  background: #99E2D0;
}
.menuRestaurants .main .card__overlay .entrees .item:hover .item__right .wrap-icon:hover {
  background: rgba(13, 231, 78, 0.644);
}
.menuRestaurants .main .card__overlay .entrees .item:hover .item__right .wrap-icon span {
  transform: rotate(360deg);
  transition: transform 0.8s ease-in-out;
}
.menuRestaurants .main .card__overlay .entrees .item:hover .item__right .price {
  margin-left: -5%;
  transition: margin-left 0.7s ease-in-out;
}
.menuRestaurants .main .card__overlay .order {
  display: flex;
  justify-content: center;
  font-size: 1.2rem;
  padding-top: 40px;
  padding-bottom: 90px;
}
.menuRestaurants .main .card__overlay .order__link {
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: linear-gradient(to right bottom, #ee8fe9, #eb7fe2, #e86edb, #c160dc, #ac5bdc, #9356dc, #9356dc);
  box-shadow: 2px 10px 21px -4px #a8a8a8;
  -webkit-box-shadow: 2px 10px 21px -4px #a8a8a8;
  -moz-box-shadow: 2px 10px 21px -4px #a8a8a8;
  color: #fff;
  font-weight: 580;
  padding: 20px 0;
  border-radius: 50px;
  width: 230px;
  width: 200px;
}
.menuRestaurants .main .card__overlay--enchantedNote {
  margin-top: -140px;
}

/* ================================================= TABLETS ================================================= */
@media screen and (min-width: 768px) {
  .menuRestaurants .main .card__img {
    object-fit: cover;
    max-height: 450px;
  }
  .menuRestaurants .main .card__overlay {
    background: #f6f6f6d5;
    margin: 0 80px;
    margin-top: -150px;
    margin-bottom: 80px;
    box-shadow: 2px 10px 21px -4px #a8a8a8;
    -webkit-box-shadow: 2px 10px 21px -4px #a8a8a8;
    -moz-box-shadow: 2px 10px 21px -4px #a8a8a8;
    border-radius: 10px 10px;
  }
  .menuRestaurants .main .card__overlay .head {
    background: none;
    margin-left: 60px;
    margin-right: 60px;
  }
  .menuRestaurants .main .card__overlay .entrees {
    margin-left: 80px;
    margin-right: 80px;
  }
}
/* ================================================= DESKTOP ================================================= */
@media screen and (min-width: 1200px) {
  .menuRestaurants .main .card__img {
    object-fit: cover;
    max-height: 450px;
  }
  .menuRestaurants .main .card__overlay {
    background: #f6f6f6d5;
    height: 100%;
    margin: 0 0px;
    margin-top: -100px;
    border-radius: 0px;
  }
  .menuRestaurants .main .card__overlay .head {
    background: none;
    margin-left: 80px;
    margin-right: 80px;
  }
  .menuRestaurants .main .card__overlay .container-sections {
    display: grid;
    min-height: 450px;
    grid-template-columns: 1fr 1fr 1fr;
    margin: 0 100px;
    background: white;
    border-radius: 13px;
    box-shadow: 2px 10px 21px -4px #a8a8a8;
    -webkit-box-shadow: 2px 10px 21px -4px #a8a8a8;
    -moz-box-shadow: 2px 10px 21px -4px #a8a8a8;
  }
  .menuRestaurants .main .card__overlay .container-sections .entrees {
    margin: 0;
    margin-top: 30px;
    padding: 25px;
  }
  .menuRestaurants .main .card__overlay .order {
    display: flex;
    justify-content: center;
    width: 100%;
  }
}

/*# sourceMappingURL=style.css.map */
