*, body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
}

html {
  width: 100%;
  height: 100%;
}

body {
  width: 100%;
  height: 100%;
  overflow: scroll;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* nav bar */
header {
  width: 100%;
}

.navbar {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.navbar__title {
  width: 100%;
  font-size: 40px;
  padding-top: 13px;
  padding-bottom: 3px;
  margin: 0px;
  z-index: 1;
  box-shadow: 0px 2px 5px 0px rgba(139, 139, 139, 0.367);
}
.navbar__title__img {
  width: 43%;
}
.navbar__localisation {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  width: 100%;
  background-color: #eaeaea;
  padding: 6px;
  font-weight: 800;
  color: #595959;
}
.navbar__localisation__icon {
  position: relative;
  right: 5px;
  font-size: 17px;
  color: black;
  margin-right: 7px;
}
.navbar__localisation__txt {
  position: relative;
  right: 5px;
  font-size: 16px;
  font-weight: 300;
  font-optical-sizing: auto;
  word-spacing: -1px;
  margin: 10px;
}

a {
  text-decoration: none;
  color: black;
}

/* loader */
.global__Loader {
  height: 100%;
  width: 100%;
  -webkit-animation: body 3s ease-in-out;
  animation: body 3s ease-in-out;
}

.section {
  z-index: 10;
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  background: -webkit-linear-gradient(-80deg, #FF79DA, #9356DC);
  height: 100%;
  width: 100%;
  -webkit-animation: close linear 3s;
  animation: close linear 3s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  overflow: hidden;
}
.section__loader {
  width: 250px;
  height: 250px;
  min-width: 250px;
  min-height: 250px;
  display: inline-block;
  position: relative;
}
.section__loader-quart {
  border-radius: 50%;
  position: relative;
}
.section__loader-quart::after {
  content: "";
  position: absolute;
  top: -6px;
  left: -8px;
  right: -6px;
  bottom: -6px;
  border: 6px solid transparent;
  border-top-color: #FFF;
  border-radius: 50%;
  -webkit-animation: spin 0.8s linear 4;
  animation: spin 0.8s linear 4;
}
.section__images {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.img {
  position: absolute;
  width: 500px;
  height: 500px;
}
.img.assiette {
  -webkit-animation: assiette 1s ease-in-out;
  animation: assiette 1s ease-in-out;
}
.img.fourchette {
  transform: translate(-999px, 500px);
  -webkit-animation: fourchette 1s ease-in-out;
  animation: fourchette 1s ease-in-out;
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
.img.couteau {
  transform: translate(999px, 500px);
  -webkit-animation: couteau 1s ease-in-out;
  animation: couteau 1s ease-in-out;
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

/* animation loader */
@-webkit-keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@-webkit-keyframes close {
  0% {
    height: 100%;
  }
  90% {
    height: 100%;
  }
  100% {
    height: 0%;
  }
}
@keyframes close {
  0% {
    height: 100%;
  }
  90% {
    height: 100%;
  }
  100% {
    height: 0%;
  }
}
@-webkit-keyframes body {
  0% {
    overflow: hidden;
    height: 0%;
  }
  100% {
    height: 100%;
    overflow: hidden;
  }
}
@keyframes body {
  0% {
    overflow: hidden;
    height: 0%;
  }
  100% {
    height: 0%;
    overflow: hidden;
  }
}
@-webkit-keyframes assiette {
  0% {
    transform: translate(999px, 999px);
  }
  100% {
    transform: translate(0px, 0px);
  }
}
@keyframes assiette {
  0% {
    transform: translate(999px, 999px);
  }
  100% {
    transform: translate(0px, 0px);
  }
}
@-webkit-keyframes fourchette {
  0% {
    transform: translate(-999px, 500px);
  }
  100% {
    transform: translate(0px, 0px);
  }
}
@keyframes fourchette {
  0% {
    transform: translate(-999px, 500px);
  }
  100% {
    transform: translate(0px, 0px);
  }
}
@-webkit-keyframes couteau {
  0% {
    transform: translate(999px, 500px);
  }
  100% {
    transform: translate(0px, 0px);
  }
}
@keyframes couteau {
  0% {
    transform: translate(999px, 500px);
  }
  100% {
    transform: translate(0px, 0px);
  }
}
/* reservation  */
.reservation {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #f6f6f6;
}
.reservation__title {
  font-optical-sizing: auto;
  padding: 40px 30px 14px;
  font-size: 23px;
  font-weight: bold;
}
.reservation__txt {
  padding: 0px;
  word-spacing: -1px;
  font-size: 18px;
  margin-bottom: 30px;
  color: rgba(136, 136, 136, 0.847);
  font-weight: 100;
}
.reservation__btn {
  font-size: 16px;
  padding: 16px 23px;
  border-radius: 30px;
  color: white;
  text-decoration: none;
  box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.44);
  background: linear-gradient(175deg, #FF79DA, #9356DC);
  transition: all 0.2s linear;
  margin-top: 0px;
  margin-bottom: 55px;
}
.reservation__btn:hover {
  -webkit-filter: brightness(1.1);
  filter: brightness(1.1);
  box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.44);
  transition: all 0.2s linear;
}

/* fonctionnement  */
.fonctionnement {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: 100%;
}
.fonctionnement__title {
  font-size: 23px;
  text-align: left;
  font-weight: bold;
  /* margin: haut droite bas gauche */
  margin: 50px 0px 15px 20px;
}
.fonctionnement__container {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  flex-direction: column;
  margin-bottom: 30px;
}
.fonctionnement__container__content {
  -webkit-animation: 0.8s linear 0.3s starte;
  animation: 0.8s linear 0.3s starte;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  left: 2px;
  width: 85%;
  margin: 10px;
  padding: 10px;
  border-radius: 20px;
  background-color: #f6f6f6;
  box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.1);
}
.fonctionnement__container__content:hover {
  background-color: #9256dc1e;
  cursor: pointer;
}
.fonctionnement__container__content:hover .fonctionnement__container__content__icon {
  color: #9356DC;
}
.fonctionnement__container__content:hover .fonctionnement__container__content__icons__icon {
  color: #9356DC;
}
.fonctionnement__container__content__nums {
  position: relative;
  right: 20px;
  background-color: #9356DC;
  border-radius: 50%;
  padding: 4px 7px;
  height: auto;
  width: auto;
  max-width: 26px;
  min-width: 26px;
  max-height: 26px;
  color: white;
}
.fonctionnement__container__content__nums__num {
  font-size: 16px;
  margin-top: 10px;
  margin-bottom: 10px;
}
.fonctionnement__container__content__icons {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 20px;
  overflow: hidden;
  margin-left: 5px;
}
.fonctionnement__container__content__icons__icon {
  margin: 1px;
  font-size: 20px;
  color: gray;
}
.fonctionnement__container__content__icon {
  color: gray;
  font-size: 20px;
  font-weight: 900;
  width: 20px;
  max-width: 20px;
  margin-left: 5px;
}
.fonctionnement__container__content__txt {
  font-weight: 100;
  color: rgba(0, 0, 0, 0.707);
  font-size: 16px;
  padding: 18px;
  padding-left: 20px;
}

@-webkit-keyframes starte {
  0% {
    margin-top: 40px;
    opacity: 0;
  }
  100% {
    opacity: 1;
    margin-top: 20px;
  }
}
@keyframes starte {
  0% {
    margin-top: 40px;
    opacity: 0;
  }
  100% {
    opacity: 1;
    margin-top: 20px;
  }
}
/* restaurants  */
.restaurants {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background-color: #f6f6f6;
  width: 100%;
  margin-top: 30px;
  padding-bottom: 65px;
}
.restaurants__title {
  font-size: 24px;
  margin: 50px 0px 0px 20px;
  text-align: left;
}
.restaurants__containers {
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.restaurants__containers__content {
  display: flex;
  align-items: center;
  flex-direction: column;
  max-width: 330px;
  max-height: 250px;
  width: 90%;
  border-radius: 20px;
  margin-top: 20px;
  box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1);
}
.restaurants__containers__content__img {
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  min-height: 175px;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-end;
}
.restaurants__containers__content__img__new {
  display: flex;
  align-items: center;
  justify-content: space-around;
  text-align: right;
  font-size: 12px;
  font-weight: bold;
  color: rgba(0, 0, 0, 0.405);
  width: 79px;
  height: 29px;
  position: relative;
  top: 15px;
  right: 15px;
  border-radius: 5%;
  background-color: #99E2D0;
}
.restaurants__containers__content__img.img--0 {
  background-image: url(../images/restaurants/jay-wennington-N_Y88TWmGwA-unsplash.jpg);
}
.restaurants__containers__content__img.img--1 {
  background-image: url(../images/restaurants/stil-u2Lp8tXIcjw-unsplash.jpg);
}
.restaurants__containers__content__img.img--2 {
  background-image: url(../images/restaurants/toa-heftiba-DQKerTsQwi0-unsplash.jpg);
}
.restaurants__containers__content__img.img--3 {
  background-image: url(../images/restaurants/louis-hansel-shotsoflouis-qNBGVyOCY8Q-unsplash.jpg);
}
.restaurants__containers__content__description {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 98%;
  max-width: 100%;
  height: 80px;
}
.restaurants__containers__content__description__txt {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 10px;
  text-align: left;
}
.restaurants__containers__content__description__title {
  margin-bottom: 5px;
  font-size: 17px;
}
.restaurants__containers__content__description__localisation {
  font-size: 17px;
  color: gray;
}
.restaurants__containers__content__description__icons {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 40px;
  height: 30px;
  overflow: hidden;
  transition: all 0.2s linear;
  margin-right: 20px;
}
.restaurants__containers__content__description__icons__icon {
  font-size: 30px;
}
.restaurants__containers__content__description__icons:active {
  cursor: pointer;
}
.restaurants__containers__content__description__icons:active .desactive {
  opacity: 0;
  transition: all 0.2s linear;
}
.restaurants__containers__content__description__icons:active .active {
  transform: translateY(-100%);
  background: -webkit-linear-gradient(80deg, #FF79DA, #9356DC);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 1;
  transition: all 0.2s linear;
}
.restaurants__containers__content__description__icons__icon {
  font-size: 30px;
}

.active {
  opacity: 0;
  transition: all 0.5s linear;
}

/* footer */
.footer {
  background-color: #282828ec;
  color: white;
  width: 100%;
  padding: 0px;
  padding-bottom: 10px;
}
.footer__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-evenly;
  padding: 20px;
  padding-bottom: 17px;
}
.footer__content__img {
  width: 33%;
  color: transparent;
  -webkit-filter: invert(100%);
  filter: invert(100%);
  padding: 5px 0px 12px 5px;
  margin-bottom: 5px;
}
.footer__content__lien {
  color: white;
  font-size: 16px;
  margin: 4px;
}
.footer__content__lien__icon {
  font-size: 14px;
  padding: 0px 15px 0px 0px;
  width: 20px;
}

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