.menus__card, .menus hr, .restaurant__card, .restaurant h2, .user-manual__step, .explore p, .explore h2 {
  margin-bottom: 20px;
}

body {
  max-width: 1920px;
  margin: auto;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
}

h2 {
  font-size: 24px;
}

h2, h3, strong {
  font-weight: 700;
}

a {
  color: #000;
  text-decoration: none;
}

.menus h2 {
  font-size: 26px;
}

h2, h3, strong {
  font-weight: 700;
}

footer p, .menus h2 {
  font-family: "Shrikhand", sans-serif;
  font-weight: 300;
}

.btn {
  background-image: linear-gradient(-5deg, #9356DC, #FF79DA);
  opacity: 1;
  border: none;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  border-radius: 48px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.4);
  padding: 16px 22px;
  cursor: auto;
  transition: all 0.5s cubic-bezier(0.5, 0, 0.35, 1);
}
.btn:hover {
  background-image: linear-gradient(-5deg, #9356DC, #FF79DA);
  opacity: 0.9;
  border: none;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  border-radius: 48px;
  box-shadow: 0 3px 16px rgba(0, 0, 0, 0.7);
  padding: 16px 22px;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.5, 0, 0.35, 1);
}
.btn:active {
  background-image: linear-gradient(-5deg, #9356DC, #FF79DA);
  opacity: 0.9;
  border: none;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  border-radius: 48px;
  box-shadow: 0 3px 16px rgba(0, 0, 0, 0.7);
  padding: 16px 22px;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.5, 0, 0.35, 1);
}

