.menu__button {
  opacity: 1;
  background: linear-gradient(180deg, #ff79da 0%, #9356dc 100%);
  color: white;
  padding: 0 20px;
  border-radius: 200px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.3);
}
.menu__button:hover {
  opacity: 0.8;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.6);
}

/*Footer */
.footer {
  width: 100%;
  background-color: #353535;
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer__bloc {
  display: inline;
  padding: 0 40px;
  width: 100%;
  max-width: 1200px;
}
.footer__bloc .footerLogo {
  font-family: "Shrikhand", cursive;
  color: white;
  font-size: 20px;
  padding: 15px 0;
}
.footer__bloc-links {
  display: inline-flex;
  flex-direction: column;
}
.footer__bloc-linkA {
  display: inline-flex;
  align-items: center;
  flex-direction: row;
  text-align: center;
  color: white;
  height: 30px;
  cursor: pointer;
}
.footer__bloc-linkA:hover .footer__bloc-link__title {
  text-decoration: underline;
}
.footer__bloc-linkA i {
  margin-right: 7px;
}
.footer__bloc-linkA__title {
  font-size: 16px;
  font-weight: 400;
}

@media screen and (min-width: 600px) {
  .footer__bloc {
    margin-bottom: 15px;
  }
  .footer__bloc-links {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
  }

  .footerLogo {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
body {
  font-family: "Roboto", sans-serif;
  margin: 0;
  background: #f6f6f6;
}

* a {
  text-decoration: none;
  color: white;
}

/* Spinner*/
.spinner {
  height: 100%;
  background: white;
  margin: auto;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 20;
  -webkit-animation: spinner 3s linear;
          animation: spinner 3s linear;
  visibility: hidden;
}
.spinner__border {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 15px solid transparent;
  border-top: 15px solid #9356DC;
  border-bottom: 15px solid #FF79DA;
  border-radius: 30%;
  width: 100px;
  height: 100px;
  margin: auto;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-animation: spinner-border 3s linear;
          animation: spinner-border 3s linear;
  z-index: 10;
  visibility: hidden;
}
.spinner__center {
  width: 50px;
  height: 50px;
  border-radius: 30%;
  background-color: #99E2D0;
}

@-webkit-keyframes spinner {
  0% {
    visibility: visible;
    opacity: 0.9;
  }
  70% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes spinner {
  0% {
    visibility: visible;
    opacity: 0.9;
  }
  70% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}
@-webkit-keyframes spinner-border {
  0% {
    visibility: visible;
    opacity: 1;
  }
  70% {
    opacity: 1;
  }
  100% {
    transform: rotate(360deg);
    opacity: 0;
    visibility: hidden;
  }
}
@keyframes spinner-border {
  0% {
    visibility: visible;
    opacity: 1;
  }
  70% {
    opacity: 1;
  }
  100% {
    transform: rotate(360deg);
    opacity: 0;
    visibility: hidden;
  }
}
/* Header */
.header-logo {
  box-shadow: 0px 5px 6px 0px rgba(0, 0, 0, 0.2);
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80px;
  width: 100%;
}

/*Localisation */
.map {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f3f3f3;
  color: #7a7a7a;
}
.map__title {
  margin-left: 13px;
  font-weight: 400;
}

/* Menu */
.menu {
  background: #F2EFEF;
  width: 100%;
}
.menu__bloc {
  width: 100%;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 50px 0;
}
.menu__title {
  text-align: center;
  max-width: 250px;
  margin: 0;
}
.menu__p1 {
  text-align: center;
}

/* Fonctionnement */
.process__blocSection {
  padding: 25px 0;
  width: 100%;
  background: white;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.process {
  width: 95%;
  max-width: 1200px;
  background-color: white;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.process__title {
  margin: 0;
}
.process__p {
  padding-right: 10px;
}
.process__choice {
  display: flex;
  align-items: center;
  background: #f6f6f6;
  height: 70px;
  width: auto;
  margin: 15px 20px;
  border-radius: 10px;
  position: relative;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.16);
}
.process__choice:hover {
  opacity: 0.8;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.6);
  background: #d7c0f2;
}
.process__choice:hover .process__icon {
  color: #9356DC;
  background: none;
}
.process__number {
  background-color: #9356DC;
  color: white;
  position: absolute;
  padding: 3px 8px 3px 8px;
  border-radius: 200px;
  transform: translateX(-50%);
}
.process__icon {
  color: #7E7E7E;
  margin: 0 20px;
}
.process__mixChoice {
  display: flex;
  justify-content: center;
  flex-direction: column;
}

/* Restaurant */
.restaurant {
  margin: 0;
  background: #f6f6f6;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.restaurant__cardS {
  display: grid;
  grid-template-rows: repeat(4, 1fr);
  grid-template-columns: 1fr;
  grid-gap: 20px;
  padding: 20px;
}
.restaurant__card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  border-radius: 20px;
  transform: scale(1);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.3);
}
.restaurant__card-new {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  background: #99e2d0;
  top: 20px;
  right: 20px;
}
.restaurant__card-new p {
  color: #1b6150;
  padding: 10px 20px;
  margin: 0;
  text-align: center;
}
.restaurant__card:hover {
  transition: 0.5s;
  transform: scale(1.05);
  box-shadow: 0px 0px 10px 2px rgba(147, 86, 220, 0.6);
  z-index: 2;
}
.restaurant__card-picture {
  width: 100%;
  height: 190px;
}
.restaurant__card-picture > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px 20px 0 0;
}
.restaurant__bloc {
  background: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 90px;
  border-radius: 0 0 20px 20px;
}
.restaurant__bloc-info {
  color: black;
  margin-left: 20px;
}
.restaurant__bloc-info > :first-child {
  font-weight: 700;
}
.restaurant__bloc-hearth {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 20px;
  width: 30px;
}
.restaurant__bloc .heart {
  width: 30px;
  stroke-width: 30;
  stroke: black;
  fill: white;
  cursor: pointer;
}
.restaurant__bloc .heart-full {
  position: absolute;
  fill: url(#text-fill);
  stroke: none;
}
.restaurant__bloc .heart-empty {
  width: 50px;
  position: relative;
}
.restaurant__bloc .heart-empty:hover {
  opacity: 0;
  transition: 0.5s;
}

/* Responsive*/
@media screen and (min-width: 600px) {
  .restaurant__cardS {
    display: grid;
    grid-template-rows: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px;
  }
  .restaurant__card:hover {
    transition: 0.5s;
    transform: scale(1.25);
    box-shadow: 0px 0px 10px 2px rgba(147, 86, 220, 0.6);
    z-index: 2;
  }

  .process__choice {
    width: 100%;
  }

  .process__mixChoice {
    display: flex;
    justify-content: center;
    flex-direction: row;
    width: 100%;
  }

  /* Spinner*/
  .spinner__border {
    width: 300px;
    height: 300px;
  }
}/*# sourceMappingURL=style-home.css.map */