@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Roboto+Condensed:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&family=Spectral:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,200;1,300;1,400;1,500;1,600;1,700;1,800&family=Train+One&display=swap");
.card {
  position: absolute;
  padding: 42px 32px;
  clip-path: circle(5% at 95% 11%);
  transition: all ease-in-out 0.3s;
  background-color: #ffffff;
}
.card__infoicon {
  position: absolute;
  top: 8px;
  right: 19px;
  font-size: 1.4em;
  color: #525252;
  transition: ease-out 0.3s;
}
.card__title {
  margin: 0;
  font-size: 3em;
  line-height: 1.8;
}
.card__description {
  margin: 0;
  font-size: 1.1em;
  line-height: 1.6;
}
.card:hover, .card:focus {
  clip-path: circle(75%);
  border-radius: 20px;
  box-shadow: 0px 3px 9px rgba(0, 0, 0, 0.12), 0px 3px 18px rgba(0, 0, 0, 0.08);
  background: #5b5b5b;
  color: white;
  outline: none;
}
.card:hover .card__infoicon, .card:focus .card__infoicon {
  opacity: 0;
}
.card:focus {
  box-shadow: 0px 3px 9px rgba(0, 0, 0, 0.12), 0px 3px 18px rgba(0, 0, 0, 0.08), 0px 0px 0px 4px rgba(0, 0, 0, 0.2);
}

.error_container {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 10rem;
}
.error_container img {
  width: 5%;
  animation-name: error;
  animation-duration: 3s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

@keyframes error {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(160deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.error_content {
  display: flex;
  margin-top: 5rem;
  gap: 2rem;
  align-items: center;
  flex-direction: column;
  font-size: 25px;
}
.error_content strong {
  color: red;
}
.error_content p {
  color: white;
}
.error_content a {
  letter-spacing: 1.5px;
  line-height: 24px;
  font-weight: 400;
  padding: 0.3rem;
  font-family: "Spectral", serif;
  color: #fff;
  transition: color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}
.error_content a:hover {
  box-shadow: inset 500px 0 0 0 #fff;
  color: #242424;
}

.warning {
  padding: 1rem;
  position: fixed;
  top: 0;
  width: 100%;
  background: #c24a4a;
  color: white;
  font-size: 25px;
}

.good {
  padding: 1rem;
  position: fixed;
  top: 0;
  width: 100%;
  background: #7c9b7c;
  color: white;
  font-size: 25px;
}

.container {
  max-width: 1024px;
  margin: 0 auto;
  padding: 3rem 0;
  bottom: 0;
  display: grid;
  place-items: center;
}

.sec__container {
  display: flex;
  flex-wrap: wrap;
  width: 60%;
  max-width: 60%;
  margin: 20px auto;
  justify-content: center;
}

/* COOKIE CONSENT BOX */
.cookie__box {
  --clr-primary: #c1610c;
  --clr-accent: #615f5f;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: fixed;
  bottom: 30px;
  left: 30px;
  max-width: 365px;
  width: 60%;
  border-radius: 15px;
  text-align: center;
  padding: 25px 25px 30px;
  transform: translateX(0px);
  background-color: #ffffff;
}

.cookie__box.hide {
  display: none;
  transform: translateX(-500px);
}

.cookie__box > img {
  max-width: 90px;
}

.cookie__box .content {
  margin-top: 10px;
}

.cookie__box .content h2 {
  font-size: 24px;
  font-weight: 700;
}

.cookie__box .content p {
  font-size: 15px;
  margin: 5px 0 20px;
  color: var(--clr-accent);
}

.cookie__box .content .btn__group {
  display: flex;
  justify-content: center;
  align-items: center;
}

.cookie__box .content .btn__group * {
  margin: 0 10px;
}

.cookie__box .content .btn__group .accept__btn {
  padding: 10px 20px;
  outline: none;
  font-size: 16px;
  font-weight: 500;
  border-radius: 5px;
  cursor: pointer;
  border: 2px solid var(--clr-primary);
  color: #ffffff;
  background-color: var(--clr-primary);
}

.cookie__box .content .btn__group .accept__btn:hover {
  background-color: #ffffff;
  color: var(--clr-primary);
}

.cookie__box .content .btn__group .learn__more-btn {
  text-decoration: none;
  color: var(--clr-primary);
}

.cookie__box .content .btn__group .learn__more-btn:hover {
  text-decoration: underline;
}

/* For medium devices */
@media screen and (max-width: 600px) {
  .cookie__box {
    left: 10px;
    bottom: 10px;
    padding: 20px 10px;
  }
}
/* For small devices */
@media screen and (max-width: 400px) {
  .cookie__box {
    max-width: 340px;
  }
  .cookie__box .content .btn__group {
    flex-direction: column;
    gap: 15px;
  }
}
/* For extra-small devices */
@media screen and (max-width: 320px) {
  .cookie__box {
    max-width: 290px;
  }
}
.login_container {
  display: flex;
  width: 100%;
  justify-content: center;
  padding: 4rem;
}

.main {
  width: 350px;
  height: 500px;
  background: red;
  overflow: hidden;
  background: url("https://doc-08-2c-docs.googleusercontent.com/docs/securesc/68c90smiglihng9534mvqmq1946dmis5/fo0picsp1nhiucmc0l25s29respgpr4j/1631524275000/03522360960922298374/03522360960922298374/1Sx0jhdpEpnNIydS4rnN4kHSJtU1EyWka?e=view&authuser=0&nonce=gcrocepgbb17m&user=03522360960922298374&hash=tfhgbs86ka6divo3llbvp93mg4csvb38") no-repeat center/cover;
  border-radius: 10px;
  box-shadow: 5px 20px 50px #000;
}
.main #chk {
  display: none;
}
.main .signup {
  position: relative;
  width: 100%;
  height: 100%;
}

tr {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-around;
}

label {
  color: #fff;
  font-size: 2.3em;
  justify-content: center;
  display: flex;
  margin: 60px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.5s ease-in-out;
}

input {
  width: 60%;
  height: 30px;
  background: #e0dede;
  justify-content: center;
  display: flex;
  margin: 20px auto;
  padding: 0.5rem;
  border: none;
  outline: none;
  cursor: pointer;
  border-radius: 5px;
}

button {
  width: 60%;
  height: 40px;
  margin: 10px auto;
  justify-content: center;
  display: block;
  color: #fff;
  background: #525252;
  font-size: 1em;
  font-weight: bold;
  margin-top: 20px;
  outline: none;
  border: none;
  border-radius: 5px;
  transition: 0.2s ease-in;
  cursor: pointer;
}

button:hover {
  background: #4c4d4d;
}

.login {
  height: 460px;
  background: #eee;
  border-radius: 60%/10%;
  transform: translateY(-180px);
  transition: 0.3s ease-in;
}
.login label {
  color: #525252;
  transform: scale(0.6);
}
.login a {
  text-align: center;
  color: #4c4d4d;
  text-decoration: none;
}

#forgot {
  text-align: center;
  padding: 1rem;
  font-weight: 700;
  text-decoration: underline;
}

#chk:checked ~ .login {
  transform: translateY(-500px);
}