.fa-heart {
  z-index: 10;
  position: absolute;
  font-size: 24px;
  font-weight: 900;
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-stroke: 1.5px #000;
  background-image: linear-gradient(225deg, transparent 49%, #9356DC 58%, #FF79DA 100%);
  background-size: 100% 300%;
  transition: all 0.5s cubic-bezier(0.5, 0, 0.35, 1);
  cursor: auto;
}
.fa-heart:hover {
  z-index: 10;
  position: absolute;
  font-size: 24px;
  font-weight: 900;
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-stroke: 1.5px #000;
  background-image: linear-gradient(225deg, transparent 49%, #9356DC 58%, #FF79DA 100%);
  background-size: 100% 300%;
  transition: all 0.5s cubic-bezier(0.5, 0, 0.35, 1);
  cursor: pointer;
  background-position: 0% -50%;
  -webkit-text-stroke: transparent;
}
.fa-heart:active {
  z-index: 10;
  position: absolute;
  font-size: 24px;
  font-weight: 900;
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-stroke: 1.5px #000;
  background-image: linear-gradient(225deg, transparent 49%, #9356DC 58%, #FF79DA 100%);
  background-size: 100% 300%;
  transition: all 0.5s cubic-bezier(0.5, 0, 0.35, 1);
  cursor: pointer;
  background-position: 0% -50%;
  -webkit-text-stroke: transparent;
}

.loader {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: #fff;
  -webkit-animation: loader 3s linear forwards;
  animation: loader 3s linear forwards;
}
.loader__container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 500px;
  height: 500px;
  text-align: center;
}

@-webkit-keyframes loader {
  0%, 99.99% {
    z-index: 100;
    opacity: 1;
  }
  100% {
    z-index: -100;
    opacity: 0;
  }
}
@keyframes loader {
  0%, 99.99% {
    z-index: 100;
    opacity: 1;
  }
  100% {
    z-index: -100;
    opacity: 0;
  }
}
.loader__text-slide-show {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: absolute;
  top: 30%;
}
@media screen and (min-width: 768px) {
  .loader__text-slide-show {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    top: 40%;
  }
}
.loader__text-slide-show__pretext {
  font-family: "Shrikhand";
  font-size: 50px;
  margin-bottom: 50px;
}
@media screen and (min-width: 768px) {
  .loader__text-slide-show__pretext {
    margin-right: 40px;
    margin-bottom: 0;
  }
}
.loader__text-slide-show__container {
  overflow: hidden;
  height: 40px;
}
.loader__text-slide-show__elements {
  font-size: 34px;
  line-height: 40px;
  font-weight: 900;
  font-style: italic;
  color: #9356DC;
  -webkit-animation: text-slide-show 3s ease-in-out;
  animation: text-slide-show 3s ease-in-out;
}

@-webkit-keyframes text-slide-show {
  0% {
    transform: translatey(0);
  }
  50% {
    transform: translateY(-40px);
  }
  100% {
    transform: translateY(-80px);
  }
}
@keyframes text-slide-show {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-40px);
  }
  100% {
    transform: translateY(-80px);
  }
}
.loader__icons {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  position: absolute;
  bottom: 30%;
}
@media screen and (min-width: 768px) {
  .loader__icons {
    bottom: 45%;
  }
}
.loader__icons__container {
  width: 350px;
}
.loader__icons__container i:nth-child(1) {
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
}
.loader__icons__container i:nth-child(2) {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}
.loader__icons__container i:nth-child(3) {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}
.loader__icons__container i:nth-child(4) {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}
.loader__icons__container i:nth-child(5) {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}
.loader__icons__container i:nth-child(6) {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}
.loader__icons__container i:nth-child(7) {
  -webkit-animation-delay: 0.7s;
  animation-delay: 0.7s;
}
.loader__icons__container i:nth-child(8) {
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
}
.loader__icons__container i:nth-child(9) {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
}
.loader__icons__container i:nth-child(10) {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}
.loader__icons__container i {
  color: transparent;
  background-image: linear-gradient(-5deg, #9356DC, #FF79DA);
  font-size: 20px;
  letter-spacing: 5px;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-animation: loader-icons 3s linear infinite backwards;
  animation: loader-icons 3s linear infinite backwards;
}

@-webkit-keyframes loader-icons {
  0% {
    opacity: 0;
    text-shadow: 0 0 10px #FF79DA;
    transform: translateY(10px);
  }
  25% {
    transform: translateY(-10px);
    text-shadow: 0 0 0 #FF79DA;
  }
  50% {
    opacity: 1;
    transform: translateY(10px);
    text-shadow: 0 0 10px #FF79DA;
  }
  75% {
    transform: translateY(-10px);
    text-shadow: 0 0 0 #FF79DA;
  }
  100% {
    opacity: 0;
    text-shadow: 0 0 10px #FF79DA;
    transform: translateY(10px);
  }
}
@keyframes loader-icons {
  0% {
    opacity: 0;
    text-shadow: 0 0 10px #FF79DA;
    transform: translateY(10px);
  }
  25% {
    transform: translateY(-10px);
    text-shadow: 0 0 0 #FF79DA;
  }
  50% {
    opacity: 1;
    transform: translateY(10px);
    text-shadow: 0 0 10px #FF79DA;
  }
  75% {
    transform: translateY(-10px);
    text-shadow: 0 0 0 #FF79DA;
  }
  100% {
    opacity: 0;
    text-shadow: 0 0 10px #FF79DA;
    transform: translateY(10px);
  }
}
.header {
  display: flex;
  justify-content: center;
  margin-bottom: 5px;
}
.header h1 {
  margin: 20px 0 0 0;
}
.header__logo {
  display: inline-block;
  width: 160px;
}

nav {
  position: absolute;
  top: 20px;
  left: 25px;
  font-size: 20px;
}
nav i:hover {
  color: #9356DC;
}

.banner img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 250px;
}

footer {
  background-color: #353535;
  padding: 20px;
  color: #fff;
}
@media screen and (min-width: 768px) {
  footer p {
    text-align: center;
    margin: 16px 0;
    font-size: 18px;
  }
}
footer ul {
  padding: 20px 0;
  line-height: 24px;
}
@media screen and (min-width: 768px) {
  footer ul {
    display: flex;
    justify-content: space-around;
  }
}
footer i {
  padding-right: 13px;
}
footer a {
  color: #fff;
}
footer a:hover {
  text-decoration: underline;
}

