<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&amp;family=Shrikhand&amp;display=swap");
body {
  margin: 0;
  padding: 0;
  width: 100%;
  font-size: 1rem;
}

* {
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: #000;
}

li {
  list-style-type: none;
}

h2 {
  margin: 0;
}

h3 {
  margin: 0;
}

h6 {
  margin: 0;
}

.container {
  margin: auto;
  position: relative;
}

h1, h6 {
  font-family: Shrikhand, Roboto, sans-serif;
}

body, html {
  font-family: "Roboto", sans-serif;
  scroll-behavior: smooth;
}

@keyframes itemAppear {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes fadein {
  0% {
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes lds-ellipsis1 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes lds-ellipsis2 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes lds-ellipsis3 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes loader {
  100% {
    opacity: 0;
    z-index: -6;
  }
}
@keyframes rotate {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
  }
}
.lds-ellipsis {
  width: 100%;
  height: 100%;
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  z-index: 10000;
  animation: loader 0.03s;
  animation-delay: 1.75s;
  animation-fill-mode: both;
  background-color: rgba(255, 255, 255, 0.9);
  left: -25px;
}

.lds-ellipsis div {
  position: relative;
  top: 33px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: black;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
}

.lds-ellipsis div:nth-child(1) {
  animation: lds-ellipsis1 0.6s infinite;
  background-color: #9356DC;
  animation-delay: 0.1s;
}

.lds-ellipsis div:nth-child(2) {
  left: 25px;
  animation: lds-ellipsis2 0.6s infinite;
  background-color: #FF79DA;
  animation-delay: 0.2s;
}

.lds-ellipsis div:nth-child(3) {
  left: 50px;
  animation: lds-ellipsis2 0.6s infinite;
  background-color: #99E2D0;
  animation-delay: 0.3s;
}

body {
  scroll-behavior: smooth;
}

.header__logo {
  text-align: center;
}

.location {
  display: flex;
  justify-content: center;
  background-color: #f3f3f3;
  position: relative;
  padding: 15px;
  box-shadow: 0px 3px 3px #73737338 inset;
}
.location__icon {
  margin-right: 15px;
}

.exploration {
  padding: 35px;
  display: block;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.exploration__subtitle {
  font-weight: 600;
}
.exploration__text {
  font-size: 1.25rem;
  font-weight: 200;
  margin-bottom: 35px;
}
.exploration__btn {
  border: 0;
  padding: 0.75rem 1.5rem;
  font-weight: 500;
  font-size: 1.1rem;
  border-radius: 100px;
  color: white;
  background-color: #686868;
  background-image: linear-gradient(0deg, rgba(147, 86, 220, 0.9) 0%, rgba(255, 121, 218, 0.9) 100%);
  cursor: pointer;
  transition-duration: 0.25s;
  box-shadow: 0.25rem 0.25rem 10px rgba(0, 0, 0, 0.25);
  text-decoration: none;
}
.exploration__btn:hover {
  background-color: white;
  box-shadow: 0.25rem 0.25rem 10px rgba(0, 0, 0, 0.5);
}
.exploration__btn a {
  text-decoration: none;
  color: inherit;
}

@media screen and (min-width: 1024px) {
  .container {
    margin: 0;
    display: grid;
    grid-template-rows: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
}

@media screen and (min-width: 1440px) {
  .container__operation {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }
}

.operation__title {
  margin: 20px;
}
.operation__container {
  background-color: #f6f6f6;
  display: flex;
  align-items: center;
  height: 4.5rem;
  border-radius: 1rem;
  margin-bottom: 1.5rem;
  box-shadow: 0rem 0.1rem 0.5rem lightgrey;
  margin-right: 1.5rem;
  margin-left: 1.5rem;
}
@media screen and (min-width: 1440px) {
  .operation__container {
    width: 100%;
  }
}
.operation__container:hover {
  background-color: #f2eafb;
}
.operation__container:hover .fas {
  color: #9356DC;
}
.operation__text {
  width: 100%;
  text-align: center;
}
.operation__icon {
  color: grey;
  font-size: 1.2rem;
  position: absolute;
  left: 80px;
}
@media screen and (min-width: 1440px) {
  .operation__icon {
    position: relative;
  }
}
.operation__number {
  margin-right: 1rem;
  background-color: #9356DC;
  height: 1.5rem;
  border-radius: 1.5rem;
  width: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  position: relative;
  left: -0.75rem;
}

.restaurants__title {
  margin: 25px;
}

.card {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  column-gap: 2rem;
  row-gap: 2rem;
  box-shadow: 1px 9px 32px -6px rgba(138, 138, 138, 0.68);
  margin: 30px;
}
@media screen and (max-width: 768px) {
  .card {
    grid-template-columns: 1fr 90% 1fr;
    grid-template-rows: none;
    gap: 0;
    background: #f6f6f6;
  }
}

.card {
  background-color: white;
  border-radius: 1rem;
  position: relative;
  text-decoration: none;
  color: inherit;
  display: block;
}
.card:hover {
  transform: scale(1.02);
  transition: transform 0.6s ease;
}
.card:hover .fas {
  opacity: 0;
}
.card__img {
  height: 250px;
  width: 100%;
  border: transparent solid 0px;
  border-radius: 1rem 1rem 0rem 0rem;
  box-shadow: none;
  object-fit: cover;
}
.card__new {
  background-color: #99E2D0;
  color: #1b6150;
  padding: 0.5rem;
  border-radius: 0.125rem;
  position: absolute;
  top: 1rem;
  right: 0.75rem;
}
.card__footer {
  padding: 1rem;
  position: relative;
  display: flex;
  align-items: center;
}
.card__content {
  flex: 1;
}
.card__title {
  margin: 0;
  margin-bottom: 0.25rem;
}
.card__subtitle {
  margin: 0;
}
.card__btn {
  height: 2rem;
  width: 2rem;
  background-color: transparent;
  border: transparent 0px solid;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.card__like:hover {
  transition-duration: 0.3s;
  display: inline-block;
  opacity: 1;
  background: linear-gradient(to left, #9356dc, #b35cdc, #cf64dc, #e86edb, #ff79da);
  background: -webkit-linear-gradient(to left, #9356dc, #b35cdc, #cf64dc, #e86edb, #ff79da);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: bold;
}

.footer {
  background-color: #353535;
  padding-bottom: 20px;
  padding-top: 20px;
}
.footer__logo {
  margin: 35px;
  color: white;
  font-family: "Shrikhand", "cursive";
}
.footer__link {
  text-decoration: none;
  color: white;
  font-weight: 400;
}
.footer__list {
  list-style: none;
}
@media screen and (min-width: 1024px) {
  .footer__list {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
  }
}
.footer__icon {
  letter-spacing: 10px;
}
.footer__purpose {
  letter-spacing: 17px;
}

.header__img {
  max-width: 100%;
  max-height: 32rem;
  width: 100%;
  object-fit: cover;
}
.header--withBackArrow {
  position: relative;
}
.header__arrow {
  position: absolute;
  left: 1rem;
  height: 2rem;
  width: 2rem;
  top: 6%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-50%);
  font-size: 1.2rem;
  color: black;
}

.menu {
  margin-top: -4rem;
  border-radius: 2rem 2rem 0 0;
  background-color: #f6f6f6;
  z-index: 1;
  position: relative;
}
.menu__header {
  padding: 1rem 2rem 0 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.menu__title {
  font-family: "Shrikhand", "cursive";
}
.menu__btn {
  height: 2rem;
  width: 2rem;
  background-color: transparent;
  border: transparent 0px solid;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.submenus {
  display: grid;
}
@media (min-width: 64rem) {
  .submenus {
    grid-template-columns: repeat(3, 5fr);
    column-gap: 1rem;
  }
}

.submenu {
  max-width: 100%;
  overflow: hidden;
  padding: 0 1rem;
}
.submenu__title {
  text-transform: uppercase;
  position: relative;
  padding-bottom: 0.5rem;
  font-weight: normal;
}
.submenu__title::after {
  content: "";
  width: 3rem;
  height: 0.25rem;
  background-color: #99E2D0;
  position: absolute;
  left: 0;
  bottom: 0;
}

.menuItem {
  background-color: white;
  padding: 1rem;
  display: flex;
  border-radius: 0.75rem;
  margin: 1rem 0;
  box-shadow: 0.25rem 0.25rem 1rem rgba(0, 0, 0, 0.1);
  overflow: hidden;
  cursor: pointer;
  animation: fadein 1.2s 0.3s ease-out both, transform 0.3s;
  animation-timing-function: cubic-bezier(0.5, 1.58, 0.34, 0.82);
  animation-fill-mode: both;
  max-width: 100%;
  vertical-align: middle;
  transition: all 500ms;
  transform: scaleX(0);
  transform-origin: 100% 60%;
}
.menuItem__wrapIcon--span {
  transform: rotate(360deg);
  transition: transform 500ms ease-in-out;
}
.menuItem:hover {
  padding-right: 75px;
}
.menuItem:hover .menuItem__wrapIcon--span {
  transform: rotate(-360deg);
  transition: transform 500ms ease-in-out;
}
.menuItem__header {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  flex: 1;
}
.menuItem__title {
  margin: 0;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.menuItem__description {
  margin: 0;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.menuItem__price {
  font-weight: bold;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  padding-left: 0.5rem;
}
.menuItem__confirmation {
  background-color: #99E2D0;
  margin: -1rem -5rem -1rem 1rem;
  width: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition-duration: 0.2s;
  transform: rotate(180deg);
  transition: 0.8s;
  position: relative;
}
.menuItem__wrapIcon {
  height: 1.6rem;
  width: 1.6rem;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  transform: rotate(180deg);
  transition-duration: 0.4s;
}
.menuItem__wrapIcon:hover {
  transform: rotate(180deg);
}
.menuItem__icon {
  color: #99E2D0;
}

.delay-0 {
  animation-delay: 0s;
}

.delay-1 {
  animation-delay: 0.1s;
}

.delay-2 {
  animation-delay: 0.2s;
}

.delay-3 {
  animation-delay: 0.3s;
}

.delay-4 {
  animation-delay: 0.4s;
}

.delay-5 {
  animation-delay: 0.5s;
}

.delay-6 {
  animation-delay: 0.6s;
}

.delay-7 {
  animation-delay: 0.7s;
}

.delay-8 {
  animation-delay: 0.8s;
}

.wrapBtn {
  display: flex;
  text-decoration: none;
  justify-content: center;
  padding: 3rem 0;
}

.commandBtn {
  border: 0;
  padding: 0.75rem 1.5rem;
  font-weight: 500;
  font-size: 1.1rem;
  border-radius: 100px;
  color: white;
  background-color: #686868;
  background-image: linear-gradient(0deg, rgba(147, 86, 220, 0.9) 0%, rgba(255, 121, 218, 0.9) 100%);
  cursor: pointer;
  transition-duration: 0.25s;
  box-shadow: 0.25rem 0.25rem 10px rgba(0, 0, 0, 0.25);
  cursor: pointer;
}
.commandBtn:hover {
  background-color: white;
  box-shadow: 0.25rem 0.25rem 10px rgba(0, 0, 0, 0.5);
}
.commandBtn a {
  text-decoration: none;
  color: inherit;
}

/*# sourceMappingURL=style.css.map */
</pre></body></html>