#chk:checked ~ .login label {
  transform: scale(1);
}

#chk:checked ~ .signup label {
  transform: scale(0.6);
}

.signup a {
  color: white;
  padding: 1em;
  text-align: center;
  margin-top: 5rem;
}

.icon-cards {
  position: relative;
  width: 60vw;
  height: 40vw;
  max-width: 380px;
  max-height: 250px;
  margin: 0;
  color: white;
  perspective: 1000px;
  transform-origin: center;
}
.icon-cards__content {
  position: absolute;
  width: 100%;
  height: 100%;
  transform-origin: center;
  transform-style: preserve-3d;
  transform: translateZ(-30vw) rotateY(0);
  animation: carousel 10s infinite cubic-bezier(0.77, 0, 0.175, 1) forwards;
}
.icon-cards__content.step-animation {
  animation: carousel 8s infinite steps(1) forwards;
}
.icon-cards__item {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 60vw;
  height: 40vw;
  max-width: 380px;
  max-height: 250px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  transform-origin: center;
}
.icon-cards__item:nth-child(1) {
  background: url("../images/plat2.png");
  background-size: cover;
  transform: rotateY(0) translateZ(35vw);
}
.icon-cards__item:nth-child(2) {
  background: url("../images/plat3.png");
  background-size: cover;
  transform: rotateY(120deg) translateZ(35vw);
}
.icon-cards__item:nth-child(3) {
  background: url("../images/plat1.png");
  background-size: cover;
  transform: rotateY(240deg) translateZ(35vw);
}
.icon-cards__item:nth-child(4) {
  background: url("../images/plat4.png");
  background-size: cover;
  transform: rotateY(240deg) translateZ(35vw);
}

@keyframes carousel {
  0%, 17.5% {
    transform: translateZ(-35vw) rotateY(0);
  }
  27.5%, 45% {
    transform: translateZ(-35vw) rotateY(-120deg);
  }
  55%, 72.5% {
    transform: translateZ(-35vw) rotateY(-240deg);
  }
  82.5%, 100% {
    transform: translateZ(-35vw) rotateY(-360deg);
  }
}
.checkbox {
  position: relative;
  margin-top: 2rem;
  font-size: 0.9rem;
  font-weight: bold;
  text-transform: uppercase;
  color: #F47956;
  transition: color 0.3s ease;
  user-select: none;
}
.checkbox:hover {
  color: #F7A95A;
}
.checkbox__checkbox {
  position: relative;
  top: 0;
  width: 1.0625rem;
  height: 1.0625rem;
  background: white;
  border: 1px solid currentColor;
  border-radius: 4px;
  vertical-align: middle;
  transition: background 0.1s ease;
  cursor: pointer;
}
.checkbox__checkbox::after {
  content: "";
  position: absolute;
  top: 1px;
  left: 5px;
  width: 5px;
  height: 11px;
  opacity: 0;
  transform: rotate(45deg) scale(0);
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transition: all 0.3s ease;
  transition-delay: 0.15s;
}
.checkbox__label {
  margin-left: 5px;
  vertical-align: middle;
  cursor: pointer;
}
.checkbox > input:checked ~ .checkbox__checkbox {
  border-color: transparent;
  background: #F47956;
  animation: jelly 0.6s ease;
}
.checkbox > input:checked ~ .checkbox__checkbox:after {
  opacity: 1;
  transform: rotate(45deg) scale(1);
}

