@import "https://fonts.googleapis.com/css2?family=Roboto&family=Shrikhand&display=swap";
.loading-spinner {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: #fff;
  opacity: 85%;
  animation: loading 1s ease-in-out forwards 1s 1;
}
.loading-spinner .container-elm {
  position: relative;
  width: 100%;
  margin-left: 50%;
  margin-top: 150px;
}
.loading-spinner .container-elm .element {
  position: relative;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 15px solid transparent;
  margin-left: -75px;
  margin-top: -75px;
}
.loading-spinner .container-elm .element:after {
  content: "";
  position: absolute;
  width: 100px;
  height: 100px;
  border: 15px solid transparent;
  border-top-color: #9356dc;
  border-bottom-color: #ff79da;
  border-radius: 50%;
  animation: rotation-spinner 1.5s linear 1;
}
.loading-spinner .container-elm .element-2 {
  position: relative;
  width: 50px;
  height: 50px;
  margin: auto;
  margin-left: 20px;
  top: 90px;
  border-radius: 50%;
  border: 10px solid transparent;
}
.loading-spinner .container-elm .element-2:after {
  content: "";
  position: absolute;
  width: 50px;
  height: 50px;
  border: 10px solid transparent;
  border-left-color: #99e2d0;
  border-right-color: #99e2d0;
  border-radius: 50%;
  animation: rotation-spinner-2 1.5s linear 1;
}
@keyframes rotation-spinner {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes rotation-spinner-2 {
  0% {
    transform: rotate(360deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes loading {
  0% {
    opacity: 0.8;
  }
  80% {
    opacity: 0;
  }
  90% {
    transform: translateX(0%);
    opacity: 0;
  }
  100% {
    transform: translateX(150%);
    opacity: 0;
  }
}
.location {
  width: 100%;
  height: 50px;
}
.location__button {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  border-top: 3px solid #d3d1d1;
  font-size: medium;
  color: #4d4d4d;
}
.location__button:hover {
  cursor: text;
}
.location__button__text {
  margin-left: 15px;
  font-weight: bold;
}
.location__button i {
  height: 50%;
}
.header {
  width: 90%;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.header--menu {
  width: 100%;
  position: relative;
}
.header--menu span {
  position: relative;
  width: 40px;
  height: 20px;
  left: -70px;
}
.header--menu span i {
  font-size: x-large;
  color: #525252;
}
.header__logo {
  width: 150px;
  height: 50%;
}
.header .container__icon {
  width: 50px;
  height: 25px;
}
body {
  height: auto;
  font-family: "Roboto", sans-serif;
  font-weight: bold;
  color: #000;
}
.reservation {
  width: 100%;
  height: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background-color: #f7f7f7;
}
.reservation__header {
  width: 60%;
  height: 20%;
  font-family: "Roboto", sans-serif;
  font-weight: bold;
  color: #000;
  font-size: 22px;
}
.reservation .reservation__text {
  width: 100%;
  height: 25%;
  color: gray;
  font-size: larger;
  font-weight: normal;
}
.reservation .reservation__button {
  width: 100%;
  height: 30%;
}
.reservation button {
  background: #ff79da;
  background: linear-gradient(178deg, #ff79da 0%, #9356dc 87%);
  width: 217px;
  height: 52px;
  border: none;
  border-radius: 50px 50px 50px 50px;
  color: #fff;
  box-shadow: 0px 6px 15px 0px #d2d2d2;
}
.reservation button:hover {
  cursor: pointer;
  background-color: #f2eafb;
  box-shadow: 0px 10px 10px 0px #c5c5c5;
  filter: sepia(20%);
}
.fonctionnement {
  width: 100%;
  height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  margin-bottom: 30px;
}
.fonctionnement__header {
  width: 95%;
  height: 5%;
  margin-left: 5%;
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  font-weight: bold;
}
.fonctionnement__button {
  margin-left: 5%;
}
.fonctionnement .number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 26px;
  background-color: #9356dc;
  color: #fff;
  border-radius: 50%;
  margin-left: -15px;
  font-size: small;
  font-weight: normal;
}
form button.button-f {
  width: 95%;
  height: 65px;
  display: flex;
  align-items: center;
  border-radius: 25px;
  border: none;
  overflow: visible;
  background-color: #f7f7f7;
  font-weight: bold;
  font-size: medium;
  box-shadow: 0px 6px 15px 0px #d2d2d2;
}
form button.button-f:hover {
  cursor: pointer;
  background-color: #f2eafb;
  box-shadow: 0px 10px 10px 0px #c5c5c5;
}
form button.button-f:hover i {
  color: #9356dc;
}
form button.button-f i {
  font-size: medium;
  color: #858585;
  margin: 20px;
}
section.restaurant {
  display: flex;
  flex-direction: column;
  width: 100%;
  background-color: #f7f7f7;
}
section.restaurant h2.restaurant__header {
  width: 95%;
  height: 15px;
  margin-left: 5%;
  font-size: x-large;
}
section.restaurant .card {
  display: flex;
  flex-direction: column;
  width: 90%;
  height: 230px;
  margin-top: 10px;
  margin-bottom: 10px;
  border-radius: 15px 15px 15px 15px;
  margin: 5%;
  background-color: #fff;
  box-shadow: 0px 6px 15px 0px #d2d2d2;
}
section.restaurant .card:hover {
  cursor: pointer;
  background-color: #f2eafb;
  box-shadow: 0px 10px 10px 0px #c5c5c5;
}
section.restaurant .card--new p.new {
  width: 80px;
  height: 30px;
  border-radius: 2px 2px 2px 2px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  margin-right: 5%;
  color: #2c9c81;
  background-color: #99e2d0;
}
section.restaurant .card .container__new {
  display: flex;
  flex-direction: row-reverse;
}
section.restaurant .card a {
  display: contents;
  text-decoration: none;
  color: #000;
}
section.restaurant .card__img {
  object-fit: cover;
  overflow: hidden;
  width: 100%;
  height: 85%;
}
section.restaurant img {
  width: 100%;
  height: 100%;
  border-radius: 15px 15px 0px 0px;
}
section.restaurant .restaurant__container {
  display: flex;
  width: 100%;
  height: 40%;
  margin-top: -10px;
  margin-left: 15px;
}
section.restaurant .restaurant__text {
  width: 80%;
}
section.restaurant .restaurant__location {
  margin-top: -15px;
  font-weight: normal;
  color: #4d4d4d;
}
section.restaurant .restaurant__icon {
  width: 20%;
  display: flex;
  align-items: center;
}
section.restaurant i {
  font-size: x-large;
  color: #858585;
}
section.restaurant i:active {
  animation-name: heart-anim;
  animation-duration: 300ms;
  background: linear-gradient(to bottom, #9356dc 0%, #ff79da 100%);
  -webkit-background-clip: text;
  -moz-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation-fill-mode: forwards;
}
@keyframes heart-anim {
  0% {
    transform: scale(0);
    font-weight: bold;
  }
  100% {
    transform: scale(1);
    font-weight: bold;
  }
}
footer {
  width: 100%;
  height: 160px;
  background-color: #333;
  color: #fff;
  line-height: 5px;
  font-weight: normal;
}
footer .footer {
  height: auto;
  padding-top: 20px;
  margin-left: 20px;
  font-size: small;
}
footer .footer__logo img {
  max-width: 20%;
  max-height: 30px;
  filter: invert(100%);
}
footer .footer i {
  margin-right: 10px;
  font-size: x-small;
}
footer .footer a {
  text-decoration: none;
  color: #fff;
  line-height: 10px;
}
section.menu1 {
  width: 100%;
  height: auto;
}
.container__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  overflow: hidden;
}
.container__img img {
  position: relative;
  width: 100%;
  height: 200px;
}
.container__text {
  position: relative;
  width: 100%;
  height: auto;
  border-top-right-radius: 40px;
  border-top-left-radius: 40px;
  background-color: #f2f2f2;
  margin-top: -45px;
}
.container__text .container__header {
  display: flex;
  align-items: center;
  justify-content: space-around;
  width: 100%;
  height: 40px;
  margin-bottom: 25px;
  padding-top: 25px;
  font-family: "Shrikhand", cursive;
  font-size: small;
  font-weight: lighter;
  letter-spacing: 1px;
}
.container__text i {
  font-size: x-large;
  color: #858585;
}
.container__text i:active {
  animation-name: heart-anim;
  animation-duration: 300ms;
  background: linear-gradient(to bottom, #9356dc 0%, #ff79da 100%);
  -webkit-background-clip: text;
  -moz-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation-fill-mode: forwards;
}
@keyframes heart-anim {
  0% {
    transform: scale(0);
    font-weight: bold;
  }
  100% {
    transform: scale(1);
    font-weight: bold;
  }
}
.container__text > p {
  width: 50px;
  height: 25px;
  color: #858585;
  font-weight: normal;
  font-size: large;
  margin-left: 5%;
  border-bottom: 3px solid #99e2d0;
  margin-bottom: 5px;
}
.container__button {
  width: 100%;
  height: 30%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  animation-name: menu-anim;
  animation-duration: 2s;
}
button.button-m {
  display: flex;
  justify-content: space-between;
  width: 95%;
  height: 60px;
  background-color: #fff;
  margin-top: 10px;
  margin-bottom: 10px;
  margin-left: 2.5%;
  margin-right: 2.5%;
  border: none;
  border-radius: 15px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
button.button-m :hover {
  cursor: pointer;
}
button.button-m:hover > .icon-price {
  cursor: pointer;
  margin-right: -7px;
}
button.button-m:hover > .icon-price i {
  transform: rotate(0deg);
}
button.button-m .button-text {
  position: relative;
  width: 80%;
  height: 100%;
  margin-left: 10px;
  overflow: hidden;
}
button.button-m .button-text .title-menu {
  display: flex;
  width: 100%;
  height: 50%;
  font-size: medium;
  font-weight: bold;
  margin: 0;
  margin-top: 10px;
}
button.button-m .button-text .text-menu {
  display: inline-block;
  text-align: left;
  width: 100%;
  height: 50%;
  color: #525252;
  font-size: 14px;
  margin: 0;
  margin-right: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
}
button.button-m .price {
  display: flex;
  width: 10%;
  height: 100%;
  margin-left: 5%;
  margin-right: 5%;
}
button.button-m .price span {
  display: flex;
  align-items: flex-end;
  font-weight: bold;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  margin-bottom: 5px;
}
button.button-m .icon-price {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 15%;
  height: 102%;
  font-size: xx-large;
  color: #fff;
  font-weight: lighter;
  border-top-right-radius: 15px;
  border-bottom-right-radius: 15px;
  background-color: #99e2d0;
  margin-right: -17%;
  margin-top: -1px;
  border: none;
  transition: margin-right 0.5s;
}
button.button-m .icon-price i {
  color: #fff;
  transform: rotate(-180deg);
  transition: transform 0.5s ease-in-out;
}
@keyframes menu-anim {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}
form.button__menu {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 150px;
}
form.button__menu > button {
  background: #ff79da;
  background: linear-gradient(178deg, #ff79da 0%, #9356dc 87%);
  width: 217px;
  height: 52px;
  border: none;
  border-radius: 50px 50px 50px 50px;
  color: #fff;
  box-shadow: 0px 6px 15px 0px #d2d2d2;
}
form.button__menu :hover {
  cursor: pointer;
  background-color: #f2eafb;
  box-shadow: 0px 10px 10px 0px #c5c5c5;
  filter: sepia(20%);
}
@media (min-width: 550px) {
  section.restaurant nav {
    height: auto;
    margin-left: 10%;
    margin-right: 10%;
  }
  section.restaurant nav .card {
    height: 10%;
  }
  section.menu_1 {
    margin-left: 10%;
    margin-right: 10%;
    height: auto;
  }
  section.menu_1 img {
    width: 100%;
    height: 115%;
  }
}
@media (min-width: 990px) {
  section.fonctionnement {
    max-width: 970px;
    margin-left: auto;
    margin-right: auto;
  }
  section.--grid {
    width: 90%;
    margin-left: 5%;
    margin-right: 5%;
    margin-bottom: 5%;
    border-radius: 15px;
  }
  section.--grid nav {
    display: grid;
    grid-template-columns: repeat(2, 2fr);
    margin-left: 15%;
    margin-bottom: 5%;
  }
  section.--grid nav .card {
    max-width: 100%;
    height: 80%;
  }
  section.--grid nav :hover i {
    color: red;
    animation-name: heart-anim;
    animation-duration: 300ms;
    background: linear-gradient(to bottom, #9356dc 0%, #ff79da 100%);
    -webkit-background-clip: text;
    -moz-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation-fill-mode: forwards;
  }
  @keyframes heart-anim {
    0% {
      transform: scale(0);
      font-weight: bold;
    }
    100% {
      transform: scale(1);
      font-weight: bold;
    }
  }
  section.menu_1 {
    margin-left: 25%;
    margin-right: 25%;
    margin-bottom: 10%;
    height: auto;
  }
  section.menu_1 img {
    width: 100%;
    height: 115%;
  }
  section.menu_1:hover {
    cursor: pointer;
  }
  section.menu_1:hover .container__header i {
    animation-name: heart-anim;
    animation-duration: 300ms;
    background: linear-gradient(to bottom, #9356dc 0%, #ff79da 100%);
    -webkit-background-clip: text;
    -moz-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation-fill-mode: forwards;
  }
  @keyframes heart-anim {
    0% {
      transform: scale(0);
      font-weight: bold;
    }
    100% {
      transform: scale(1);
      font-weight: bold;
    }
  }
  footer {
    width: 100%;
    height: 200px;
  }
  footer .footer .footer__logo {
    text-align: center;
  }
  footer .footer .text {
    margin-left: 25%;
    margin-top: 25px;
    font-size: medium;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  footer .footer .text i {
    font-size: medium;
  }
} /*# sourceMappingURL=style.css.map */
.agency-signature {
  display: flex;
  flex-direction: column;
  align-items: center;

  margin: 45px auto 5px;
  padding-top: 28px;

  border-top: 1px solid rgba(255, 255, 255, 0.07);

  text-align: center;
}