.localisation {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  background-color: #EAEAEA;
  box-shadow: inset 0 3px 3px #CECECE;
  height: 50px;
}
.localisation i {
  margin-right: 10px;
}

.explore {
  background-color: #f6f6f6;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  padding: 40px;
}
.explore h2 {
  padding: 0 16px;
}
.user-manual {
  padding: 48px 20px;
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .user-manual {
    text-align: center;
  }
}
@media screen and (min-width: 992px) {
  .user-manual__container {
    display: flex;
    justify-content: space-evenly;
  }
}
.user-manual h2 {
  margin-bottom: 40px;
}
@media screen and (min-width: 992px) {
  .user-manual h2 {
    text-align: center;
  }
}
.user-manual__step {
  display: flex;
  justify-content: flex-end;
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .user-manual__step {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
  }
}
@media screen and (min-width: 992px) {
  .user-manual__step {
    width: 30%;
    justify-content: center;
    text-align: center;
  }
}
.user-manual__card {
  background-color: #f6f6f6;
  padding: 20px 28px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.4);
  border-radius: 16px;
  cursor: auto;
  transition: all 0.5s cubic-bezier(0.5, 0, 0.35, 1);
  position: relative;
  width: 97%;
}
@media screen and (min-width: 768px) {
  .user-manual__card {
    max-width: 320px;
  }
}
@media screen and (min-width: 992px) {
  .user-manual__card {
    padding: 20px 12px;
  }
}
.user-manual__card:hover {
  background-color: #f2eafb;
  padding: 20px 28px;
  box-shadow: 0 3px 16px rgba(0, 0, 0, 0.7);
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.5, 0, 0.35, 1);
}
@media screen and (min-width: 768px) {
  .user-manual__card:hover {
    max-width: 320px;
  }
}
@media screen and (min-width: 992px) {
  .user-manual__card:hover {
    padding: 20px 12px;
  }
}
.user-manual__card:hover > i {
  color: #9356DC;
}
.user-manual__number {
  color: #fff;
  background-color: #9356DC;
  border-radius: 32px;
  padding: 2.5px 8px;
  position: absolute;
  left: -16px;
}
.user-manual i {
  color: #7E7E7E;
  margin-right: 16px;
}

.restaurant {
  padding: 48px 20px;
  background-color: #f6f6f6;
}
@media screen and (min-width: 992px) {
  .restaurant {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
  }
}
@media screen and (min-width: 992px) {
  .restaurant h2 {
    width: 95%;
    align-self: flex-start;
  }
}
.restaurant__card {
  display: block;
  position: relative;
  border-radius: 16px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.4);
  background-color: #fff;
  z-index: 1;
  transition: all 0.5s cubic-bezier(0.5, 0, 0.35, 1);
  height: 256px;
}
@media screen and (min-width: 992px) {
  .restaurant__card {
    width: 45%;
    margin-bottom: 48px;
  }
}
.restaurant__card i {
  right: 30px;
  bottom: 30px;
}
.restaurant__card:hover {
  border-radius: 16px;
  box-shadow: 0 3px 16px rgba(0, 0, 0, 0.7);
  background-color: #fff;
  z-index: 1;
  transition: all 0.5s cubic-bezier(0.5, 0, 0.35, 1);
}
.restaurant img {
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 16px 16px 0 0;
  width: 100%;
  height: 70%;
  z-index: 1;
}
.restaurant__notification-new {
  display: block;
  padding: 8px 13px;
  font-size: 14px;
  background-color: #99E2D0;
  color: #278870;
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  -webkit-animation: notification-new--shake 2.5s alternate linear infinite;
  animation: notification-new--shake 2.5s alternate linear infinite;
}
.restaurant__description {
  padding: 13px;
}
.restaurant__description h3 {
  margin-bottom: 8px;
}