@keyframes jelly {
  from {
    transform: scale(1, 1);
  }
  30% {
    transform: scale(1.25, 0.75);
  }
  40% {
    transform: scale(0.75, 1.25);
  }
  50% {
    transform: scale(1.15, 0.85);
  }
  65% {
    transform: scale(0.95, 1.05);
  }
  75% {
    transform: scale(1.05, 0.95);
  }
  to {
    transform: scale(1, 1);
  }
}
.admin_section {
  width: 100%;
  display: flex;
  justify-content: center;
}
.admin_section .admin_container {
  width: 80%;
  margin: 5rem;
  height: 100vh;
  display: flex;
}
.admin_section .admin_container .left {
  background: #1A1C1E;
  width: 20%;
}
.admin_section .admin_container .left nav {
  width: 100%;
  display: flex;
}
.admin_section .admin_container .left nav ul {
  width: 100%;
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.admin_section .admin_container .left nav ul li {
  box-shadow: 1px -1px 7px 0 black;
  width: 100%;
  padding: 0.5rem;
  text-align: center;
  background-color: #4c4d4d;
  transition: 0.3s;
}
.admin_section .admin_container .left nav ul li:hover {
  background-color: #1A1C1E;
}
.admin_section .admin_container .left nav ul li a {
  font-size: 18px;
  text-transform: uppercase;
  text-decoration: none;
  color: white;
}
.admin_section .admin_container .right {
  height: auto;
  width: 80%;
  padding: 1rem;
  overflow: scroll;
}
.admin_section .admin_container .right .welcome_section {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid #E7E7E7;
  gap: 1rem;
}
.admin_section .admin_container .right .welcome_section h3 {
  color: #E7E7E7;
}
.admin_section .admin_container .right .welcome_section p {
  color: #E7E7E7;
}
.admin_section .admin_container .right .welcome_section a {
  background: #4c4d4d;
  padding: 0.4rem;
  transition: 0.5s;
}
.admin_section .admin_container .right .welcome_section a:hover {
  opacity: 0.4;
}

.connect_container {
  width: 100%;
  display: flex;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  color: white;
}
.connect_container h5 {
  color: white;
  font-size: 45px;
  text-align: center;
}
.connect_container ul {
  list-style: none;
  margin-top: 1.5rem;
}
.connect_container ul li a {
  background: white;
  color: black !important;
  padding: 0.4rem !important;
}
.connect_container .connect_form {
  display: flex;
  align-items: start;
  margin-top: 2rem;
  width: 100%;
}
.connect_container .connect_form form {
  width: 100%;
  padding: 1rem;
  display: flex;
  gap: 3rem;
  flex-direction: column;
}
.connect_container .connect_form form label {
  font-size: 15px;
  text-align: left !important;
  color: #fff;
  justify-content: center;
  display: flex;
  font-weight: bold;
  margin: 0 !important;
  cursor: pointer;
  transition: 0.5s ease-in-out;
}
.connect_container .connect_form form input {
  width: 20%;
  height: 45px;
  background: #4c4d4d;
  justify-content: center;
  display: flex;
  margin: 20px auto;
  border: 1px solid white;
  padding: 0.5rem;
  outline: none;
  cursor: pointer;
  color: white;
  border-radius: 5px;
}
.connect_container .connect_form form select {
  width: 20%;
  height: 45px;
  background: #4c4d4d;
  justify-content: center;
  display: flex;
  margin: 20px auto;
  border: 1px solid white;
  padding: 0.5rem;
  outline: none;
  cursor: pointer;
  color: white;
  border-radius: 5px;
}

#plat_create {
  font-size: 15px;
  width: 20%;
  text-align: center;
}

.container_modify {
  width: 100%;
}
.container_modify h2 {
  text-align: center;
  color: white;
  font-family: "Spectral", serif;
}

.modifyPlat {
  padding: 1rem;
  display: flex;
  margin-top: 2rem;
  justify-content: space-around;
  background: rgba(53, 53, 54, 0.6);
}
.modifyPlat p {
  font-family: "Spectral", serif;
  color: white;
}
.modifyPlat p span {
  background: white;
  padding: 0.2rem;
  border-radius: 7px;
  color: black;
}

