:root {
  --color: #7ea749;
  --colo2: #f4f4f4;
  --regular: 400;
  --semibold: 500;
  --bold: 600;
}

body {
  overflow-x: hidden;
}

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

.os {
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}

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

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

a.goFood,
button {
  transition: box-shadow 0.2s ease-in-out;
}
a.goFood:hover,
button:hover {
  box-shadow: 0px 4px 10px rgba(116, 231, 39, 0.9);
}

.social {
  height: 44px;
  display: flex;
  flex-direction: row;
  -moz-column-gap: 10px;
       column-gap: 10px;
}
.social a {
  overflow: hidden;
  height: 44px;
  transition: fill 0.3s ease-in-out, opacity 0.3s ease-in-out;
}
.social a:hover {
  opacity: 0.9;
}

a.goFood {
  padding: 8px 20px 8px;
  background: var(--color);
  border-radius: 60px;
  color: #fff !important;
  display: flex;
  align-items: center;
  gap: 5px;
}

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

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

.active {
  display: flex !important;
}

.line {
  margin-bottom: 6px;
  width: 50px;
  height: 2px;
  background-color: #000000;
}

.pos-r {
  position: relative;
}

nav {
  background: #ffffff;
  box-shadow: 0px 14px 34px rgba(0, 0, 0, 0.15);
  position: relative;
  padding: 10px 0;
}
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: 0px 60px;
  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 {
  margin-right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
}
nav .container ul.links li {
  margin-right: 30px;
}
nav .container ul.links li:last-child {
  margin-right: 0;
}
nav .container ul.links li a {
  color: #000;
  font-size: 20px;
  line-height: 20px;
  font-weight: var(--regular);
  padding: 8px 20px 8px;
  font-family: "Open sans", sans-serif;
  transition: all 0.5s ease-in-out;
}
nav .container ul.links li a.active, nav .container ul.links li a:hover {
  color: var(--color);
}