@-webkit-keyframes notification-new--shake {
  0% {
    transform: rotate(-5deg);
  }
  2% {
    transform: rotate(5deg);
  }
  4% {
    transform: rotate(-5deg);
  }
  6% {
    transform: rotate(5deg);
  }
  8% {
    transform: rotate(-5deg);
  }
  8%, 100% {
    transform: rotate(0);
  }
}
@keyframes notification-new--shake {
  0% {
    transform: rotate(-5deg);
  }
  2% {
    transform: rotate(5deg);
  }
  4% {
    transform: rotate(-5deg);
  }
  6% {
    transform: rotate(5deg);
  }
  8% {
    transform: rotate(-5deg);
  }
  8%, 100% {
    transform: rotate(0);
  }
}
.main__menus--bg-color {
  background-color: #f6f6f6;
}

.menus {
  position: relative;
  top: -35px;
  width: 100%;
  border-radius: 32px 32px 0 0;
  background-color: #f6f6f6;
  padding: 20px;
}
.menus .menus--fadein-1 {
  -webkit-animation: menus--fadein 0.8s 0.4s cubic-bezier(0.5, 0, 0.6, 1) backwards;
  animation: menus--fadein 0.8s 0.4s cubic-bezier(0.5, 0, 0.6, 1) backwards;
}
.menus .menus--fadein-2 {
  -webkit-animation: menus--fadein 0.8s 0.8s cubic-bezier(0.5, 0, 0.6, 1) backwards;
  animation: menus--fadein 0.8s 0.8s cubic-bezier(0.5, 0, 0.6, 1) backwards;
}
.menus .menus--fadein-3 {
  -webkit-animation: menus--fadein 0.8s 1.2s cubic-bezier(0.5, 0, 0.6, 1) backwards;
  animation: menus--fadein 0.8s 1.2s cubic-bezier(0.5, 0, 0.6, 1) backwards;
}
.menus .menus--fadein-4 {
  -webkit-animation: menus--fadein 0.8s 1.6s cubic-bezier(0.5, 0, 0.6, 1) backwards;
  animation: menus--fadein 0.8s 1.6s cubic-bezier(0.5, 0, 0.6, 1) backwards;
}
.menus .menus--fadein-5 {
  -webkit-animation: menus--fadein 0.8s 2s cubic-bezier(0.5, 0, 0.6, 1) backwards;
  animation: menus--fadein 0.8s 2s cubic-bezier(0.5, 0, 0.6, 1) backwards;
}
.menus .menus--fadein-6 {
  -webkit-animation: menus--fadein 0.8s 2.4s cubic-bezier(0.5, 0, 0.6, 1) backwards;
  animation: menus--fadein 0.8s 2.4s cubic-bezier(0.5, 0, 0.6, 1) backwards;
}
.menus .menus--fadein-7 {
  -webkit-animation: menus--fadein 0.8s 2.8s cubic-bezier(0.5, 0, 0.6, 1) backwards;
  animation: menus--fadein 0.8s 2.8s cubic-bezier(0.5, 0, 0.6, 1) backwards;
}
.menus .menus--fadein-8 {
  -webkit-animation: menus--fadein 0.8s 3.2s cubic-bezier(0.5, 0, 0.6, 1) backwards;
  animation: menus--fadein 0.8s 3.2s cubic-bezier(0.5, 0, 0.6, 1) backwards;
}
.menus .menus--fadein-9 {
  -webkit-animation: menus--fadein 0.8s 3.6s cubic-bezier(0.5, 0, 0.6, 1) backwards;
  animation: menus--fadein 0.8s 3.6s cubic-bezier(0.5, 0, 0.6, 1) backwards;
}
.menus .menus--fadein-10 {
  -webkit-animation: menus--fadein 0.8s 4s cubic-bezier(0.5, 0, 0.6, 1) backwards;
  animation: menus--fadein 0.8s 4s cubic-bezier(0.5, 0, 0.6, 1) backwards;
}
.menus .menus--fadein-11 {
  -webkit-animation: menus--fadein 0.8s 4.4s cubic-bezier(0.5, 0, 0.6, 1) backwards;
  animation: menus--fadein 0.8s 4.4s cubic-bezier(0.5, 0, 0.6, 1) backwards;
}
.menus .menus--fadein-12 {
  -webkit-animation: menus--fadein 0.8s 4.8s cubic-bezier(0.5, 0, 0.6, 1) backwards;
  animation: menus--fadein 0.8s 4.8s cubic-bezier(0.5, 0, 0.6, 1) backwards;
}
.menus .menus--fadein-13 {
  -webkit-animation: menus--fadein 0.8s 5.2s cubic-bezier(0.5, 0, 0.6, 1) backwards;
  animation: menus--fadein 0.8s 5.2s cubic-bezier(0.5, 0, 0.6, 1) backwards;
}
.menus .menus--fadein-14 {
  -webkit-animation: menus--fadein 0.8s 5.6s cubic-bezier(0.5, 0, 0.6, 1) backwards;
  animation: menus--fadein 0.8s 5.6s cubic-bezier(0.5, 0, 0.6, 1) backwards;
}
.menus i {
  top: 24px;
  right: 24px;
}
@media screen and (min-width: 992px) {
  .menus .menus__container {
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
  }
  .menus .menus__container article {
    width: 32%;
  }
}
.menus h2, .menus article {
  margin-bottom: 40px;
}
.menus h3 {
  text-transform: uppercase;
  margin-bottom: 3px;
}
.menus hr {
  background-color: #99E2D0;
  border: none;
  height: 3px;
  width: 40px;
}
.menus .menus__btn {
  padding: 16px 48px;
  display: block;
  margin: 0 auto;
}