.modifyContent {
  display: flex;
  justify-content: space-around;
}
.modifyContent .modifyImage {
  width: 30%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem;
  justify-content: center;
}
.modifyContent .modifyImage img {
  width: 100%;
}
.modifyContent .modifyImage p {
  font-size: 18px;
  color: white;
  font-family: "Spectral", serif;
}

.modifyForm {
  margin-top: 2rem;
  width: 50%;
}
.modifyForm form div {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.modifyForm form label {
  font-size: 18px;
  margin: 0 !important;
  text-align: start;
  font-family: "Spectral", serif;
}
.modifyForm form input {
  padding: 1rem;
  font-size: 19px;
  height: auto !important;
}
.modifyForm form p {
  font-family: "Spectral", serif;
  color: white;
  text-align: center;
}

.end_modify {
  display: flex;
  justify-content: space-evenly;
  flex-direction: row !important;
}
.end_modify input {
  margin: 0 !important;
  font-size: 15px !important;
  width: 40%;
}
.end_modify .fas {
  color: white;
  font-size: 30px;
}

@media screen and (max-width: 768px) {
  .a_propos {
    width: 100%;
    gap: 1rem;
    height: 85vh;
    display: flex;
    padding: 5rem;
    flex-direction: column;
    align-items: center;
  }
  .a_propos .team_content {
    width: 100%;
    gap: 1rem;
    align-items: center;
    max-width: 100%;
  }
  .contact_container h3 {
    font-size: 45px;
  }
}
.container_profil {
  width: 100%;
  color: white;
  flex-direction: column;
  display: flex;
  padding: 2rem 8rem;
  gap: 1rem;
}
.container_profil a {
  margin-top: 1rem;
  background: white;
  color: black !important;
  width: 30%;
  text-align: center;
  transition: 0.3s in ease-in;
}
.container_profil a:hover {
  opacity: 0.4;
}

.categ_profil {
  padding: 2rem 8rem;
  width: 100%;
  display: flex;
  cursor: pointer;
  gap: 1rem;
}
.categ_profil .box_dropDown {
  width: 50%;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  border-radius: 7px;
  justify-content: space-between;
  position: relative;
}
.categ_profil .box_dropDown .box_top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid white;
  padding: 1rem;
}
.categ_profil .box_dropDown .showDropDown {
  padding: 1rem;
  border: 1px solid white;
  display: none;
  flex-direction: column;
}
.categ_profil .box_dropDown .showDropDown form {
  display: flex;
  align-items: initial;
  flex-direction: column;
}
.categ_profil .box_dropDown .showDropDown form div {
  display: flex;
  flex-direction: column;
  font-family: "Spectral", serif;
  align-items: flex-start;
}
.categ_profil .box_dropDown .showDropDown form label {
  font-size: 15px;
  margin: 0;
  padding: 0;
  text-align: initial;
}
.categ_profil .box_dropDown .showDropDown form input {
  width: 100%;
  height: 30px;
  background: #e7e7e7;
  justify-content: center;
  display: flex;
  margin: 20px auto;
  padding: 0.5rem;
  border: none;
  outline: none;
  cursor: pointer;
  border-radius: 5px;
}
.categ_profil .box_dropDown .showDropDown form .valideForm {
  right: 0;
  width: 30%;
  background: #7c9b7c;
  color: white;
  font-family: "Spectral", serif;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0;
  padding: 0;
}

.menuDelete {
  display: none;
  width: 100%;
  background: rgba(101, 92, 92, 0.6);
  height: 100%;
  padding: 0 !important;
  top: 0;
  justify-content: center;
  align-items: center;
  left: 0;
  margin: 0;
  position: fixed;
}

.hideBoxDelete {
  background: #2d2c2c;
  border-radius: 7px;
  width: 50%;
  display: flex;
  padding: 1rem;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  z-index: 999;
}
.hideBoxDelete h5 {
  font-size: 30px;
}
.hideBoxDelete div {
  justify-content: space-between;
  width: 100%;
  display: flex;
  align-items: center;
}
.hideBoxDelete div a {
  font-size: 15px;
}

.warning {
  padding: 1rem;
  background: red;
  color: white;
  width: 100%;
  text-align: center;
  position: fixed;
  top: 0;
}

.shopping .end_shop a, .box_admin a, .box_presta a, .with_us .with_header .plat_content ul a, .container_home .left a, #createPresta, header nav ul li a, .admin_section .admin_container .right .welcome_section a, .connect_container ul li a, .container_profil a {
  text-decoration: none;
  color: #E7E7E7;
  font-size: 17px;
  padding: 0;
  font-family: "Spectral", serif;
}

::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

::-webkit-scrollbar-track-piece {
  background-color: #242424;
}

::-webkit-scrollbar-thumb:vertical {
  height: 30px;
  background-color: #E7E7E7;
}

.maps_localisation h3, .a_propos .team_content h3, .propos_container h3, .top_cook h3 {
  margin-left: 5rem;
  font-family: "Spectral";
  font-style: normal;
  font-weight: 500;
  font-size: 40px;
  line-height: 61px;
  /* identical to box height */
  color: #E7E7E7;
  letter-spacing: 1.5px;
}

