@keyframes loader {
  0% {
    opacity: 1;
    z-index: 100;
  }
  75% {
    opacity: 1;
    z-index: 100;
  }
  100% {
    opacity: 0;
    z-index: -5;
  }
}
@keyframes loader-jump {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-300%);
  }
  100% {
    transform: translateY(0);
  }
}
.loader {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  position: fixed;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  z-index: -5;
  opacity: 0;
  background-color: #353535;
  animation: loader 3s;
}
.loader .ball {
  width: 1rem;
  height: 1rem;
  border-radius: 1rem;
  animation: loader-jump 3s;
}
.loader .ball1 {
  background-color: #9356dc;
}
.loader .ball2 {
  background-color: #ff79da;
  animation-delay: 0.5s;
}
.loader .ball3 {
  background-color: #99e2d0;
  animation-delay: 1s;
}

.header-location {
  height: 50px;
  gap: 17px;
  color: #353535;
  background-color: #EAEAEA;
  font-weight: 500;
}
.header-location i {
  align-self: center;
  color: #353535;
}

.home-book {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: #F6F6F6;
}
.home-book h1 {
  margin: 40px 50px 10px 50px;
  align-self: center;
}
.home-book p {
  margin: 0 30px 25px 30px;
  font-weight: 300;
  font-size: 18px;
  color: #353535;
}
.home-book button {
  margin-bottom: 57px;
}

.home-steps {
  margin: 30px 0 65px 0;
}
@media (min-width: 1024px) {
  .home-steps {
    padding: 0 180px 0 180px;
  }
}
.home-steps h1 {
  margin: 40px 20px 25px 20px;
}
.home-steps_cards-container {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
@media (min-width: 1024px) {
  .home-steps_cards-container {
    display: grid;
    grid-template-columns: 33% 33% 33%;
    gap: 0;
  }
}
.home-steps_card {
  display: flex;
  flex-direction: row;
  background-color: #F6F6F6;
  border-radius: 25px;
  padding: 10px;
  margin: 0 20px 0 32px;
  box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  max-height: 60px;
}
.home-steps_card-number {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  right: 30px;
  color: white;
  min-width: 2rem;
  max-width: 2rem;
  min-height: 2rem;
  max-height: 2rem;
  background-color: #9356dc;
  border-radius: 50%;
}
.home-steps_card-step {
  font-weight: 500;
  align-self: center;
}
.home-steps_card i {
  color: #7E7E7E;
  align-self: center;
  transition: all 200ms;
  margin-right: 25px;
}
@media (min-width: 1024px) {
  .home-steps_card i {
    margin-right: 10px;
  }
}
.home-steps_card:hover i {
  color: #9356DC;
}

.home-restaurants {
  display: flex;
  flex-direction: column;
  background-color: #F6F6F6;
  padding: 30px 0 66px 0;
  position: relative;
}
@media (min-width: 1024px) {
  .home-restaurants {
    padding: 0 180px 0 180px;
  }
}
@media (min-width: 1024px) {
  .home-restaurants .home-restaurants_cards {
    display: grid;
    grid-template-columns: 50% 50%;
  }
}
.home-restaurants h1 {
  margin: 40px 20px 0 20px;
}
.home-restaurants_card {
  margin: 18px;
  position: relative;
}
.home-restaurants_card img {
  background-color: white;
  border-radius: 15px 15px 0 0;
  width: 100%;
  height: 231px;
  object-fit: cover;
}
.home-restaurants_card-content {
  line-height: 5px;
  padding: 5px 0 5px 15px;
  background-color: white;
  border-radius: 0 0 15px 15px;
}
.home-restaurants_card-content p {
  font-size: 17px;
  font-weight: 300;
}
.home-restaurants_card-content .heart-fill {
  opacity: 0;
  fill: url(#heart-gradient);
}
.home-restaurants_card-content .heart-outline {
  opacity: 1;
  fill: #000000;
}
.home-restaurants_card-content .heart-outline, .home-restaurants_card-content .heart-fill {
  transition-property: opacity;
  transition-duration: 0.3s;
  transition-timing-function: ease-in-out;
}
.home-restaurants_card-content .like svg {
  width: 30px;
  position: absolute;
  right: 1em;
  bottom: 8%;
}
.home-restaurants_card-content .like:hover {
  cursor: pointer;
}
.home-restaurants_card-content .like:hover .heart-fill {
  opacity: 1;
}
.home-restaurants_card-content .like:hover .heart-outline {
  opacity: 0;
}

.home-restaurants_card-container_nouveau {
  position: absolute;
  bottom: 80%;
  right: 1em;
}
.home-restaurants_card-container_nouveau p {
  display: flex;
  justify-content: center;
  align-content: center;
  border-radius: 2px;
  font-weight: 500;
  color: #008766;
  background-color: #99E2D0;
  padding: 7px;
  width: 80px;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.15);
}

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