<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">:root {
  --color: #a25600;
  --color2: #fff;
  --regular: 400;
  --semibold: 600;
  --bold: 700;
}

* {
  font-family: "Pragati Narrow", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-optical-sizing: auto;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

input,
textarea {
  box-sizing: border-box;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

.divider {
  height: 0;
  border-bottom: 2px dashed #000;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  box-sizing: border-box;
}

a.goFood {
  background: var(--color);
  border-radius: 50px;
  color: #fff !important;
  transition: all 0.5s ease-in-out;
}
a.goFood:hover {
  transform: scale(1.1);
}

.active {
  display: flex !important;
}

.line {
  margin-bottom: 6px;
  width: 36px;
  height: 2px;
  background: var(--color);
}

.pos-r {
  position: relative;
}
.pos-r .ds {
  color: var(--color) !important;
  font-weight: 600;
}
.pos-r .ds:hover {
  text-decoration: none !important;
}

button {
  cursor: pointer;
}

.hamburger {
  display: none;
  margin: auto 0;
}

.items {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 20px;
}
.items .item {
  flex: 0 0 calc(25% - 15px);
  display: flex;
  flex-direction: column;
}
.items .item img {
  width: 100%;
  height: 260px;
  border-radius: 50%;
}
.items .item .details {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 10px;
  row-gap: 10px;
}
.items .item .details .price {
  background: var(--color);
  border-radius: 10px;
  padding: 4px 10px;
  font-size: 20px;
  line-height: 34px;
  /* identical to box height */
  text-transform: capitalize;
  position: absolute;
  top: 62%;
  color: #ffffff;
}
.items .item .details .name {
  margin-top: 20px;
  font-weight: 700;
  font-size: 30px;
  line-height: 32px;
  text-transform: capitalize;
  color: var(--color);
  text-align: center;
}

.all-items {
  margin-top: 40px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  -moz-column-gap: 30px;
       column-gap: 30px;
  row-gap: 10px;
}
.all-items .item {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex: 0 0 calc(50% - 15px);
  background: rgba(162, 86, 0, 0.2);
  border-radius: 5px;
  padding: 5px 15px;
}
.all-items .item .name,
.all-items .item .price {
  font-weight: 700;
  font-size: 30px;
  line-height: 51px;
  text-align: left;
  text-transform: capitalize;
  color: #ffffff;
}
.all-items .item .price {
  font-size: 18px;
  line-height: 20px;
  color: var(--color);
}

nav {
  background: #fff;
}
nav.sticky {
  position: sticky;
  top: 0;
  width: 100%;
  box-sizing: border-box;
  z-index: 10;
  transition: position 1s ease-in-out;
}
nav.sticky .hamburger {
  margin: 0 20px;
}
nav .container {
  padding: 0 130px;
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: space-between;
  height: 120px;
}
nav .container .logo {
  margin-left: 0;
  justify-self: flex-start;
}
nav .container .logo img {
  width: 100%;
  height: 90px;
}
nav .container ul.links {
  margin-right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  -moz-column-gap: 30px;
       column-gap: 30px;
}
nav .container ul.links li {
  text-transform: capitalize;
}
nav .container ul.links li a {
  text-transform: capitalize;
  font-size: 18px;
  line-height: 30px;
  font-weight: var(--bold);
  padding: 4px 16px;
}
nav .container ul.links li a:not(.goFood) {
  color: #000;
}
nav .container ul.links li a:not(.goFood).active {
  color: var(--color);
}
nav .container ul.links li a:not(.goFood):hover {
  text-decoration: underline !important;
}

.hero,
.foods,
.drinks,
.desserts,
.find-us,
.sl,
.seo,
footer {
  padding: 60px 0;
}
.hero .container,
.foods .container,
.drinks .container,
.desserts .container,
.find-us .container,
.sl .container,
.seo .container,
footer .container {
  padding: 0 130px;
}

.hero,
.menu-hero {
  background: linear-gradient(270deg, rgba(0, 0, 0, 0) 50.88%, #000000 78.8%), linear-gradient(180deg, #000000 9.61%, rgba(0, 0, 0, 0) 19.68%), url("assets/hero.webp") no-repeat;
  background-size: 100% 100%;
}
.hero .container,
.menu-hero .container {
  display: flex;
  flex-direction: row;
  flex-direction: column;
  justify-content: center;
  row-gap: 40px;
  height: 890px;
}
.hero .container .title,
.menu-hero .container .title {
  font-family: "Rammetto One";
  font-style: normal;
  font-weight: 400;
  font-size: 80px;
  line-height: 125%;
  text-align: center;
  color: #ffffff;
}
.hero .container .description,
.menu-hero .container .description {
  margin: 0 auto;
  max-width: 780px;
  font-size: 28px;
  line-height: 121%;
  text-align: center;
  color: #ffffff;
}
.hero .container .social,
.menu-hero .container .social {
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 30px;
       column-gap: 30px;
}
.hero .container .social a.goFood,
.menu-hero .container .social a.goFood {
  padding: 12px 30px;
  font-size: 18px;
  line-height: 24px;
}

.foods,
.drinks,
.desserts {
  background: #000;
}
.foods .container,
.drinks .container,
.desserts .container {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.foods .container .top,
.drinks .container .top,
.desserts .container .top {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  position: relative;
}
.foods .container .top:before,
.drinks .container .top:before,
.desserts .container .top:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 0;
  border-bottom: 2px solid var(--color);
}
.foods .container .top h2,
.drinks .container .top h2,
.desserts .container .top h2 {
  font-family: "Rammetto One";
  font-style: normal;
  font-weight: 400;
  font-size: 50px;
  line-height: 84px;
  text-transform: capitalize;
  color: #ffffff;
  text-align: left;
  max-width: -moz-max-content;
  max-width: max-content;
  background-color: #000;
  z-index: 1;
  padding-right: 40px;
}
.foods .container .bottom,
.drinks .container .bottom,
.desserts .container .bottom {
  flex: 0 0 100%;
  margin-top: -42px;
  padding: 100px 20px 40px;
  border: 2px solid var(--color);
  border-top: none;
  border-left: none;
}
.foods .container .bottom .view-all,
.drinks .container .bottom .view-all,
.desserts .container .bottom .view-all {
  background-color: #fff;
  border-radius: 50px;
  position: absolute;
  left: 50%;
  bottom: -21px;
  transform: translate(-50%, 0%);
  height: 42px;
  display: inline-flex;
  align-items: center;
}
.foods .container .bottom .view-all a,
.drinks .container .bottom .view-all a,
.desserts .container .bottom .view-all a {
  padding: 6px 16px;
  font-size: 18px;
  color: var(--color);
  text-transform: capitalize;
}

.drinks .container {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.drinks .container .top {
  justify-content: flex-end;
}
.drinks .container .top:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 0;
  border-bottom: 2px solid #fff;
}
.drinks .container .top h2 {
  font-family: "Rammetto One";
  font-style: normal;
  font-weight: 400;
  font-size: 50px;
  line-height: 84px;
  text-transform: capitalize;
  color: #ffffff;
  padding-left: 40px;
}
.drinks .container .bottom {
  flex: 0 0 100%;
  margin-top: -42px;
  border: 2px solid #fff;
  border-top: none;
  border-right: none;
}
.drinks .container .bottom .view-all {
  background-color: var(--color);
}
.drinks .container .bottom .view-all a {
  color: var(--color2);
}

.find-us {
  background-image: url("assets/find-us.webp");
  background-size: 100% 100%;
  padding: 100px 0;
}
.find-us .container .content {
  display: flex;
  flex-direction: row-reverse;
  flex-wrap: wrap;
  gap: 20px;
}
.find-us .container .content .left,
.find-us .container .content .right {
  display: flex;
  flex: 0 0 calc(50% - 10px);
  padding: 0 80px;
  margin: 0 auto;
  gap: 30px;
}
.find-us .container .content .left .contact-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  row-gap: 20px;
}
.find-us .container .content .left .contact-form input {
  height: 44px;
  font-size: 16px;
  line-height: 16px;
  width: 100%;
  background-color: transparent;
  border: none;
  border-bottom: 2px solid #fff;
  color: #fff;
  padding: 5px;
  outline: none;
}
.find-us .container .content .left .contact-form input::-moz-placeholder {
  text-align: left;
  color: #fff;
  text-transform: capitalize;
}
.find-us .container .content .left .contact-form input::placeholder {
  text-align: left;
  color: #fff;
  text-transform: capitalize;
}
.find-us .container .content .left .contact-form button {
  background: var(--color);
  border-radius: 10px;
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  width: 100%;
  padding: 16px;
  line-height: 27px;
  outline: none;
  border: none;
}
.find-us .container .content .right {
  flex-direction: column;
  justify-content: center;
}
.find-us .container .content .right h2 {
  font-family: "Rammetto One";
  font-style: normal;
  font-weight: 400;
  font-size: 50px;
  line-height: 148%;
  text-transform: uppercase;
  color: #ffffff;
}
.find-us .container .content .right p {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  font-size: 30px;
  line-height: 123%;
  color: #ffffff;
}

.sl {
  padding: 0;
  max-height: 580px;
}
.sl .location {
  position: absolute;
  top: 90px;
  background-color: var(--color);
  color: #fff;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  border-radius: 10px;
  font-size: 31px;
  line-height: 32px;
  left: 50%;
  transform: translateX(-50%);
  padding: 20px;
}

.seo {
  background-color: #000;
}
.seo .container h2 {
  font-family: "Rammetto One";
  font-style: normal;
  font-weight: 400;
  font-size: 50px;
  line-height: 70px;
  font-feature-settings: "kern" off;
  color: #ffffff;
}
.seo .container p {
  font-size: 16px;
  line-height: 22px;
  text-align: justify;
  color: #ffffff;
  margin: 20px 0;
}
.seo .container p a {
  text-decoration: underline;
}

footer {
  background: var(--color2);
}
footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  -moz-column-gap: 30px;
       column-gap: 30px;
}
footer .container .logo &gt; a &gt; img {
  width: 200px;
}
footer .container .details {
  max-width: calc(100% - 200px);
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  text-transform: capitalize;
  color: #000000;
}
footer .container .footer-social {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
}
footer .container .footer-social a {
  line-height: 14px;
}

.copyright {
  text-align: center;
  background-color: #000;
  color: var(--color2);
  padding: 10px 0;
}

.menu-hero {
  background-image: linear-gradient(270deg, rgba(0, 0, 0, 0) 50.88%, #000000 78.8%), linear-gradient(180deg, #000000 9.61%, rgba(0, 0, 0, 0) 19.68%), url("assets/menu-hero.webp");
  background-size: 100% 100%;
}
.menu-hero .container {
  height: 470px;
}

.menu.foods .container .top,
.menu.drinks .container .top,
.menu.desserts .container .top {
  justify-content: center;
  position: relative;
}
.menu.foods .container .top:before,
.menu.drinks .container .top:before,
.menu.desserts .container .top:before {
  content: "";
  position: absolute;
  height: 0;
  border: 1px dashed #fff;
  width: 100%;
  top: 50%;
  left: 0;
  z-index: 0;
}
.menu.foods .container .top h2,
.menu.drinks .container .top h2,
.menu.desserts .container .top h2 {
  padding: 0 10px;
  z-index: 1;
  max-width: -moz-max-content;
  max-width: max-content;
  text-align: center;
  background: #000;
}
.menu.foods .container .bottom,
.menu.drinks .container .bottom,
.menu.desserts .container .bottom {
  border: none;
}

.gofood {
  color: #000000 !important;
}

@media screen and (max-width: 1024px) {
  .hamburger {
    display: none;
    margin: auto 0;
  }
  .items {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 20px;
  }
  .items .item {
    flex: 0 0 calc(25% - 15px);
    display: flex;
    flex-direction: column;
  }
  .items .item img {
    width: 100%;
    height: 200px;
    border-radius: 50%;
  }
  .items .item .details {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 10px;
    row-gap: 10px;
  }
  .items .item .details .price {
    background: var(--color);
    border-radius: 10px;
    padding: 4px 10px;
    font-size: 18px;
    line-height: 30px;
    /* identical to box height */
    text-transform: capitalize;
    position: absolute;
    bottom: 80px;
    color: #ffffff;
  }
  .items .item .details .name {
    margin-top: 10px;
    font-weight: 700;
    font-size: 26px;
    line-height: 30px;
    text-transform: capitalize;
    color: var(--color);
    text-align: center;
  }
  .all-items {
    margin-top: 40px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    -moz-column-gap: 30px;
         column-gap: 30px;
    row-gap: 10px;
  }
  .all-items .item {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex: 0 0 calc(50% - 15px);
    background: rgba(162, 86, 0, 0.2);
    border-radius: 5px;
    padding: 5px 15px;
  }
  .all-items .item .name,
  .all-items .item .price {
    font-weight: 700;
    font-size: 22px;
    line-height: 31px;
    text-align: center;
    text-transform: capitalize;
    color: #ffffff;
  }
  .all-items .item .price {
    font-size: 18px;
    line-height: 20px;
    color: var(--color);
  }
  nav {
    background: #fff;
  }
  nav.sticky {
    position: sticky;
    top: 0;
    width: 100%;
    box-sizing: border-box;
    z-index: 10;
    transition: position 1s ease-in-out;
  }
  nav.sticky .hamburger {
    margin: 0 20px;
  }
  nav .container {
    padding: 0 60px;
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
    height: 120px;
  }
  nav .container .logo {
    margin-left: 0;
    justify-self: flex-start;
  }
  nav .container .logo img {
    width: 100%;
    height: 90px;
  }
  nav .container ul.links {
    margin-right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    -moz-column-gap: 30px;
         column-gap: 30px;
  }
  nav .container ul.links li {
    text-transform: capitalize;
  }
  nav .container ul.links li a {
    text-transform: capitalize;
    font-size: 18px;
    line-height: 30px;
    font-weight: var(--bold);
    padding: 4px 16px;
  }
  nav .container ul.links li a:not(.goFood) {
    color: #000;
  }
  nav .container ul.links li a:not(.goFood).active {
    color: var(--color);
  }
  .hero,
  .foods,
  .drinks,
  .desserts,
  .find-us,
  .sl,
  .seo,
  footer {
    padding: 60px 0;
  }
  .hero .container,
  .foods .container,
  .drinks .container,
  .desserts .container,
  .find-us .container,
  .sl .container,
  .seo .container,
  footer .container {
    padding: 0 60px;
  }
  .hero .container,
  .menu-hero .container {
    display: flex;
    flex-direction: row;
    flex-direction: column;
    justify-content: center;
    row-gap: 40px;
    height: 600px;
  }
  .hero .container .title,
  .menu-hero .container .title {
    font-size: 64px;
    line-height: 125%;
    text-align: center;
    color: #ffffff;
  }
  .hero .container .description,
  .menu-hero .container .description {
    margin: 0 auto;
    max-width: 700px;
    font-size: 26px;
    line-height: 121%;
    text-align: center;
    color: #ffffff;
  }
  .hero .container .social,
  .menu-hero .container .social {
    display: flex;
    align-items: center;
    justify-content: center;
    -moz-column-gap: 30px;
         column-gap: 30px;
  }
  .hero .container .social a.goFood,
  .menu-hero .container .social a.goFood {
    padding: 12px 30px;
    font-size: 18px;
    line-height: 24px;
  }
  .foods,
  .drinks,
  .desserts {
    background: #000;
  }
  .foods .container,
  .drinks .container,
  .desserts .container {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  .foods .container .top,
  .drinks .container .top,
  .desserts .container .top {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    position: relative;
  }
  .foods .container .top:before,
  .drinks .container .top:before,
  .desserts .container .top:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    border-bottom: 2px solid var(--color);
  }
  .foods .container .top h2,
  .drinks .container .top h2,
  .desserts .container .top h2 {
    font-family: "Rammetto One";
    font-style: normal;
    font-weight: 400;
    font-size: 50px;
    line-height: 84px;
    text-transform: capitalize;
    color: #ffffff;
    text-align: left;
    max-width: -moz-max-content;
    max-width: max-content;
    background-color: #000;
    z-index: 1;
    padding-right: 40px;
  }
  .foods .container .bottom,
  .drinks .container .bottom,
  .desserts .container .bottom {
    flex: 0 0 100%;
    margin-top: -42px;
    padding: 100px 20px 30px;
    border: 2px solid var(--color);
    border-top: none;
    border-left: none;
  }
  .drinks .container {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  .drinks .container .top {
    justify-content: flex-end;
  }
  .drinks .container .top:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    border-bottom: 2px solid #fff;
  }
  .drinks .container .top h2 {
    font-family: "Rammetto One";
    font-style: normal;
    font-weight: 400;
    font-size: 50px;
    line-height: 84px;
    text-transform: capitalize;
    color: #ffffff;
    padding-left: 40px;
  }
  .drinks .container .bottom {
    flex: 0 0 100%;
    margin-top: -42px;
    padding: 100px 20px 30px;
    border: 2px solid #fff;
    border-top: none;
    border-right: none;
  }
  .find-us {
    padding: 60px 0;
  }
  .find-us .container .content {
    display: flex;
    flex-direction: row-reverse;
    flex-wrap: wrap;
    gap: 20px;
  }
  .find-us .container .content .left,
  .find-us .container .content .right {
    display: flex;
    flex: 0 0 calc(50% - 10px);
    padding: 0;
    margin: 0 auto;
    gap: 30px;
  }
  .find-us .container .content .left .contact-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: stretch;
    row-gap: 20px;
  }
  .find-us .container .content .left .contact-form input {
    height: 44px;
    font-size: 16px;
    line-height: 16px;
    width: 100%;
    background-color: transparent;
    border: none;
    border-bottom: 2px solid #fff;
    color: #fff;
    padding: 5px;
    outline: none;
  }
  .find-us .container .content .left .contact-form input::-moz-placeholder {
    text-align: left;
    color: #fff;
    text-transform: capitalize;
  }
  .find-us .container .content .left .contact-form input::placeholder {
    text-align: left;
    color: #fff;
    text-transform: capitalize;
  }
  .find-us .container .content .left .contact-form button {
    background: var(--color);
    border-radius: 10px;
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    width: 100%;
    padding: 16px;
    line-height: 27px;
    outline: none;
    border: none;
  }
  .find-us .container .content .right {
    flex-direction: column;
    justify-content: center;
  }
  .find-us .container .content .right h2 {
    font-family: "Rammetto One";
    font-style: normal;
    font-weight: 400;
    font-size: 50px;
    line-height: 148%;
    text-transform: uppercase;
    color: #ffffff;
  }
  .find-us .container .content .right p {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    font-size: 30px;
    line-height: 123%;
    color: #ffffff;
  }
  .sl {
    padding: 0;
    max-height: 580px;
  }
  .sl .location {
    position: absolute;
    top: 90px;
    background-color: var(--color);
    color: #fff;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    border-radius: 10px;
    font-size: 31px;
    line-height: 32px;
    left: 50%;
    transform: translateX(-40%);
    padding: 20px;
  }
  .seo {
    background-color: #000;
  }
  .seo .container h2 {
    font-family: "Rammetto One";
    font-style: normal;
    font-weight: 400;
    font-size: 50px;
    line-height: 70px;
    font-feature-settings: "kern" off;
    color: #ffffff;
  }
  .seo .container p {
    font-size: 16px;
    line-height: 22px;
    text-align: justify;
    color: #ffffff;
    margin: 20px 0;
  }
  .seo .container p a {
    text-decoration: underline;
  }
  footer {
    background: var(--color2);
  }
  footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    -moz-column-gap: 30px;
         column-gap: 30px;
  }
  footer .container .logo &gt; a &gt; img {
    width: 200px;
  }
  footer .container .details {
    max-width: calc(100% - 200px);
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    text-transform: capitalize;
    color: #000000;
  }
  footer .container .footer-social {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
  }
  footer .container .footer-social a {
    line-height: 14px;
  }
  .copyright {
    text-align: center;
    background-color: #000;
    color: var(--color2);
    padding: 10px 0;
  }
  .menu-hero .container {
    height: 470px;
  }
  .menu.foods .container .top,
  .menu.drinks .container .top,
  .menu.desserts .container .top {
    justify-content: center;
    position: relative;
  }
  .menu.foods .container .top:before,
  .menu.drinks .container .top:before,
  .menu.desserts .container .top:before {
    content: "";
    position: absolute;
    height: 0;
    border: 1px dashed #fff;
    width: 100%;
    top: 50%;
    left: 0;
    z-index: 0;
  }
  .menu.foods .container .top h2,
  .menu.drinks .container .top h2,
  .menu.desserts .container .top h2 {
    padding: 0 10px;
    z-index: 1;
    max-width: -moz-max-content;
    max-width: max-content;
    text-align: center;
    background: #000;
  }
  .menu.foods .container .bottom,
  .menu.drinks .container .bottom,
  .menu.desserts .container .bottom {
    border: none;
  }
}
@media screen and (max-width: 991px) {
  .hamburger {
    display: none;
    margin: auto 0;
  }
  .items {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 20px;
  }
  .items .item {
    flex: 0 0 calc(25% - 15px);
    display: flex;
    flex-direction: column;
  }
  .items .item img {
    width: 100%;
    height: 160px;
    border-radius: 50%;
  }
  .items .item .details {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 10px 0;
    row-gap: 10px;
  }
  .items .item .details .price {
    background: var(--color);
    border-radius: 10px;
    padding: 4px 10px;
    font-size: 16px;
    line-height: 20px;
    bottom: 70px;
    color: #ffffff;
  }
  .items .item .details .name {
    margin-top: 10px;
    font-weight: 700;
    font-size: 22px;
    line-height: 24px;
  }
  nav {
    background: #fff;
  }
  nav.sticky {
    position: sticky;
    top: 0;
    width: 100%;
    box-sizing: border-box;
    z-index: 10;
    transition: position 1s ease-in-out;
  }
  nav.sticky .hamburger {
    margin: 0 20px;
  }
  nav .container {
    padding: 0 30px;
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
    height: 120px;
  }
  nav .container .logo {
    margin-left: 0;
    justify-self: flex-start;
  }
  nav .container .logo img {
    width: 100%;
    height: 90px;
  }
  nav .container ul.links {
    margin-right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    -moz-column-gap: 30px;
         column-gap: 30px;
  }
  nav .container ul.links li {
    text-transform: capitalize;
  }
  nav .container ul.links li a {
    text-transform: capitalize;
    font-size: 18px;
    line-height: 30px;
    font-weight: var(--bold);
    padding: 4px 16px;
  }
  nav .container ul.links li a:not(.goFood) {
    color: #000;
  }
  nav .container ul.links li a:not(.goFood).active {
    color: var(--color);
  }
  .hero,
  .foods,
  .drinks,
  .desserts,
  .find-us,
  .sl,
  .seo,
  footer {
    padding: 60px 0;
  }
  .hero .container,
  .foods .container,
  .drinks .container,
  .desserts .container,
  .find-us .container,
  .sl .container,
  .seo .container,
  footer .container {
    padding: 0 30px;
  }
  .hero .container,
  .menu-hero .container {
    display: flex;
    flex-direction: row;
    flex-direction: column;
    justify-content: center;
    row-gap: 40px;
    height: 400px;
  }
  .hero .container .title,
  .menu-hero .container .title {
    font-size: 52px;
    line-height: 125%;
    text-align: center;
    color: #ffffff;
  }
  .hero .container .description,
  .menu-hero .container .description {
    margin: 0 auto;
    max-width: 660px;
    font-size: 24px;
    line-height: 121%;
    text-align: center;
    color: #ffffff;
  }
  .hero .container .social,
  .menu-hero .container .social {
    display: flex;
    align-items: center;
    justify-content: center;
    -moz-column-gap: 30px;
         column-gap: 30px;
  }
  .hero .container .social a.goFood,
  .menu-hero .container .social a.goFood {
    padding: 12px 30px;
    font-size: 18px;
    line-height: 24px;
  }
  .foods,
  .drinks,
  .desserts {
    background: #000;
  }
  .foods .container,
  .drinks .container,
  .desserts .container {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  .foods .container .top,
  .drinks .container .top,
  .desserts .container .top {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    position: relative;
  }
  .foods .container .top:before,
  .drinks .container .top:before,
  .desserts .container .top:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    border-bottom: 2px solid var(--color);
  }
  .foods .container .top h2,
  .drinks .container .top h2,
  .desserts .container .top h2 {
    font-family: "Rammetto One";
    font-style: normal;
    font-weight: 400;
    font-size: 40px;
    line-height: 84px;
    text-transform: capitalize;
    color: #ffffff;
    text-align: left;
    max-width: -moz-max-content;
    max-width: max-content;
    background-color: #000;
    z-index: 1;
    padding-right: 40px;
  }
  .foods .container .bottom,
  .drinks .container .bottom,
  .desserts .container .bottom {
    flex: 0 0 100%;
    margin-top: -42px;
    padding: 100px 20px 30px;
    border: 2px solid var(--color);
    border-top: none;
    border-left: none;
  }
  .drinks .container {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  .drinks .container .top {
    justify-content: flex-end;
  }
  .drinks .container .top:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    border-bottom: 2px solid #fff;
  }
  .drinks .container .top h2 {
    font-family: "Rammetto One";
    font-style: normal;
    font-weight: 400;
    font-size: 50px;
    line-height: 84px;
    text-transform: capitalize;
    color: #ffffff;
    padding-left: 40px;
  }
  .drinks .container .bottom {
    flex: 0 0 100%;
    margin-top: -42px;
    padding: 100px 20px 30px;
    border: 2px solid #fff;
    border-top: none;
    border-right: none;
  }
  .find-us {
    padding: 60px 0;
  }
  .find-us .container .content {
    display: flex;
    flex-direction: row-reverse;
    flex-wrap: wrap;
    gap: 20px;
  }
  .find-us .container .content .left,
  .find-us .container .content .right {
    display: flex;
    flex: 0 0 calc(50% - 10px);
    padding: 0;
    margin: 0 auto;
    gap: 30px;
  }
  .find-us .container .content .left .contact-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: stretch;
    row-gap: 20px;
  }
  .find-us .container .content .left .contact-form input {
    height: 44px;
    font-size: 16px;
    line-height: 16px;
    width: 100%;
    background-color: transparent;
    border: none;
    border-bottom: 2px solid #fff;
    color: #fff;
    padding: 5px;
    outline: none;
  }
  .find-us .container .content .left .contact-form input::-moz-placeholder {
    text-align: left;
    color: #fff;
    text-transform: capitalize;
  }
  .find-us .container .content .left .contact-form input::placeholder {
    text-align: left;
    color: #fff;
    text-transform: capitalize;
  }
  .find-us .container .content .left .contact-form button {
    background: var(--color);
    border-radius: 10px;
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    width: 100%;
    padding: 16px;
    line-height: 27px;
    outline: none;
    border: none;
  }
  .find-us .container .content .right {
    flex-direction: column;
    justify-content: center;
  }
  .find-us .container .content .right h2 {
    font-size: 40px;
    line-height: 148%;
    text-transform: uppercase;
    color: #ffffff;
  }
  .find-us .container .content .right p {
    font-size: 26px;
    line-height: 123%;
  }
  .sl {
    padding: 0;
    max-height: 580px;
  }
  .sl .location {
    position: absolute;
    top: 90px;
    background-color: var(--color);
    color: #fff;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    border-radius: 10px;
    font-size: 31px;
    line-height: 32px;
    left: 50%;
    transform: translateX(-40%);
    padding: 20px;
  }
  .seo {
    background-color: #000;
    padding-top: 0;
  }
  .seo .container h2 {
    font-family: "Rammetto One";
    font-style: normal;
    font-weight: 400;
    font-size: 42px;
    line-height: 50px;
    font-feature-settings: "kern" off;
    color: #ffffff;
  }
  .seo .container p {
    font-size: 16px;
    line-height: 22px;
    text-align: justify;
    color: #ffffff;
    margin: 20px 0;
  }
  .seo .container p a {
    text-decoration: underline;
  }
  footer {
    background: var(--color2);
  }
  footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    -moz-column-gap: 30px;
         column-gap: 30px;
  }
  footer .container .logo &gt; a &gt; img {
    width: 180px;
  }
  footer .container .details {
    max-width: calc(100% - 180px);
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    text-transform: capitalize;
    color: #000000;
  }
  footer .container .footer-social {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
  }
  footer .container .footer-social a {
    line-height: 14px;
  }
  .copyright {
    text-align: center;
    background-color: #000;
    color: var(--color2);
    padding: 10px 0;
  }
  .menu-hero {
    background-image: linear-gradient(270deg, rgba(0, 0, 0, 0) 50.88%, #000000 78.8%), linear-gradient(180deg, #000000 9.61%, rgba(0, 0, 0, 0) 19.68%), url("assets/menu-hero.webp");
    background-size: 100% 100%;
  }
  .menu-hero .container {
    height: 470px;
  }
  .menu.foods .container .top,
  .menu.drinks .container .top,
  .menu.desserts .container .top {
    justify-content: center;
    position: relative;
  }
  .menu.foods .container .top:before,
  .menu.drinks .container .top:before,
  .menu.desserts .container .top:before {
    content: "";
    position: absolute;
    height: 0;
    border: 1px dashed #fff;
    width: 100%;
    top: 50%;
    left: 0;
    z-index: 0;
  }
  .menu.foods .container .top h2,
  .menu.drinks .container .top h2,
  .menu.desserts .container .top h2 {
    padding: 0 10px;
    z-index: 1;
    max-width: -moz-max-content;
    max-width: max-content;
    text-align: center;
    background: #000;
  }
  .menu.foods .container .bottom,
  .menu.drinks .container .bottom,
  .menu.desserts .container .bottom {
    border: none;
  }
}
@media screen and (max-width: 767px) {
  .hamburger {
    display: block;
    margin: auto 0;
  }
  .items {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 30px;
  }
  .items .item {
    flex: 0 0 calc(50% - 15px);
  }
  .items .item img {
    height: 200px;
  }
  .items .item .details {
    height: 78px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 10px 0;
    row-gap: 10px;
  }
  .items .item .details .price {
    background: var(--color);
    border-radius: 10px;
    padding: 4px 10px;
    font-size: 16px;
    line-height: 20px;
    bottom: 70px;
    color: #ffffff;
  }
  .items .item .details .name {
    margin-top: 10px;
    font-weight: 700;
    font-size: 22px;
    line-height: 24px;
  }
  .all-items {
    margin-top: 40px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    -moz-column-gap: 10px;
         column-gap: 10px;
    row-gap: 10px;
  }
  .all-items .item {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex: 0 0 100%;
    border-radius: 5px;
    padding: 5px 15px;
  }
  nav {
    background: #fff;
  }
  nav.sticky {
    position: sticky;
    top: 0;
    width: 100%;
    box-sizing: border-box;
    z-index: 10;
    transition: position 1s ease-in-out;
  }
  nav .container {
    padding: 0 30px;
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
    height: 100px;
  }
  nav .container .logo {
    margin-left: 0;
    justify-self: flex-start;
  }
  nav .container .logo img {
    width: 100%;
    height: 90px;
  }
  nav .container ul.links {
    padding: 10px 0;
    margin-right: 0;
    display: none;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    row-gap: 10px;
    width: 100%;
    position: absolute;
    left: 0;
    top: 100px;
    z-index: 100;
    background-color: #fff;
  }
  nav .container ul.links li {
    text-transform: capitalize;
  }
  nav .container ul.links li a {
    text-transform: capitalize;
    font-size: 18px;
    line-height: 30px;
    font-weight: var(--bold);
    padding: 4px 16px;
  }
  nav .container ul.links li a:not(.goFood) {
    color: #000;
  }
  nav .container ul.links li a:not(.goFood).active {
    color: var(--color);
  }
  .hero,
  .foods,
  .drinks,
  .desserts,
  .find-us,
  .sl,
  .seo,
  footer {
    padding: 60px 0;
  }
  .hero .container,
  .foods .container,
  .drinks .container,
  .desserts .container,
  .find-us .container,
  .sl .container,
  .seo .container,
  footer .container {
    padding: 0 30px;
  }
  .hero .container,
  .menu-hero .container {
    display: flex;
    flex-direction: row;
    flex-direction: column;
    justify-content: center;
    row-gap: 40px;
    height: 300px;
  }
  .hero .container .title,
  .menu-hero .container .title {
    font-size: 36px;
    line-height: 125%;
    text-align: center;
    color: #ffffff;
  }
  .hero .container .description,
  .menu-hero .container .description {
    margin: 0 auto;
    max-width: 660px;
    font-size: 20px;
    line-height: 121%;
    text-align: center;
    color: #ffffff;
  }
  .hero .container .social,
  .menu-hero .container .social {
    display: flex;
    align-items: center;
    justify-content: center;
    -moz-column-gap: 30px;
         column-gap: 30px;
  }
  .hero .container .social a.goFood,
  .menu-hero .container .social a.goFood {
    padding: 12px 20px;
    font-size: 18px;
    line-height: 24px;
  }
  .foods,
  .drinks,
  .desserts {
    background: #000;
  }
  .foods .container,
  .drinks .container,
  .desserts .container {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  .foods .container .top,
  .drinks .container .top,
  .desserts .container .top {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    position: relative;
  }
  .foods .container .top:before,
  .drinks .container .top:before,
  .desserts .container .top:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    border-bottom: 2px solid var(--color);
  }
  .foods .container .top h2,
  .drinks .container .top h2,
  .desserts .container .top h2 {
    font-size: 28px;
    line-height: 56px;
    text-transform: capitalize;
    color: #ffffff;
    text-align: left;
    max-width: -moz-max-content;
    max-width: max-content;
    background-color: #000;
    z-index: 1;
    padding-right: 20px;
  }
  .foods .container .bottom,
  .drinks .container .bottom,
  .desserts .container .bottom {
    flex: 0 0 100%;
    margin-top: -28px;
    padding: 50px 15px 0;
    border: 2px solid var(--color);
    border-top: none;
    border-left: none;
  }
  .drinks .container {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  .drinks .container .top {
    justify-content: flex-end;
  }
  .drinks .container .top:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    border-bottom: 2px solid #fff;
  }
  .drinks .container .top h2 {
    text-transform: capitalize;
    color: #ffffff;
    padding-left: 20px;
  }
  .drinks .container .bottom {
    flex: 0 0 100%;
    border: 2px solid #fff;
    border-top: none;
    border-right: none;
  }
  .find-us {
    padding: 60px 0;
  }
  .find-us .container .content {
    display: flex;
    flex-direction: row-reverse;
    flex-wrap: wrap;
    gap: 20px;
  }
  .find-us .container .content .left,
  .find-us .container .content .right {
    display: flex;
    flex: 0 0 100%;
    padding: 0;
    margin: 0 auto;
    gap: 30px;
  }
  .sl {
    padding: 0;
    height: 580px;
  }
  .sl .location {
    position: absolute;
    width: 90%;
    height: -moz-fit-content;
    height: fit-content;
    top: unset;
    bottom: 60px;
    background-color: var(--color);
    color: #fff;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    border-radius: 10px;
    font-size: 22px;
    line-height: 26px;
    left: 0;
    transform: unset;
    padding: 20px;
  }
  .seo {
    background-color: #000;
  }
  .seo .container h2 {
    font-size: 32px;
    line-height: 40px;
  }
  .seo .container p {
    font-size: 16px;
    line-height: 20px;
    text-align: justify;
    color: #ffffff;
    margin: 20px 0;
  }
  .seo .container p a {
    text-decoration: underline;
  }
  footer {
    background: var(--color2);
  }
  footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    -moz-column-gap: 0px;
         column-gap: 0px;
  }
  footer .container .logo &gt; a &gt; img {
    width: 180px;
  }
  footer .container .details {
    max-width: 100%;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    text-transform: capitalize;
    color: #000000;
  }
  footer .container .footer-social {
    margin-top: 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
  }
  footer .container .footer-social a {
    line-height: 14px;
  }
  .copyright {
    text-align: center;
    background-color: #000;
    color: var(--color2);
    padding: 10px 0;
  }
  .menu-hero {
    background-image: linear-gradient(270deg, rgba(0, 0, 0, 0) 50.88%, #000000 78.8%), linear-gradient(180deg, #000000 9.61%, rgba(0, 0, 0, 0) 19.68%), url("assets/menu-hero.webp");
    background-size: 100% 100%;
  }
  .menu-hero .container .description {
    padding: 0 30px;
  }
  .menu.foods .container .top,
  .menu.drinks .container .top,
  .menu.desserts .container .top {
    justify-content: center;
    position: relative;
  }
  .menu.foods .container .top:before,
  .menu.drinks .container .top:before,
  .menu.desserts .container .top:before {
    content: "";
    position: absolute;
    height: 0;
    border: 1px dashed #fff;
    width: 100%;
    top: 50%;
    left: 0;
    z-index: 0;
  }
  .menu.foods .container .top h2,
  .menu.drinks .container .top h2,
  .menu.desserts .container .top h2 {
    padding: 0 10px;
    z-index: 1;
    max-width: -moz-max-content;
    max-width: max-content;
    text-align: center;
    background: #000;
  }
  .menu.foods .container .bottom,
  .menu.drinks .container .bottom,
  .menu.desserts .container .bottom {
    border: none;
  }
}
@media screen and (max-width: 567px) {
  .hamburger {
    display: block;
    margin: auto 0;
  }
  .items {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 30px;
  }
  .items .item {
    flex: 0 0 auto;
    padding: 0 4px;
  }
  .items .item img {
    height: 300px;
  }
  .items .item .details {
    height: 78px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 10px 0;
    row-gap: 10px;
  }
  .items .item .details .price {
    background: var(--color);
    border-radius: 10px;
    padding: 6px 10px;
    font-size: 18px;
    line-height: 20px;
    bottom: 66px;
    color: #ffffff;
  }
  .items .item .details .name {
    margin-top: 10px;
    font-weight: 700;
    font-size: 24px;
    line-height: 26px;
  }
  .all-items {
    margin-top: 40px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    -moz-column-gap: 30px;
         column-gap: 30px;
    row-gap: 10px;
  }
  .all-items .item {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex: 0 0 100%;
    background: rgba(162, 86, 0, 0.2);
    border-radius: 5px;
    padding: 5px 15px;
  }
  .all-items .item .name,
  .all-items .item .price {
    font-weight: 500;
    font-size: 16px;
    line-height: 31px;
    text-transform: capitalize;
    color: #ffffff;
  }
  .all-items .item .price {
    font-size: 16px;
    line-height: 20px;
    color: var(--color);
  }
  nav {
    background: #fff;
  }
  nav.sticky {
    position: sticky;
    top: 0;
    width: 100%;
    box-sizing: border-box;
    z-index: 10;
    transition: position 1s ease-in-out;
  }
  nav .container {
    padding: 0 30px;
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
    height: 100px;
  }
  nav .container .logo {
    margin-left: 0;
    justify-self: flex-start;
  }
  nav .container .logo img {
    width: 100%;
    height: 90px;
  }
  nav .container ul.links {
    padding: 10px 0;
    margin-right: 0;
    display: none;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    row-gap: 10px;
    width: 100%;
    position: absolute;
    left: 0;
    top: 100px;
    z-index: 100;
    background-color: #fff;
  }
  nav .container ul.links li {
    text-transform: capitalize;
  }
  nav .container ul.links li a {
    text-transform: capitalize;
    font-size: 18px;
    line-height: 30px;
    font-weight: var(--bold);
    padding: 4px 16px;
  }
  nav .container ul.links li a:not(.goFood) {
    color: #000;
  }
  nav .container ul.links li a:not(.goFood).active {
    color: var(--color);
  }
  .hero,
  .foods,
  .drinks,
  .desserts,
  .find-us,
  .sl,
  .seo,
  footer {
    padding: 40px 0;
  }
  .hero .container,
  .foods .container,
  .drinks .container,
  .desserts .container,
  .find-us .container,
  .sl .container,
  .seo .container,
  footer .container {
    padding: 0 20px;
  }
  .hero .container,
  .menu-hero .container {
    display: flex;
    flex-direction: row;
    flex-direction: column;
    justify-content: center;
    row-gap: 40px;
    height: 300px;
  }
  .hero .container .title,
  .menu-hero .container .title {
    font-size: 26px;
    line-height: 125%;
    text-align: center;
    color: #ffffff;
  }
  .hero .container .description,
  .menu-hero .container .description {
    margin: 0 auto;
    max-width: 380px;
    font-size: 20px;
    line-height: 121%;
    text-align: center;
    color: #ffffff;
  }
  .hero .container .social,
  .menu-hero .container .social {
    display: flex;
    align-items: center;
    justify-content: center;
    -moz-column-gap: 30px;
         column-gap: 30px;
  }
  .hero .container .social a.goFood,
  .menu-hero .container .social a.goFood {
    padding: 12px 20px;
    font-size: 18px;
    line-height: 24px;
  }
  .foods,
  .drinks,
  .desserts {
    background: #000;
  }
  .foods .container,
  .drinks .container,
  .desserts .container {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  .foods .container .top,
  .drinks .container .top,
  .desserts .container .top {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    position: relative;
  }
  .foods .container .top:before,
  .drinks .container .top:before,
  .desserts .container .top:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    border-bottom: 2px solid var(--color);
  }
  .foods .container .top h2,
  .drinks .container .top h2,
  .desserts .container .top h2 {
    font-size: 24px;
    line-height: 36px;
    text-transform: capitalize;
    color: #ffffff;
    text-align: left;
    max-width: -moz-max-content;
    max-width: max-content;
    background-color: #000;
    z-index: 1;
    padding-right: 20px;
  }
  .foods .container .bottom,
  .drinks .container .bottom,
  .desserts .container .bottom {
    flex: 0 0 100%;
    margin-top: -18px;
    padding: 50px 15px 20px;
    border: 2px solid var(--color);
    border-top: none;
    border-left: none;
  }
  .drinks .container {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  .drinks .container .top {
    justify-content: flex-end;
  }
  .drinks .container .top:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    border-bottom: 2px solid #fff;
  }
  .drinks .container .top h2 {
    text-transform: capitalize;
    color: #ffffff;
    padding-left: 20px;
  }
  .drinks .container .bottom {
    flex: 0 0 100%;
    border: 2px solid #fff;
    border-top: none;
    border-right: none;
  }
  .find-us {
    padding: 60px 0;
  }
  .find-us .container .content {
    display: flex;
    flex-direction: row-reverse;
    flex-wrap: wrap;
    gap: 20px;
  }
  .find-us .container .content .left,
  .find-us .container .content .right {
    display: flex;
    flex: 0 0 100%;
    padding: 0;
    margin: 0 auto;
    gap: 30px;
  }
  .sl {
    padding: 0;
    height: 580px;
  }
  .sl .location {
    position: absolute;
    width: 90%;
    height: -moz-fit-content;
    height: fit-content;
    top: unset;
    bottom: 60px;
    background-color: var(--color);
    color: #fff;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    border-radius: 10px;
    font-size: 22px;
    line-height: 26px;
    left: 50%;
    transform: translateX(-50%) !important;
    transform: unset;
    padding: 20px;
  }
  .seo {
    background-color: #000;
  }
  .seo .container {
    padding-top: 0;
  }
  .seo .container h2 {
    font-size: 32px;
    line-height: 40px;
  }
  .seo .container p {
    font-size: 16px;
    line-height: 20px;
    text-align: justify;
    color: #ffffff;
    margin: 20px 0;
  }
  .seo .container p a {
    text-decoration: underline;
  }
  footer {
    background: var(--color2);
  }
  footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    -moz-column-gap: 0px;
         column-gap: 0px;
  }
  footer .container .logo &gt; a &gt; img {
    width: 180px;
  }
  footer .container .details {
    max-width: 100%;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    text-transform: capitalize;
    color: #000000;
  }
  footer .container .footer-social {
    margin-top: 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
  }
  footer .container .footer-social a {
    line-height: 14px;
  }
  .copyright {
    text-align: center;
    background-color: #000;
    color: var(--color2);
    padding: 10px 0;
  }
  .menu-hero {
    background-image: linear-gradient(270deg, rgba(0, 0, 0, 0) 50.88%, #000000 78.8%), linear-gradient(180deg, #000000 9.61%, rgba(0, 0, 0, 0) 19.68%), url("assets/menu-hero.webp");
    background-size: 100% 100%;
  }
  .menu-hero .container {
    height: 470px;
  }
  .menu.foods .container .top,
  .menu.drinks .container .top,
  .menu.desserts .container .top {
    justify-content: center;
    position: relative;
  }
  .menu.foods .container .top:before,
  .menu.drinks .container .top:before,
  .menu.desserts .container .top:before {
    content: "";
    position: absolute;
    height: 0;
    border: 1px dashed #fff;
    width: 100%;
    top: 50%;
    left: 0;
    z-index: 0;
  }
  .menu.foods .container .top h2,
  .menu.drinks .container .top h2,
  .menu.desserts .container .top h2 {
    padding: 0 10px;
    z-index: 1;
    max-width: -moz-max-content;
    max-width: max-content;
    text-align: center;
    background: #000;
  }
  .menu.foods .container .bottom,
  .menu.drinks .container .bottom,
  .menu.desserts .container .bottom {
    border: none;
  }
}/*# sourceMappingURL=style.css.map */</pre></body></html>