footer div, .contact_container .test .open_section div, .contact_container, .a_propos, .with_us .with_header .plat_content ul, .top_cook .slide_top, .container_home, header nav ul, header, .header_top, .maps_localisation h3, .a_propos .team_content h3, .propos_container h3, .top_cook h3 {
  display: flex;
  flex-direction: row;
  gap: 1rem;
}

footer, .contact_container .contact_content .contact_form form div, .contact_container .contact_content, .contact_container .test .open_section, .a_propos .team_content, .with_us .with_header, .container_home .right ul, .container_home .left .who_info, header nav {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

* {
  scroll-behavior: smooth;
  box-sizing: border-box;
  padding: 0;
  font-family: "Lato", sans-serif;
  margin: 0;
}
*::selection {
  background: #E7E7E7;
  color: #242424;
}

body {
  background-color: #1A1C1E;
  max-width: 100%;
}

.header_top {
  width: 100%;
  justify-content: center;
}
.header_top .header_content {
  width: 60%;
}

@keyframes titleFadein {
  0% {
    transform: translateY(100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0%);
    opacity: 1;
  }
}
@keyframes navBarFadeIn {
  0% {
    transform: translateY(-10%);
    opacity: 0;
  }
  100% {
    transform: translateY(0%);
    opacity: 1;
  }
}
header {
  justify-content: center;
  padding: 2.5rem;
  width: 100%;
  display: flex;
  align-items: center;
  animation: navBarFadeIn 1s ease-in-out;
}
header nav {
  width: 100%;
  align-items: center;
}
header nav ul {
  list-style: none;
  gap: 3rem;
  justify-content: space-between;
}
header nav ul li a {
  letter-spacing: 1.5px;
  line-height: 24px;
  font-weight: 400;
  font-family: "Spectral", serif;
  color: #E7E7E7;
  padding: 3px;
  transition: color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}
header nav ul li a:hover {
  box-shadow: inset 200px 0 0 0 #E7E7E7;
  color: #242424;
}
header nav .barre_bottom {
  margin-top: 0.3rem;
  display: flex;
  background-color: #FFFFFF;
  height: 2px;
  justify-content: center;
  z-index: -2;
  width: 80%;
  position: relative;
}
header nav .barre_bottom .fas {
  position: absolute;
  color: white;
  font-size: 10px;
  z-index: 99;
  bottom: 10%;
  left: 15%;
}

#createPresta {
  background: white;
  color: black;
  padding: 0.4rem;
}

.container_home {
  width: 100%;
  margin-top: 5rem;
  gap: 0;
  justify-content: space-between;
  height: 600px;
}
.container_home .left {
  position: relative;
  width: 40%;
}
.container_home .left .who_info {
  justify-content: center;
  align-items: center;
}
.container_home .left a {
  background-color: #E7E7E7;
  color: #242424;
  padding: 0.5rem;
  font-size: 30px;
  margin-top: 10rem;
  text-transform: uppercase;
  transition: 0.3s;
}
.container_home .left a:hover {
  background: none;
  border: 1px solid #E7E7E7;
  color: #E7E7E7;
}
.container_home .left h1 {
  font-family: "Train One", cursive;
  font-style: normal;
  font-weight: 400;
  font-size: 96px;
  line-height: 139px;
  text-align: center;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.3);
  animation: titleFadein 0.5s ease-in-out forwards;
}
.container_home .right {
  padding: 1rem;
  position: relative;
  width: 50%;
  background: url("../images/wallpaper_1.png");
  background-size: cover;
}
.container_home .right ul {
  list-style: none;
}
.container_home .right ul li a {
  font-size: 30px;
  top: 0;
  transition: 0.2s;
}
.container_home .right ul li a .fab {
  color: #E7E7E7;
  transition: 0.2s;
}
.container_home .right ul li a .fab:hover {
  opacity: 0.8;
}

.top_cook {
  background: #242424;
  width: 100%;
  box-shadow: 1px 14px 7px 2px rgba(70, 65, 65, 0.22);
  padding: 5rem 2rem;
}
.top_cook .slide_top {
  margin-top: 2rem;
  justify-content: space-evenly;
}
.top_cook .slide_top div img {
  border-radius: 25px;
}

.propos_container {
  margin-top: 10rem;
}
.categories {
  display: flex;
  gap: 1rem;
}
.categories p {
  font-family: "Spectral";
  font-style: normal;
  cursor: pointer;
  font-weight: 500;
  font-size: 24px;
  line-height: 37px;
  letter-spacing: 1.5px;
  color: #FFFFFF;
  transition: color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}
.categories p:hover {
  box-shadow: inset 200px 0 0 0 #E7E7E7;
  color: #242424;
}

