.menu__card {
  border-radius: 15px;
  background: #FFF;
  box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.1);
  margin-bottom: 12px;
  cursor: pointer;
  display: grid;
  grid-template-columns: 1fr 0;
  transition: all 500ms ease-in-out;
}
.menu__card:hover {
  grid-template-columns: 1fr 59px;
}
.menu__card .menu__txt {
  padding: 15px;
  display: grid;
  grid-template-columns: 1fr 30px;
  align-items: flex-end;
  gap: 15px;
}
.menu__card .menu__txt .menu__card-title {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.menu__card .menu__txt .menu__card-title h4 {
  overflow: hidden;
  color: #000;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 18px;
  font-weight: 500;
}
.menu__card .menu__txt .menu__card-title h5 {
  overflow: hidden;
  color: #000;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 15px;
  font-weight: 300;
}
.menu__card .menu__txt p {
  color: #353535;
  font-size: 15px;
  font-weight: 700;
}
.menu__card .menu__confirmation {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #99E2D0;
  width: 100%;
  height: 100%;
  border-radius: 0 15px 15px 0;
  overflow: hidden;
}

header {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1rem;
  gap: 42px;
  box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.25);
}
@media (min-width: 768px) {
  header {
    padding: 1rem 1rem;
    align-self: stretch;
    position: relative;
    box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.25);
  }
}
header a {
  position: absolute;
  top: 3%;
  left: 6%;
}
@media (min-width: 768px) {
  header a {
    top: 35%;
    left: 2%;
  }
}
header i {
  font-size: 30px;
}
header .header__logo {
  font-family: "Shrikhand", "cursive";
  margin: 0;
  text-align: center;
}

.bg-img {
  height: 275px;
}
@media (min-width: 768px) {
  .bg-img {
    width: 100%;
    height: 50vh;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

img {
  height: 275px;
  width: 100%;
}

.menu {
  background-color: #F6F6F6;
  position: relative;
  margin-top: -40px;
  border-radius: 7% 7% 0 0;
}
@media (min-width: 768px) {
  .menu {
    margin-left: 192px;
    margin-right: 193px;
  }
}
.menu .menu__title {
  padding: 32px 17px 40px 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
@media (min-width: 768px) {
  .menu .menu__title {
    padding-top: 51px;
    justify-content: center;
  }
}
.menu .menu__title h1 {
  color: #101010;
  font-family: Shrikhand;
  font-size: 28px;
  font-weight: 400;
}
.menu .menu__title i {
  font-size: 21px;
}
.menu .menu__section {
  padding: 0 13px 40px 13px;
}
@media (min-width: 768px) {
  .menu .menu__section {
    padding-left: 210px;
    padding-right: 211px;
  }
}
.menu .menu__section h3 {
  color: #000;
  font-family: Roboto;
  font-size: 16px;
  font-weight: 300;
  text-transform: uppercase;
  padding-bottom: 8px;
  margin-bottom: 12px;
  position: relative;
}
@media (min-width: 768px) {
  .menu .menu__section h3 {
    padding-top: 40px;
  }
}
.menu .menu__section h3:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: #99E2D0;
}
.menu .menu__order {
  display: flex;
  justify-content: center;
  padding-bottom: 40px;
}
.menu .btn-order {
  border-radius: 25px;
  background: var(--button-gradient, linear-gradient(175deg, #9356DC 0%, #FF79DA 100%));
  border: var(--button-gradient, linear-gradient(175deg, #9356DC 0%, #FF79DA 100%));
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.25);
  color: #FFF;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  padding: 16px 48px 15px 49px;
}
@media (min-width: 768px) {
  .menu .btn-order {
    margin-top: 40px;
    margin-bottom: 40px;
    cursor: pointer;
  }
}/*# sourceMappingURL=menu.css.map */