.hero {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url("assets/hero.webp");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding: 120px 0;
}
.hero .container {
  padding: 0px 60px;
  margin: 0 auto;
  color: #fff;
  display: flex;
}
.hero .container .content {
  padding: 60px 0;
  display: flex;
}
.hero .container .content .left {
  flex: 0 0 55%;
  flex-direction: column;
  justify-content: space-between;
  align-content: flex-start;
  flex-wrap: wrap;
}
.hero .container .content .left .greet {
  max-width: -moz-max-content;
  max-width: max-content;
  border-radius: 10px;
  padding: 5px 10px;
  font-weight: var(--semibold);
  font-size: 30px;
  text-transform: capitalize;
  background-color: var(--color);
  color: #000;
  margin-bottom: 50px;
}
.hero .container .content .left h2 {
  font-size: 80px;
  line-height: 67px;
  color: #90c946;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
.hero .container .content .left .description {
  width: 100%;
  text-transform: capitalize;
  font-weight: var(--regular);
  font-size: 18px;
  color: #ffffff;
  margin: 30px 0 80px 0;
}
.hero .container .content .left .social {
  margin-top: 50px;
}
.hero .container .content .left a.goFood {
  max-width: -moz-max-content;
  max-width: max-content;
  font-weight: 400;
  font-size: 20px;
  font-weight: var(--regular);
  text-transform: capitalize;
}
.hero .container .content .right {
  flex: 0 0 45%;
}
.hero .container .content .right .our-menu {
  width: 100%;
  background: var(--color);
  border-radius: 20px;
  padding: 20px 0;
  position: absolute;
  right: 0;
}
.hero .container .content .right .our-menu .container {
  padding: 10px 30px;
  display: flex;
  flex-direction: column;
}
.hero .container .content .right .our-menu .container h2 {
  font-weight: 400;
  font-size: 60px;
  line-height: auto;
  text-transform: capitalize;
  color: #ffffff;
  text-align: center;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  margin-bottom: 10px;
}
.hero .container .content .right .our-menu .container .items {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
.hero .container .content .right .our-menu .container .items .item {
  display: flex;
  flex: 0 0 100%;
  position: relative;
  overflow: hidden;
}
.hero .container .content .right .our-menu .container .items .item .image {
  border-radius: 10px;
  width: 100px;
}
.hero .container .content .right .our-menu .container .items .item .image img {
  width: 100%;
  max-height: 100px;
  border-radius: 10px;
}
.hero .container .content .right .our-menu .container .items .item .details {
  overflow: hidden;
  padding: 0 12px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 15px;
  color: #fff;
}
.hero .container .content .right .our-menu .container .items .item .details .price {
  font-family: "Open Sans", sans-serif;
  font-weight: var(--semibold);
  font-size: 20px;
  order: 2;
}
.hero .container .content .right .our-menu .container .items .item .details .name {
  font-family: "Open Sans", sans-serif;
  font-weight: var(--semibold);
  font-size: 26px;
  position: relative;
}
.hero .container .content .right .our-menu .container .items .item .details .name:before {
  content: "";
  position: absolute;
  bottom: -10px;
  width: 76px;
  left: 1px;
  border-bottom: 3px solid #fff;
  border-radius: 4px;
}

.mobile-our-menu {
  display: none;
}

.why {
  background-color: var(--colo2);
  padding: 100px 0;
}
.why .container {
  padding: 0 60px;
  display: flex;
}
.why .container .content {
  row-gap: 20px;
  align-items: center;
  flex-direction: column;
  flex: 0 0 50%;
}
.why .container .content h2 {
  font-weight: var(--regular);
  font-size: 80px;
  line-height: 67px;
  color: var(--color);
  padding-right: 80px;
}
.why .container .content p {
  font-weight: var(--regular);
  font-size: 18px;
  line-height: 20px;
  color: #000000;
  margin: 30px 0;
}
.why .container .content .schedules {
  display: flex;
  flex-direction: row;
  color: #fff;
  justify-content: space-evenly;
  align-items: center;
  position: relative;
  background-color: var(--color);
  border-radius: 10px;
  padding: 0 15px;
}
.why .container .content .schedules .schedule {
  border-radius: 10px;
  display: flex;
  text-align: left;
  flex-direction: row;
  align-items: center;
  justify-content: start;
  padding: 25px;
  padding-right: 0;
  width: 40%;
  font-size: 19px;
  line-height: auto;
  font-weight: var(--semibold);
}
.why .container .content .schedules .schedule img {
  margin: unset;
  margin-right: 10px;
}
.why .container .content .schedules .divider {
  width: 3px;
  height: 50px;
  background-color: #fff;
}
.why .container .content .icons {
  display: inline-flex;
  flex-direction: row;
  -moz-column-gap: 40px;
       column-gap: 40px;
  margin-top: 40px;
}

.find-us {
  background: var(--color);
  padding: 60px 0;
}
.find-us .container {
  padding: 0 60px;
  display: flex;
  -moz-column-gap: 20px;
       column-gap: 20px;
  align-items: center;
}
.find-us .container .left {
  width: 100%;
  display: flex;
  -moz-column-gap: 20px;
       column-gap: 20px;
  overflow: hidden;
  align-items: center;
}
.find-us .container .left img {
  display: block;
  width: 100%;
}
.find-us .container .right {
  display: inline-flex;
  flex-direction: column;
  width: 100%;
}
.find-us .container .right h2 {
  font-weight: var(--regular);
  font-size: 65px;
  line-height: 67px;
  color: #fff;
  text-transform: capitalize;
}
.find-us .container .right p {
  font-weight: var(--regular);
  font-size: 18px;
  color: #000000;
  margin: 20px 0;
}
.find-us .container .right .location {
  background-color: #fff;
  border-radius: 10px;
  color: #000;
  padding: 40px;
  display: inline-flex;
  align-items: center;
}
.find-us .container .right .location img {
  margin-right: 10px;
}

.get-in-touch {
  padding: 60px 0;
  background-color: var(--colo2);
}
.get-in-touch .container {
  padding: 0 60px;
}
.get-in-touch .container h2 {
  font-weight: 400;
  font-size: 65px;
  line-height: 67px;
  text-transform: capitalize;
  color: #000000;
  text-align: center;
  margin-bottom: 60px;
}
.get-in-touch .container .content {
  margin: 0 auto;
  width: 80%;
  display: flex;
  -moz-column-gap: 20px;
       column-gap: 20px;
}
.get-in-touch .container .content .left,
.get-in-touch .container .content .right {
  flex: 0 0 50%;
  justify-content: center;
  align-items: center;
}
.get-in-touch .container .content .right {
  flex: 0 0 50%;
  padding-right: 0;
  align-self: center;
}
.get-in-touch .container .content .right input,
.get-in-touch .container .content .right textarea {
  font-family: "Open Sans", sans-serif;
  width: 100%;
  border: none;
  border-radius: 10px;
  background-color: #fff;
  padding: 20px;
  color: #000;
  text-align: left;
  margin-bottom: 15px;
  transition: border 0.5s ease-in-out;
}
.get-in-touch .container .content .right input:hover, .get-in-touch .container .content .right input:focus,
.get-in-touch .container .content .right textarea:hover,
.get-in-touch .container .content .right textarea:focus {
  outline: none;
}
.get-in-touch .container .content .right button {
  border: none;
  outline: none;
  font-size: 24px;
  font-weight: 500;
  border-radius: 10px;
  text-align: center;
  padding: 20px;
  width: 100%;
  color: #fff;
  background-color: var(--color);
}

footer {
  background-color: var(--color);
  box-shadow: 0px -36px 24px rgba(0, 0, 0, 0.15);
  color: #fff;
  padding: 60px 0;
}
footer .container {
  margin: 0 auto;
  padding: 0 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  -moz-column-gap: 30px;
       column-gap: 30px;
}
footer .container .logo > a > img {
  width: 244px;
}
footer .container .details {
  max-width: 60%;
}
footer .container .footer-social {
  text-align: left;
}
footer .container .footer-social a {
  display: block;
  margin: 20px;
  margin-left: 0;
}

button {
  cursor: pointer;
}

svg {
  transition: all 0.5s ease-in-out;
}
svg:hover {
  transform: rotate(360deg);
}

article {
  padding: 50px 16px;
}
article .heading {
  font-size: 50px;
  font-weight: 900;
  color: var(--color);
  text-align: center;
  line-height: 1;
}
article .desc {
  font-size: 18px;
  font-family: "Open Sans", sans-serif;
  text-align: justify;
  margin-top: 10px;
}
article .desc a {
  font-family: "Open Sans", sans-serif;
  color: var(--color);
}
article .desc a:hover {
  text-decoration: underline;
}

@media screen and (max-width: 1024px) {
  .container {
    max-width: 964px;
    margin: 0 auto;
    box-sizing: border-box;
  }
  .hamburger {
    display: none;
    margin: auto 0;
  }
  .active {
    display: flex !important;
  }
  .line {
    margin-bottom: 6px;
    width: 50px;
    height: 2px;
    background-color: #000000;
  }
  .pos-r {
    position: relative;
  }
  .hero {
    padding: 90px 0;
  }
  .hero .container {
    padding: 0px 60px;
    margin: 0 auto;
    color: #fff;
    display: flex;
  }
  .hero .container .content {
    padding: 45px 0;
    display: flex;
  }
  .hero .container .content .left h2 {
    font-size: 76px;
    line-height: 67px;
  }
  .hero .container .content .left .description {
    width: 100%;
    text-transform: capitalize;
    font-weight: var(--regular);
    font-size: 18px;
    color: #ffffff;
    margin: 30px 0 80px 0;
  }
  .hero .container .content .left .social {
    margin-top: 50px;
  }
  .hero .container .content .right {
    flex: 0 0 45%;
  }
  .hero .container .content .right .our-menu {
    width: 100%;
    background: var(--color);
    border-radius: 20px;
    padding: 20px 0;
    position: absolute;
    right: 0;
  }
  .hero .container .content .right .our-menu .container {
    padding: 10px 30px;
    display: flex;
    flex-direction: column;
  }
  .hero .container .content .right .our-menu .container h2 {
    font-weight: 400;
    font-size: 60px;
    line-height: auto;
    text-transform: capitalize;
    color: #ffffff;
    text-align: center;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    margin-bottom: 10px;
  }
  .hero .container .content .right .our-menu .container .items .item .details .price {
    font-size: 18px;
  }
  .hero .container .content .right .our-menu .container .items .item .details .name {
    font-size: 24px;
  }
  .why {
    background-color: var(--colo2);
    padding: 90px 0;
  }
  .why .container {
    padding: 0 45px;
    display: flex;
  }
  .why .container .content {
    row-gap: 20px;
    align-items: center;
    flex-direction: column;
    flex: 0 0 50%;
  }
  .why .container .content h2 {
    font-size: 76px;
    padding-right: 10px;
  }
  .why .container .content .schedules {
    padding: 0 10px;
  }
  .why .container .content .schedules .schedule {
    border-radius: 10px;
    display: flex;
    text-align: left;
    flex-direction: row;
    align-items: center;
    justify-content: start;
    padding: 16px;
    padding-right: 0;
    width: 40%;
    font-size: 18px;
    line-height: auto;
    font-weight: var(--semibold);
  }
  .why .container .content .schedules .schedule img {
    margin: unset;
    margin-right: 10px;
  }
  .why .container .content .schedules .divider {
    width: 3px;
    height: 50px;
    background-color: #fff;
  }
  .why .container .content .icons {
    display: inline-flex;
    flex-direction: row;
    -moz-column-gap: 40px;
         column-gap: 40px;
    margin-top: 40px;
  }
  .why .container .content .icons img {
    width: 65px;
  }
  .find-us {
    background: var(--color);
    padding: 60px 0;
  }
  .find-us .container {
    padding: 0 45px;
    display: flex;
    -moz-column-gap: 20px;
         column-gap: 20px;
    align-items: center;
  }
  .find-us .container .left {
    flex: 0 0 30%;
  }
  .find-us .container .right {
    flex: 0 0 70%;
  }
  .get-in-touch {
    padding: 60px 0;
    background-color: var(--colo2);
  }
  .get-in-touch .container {
    padding: 0 45px;
  }
  .get-in-touch .container h2 {
    font-weight: 400;
    font-size: 65px;
    line-height: 67px;
    text-transform: capitalize;
    color: #000000;
    text-align: center;
    margin-bottom: 60px;
  }
  .get-in-touch .container .content {
    margin: 0 auto;
    width: 90%;
    display: flex;
    -moz-column-gap: 20px;
         column-gap: 20px;
  }
  .get-in-touch .container .content .left,
  .get-in-touch .container .content .right {
    flex: 0 0 50%;
    justify-content: center;
    align-items: center;
  }
  .get-in-touch .container .content .right {
    flex: 0 0 50%;
    padding-right: 0;
    align-self: center;
  }
  .get-in-touch .container .content .right input,
  .get-in-touch .container .content .right textarea {
    font-family: "Open Sans", sans-serif;
    width: 100%;
    border: none;
    border-radius: 10px;
    background-color: #fff;
    padding: 20px;
    color: #000;
    text-align: left;
    margin-bottom: 15px;
    transition: border 0.5s ease-in-out;
  }
  .get-in-touch .container .content .right input:hover, .get-in-touch .container .content .right input:focus,
  .get-in-touch .container .content .right textarea:hover,
  .get-in-touch .container .content .right textarea:focus {
    outline: none;
  }
  .get-in-touch .container .content .right button {
    border: none;
    outline: none;
    font-size: 24px;
    font-weight: 500;
    border-radius: 10px;
    text-align: center;
    padding: 20px;
    width: 100%;
    color: #fff;
    background-color: var(--color);
  }
}
@media screen and (max-width: 991px) {
  .container {
    max-width: 901px;
    margin: 0 auto;
    box-sizing: border-box;
  }
  .hamburger {
    display: block;
    margin: auto 0;
  }
  .active {
    display: flex !important;
  }
  .line {
    margin-bottom: 6px;
    width: 50px;
    height: 2px;
    background-color: #000000;
  }
  .pos-r {
    position: relative;
  }
  nav {
    background: #ffffff;
    box-shadow: 0px 14px 34px rgba(0, 0, 0, 0.15);
    position: relative;
  }
  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: 100px;
  }
  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: none;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    position: absolute;
    top: 101px;
    background-color: #fff;
    left: 0;
    width: 100%;
    z-index: 999999;
    padding: 20px 0;
  }
  nav .container ul.links li {
    height: 40px;
    margin-right: 0;
    color: #000000;
    text-decoration: none;
  }
  nav .container ul.links li a {
    padding: 16px 0;
    font-size: 16px;
    font-weight: var(--regular);
  }
  nav .container ul.links li a.goFood {
    padding: 8px 15px;
    font-size: 16px;
  }
  nav .container ul.links li:last-child {
    margin-right: 0;
  }
  .hero {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url("assets/hero.webp");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    padding: 60px 0;
  }
  .hero .container {
    padding: 0px 30px;
    margin: 0 auto;
    color: #fff;
    display: flex;
  }
  .hero .container .content {
    padding: 0;
    display: flex;
    flex-direction: column;
  }
  .hero .container .content .left {
    flex-direction: column;
    align-content: flex-start;
    flex-wrap: wrap;
  }
  .hero .container .content .left .greet {
    font-size: 26px;
    margin-bottom: 30px;
  }
  .hero .container .content .left h2 {
    font-size: 60px;
    line-height: 67px;
  }
  .hero .container .content .left .description {
    font-size: 17px;
    margin: 30px 0 60px 0;
  }
  .hero .container .content .left .social {
    margin-top: 50px;
  }
  .hero .container .content .left a.goFood {
    max-width: -moz-max-content;
    max-width: max-content;
    font-weight: 400;
    font-size: 20px;
    font-weight: var(--regular);
    text-transform: capitalize;
  }
  .hero .container .content .right {
    flex: 1;
  }
  .hero .container .content .right .our-menu {
    display: none;
  }
  .why .container .content {
    flex: 1 !important;
  }
  .why {
    background-color: var(--colo2);
    padding: 30px 0;
  }
  .why .container {
    padding: 0 30px;
    display: flex;
  }
  .why .container .content {
    row-gap: 20px;
    align-items: center;
    flex-direction: column;
    flex: 0 0 50%;
  }
  .why .container .content h2 {
    font-size: 52px;
    line-height: 44px;
    padding-right: 20px;
  }
  .why .container .content p {
    font-size: 17px;
    line-height: auto;
  }
  .why .container .content .schedules {
    display: flex;
    flex-direction: row;
    color: #fff;
    justify-content: space-evenly;
    align-items: center;
    position: relative;
    background-color: var(--color);
    border-radius: 10px;
    padding: 0 15px;
  }
  .why .container .content .schedules img {
    margin: unset;
    width: 36px;
  }
  .why .container .content .schedules .schedule {
    padding: 10px;
    padding-right: 0;
    width: 40%;
    font-size: 16px;
    font-weight: var(--regular);
  }
  .why .container .content .schedules .divider {
    width: 2px;
    height: 50px;
    background-color: #fff;
  }
  .why .container .content .icons {
    display: inline-flex;
    flex-direction: row;
    -moz-column-gap: 40px;
         column-gap: 40px;
    margin-top: 40px;
  }
  .find-us {
    background: var(--color);
    padding: 30px 0;
  }
  .find-us .container {
    padding: 0 30px;
    display: flex;
    -moz-column-gap: 20px;
         column-gap: 20px;
    align-items: center;
  }
  .find-us .container .left {
    display: none;
  }
  .find-us .container .right {
    display: inline-flex;
    flex-direction: column;
    flex: 0 0 100%;
  }
  .get-in-touch {
    padding: 30px 0;
    background-color: var(--colo2);
  }
  .get-in-touch .container {
    padding: 0 30px;
  }
  .get-in-touch .container h2 {
    font-weight: 400;
    font-size: 65px;
    line-height: 67px;
    text-transform: capitalize;
    color: #000000;
    text-align: center;
    margin-bottom: 60px;
  }
  .get-in-touch .container .content {
    margin: 0 auto;
    width: 80%;
    display: flex;
    row-gap: 20px;
    flex-direction: column;
  }
  .get-in-touch .container .content .left,
  .get-in-touch .container .content .right {
    flex: 0 0 100%;
    justify-content: center;
    align-items: center;
  }
  .get-in-touch .container .content .right {
    width: 100%;
    flex: 0 0 50%;
    padding-right: 0;
    align-self: center;
  }
  .get-in-touch .container .content .right input,
  .get-in-touch .container .content .right textarea {
    font-family: "Open Sans", sans-serif;
    width: 100%;
    border: none;
    border-radius: 10px;
    background-color: #fff;
    padding: 20px;
    color: #000;
    text-align: left;
    margin-bottom: 15px;
    transition: border 0.5s ease-in-out;
  }
  .get-in-touch .container .content .right input:hover, .get-in-touch .container .content .right input:focus,
  .get-in-touch .container .content .right textarea:hover,
  .get-in-touch .container .content .right textarea:focus {
    outline: none;
  }
  .get-in-touch .container .content .right button {
    border: none;
    outline: none;
    font-size: 24px;
    font-weight: 500;
    border-radius: 10px;
    text-align: center;
    padding: 20px;
    width: 100%;
    color: #fff;
    background-color: var(--color);
  }
  footer {
    background-color: var(--color);
    box-shadow: 0px -36px 24px rgba(0, 0, 0, 0.15);
    color: #fff;
    padding: 30px 0;
  }
  footer .container {
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    -moz-column-gap: 30px;
         column-gap: 30px;
  }
  footer .container .logo > a > img {
    width: 140px;
  }
  footer .container .details {
    max-width: 70%;
  }
  footer .container .footer-social {
    text-align: left;
  }
  footer .container .footer-social a {
    display: block;
    margin: 20px;
    margin-left: 0;
  }
}
@media screen and (max-width: 767px) {
  .container {
    max-width: 707px;
    margin: 0 auto;
    box-sizing: border-box;
  }
  .hamburger {
    display: block;
    margin: auto 0;
  }
  .active {
    display: flex !important;
  }
  .line {
    margin-bottom: 6px;
    width: 50px;
    height: 2px;
    background-color: #000000;
  }
  .pos-r {
    position: relative;
  }
  nav {
    background: #ffffff;
    box-shadow: 0px 14px 34px rgba(0, 0, 0, 0.15);
    position: relative;
  }
  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: 100px;
  }
  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: none;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    position: absolute;
    top: 101px;
    background-color: #fff;
    left: 0;
    width: 100%;
    z-index: 999999;
  }
  nav .container ul.links li {
    height: 40px;
    margin-right: 0;
    color: #000000;
    text-decoration: none;
  }
  nav .container ul.links li a {
    padding: 16px 0;
    font-size: 16px;
    font-weight: var(--regular);
  }
  nav .container ul.links li a.goFood {
    padding: 8px 15px;
    font-size: 16px;
  }
  nav .container ul.links li:last-child {
    margin-right: 0;
  }
  .hero {
    padding: 15px 0;
  }
  .hero .container {
    padding: 0px 15px;
    margin: 0 auto;
    color: #fff;
    display: flex;
  }
  .hero .container .content {
    padding: 15px 0;
    display: flex;
  }
  .hero .container .content .left {
    flex: 0 0 50%;
    flex-direction: column;
    justify-content: space-between;
    align-content: flex-start;
    flex-wrap: wrap;
  }
  .hero .container .content .left .greet {
    max-width: -moz-max-content;
    max-width: max-content;
    border-radius: 10px;
    padding: 5px 10px;
    font-weight: var(--regular);
    font-size: 22px;
    text-transform: capitalize;
    background-color: var(--color);
    color: #000;
    margin-bottom: 50px;
  }
  .hero .container .content .left h2 {
    font-size: 44px;
    line-height: 47px;
  }
  .hero .container .content .left .description {
    font-size: 16px;
    margin: 30px 0 30px 0;
  }
  .hero .container .content .left .social {
    margin-top: 20px;
  }
  .hero .container .content .left a.goFood {
    max-width: -moz-max-content;
    max-width: max-content;
    font-weight: 400;
    font-size: 18px;
    font-weight: var(--regular);
    text-transform: capitalize;
  }
  .hero .container .content .right {
    flex: 0 0 50%;
  }
  .hero .container .content .right .our-menu {
    padding: 10px 0;
  }
  .hero .container .content .right .our-menu .container {
    padding: 10px;
    display: flex;
    flex-direction: column;
  }
  .hero .container .content .right .our-menu .container h2 {
    font-size: 36px;
    margin-bottom: 10px;
  }
  .hero .container .content .right .our-menu .container .items {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
  }
  .hero .container .content .right .our-menu .container .items .item {
    display: flex;
    flex: 0 0 100%;
    position: relative;
    overflow: hidden;
  }
  .hero .container .content .right .our-menu .container .items .item .image {
    border-radius: 10px;
    width: 72px;
  }
  .hero .container .content .right .our-menu .container .items .item .image img {
    width: 100%;
    max-height: 64px;
    border-radius: 10px;
  }
  .hero .container .content .right .our-menu .container .items .item .details {
    overflow: hidden;
    padding: 0 6px;
    row-gap: 15px;
  }
  .hero .container .content .right .our-menu .container .items .item .details .price {
    font-weight: var(--regular);
    font-size: 16px;
    order: 2;
  }
  .hero .container .content .right .our-menu .container .items .item .details .name {
    font-weight: var(--regular);
    font-size: 20px;
    position: relative;
  }
  .hero .container .content .right .our-menu .container .items .item .details .name:before {
    content: "";
    position: absolute;
    bottom: -10px;
    width: 76px;
    left: 1px;
    border-bottom: 3px solid #fff;
    border-radius: 4px;
  }
  .why {
    background-color: var(--colo2);
    padding: 15px 0;
  }
  .why .container {
    padding: 0 15px;
    display: flex;
  }
  .why .container .content {
    row-gap: 20px;
    align-items: center;
    flex-direction: column;
    flex: 0 0 50%;
  }
  .why .container .content h2 {
    font-weight: var(--regular);
    font-size: 42px;
    line-height: 44px;
    color: var(--color);
    padding-right: 0px;
  }
  .why .container .content p {
    font-weight: var(--regular);
    font-size: 16px;
    margin: 10px 0;
    width: 99%;
  }
  .why .container .content .schedules {
    margin-bottom: 10px;
    display: flex;
    flex-direction: column;
    color: #fff;
    justify-content: space-evenly;
    align-items: center;
    position: relative;
    background-color: var(--color);
    border-radius: 10px;
    padding: 10px;
    margin-right: 10px;
  }
  .why .container .content .schedules img {
    width: 64px;
  }
  .why .container .content .schedules .schedule {
    border-radius: 10px;
    display: flex;
    text-align: left;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8px 16px;
    padding-right: 0;
    width: 100%;
    font-size: 19px;
    line-height: auto;
    font-weight: var(--semibold);
  }
  .why .container .content .schedules .schedule img {
    margin: unset;
    margin-right: 10px;
  }
  .why .container .content .schedules .divider {
    width: 50px;
    height: 2px;
    background-color: #fff;
  }
  .why .container .content .icons {
    display: none;
    flex-direction: row;
    -moz-column-gap: 40px;
         column-gap: 40px;
    margin-top: 40px;
  }
  .find-us {
    background: var(--color);
    padding: 15px 0;
  }
  .find-us .container {
    padding: 0 15px;
    display: flex;
    -moz-column-gap: 20px;
         column-gap: 20px;
    align-items: center;
  }
  .find-us .container .left {
    display: none;
  }
  .find-us .container .right {
    display: inline-flex;
    flex-direction: column;
    width: 100%;
  }
  .find-us .container .right h2 {
    font-size: 56px;
    line-height: 57px;
  }
  .find-us .container .right p {
    font-weight: var(--regular);
    font-size: 18px;
    color: #000000;
    margin: 20px 0;
  }
  .find-us .container .right .location {
    padding: 20px;
  }
  .get-in-touch {
    padding: 15px 0;
    background-color: var(--colo2);
  }
  .get-in-touch .container {
    padding: 0 15px;
  }
  .get-in-touch .container h2 {
    font-weight: 400;
    font-size: 54px;
    line-height: 56px;
    text-transform: capitalize;
    color: #000000;
    text-align: center;
    margin-bottom: 60px;
  }
  .get-in-touch .container .content {
    margin: 0 auto;
    width: 100%;
    display: flex;
    -moz-column-gap: 20px;
         column-gap: 20px;
  }
  .get-in-touch .container .content .left,
  .get-in-touch .container .content .right {
    flex: 0 0 50%;
    justify-content: center;
    align-items: center;
  }
  .get-in-touch .container .content .right {
    flex: 0 0 50%;
    padding-right: 0;
    align-self: center;
  }
  .get-in-touch .container .content .right input,
  .get-in-touch .container .content .right textarea {
    font-family: "Open Sans", sans-serif;
    width: 100%;
    border: none;
    border-radius: 10px;
    background-color: #fff;
    padding: 20px;
    color: #000;
    text-align: left;
    margin-bottom: 15px;
    transition: border 0.5s ease-in-out;
  }
  .get-in-touch .container .content .right input:hover, .get-in-touch .container .content .right input:focus,
  .get-in-touch .container .content .right textarea:hover,
  .get-in-touch .container .content .right textarea:focus {
    outline: none;
  }
  .get-in-touch .container .content .right button {
    border: none;
    outline: none;
    font-size: 24px;
    font-weight: 500;
    border-radius: 10px;
    text-align: center;
    padding: 16px;
    width: 100%;
    color: #fff;
    background-color: var(--color);
  }
  footer {
    background-color: var(--color);
    box-shadow: 0px -36px 24px rgba(0, 0, 0, 0.15);
    color: #fff;
    padding: 15px 0;
  }
  footer .container {
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    -moz-column-gap: 30px;
         column-gap: 30px;
  }
  footer .container .logo > a > img {
    width: 240px;
  }
  footer .container .details {
    max-width: 100%;
  }
  footer .container .footer-social {
    text-align: left;
  }
  footer .container .footer-social a {
    display: inline-block;
    margin: 20px;
    margin-left: 0;
  }
}
@media screen and (max-width: 567px) {
  .container {
    max-width: 537px;
    margin: 0 auto;
    box-sizing: border-box;
  }
  .hamburger {
    display: block;
    margin: auto 0;
  }
  .active {
    display: flex !important;
  }
  .line {
    margin-bottom: 6px;
    width: 50px;
    height: 2px;
    background-color: #000000;
  }
  .pos-r {
    position: relative;
  }
  nav {
    background: #ffffff;
    box-shadow: 0px 14px 34px rgba(0, 0, 0, 0.15);
    position: relative;
  }
  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 15px;
    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 {
    margin-right: 0;
    display: none;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    position: absolute;
    top: 101px;
    background-color: #fff;
    left: 0;
    width: 100%;
    z-index: 999999;
  }
  nav .container ul.links li {
    height: 40px;
    margin-right: 0;
    color: #000000;
    text-decoration: none;
  }
  nav .container ul.links li a {
    padding: 16px 0;
    font-size: 16px;
    font-weight: var(--regular);
  }
  nav .container ul.links li a.goFood {
    padding: 8px 15px;
    font-size: 16px;
  }
  nav .container ul.links li:last-child {
    margin-right: 0;
  }
  .hero {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url("assets/hero.webp");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    padding: 15px 0;
  }
  .hero .container {
    padding: 0px 15px;
    margin: 0 auto;
    color: #fff;
    display: flex;
  }
  .hero .container .content {
    padding: 15px 0;
    display: flex;
  }
  .hero .container .content .left {
    flex: 0 0 100%;
    flex-direction: column;
    justify-content: space-between;
    align-content: flex-start;
    flex-wrap: wrap;
  }
  .hero .container .content .left .greet {
    max-width: -moz-max-content;
    max-width: max-content;
    border-radius: 10px;
    padding: 5px 10px;
    font-weight: var(--semibold);
    font-size: 18px;
    text-transform: capitalize;
    background-color: var(--color);
    color: #000;
    margin-bottom: 20px;
  }
  .hero .container .content .left h2 {
    font-size: 60px;
    line-height: 67px;
    color: #90c946;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  }
  .hero .container .content .left .description {
    width: 100%;
    text-transform: capitalize;
    font-weight: var(--regular);
    font-size: 18px;
    color: #ffffff;
    margin: 15px 0 15px 0;
  }
  .hero .container .content .left .social {
    margin-top: 15px;
  }
  .hero .container .content .right {
    display: none;
    flex: 0 0 95%;
  }
  .hero .container .content .right .our-menu {
    width: 100%;
    background: var(--color);
    border-radius: 20px;
    padding: 20px 0;
    position: absolute;
    right: 0;
  }
  .hero .container .content .right .our-menu .container {
    padding: 10px 30px;
    display: flex;
    flex-direction: column;
  }
  .hero .container .content .right .our-menu .container h2 {
    font-weight: 400;
    font-size: 60px;
    line-height: auto;
    text-transform: capitalize;
    color: #ffffff;
    text-align: center;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    margin-bottom: 10px;
  }
  .hero .container .content .right .our-menu .container .items {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
  }
  .hero .container .content .right .our-menu .container .items .item {
    display: flex;
    flex: 0 0 100%;
    position: relative;
    overflow: hidden;
  }
  .hero .container .content .right .our-menu .container .items .item .image {
    border-radius: 10px;
    width: 100px;
  }
  .hero .container .content .right .our-menu .container .items .item .image img {
    width: 100%;
    max-height: 100px;
    border-radius: 10px;
  }
  .hero .container .content .right .our-menu .container .items .item .details {
    overflow: hidden;
    padding: 0 12px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: flex-start;
    row-gap: 15px;
    color: #fff;
  }
  .hero .container .content .right .our-menu .container .items .item .details .price {
    font-family: "Open Sans", sans-serif;
    font-weight: var(--semibold);
    font-size: 20px;
    order: 2;
  }
  .hero .container .content .right .our-menu .container .items .item .details .name {
    font-family: "Open Sans", sans-serif;
    font-weight: var(--semibold);
    font-size: 26px;
    position: relative;
  }
  .hero .container .content .right .our-menu .container .items .item .details .name:before {
    content: "";
    position: absolute;
    bottom: -10px;
    width: 76px;
    left: 1px;
    border-bottom: 3px solid #fff;
    border-radius: 4px;
  }
  .mobile-our-menu {
    display: block;
    background: var(--color);
    padding: 15px 0;
  }
  .mobile-our-menu .container {
    padding: 0px 15px;
    display: flex;
    flex-direction: column;
  }
  .mobile-our-menu .container h2 {
    font-weight: 400;
    font-size: 56px;
    line-height: auto;
    text-transform: capitalize;
    color: #ffffff;
    text-align: center;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    margin-bottom: 10px;
  }
  .mobile-our-menu .container .items {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
  }
  .mobile-our-menu .container .items .item {
    display: flex;
    flex-direction: row;
    position: relative;
    overflow: hidden;
  }
  .mobile-our-menu .container .items .item .image {
    border-radius: 10px;
    width: 100px;
  }
  .mobile-our-menu .container .items .item .image img {
    width: 100%;
    max-height: 100px;
    border-radius: 10px;
  }
  .mobile-our-menu .container .items .item .details {
    overflow: hidden;
    padding: 0 12px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: flex-start;
    row-gap: 15px;
    color: #fff;
  }
  .mobile-our-menu .container .items .item .details .price {
    font-family: "Open Sans", sans-serif;
    font-weight: var(--semibold);
    font-size: 18px;
    order: 2;
  }
  .mobile-our-menu .container .items .item .details .name {
    font-family: "Open Sans", sans-serif;
    font-weight: var(--semibold);
    font-size: 22px;
    position: relative;
  }
  .mobile-our-menu .container .items .item .details .name:before {
    content: "";
    position: absolute;
    bottom: -10px;
    width: 76px;
    left: 1px;
    border-bottom: 3px solid #fff;
    border-radius: 4px;
  }
  .why {
    background-color: var(--colo2);
    padding: 15px 0;
  }
  .why .container {
    padding: 0 15px;
    display: flex;
  }
  .why .container .content {
    row-gap: 20px;
    align-items: center;
    flex-direction: column;
    flex: 0 0 100%;
  }
  .why .container .content h2 {
    font-weight: var(--regular);
    font-size: 55px;
    line-height: 50px;
    color: var(--color);
    padding-right: 0px;
  }
  .why .container .content p {
    font-weight: var(--regular);
    font-size: 18px;
    line-height: 20px;
    color: #000000;
    margin: 20px 0;
  }
  .why .container .content .schedules {
    display: flex;
    width: 100%;
    flex-direction: column;
    color: #fff;
    justify-content: center;
    align-items: center;
    position: relative;
    background-color: var(--color);
    border-radius: 10px;
    padding: 15px;
    margin: 0 auto;
  }
  .why .container .content .schedules .schedule {
    text-align: center;
    border-radius: 10px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: start;
    padding: 15px;
    padding-right: 0;
    font-size: 19px;
    line-height: 20px;
    font-weight: var(--semibold);
  }
  .why .container .content .schedules .schedule img {
    margin: unset;
    margin-right: 0px;
  }
  .why .container .content .schedules .divider {
    width: 60%;
    height: 2px;
    background-color: #fff;
  }
  .why .container .content .icons {
    display: inline-flex;
    flex-direction: row;
    -moz-column-gap: 40px;
         column-gap: 40px;
    margin-top: 10px;
  }
  .find-us {
    background: var(--color);
    padding: 15px 0;
  }
  .find-us .container {
    padding: 0 15px;
    display: flex;
    -moz-column-gap: 20px;
         column-gap: 20px;
    align-items: center;
  }
  .find-us .container .left {
    display: none;
  }
  .find-us .container .right {
    display: inline-flex;
    flex-direction: column;
    flex: 0 0 100%;
  }
  .find-us .container .right h2 {
    font-size: 56px;
    line-height: 57px;
  }
  .find-us .container .right p {
    margin: 15px 0;
  }
  .find-us .container .right .location {
    padding: 20px;
  }
  .get-in-touch {
    padding: 15px 0;
    background-color: var(--colo2);
  }
  .get-in-touch .container {
    padding: 0 15px;
  }
  .get-in-touch .container h2 {
    font-size: 56px;
    line-height: 57px;
  }
  .get-in-touch .container .content {
    margin: 0 auto;
    width: 100%;
    display: flex;
    -moz-column-gap: 20px;
         column-gap: 20px;
    flex-direction: column;
  }
  .get-in-touch .container .content .left,
  .get-in-touch .container .content .right {
    flex: 0 0 100%;
    justify-content: center;
    align-items: center;
  }
  .get-in-touch .container .content .right {
    padding-right: 0;
    align-self: center;
  }
  .get-in-touch .container .content .right input,
  .get-in-touch .container .content .right textarea {
    font-family: "Open Sans", sans-serif;
    width: 100%;
    border: none;
    border-radius: 10px;
    background-color: #fff;
    padding: 20px;
    color: #000;
    text-align: left;
    margin-bottom: 15px;
    transition: border 0.5s ease-in-out;
  }
  .get-in-touch .container .content .right input:hover, .get-in-touch .container .content .right input:focus,
  .get-in-touch .container .content .right textarea:hover,
  .get-in-touch .container .content .right textarea:focus {
    outline: none;
  }
  .get-in-touch .container .content .right button {
    border: none;
    outline: none;
    font-size: 24px;
    font-weight: 500;
    border-radius: 10px;
    text-align: center;
    padding: 20px;
    width: 100%;
    color: #fff;
    background-color: var(--color);
  }
  footer {
    background-color: var(--color);
    box-shadow: 0px -36px 24px rgba(0, 0, 0, 0.15);
    color: #fff;
    padding: 15px 0;
  }
  footer .container {
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    -moz-column-gap: 30px;
         column-gap: 30px;
  }
  footer .container .logo > a > img {
    width: 240px;
  }
  footer .container .details {
    max-width: 100%;
  }
  footer .container .footer-social {
    text-align: left;
  }
  footer .container .footer-social a {
    display: inline-block;
    margin: 20px;
    margin-left: 0;
  }
}/*# sourceMappingURL=style.css.map */