.with_us {
  margin-top: 3rem;
  background: #242424;
  box-shadow: 0px 19px 21px 10px rgba(0, 0, 0, 0.25);
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 5rem 2rem;
}
.with_us .with_header {
  width: 80%;
  gap: 4rem;
}
.with_us .with_header .search_content {
  width: 100%;
  background: #111111;
}
.with_us .with_header .search_content div {
  display: flex;
  align-items: center;
  padding: 0.6rem;
  justify-content: space-between;
}
.with_us .with_header .search_content div h4 {
  font-family: "Spectral";
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: 37px;
  letter-spacing: 1.5px;
  color: #FFFFFF;
}
.with_us .with_header .plat_content ul {
  list-style: none;
  width: 100%;
  flex-wrap: wrap;
  justify-content: start;
  align-items: center;
}
.with_us .with_header .plat_content ul li {
  width: 15%;
  transition: 0.2s ease-in-out;
  position: relative;
}
.with_us .with_header .plat_content ul li:hover {
  transform: scale(1.1);
}
.with_us .with_header .plat_content ul li:hover .info_plat {
  display: flex;
}
.with_us .with_header .plat_content ul li img {
  border-radius: 7px;
  width: 100%;
  height: 200px;
}
.with_us .with_header .plat_content ul li .far, .with_us .with_header .plat_content ul li .fas {
  position: absolute;
  color: #EF3636;
  padding: 0.5rem;
  left: 0;
  font-size: 25px;
  cursor: pointer;
  transition: 0.4s;
}
.with_us .with_header .plat_content ul a {
  border: 1px solid #4c4d4d;
  padding: 0.3rem;
  font-size: 14px;
}

.info_plat {
  display: none;
  position: absolute;
  background: rgba(31, 30, 30, 0.65);
  top: 50%;
  bottom: 0;
  height: 50%;
  padding: 1rem;
  color: white;
  width: 100%;
  z-index: 99 !important;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
}
.info_plat #list_info {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  width: 100%;
}
.info_plat #list_info li {
  width: 100% !important;
  position: relative !important;
}
.info_plat #list_info li div {
  display: flex;
  width: 100%;
  justify-content: space-around;
}
.info_plat #list_info li p {
  font-size: 14px;
  text-align: center;
  width: 100%;
}
.info_plat #list_info li button {
  font-weight: 400;
  font-size: 13px !important;
  width: 50% !important;
  position: absolute;
  right: 0;
  bottom: 10vh;
  background: #c24a4a !important;
}

.cartTop {
  position: fixed;
  top: 5rem;
  font-size: 25px;
  right: 2rem;
  cursor: pointer;
  transition: 300ms 0.5s ease-in;
}
.cartTop #cartNumber {
  background: red;
  position: absolute;
  top: 0;
  font-size: 10px;
  padding: 0.4rem;
  border-radius: 50%;
  color: white;
}
.cartTop .cartButton {
  background: rgba(33, 33, 33, 0.56);
  color: #fffff4;
  border-radius: 50%;
  position: relative;
  padding: 1rem;
  transition: 300ms 0.5s ease-in;
}

.zoom-in {
  transform: scale(1.3);
  transition: transform 0.2s ease-out;
}

.priceArticle {
  background: #726969;
  width: 100%;
  font-weight: 400;
  padding: 1rem;
  font-size: 17px;
  color: white;
}

.a_propos {
  width: 100%;
  gap: 1rem;
  height: 85vh;
  padding: 5rem;
}
.a_propos .team_content {
  width: 40%;
  max-width: 40%;
  gap: 1rem;
  align-items: center;
}
.a_propos .team_content p {
  font-family: "Ubuntu", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  overflow: scroll;
  line-height: 26px;
  text-align: center;
  height: 100%;
  letter-spacing: 0.5px;
  color: #FFFFFF;
}
.a_propos .team_content h3 {
  font-size: 45px;
  margin: 0;
}
.a_propos .team_paper {
  width: 60%;
  background-image: url("../images/equipe.png");
  background-size: cover;
  box-shadow: 0px 15px 20px 9px rgba(0, 0, 0, 0.25);
}