@-webkit-keyframes menus--fadein {
  0% {
    transform: translateY(8px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes menus--fadein {
  0% {
    transform: translateY(8px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.menus__card {
  position: relative;
  border-radius: 16px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.4);
  background-color: #fff;
  z-index: 1;
  transition: all 0.5s cubic-bezier(0.5, 0, 0.35, 1);
  height: 64px;
  line-height: 24px;
  overflow: hidden;
}
.menus__card:hover, .menus__card:active {
  cursor: pointer;
  border-radius: 16px;
  box-shadow: 0 3px 16px rgba(0, 0, 0, 0.7);
  background-color: #fff;
  z-index: 1;
  transition: all 0.5s cubic-bezier(0.5, 0, 0.35, 1);
}
.menus__card:hover > .menus__card__description, .menus__card:active > .menus__card__description {
  width: 60%;
}
.menus__card:hover > .menus__card__price, .menus__card:active > .menus__card__price, .menus__card:hover > .menus__card__validation, .menus__card:active > .menus__card__validation {
  transform: translateX(0);
}
.menus__card:hover > .menus__card__validation i, .menus__card:active > .menus__card__validation i {
  transform: rotate(360deg);
}
.menus__card__description {
  padding: 8px 0 8px 13px;
  width: 80%;
  transition: width 0.5s cubic-bezier(0.5, 0, 0.35, 1);
}
.menus__card__description p {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.menus__card__description__title {
  font-size: 18px;
}
.menus__card__price {
  padding: 8px 40px 8px 0;
  height: 64px;
  position: absolute;
  right: 72px;
  top: 0;
  width: 74px;
  transform: translateX(74px);
  transition: transform 0.5s cubic-bezier(0.5, 0, 0.35, 1);
}
.menus__card__price p {
  position: absolute;
  bottom: 8px;
  left: 32px;
}
.menus__card__validation {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  position: absolute;
  top: -1px;
  right: -2px;
  height: 66px;
  background-color: #99E2D0;
  width: 74px;
  transform: translateX(74px);
  transition: transform 0.5s cubic-bezier(0.5, 0, 0.35, 1);
}
.menus__card__validation i {
  color: #fff;
  font-size: 24px;
  transform: rotate(0deg);
  transition: transform 0.5s cubic-bezier(0.5, 0, 0.35, 1);
}

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