html {
  font-size: 62, 5%;
}

body {
  font-family: var(--font-family);
  color: var(--text);
  font-size: 1.6rem;
}

p {
  margin: 1rem 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 1rem 0 2rem 0;
  font-family: var(--font-family-logo-titles);
}

ul {
  list-style: none;
}

a {
  color: var(--text);
  text-decoration: none;
}

img {
  max-width: 100%;
  object-fit: cover;
}

.pseudo-title {
  font-weight: 800;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.btn {
  display: inline-block;
  box-shadow: 8px 6px 15px 0px rgba(0, 0, 0, 0.2);
  padding: 15px 35px 15px 35px;
  font-weight: 700;
  font-size: 1.5rem;
  color: white;
  border: 1px solid #f2f2f2;
  border-radius: 30px;
  background: linear-gradient(to left bottom, var(--secondary), var(--primary));
  cursor: pointer;
}
.btn:hover {
  opacity: 0.8;
  box-shadow: 8px 6px 15px 3px rgba(0, 0, 0, 0.2);
  transition: all 0.2s;
}

.fill {
  position: relative;
  display: inline-block;
  font-size: 35px;
  color: #ddd;
}

.fill::after {
  content: "\f004";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  color: var(--primary);
  overflow: hidden;
  transition: width 0.5s ease;
}

.fill:hover::after {
  width: 100%;
}

@keyframes bounce {
  0% {
    transform: rotate(-45deg);
  }
  10% {
    transform: rotate(-35deg);
  }
  70% {
    transform: rotate(20deg);
  }
  80% {
    transform: rotate(-10deg);
  }
  90% {
    transform: rotate(5deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateX(-2rem);
  }
  to {
    opacity: 1;
  }
}
.container {
  display: flex;
  flex-direction: column;
}

header {
  display: grid;
  grid-template-columns: 1fr 1fr 250px 1fr 1fr;
  grid-auto-rows: 100px;
  grid-template-areas: "arrow . logo1 . . ";
  align-items: center;
}
header i {
  font-size: 1.9rem;
  padding: 1rem 1rem 1rem 1.3rem;
}
header .main-logo {
  grid-area: logo1;
  margin-left: 2rem;
  font-family: var(--font-family-logo-titles);
  padding-right: 1.3rem;
}

main {
  background: #fff;
}
main .underline-title span {
  border-bottom: 10rem solid var(--tertiary);
  border-bottom-width: 0.3rem;
}
main .menus {
  position: relative;
  margin-top: -6rem;
  background-clip: margin-box;
  width: 100%;
  background: var(--background);
  display: block;
  justify-content: space-around;
  align-items: center;
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
}
@media (min-width: 1200px) {
  main .menus {
    width: 75%;
    margin: auto;
    margin-top: -6rem;
  }
}
main .menus .title-heart {
  padding-top: 2rem;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
}
main .menus .title-heart i {
  margin-left: 1rem;
  margin-bottom: 1rem;
}
main .menus .entree {
  display: block;
  animation-name: fadeIn;
  animation-duration: 2s;
  animation-delay: 1s;
}
main .menus .entree .underline-title {
  margin: 1.5rem;
  padding-top: 1.5rem;
}
main .menus .plat {
  animation-name: fadeIn;
  animation-duration: 2s;
  animation-delay: 2s;
}
main .menus .plat .underline-title {
  margin: 1.5rem;
  padding-top: 1.5rem;
}
main .menus .dessert {
  animation-name: fadeIn;
  animation-duration: 2s;
  animation-delay: 3s;
}
main .menus .dessert .underline-title {
  margin: 1.5rem;
  padding-top: 1.5rem;
}
main .menus .menus-restaurants-elem {
  position: relative;
  font-size: 1.5rem;
  height: 6rem;
  border: 1px solid white;
  background: white;
  border-radius: 20px;
  margin: 1.5rem;
  cursor: pointer;
  z-index: 1;
  overflow: hidden;
}
main .menus .menus-restaurants-elem:hover::after {
  transform: translateX(0%);
}
main .menus .menus-restaurants-elem .menus-card-title .bold-title {
  font-weight: bold;
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 700px;
}
main .menus .menus-restaurants-elem .menus-card-subtitle {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
}
main .menus .menus-restaurants-elem .menus-card-subtitle .padding {
  margin-right: 1rem;
  font-weight: bold;
  text-align: left;
}
main .menus .menus-restaurants-elem .menus-card-subtitle .padding-right {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 700px;
}
main .menus .menus-restaurants-elem::after {
  content: "\f058";
  font-family: "Font Awesome 5 Free";
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  font-weight: 500;
  background: var(--tertiary);
  border-radius: 20px;
  height: 100%;
  width: 20%;
  transform: translateX(100%);
  transition: 1s all ease-in-out;
}
main .center-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem 0 3rem 0;
}

footer {
  background: var(--text);
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
}
@media (min-width: 1200px) {
  footer {
    padding-top: 3rem;
    flex-direction: row-reverse;
    justify-content: end;
    align-items: center;
  }
  footer .restaurant-order {
    order: 3;
    margin: 1.5rem;
  }
  footer .partner-order {
    order: 2;
    margin-right: 5rem;
  }
  footer .legal-order {
    order: 1;
    margin-right: 1.5rem;
  }
  footer .second-logo {
    margin-right: 5rem;
    margin-left: 5rem;
  }
}
footer a {
  display: flex;
  color: white;
  font-size: 1.2rem;
}
footer a p {
  margin: 0.2rem;
}
footer a img {
  filter: invert(100%);
  padding: 1rem 0 1rem 0;
  font-size: 1.2rem;
}
footer a i {
  margin: auto;
  margin-right: 1rem;
  font-size: 1.2rem;
}

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