.team_info {
  padding: 1rem;
  margin-top: 1rem;
  background-image: url("../images/wall2.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  height: 400px;
  align-items: center;
  width: 100%;
}

.contact_container {
  width: 100%;
  padding: 3rem;
  display: flex;
  height: 800px;
  margin-top: 6rem;
  justify-content: center;
  position: relative;
  flex-direction: column-reverse;
  align-items: stretch;
}
.contact_container .test {
  display: flex;
  flex-direction: row;
  width: 50%;
  padding: 2rem;
  justify-content: space-around;
  align-items: flex-end;
}
.contact_container .test #tablehours {
  padding-top: 30px;
  font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
  font-size: 1.3em;
  font-weight: 400;
  line-height: 26.3999996185px;
  color: #E7E7E7;
}
.contact_container .test #tablehours tbody {
  gap: 0.4rem;
  display: flex;
  align-items: flex-start;
  width: 100%;
  flex-direction: column;
}
.contact_container .test #tablehours .closed {
  color: red;
}
.contact_container .test .open_section {
  width: 50%;
  padding: 3rem;
  height: 60%;
  align-items: center;
  background: #242424;
  box-shadow: 0px 15px 20px 9px rgba(0, 0, 0, 0.25);
}
.contact_container .test .open_section div h5 {
  color: white;
  font-size: 20px;
}
.contact_container .test .open_section div span {
  padding: 4px;
  color: #E7E7E7;
  border-radius: 7px;
  background-color: #c1610c;
}
.contact_container .contact_content {
  width: 100%;
  align-items: center;
}
.contact_container .contact_content .contact_top h5 {
  color: white;
  text-transform: uppercase;
  font-size: 25px;
}
.contact_container .contact_content .contact_form {
  width: 50%;
}
.contact_container .contact_content .contact_form form {
  margin-top: 5rem;
  width: 100%;
}
.contact_container .contact_content .contact_form form label {
  font-size: 23px;
  margin: 0;
  font-weight: 400;
}
.contact_container .contact_content .contact_form form div {
  width: 100%;
}
.contact_container .contact_content .contact_form form input {
  background-color: #1A1C1E;
  padding: 0.6rem;
  width: 100%;
  height: 10%;
  color: #E7E7E7;
  font-size: 19px;
  /* box-shadow: 0 15px 20px 9px rgba(0, 0, 0, 0.25); */
  border-radius: 7px;
  border: 1px solid white;
}
.contact_container .contact_content .contact_form form textarea {
  padding: 1rem;
  resize: none;
  background-color: #1A1C1E;
  color: #E7E7E7;
  border-radius: 7px;
  font-size: 19px;
  border: 1px solid white;
}
.contact_container .contact_content .contact_form form #submit {
  transition: 0.2s;
  background: white;
  color: black;
  width: 100%;
}
.contact_container .contact_content .contact_form form #submit:hover {
  opacity: 0.7;
}
.contact_container h3 {
  position: absolute;
  font-family: "Train One", cursive;
  font-style: normal;
  top: 0;
  left: 20vw;
  font-weight: 400;
  font-size: 80px;
  line-height: 139px;
  letter-spacing: 1.5px;
  color: rgb(255, 255, 255);
  animation: titleFadein 0.5s ease-in-out forwards;
}

.active {
  opacity: 0.4;
}

.maps_localisation {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 5rem;
  align-items: center;
}
.maps_localisation h3 {
  padding: 0;
  margin: 0;
}
.maps_localisation iframe {
  width: 100%;
  height: 500px;
  border-radius: 3px;
}

footer {
  padding-top: 5rem;
  align-items: center;
}
footer hr {
  width: 90%;
}
footer div {
  justify-content: space-between;
  width: 100%;
  padding: 2rem 7rem;
}
footer div p {
  font-family: "Ubuntu", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 23px;
  letter-spacing: 1.5px;
  color: #FFFFFF;
}

.categories div.selected {
  background-color: rgba(255, 255, 244, 0.15);
  border-radius: 3px;
  color: #242424;
  transition: all 0.5s ease;
}

.menu_burger {
  display: none;
  width: 100%;
  padding: 1rem;
  position: fixed;
}
.menu_burger .fas {
  background-color: #4c4d4d;
  border-radius: 50%;
  cursor: pointer;
  color: #E7E7E7;
  position: fixed;
  top: 0;
  left: 2rem;
  font-size: 30px;
}

.ligne {
  padding: 1rem;
  color: white;
  display: flex;
  justify-content: space-between;
  width: 95%;
}

.welcome_section {
  color: white;
}
.welcome_section hr {
  width: 70%;
}
.welcome_section h2 {
  color: white;
}

.presta_section {
  padding: 1rem;
  color: white;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  flex-direction: column;
}
.presta_section hr {
  width: 70%;
}
.presta_section h2 {
  color: white;
}

.box_presta {
  display: flex;
  width: 100%;
  gap: 1rem;
  position: relative;
  flex-wrap: wrap;
  border: 1px solid grey;
}
.box_presta .presta {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 1rem;
  width: 100%;
}
.box_presta .presta img {
  width: 10%;
}
.box_presta a {
  position: absolute;
  bottom: -5px;
  right: 0;
  background: white;
  color: black;
  padding: 0.4rem;
}

.box_admin {
  border: 1px solid grey;
  padding: 1rem;
  color: white;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.box_admin .admin {
  color: lightgreen;
}
.box_admin div {
  display: flex;
  gap: 1rem;
}
.box_admin a {
  background: white;
  color: black;
  padding: 0.4rem;
}

#toTop {
  padding: 1rem;
  position: fixed;
  right: 1rem;
  opacity: 0.5;
  bottom: 1px;
  transition: 0.3s;
}

#toTop:hover {
  opacity: 1;
}

.shopping {
  position: fixed;
  display: none;
  right: 0;
  height: 100vh;
  background: #363232;
  top: 0;
  transition: transform 0.3s ease-in-out;
  width: 40vw;
  padding: 1rem;
}
.shopping h4 {
  background: #242424;
  text-align: center;
  padding: 0.4rem;
}
.shopping div {
  padding: 1rem;
  color: white;
}
.shopping div p {
  font-family: "Ubuntu", sans-serif;
}
.shopping .shop_info {
  width: 100%;
}
.shopping .shop_info ul {
  margin-top: 1rem;
  width: 50%;
  display: flex;
  gap: 1rem;
  flex-direction: column;
}
.shopping .shopping_top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.shopping .shopping_top .far {
  font-size: 30px;
}
.shopping .shopList {
  width: 100%;
  display: flex;
  height: 35vh;
  flex-direction: column;
  gap: 1rem;
  overflow: scroll;
}
.shopping .shopList .shopBox {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 100%;
  align-items: center;
  background: #242424;
}
.shopping .shopList .shopBox img {
  width: 20%;
  object-fit: cover;
  height: auto;
}
.shopping .shopList .shopBox .fas {
  font-size: 20px;
  color: red;
  cursor: pointer;
}
.shopping .end_shop {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.shopping .end_shop a {
  background: #242424;
  padding: 0.4rem;
}

@media screen and (max-width: 1355px) {
  header div img {
    display: none;
  }
  .with_us .with_header .plat_content ul {
    gap: 1rem;
  }
  .a_propos .team_content h3 {
    margin: 0;
  }
  .container_home .left a {
    margin-top: 2rem;
  }
}
@media screen and (max-width: 1025px) {
  .contact_container h3 {
    display: flex;
  }
  .contact_container .contact_content .contact_form {
    width: 100%;
  }
  header nav {
    display: none;
  }
  .contact_container h3 {
    font-size: 49px;
  }
  .container_home .left a {
    display: none;
  }
  .a_propos .team_content p {
    overflow: scroll;
  }
  .top_cook {
    margin-top: 15rem;
  }
  .container_home {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .container_home .left {
    width: 95%;
  }
  .with_us .with_header .plat_content ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
    align-items: center;
    flex-direction: row;
  }
  .with_us .with_header .plat_content ul li {
    width: 30%;
    transition: 0.2s ease-in-out;
    position: relative;
  }
  .a_propos .team_content {
    width: 100%;
    max-width: 100%;
    gap: 0;
    align-items: center;
  }
  .a_propos {
    width: 100%;
    gap: 2rem;
    height: 100vh;
    padding: 2rem;
    display: flex;
    align-items: center;
    flex-direction: column;
  }
  .container_home .right {
    width: 100%;
    height: 100%;
  }
  .a_propos .team_paper {
    height: 300px;
    width: 100%;
    background-image: url(../images/equipe.png);
    background-size: cover;
    box-shadow: 0px 15px 20px 9px rgba(0, 0, 0, 0.25);
  }
  .admin_section .admin_container .left {
    background: #1A1C1E;
    width: 100%;
  }
  .admin_section .admin_container {
    width: 100%;
    margin: 5rem;
    height: 100vh;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
}
@media screen and (max-width: 500px) {
  .container_home .left h1 {
    font-size: 30px;
  }
  .container_home {
    margin-top: 0;
  }
  .shopping {
    width: 100vw;
  }
  #toTop {
    display: none;
  }
  .maps_localisation {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 5rem;
    align-items: center;
  }
  footer div p {
    font-size: 14px;
  }
  footer div {
    justify-content: space-between;
    width: 100%;
    padding: 2rem 2rem;
  }
  .contact_container h3 {
    font-size: 35px;
    text-align: center;
    left: 1rem;
  }
  .maps_localisation h3, .a_propos .team_content h3, .propos_container h3, .top_cook h3 {
    margin-left: 0;
    font-family: "Spectral", sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    color: #E7E7E7;
    letter-spacing: 1.5px;
  }
  .with_us .with_header .plat_content ul li img {
    width: 130px;
    height: 130px;
  }
  .with_us .with_header .plat_content ul li {
    width: 40%;
    transition: 0.2s ease-in-out;
    position: relative;
  }
  .with_us .with_header .search_content div {
    display: flex;
    align-items: center;
    padding: 0.6rem;
    justify-content: space-between;
    flex-direction: column;
  }
  .with_us .with_header .plat_content ul a {
    font-size: 13px;
    display: block;
    text-align: center;
    padding: 0;
  }
  .a_propos .team_content p {
    font-family: "Ubuntu", sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    overflow: scroll;
    line-height: 26px;
    text-align: inherit;
    height: 400px;
    letter-spacing: 0.5px;
    color: #FFFFFF;
  }
  .with_us .with_header .plat_content ul {
    display: flex;
    width: 100%;
    flex-direction: row;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .with_us .with_header .plat_content ul li .far, .with_us .with_header .plat_content ul li .fas {
    top: 0;
  }
  .info_plat #list_info li div {
    display: flex;
    width: 100%;
    flex-direction: column;
  }
}

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