:root {
  --color: #6ab82e;
  --color2: #e70014;
  --color3: #ebebeb;
  --regular: 400;
  --semibold: 600;
  --bold: 700;
}

* {
  font-family: "Inter", 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 #fff;
}

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

a.goFood,
button[type=submit] {
  transition: box-shadow 0.2s ease-in-out;
}
a.goFood:hover,
button[type=submit]:hover {
  box-shadow: 0px 4px 10px rgba(248, 31, 78, 0.9);
}

a.goFood {
  color: #fff;
  border-radius: 10px;
  background-color: var(--color2);
}

.active {
  display: flex !important;
}

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

.pos-r {
  position: relative;
}

.slick-disabled {
  opacity: 0.3;
}

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

.items {
  margin: 40px 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  gap: 20px;
}
.items .item {
  position: relative;
  flex: 0 0 calc(25% - 15px);
}
.items .item img {
  width: 100%;
  height: 100%;
  max-height: 280px;
  border-radius: 10px;
}
.items .item .details {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
.items .item .details .name {
  background: rgba(0, 0, 0, 0.8);
  border-radius: 0px 0px 10px 10px;
  font-weight: 500;
  font-size: 20px;
  line-height: 22px;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  width: 100%;
  height: 52px;
  padding: 0 2px;
}
.items .item .details .price {
  margin-top: 20px;
  background: #fff;
  font-weight: 500;
  font-size: 18px;
  line-height: 30px;
  color: #000;
  padding: 0px 12px;
  border-radius: 70px;
  position: relative;
  z-index: 2;
}
.items .item .details .price span {
  text-align: center;
  margin-left: 10px;
  padding-left: 12px;
  padding-right: 2px;
  color: #fff;
}
.items .item .details .price span:before {
  content: "";
  position: absolute;
  right: 0;
  background-color: #000;
  border-radius: 70px;
  width: 70%;
  height: 100%;
  z-index: -1;
}

.all-items {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  row-gap: 10px;
  -moz-column-gap: 20px;
       column-gap: 20px;
}
.all-items .item {
  flex: 0 0 calc(50% - 15px);
  padding: 10px;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.6);
  display: inline-flex;
  align-items: center;
  flex-direction: row;
  font-weight: 500;
  font-size: 24px;
  line-height: 29px;
  text-transform: capitalize;
  color: #000;
}
.all-items .item .divider {
  height: 0px;
  border-bottom: 2px solid #000;
  flex: 1 0 auto;
  margin: 0 10px;
}

nav {
  background: #fff;
}
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: 100px;
  height: 100px;
}
nav .container ul.links {
  margin-right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  gap: 40px;
  padding: 20px 0;
}
nav .container ul.links li a {
  text-transform: capitalize;
  font-size: 18px;
  line-height: 30px;
  font-weight: var(--regular);
  transition: all 0.5s ease-in-out;
}
nav .container ul.links li a.goFood {
  padding: 10px 16px;
}
nav .container ul.links li a:not(.goFood) {
  color: #000;
}
nav .container ul.links li a:not(.goFood).active, nav .container ul.links li a:not(.goFood):hover {
  color: var(--color2);
}

.hero,
.contact-us,
.foods,
.drinks,
.why,
.find-us,
.seo,
footer {
  padding: 80px 0;
}
.hero .container,
.contact-us .container,
.foods .container,
.drinks .container,
.why .container,
.find-us .container,
.seo .container,
footer .container {
  padding: 0 130px;
}

.hero {
  background: url("assets/hero-2.webp") no-repeat, var(--color3);
  background-size: 100% 100%, cover;
}
.hero .container {
  padding-top: 60px;
  padding-bottom: 60px;
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 20px;
}
.hero .container .content {
  margin: 0 auto;
  text-align: center;
}
.hero .container .content .title {
  white-space: pre-line;
  font-weight: 700;
  font-size: 80px;
  line-height: 105%;
  text-transform: capitalize;
  font-feature-settings: "kern" off;
  color: #000000;
}
.hero .container .content .description {
  max-width: 780px;
  font-size: 18px;
  line-height: 22px;
  color: #000;
  font-weight: 500;
  margin: 30px 0;
}
.hero .container .content .bottom {
  display: inline-flex;
  flex-direction: row;
  align-items: flex-end;
}

.contact-us {
  width: 100%;
  background-color: #fff;
}
.contact-us .container {
  display: flex;
  width: 100%;
}
.contact-us .container .contact-form {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 20px;
       column-gap: 20px;
  flex-basis: 100%;
  flex-grow: 1;
}
.contact-us .container .contact-form input {
  width: 100%;
  background-color: #dfffc7;
  color: #000;
  border-radius: 10px;
  height: 100px;
  border: none;
  outline: none;
  padding: 0 30px;
}
.contact-us .container .contact-form input::-moz-placeholder {
  font-size: 18px;
  text-align: left;
  color: #000;
}
.contact-us .container .contact-form input::placeholder {
  font-size: 18px;
  text-align: left;
  color: #000;
}
.contact-us .container .contact-form button {
  border-radius: 10px;
  flex-basis: 100%;
  flex-grow: 1;
  background-color: var(--color2);
  max-width: 100px;
  width: 100px;
  height: 100px;
  outline: none;
  border: none;
}

.foods {
  background: url("assets/general-bg.webp") no-repeat, var(--color);
  background-size: cover;
}
.foods .container .top {
  max-width: 720px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0 auto;
  align-items: center;
  row-gap: 10px;
}
.foods .container .top h2 {
  font-weight: 700;
  font-size: 80px;
  line-height: 105%;
  text-transform: capitalize;
  font-feature-settings: "kern" off;
  color: #ffffff;
}
.foods .container .top p {
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  text-align: center;
  color: #ffffff;
}

.drinks {
  background-color: var(--color3);
}
.drinks .container .top {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0 auto;
  align-items: center;
  row-gap: 10px;
  margin-bottom: 60px;
}
.drinks .container .top h2 {
  max-width: 780px;
  font-weight: 700;
  font-size: 80px;
  line-height: 105%;
  text-transform: capitalize;
  font-feature-settings: "kern" off;
  color: #000;
}
.drinks .container .top p {
  max-width: 780px;
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  text-align: center;
  color: #000;
}
.drinks .container .top .next,
.drinks .container .top .prev {
  background: #6ab82e;
  border-radius: 10px;
  transform: matrix(-1, 0, 0, 1, 0, 0);
  position: absolute;
  bottom: 0;
  padding: 10px 12px;
  border: none;
  outline: none;
}
.drinks .container .top .next {
  right: 0;
}
.drinks .container .top .prev {
  left: 0;
}
.drinks .container .drink-items .item .name {
  color: #000;
  font-weight: 500;
  font-size: 12px;
  line-height: 18px;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 10px 2px;
  word-break: break-all;
}
.drinks .container .drink-items .item .box {
  position: relative;
  height: 150px;
  margin-bottom: 40px;
  z-index: 1;
}
.drinks .container .drink-items .item .box img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}
.drinks .container .drink-items .item .box .price {
  position: absolute;
  background: #fff;
  font-weight: 500;
  font-size: 18px;
  line-height: 30px;
  color: #000;
  width: -moz-max-content;
  width: max-content;
  padding: 0px 12px;
  border-radius: 70px;
  text-align: center;
  z-index: 2;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
}
.drinks .container .drink-items .item .box .price span {
  text-align: center;
  margin-left: 10px;
  padding-left: 12px;
  padding-right: 2px;
  color: #fff;
}
.drinks .container .drink-items .item .box .price span:before {
  content: "";
  position: absolute;
  right: 0;
  background-color: var(--color);
  border-radius: 70px;
  width: 70%;
  height: 100%;
  z-index: -1;
}

.why {
  background: url("assets/general-bg.webp") no-repeat, var(--color);
  background-size: cover;
}
.why .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.why .container h2 {
  font-weight: 700;
  font-size: 80px;
  line-height: 105%;
  text-transform: capitalize;
  font-feature-settings: "kern" off;
  color: #ffffff;
}
.why .container .icons {
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  gap: 20px;
}
.why .container .icons div {
  background-color: #fff;
  border-radius: 10px;
  padding: 16px 10px;
}
.why .container .icons div h4 {
  font-weight: 600;
  font-size: 24px;
  line-height: 29px;
  text-transform: capitalize;
  color: #000000;
  margin-bottom: 10px;
}
.why .container .icons div span {
  font-size: 16px;
  line-height: 19px;
  text-transform: capitalize;
  color: #000000;
}

.find-us {
  background-color: var(--color3);
}
.find-us .container {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
.find-us .container .top,
.find-us .container .sl,
.find-us .container .map {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 0 100px;
}
.find-us .container .top {
  gap: 40px;
  margin-bottom: 50px;
}
.find-us .container .top h2 {
  flex: 0 0 calc(33% - 40px);
  font-weight: 700;
  font-size: 80px;
  line-height: 105%;
  text-transform: capitalize;
  font-feature-settings: "kern" off;
  color: #000000;
}
.find-us .container .top p {
  flex: 1 0 67%;
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  color: #000000;
}
.find-us .container .sl {
  gap: 20px;
  align-items: flex-start;
}
.find-us .container .sl .schedule,
.find-us .container .sl .location {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  border-radius: 5px;
  flex: 0 0 calc(50% - 10px);
  height: 190px;
  background-color: var(--color);
  color: #fff;
  white-space: pre-line;
  padding: 26px;
  text-align: center;
  font-size: 20px;
}
.find-us .container .sl .schedule:first-of-type,
.find-us .container .sl .location:first-of-type {
  row-gap: 16px;
  font-size: 24px;
}
.find-us .container .sl .schedule:first-of-type strong,
.find-us .container .sl .location:first-of-type strong {
  font-weight: 600;
}
.find-us .container .map iframe {
  height: 400px;
  border-radius: 10px;
}

.seo {
  background: url("assets/general-bg.webp") no-repeat, var(--color);
  background-size: cover;
}
.seo .container {
  color: #fff;
}
.seo .container h2 {
  font-size: 60px;
  line-height: 70px;
  font-feature-settings: "kern" off;
  margin-bottom: 20px;
  font-weight: 700;
}
.seo .container p {
  font-size: 16px;
  line-height: 19px;
  text-align: justify;
}
.seo .container p a {
  text-decoration: underline;
}

footer {
  background-color: #fff;
}
footer .container {
  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: 180px;
}
footer .container .details {
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  text-transform: capitalize;
  color: #000;
}
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: var(--color3);
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: 19px;
  color: #000;
  padding: 6px 0;
}

.slick-slide {
  margin: 0 10px;
  overflow: hidden;
}
.slick-slide .box,
.slick-slide img {
  width: 100%;
}

.seo a {
  color: var(--color2);
  font-weight: 600;
  text-decoration: none !important;
}
.seo a:hover {
  text-decoration: underline !important;
}

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

button {
  cursor: pointer;
}

@media screen and (max-width: 1024px) {
  .hamburger {
    display: none;
    margin: auto 0;
  }
  .items {
    margin: 40px 0;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: center;
    gap: 20px;
  }
  .items .item {
    position: relative;
    flex: 0 0 calc(25% - 15px);
  }
  .items .item img {
    width: 100%;
    height: 100%;
    max-height: 200px;
    border-radius: 10px;
  }
  .items .item .details {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
  }
  .items .item .details .name {
    background: rgba(0, 0, 0, 0.8);
    border-radius: 0px 0px 10px 10px;
    font-weight: 500;
    font-size: 20px;
    line-height: 22px;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    width: 100%;
    height: 52px;
    padding: 0 2px;
  }
  .items .item .details .price {
    margin-top: 20px;
    background: #fff;
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    color: #000;
    padding: 0px 12px;
    border-radius: 70px;
    position: relative;
    z-index: 2;
  }
  .items .item .details .price span {
    font-weight: 400;
    text-align: center;
    margin-left: 10px;
    padding-left: 12px;
    padding-right: 2px;
    color: #fff;
  }
  .items .item .details .price span:before {
    content: "";
    position: absolute;
    right: 0;
    background-color: #000;
    border-radius: 70px;
    width: 70%;
    height: 100%;
    z-index: -1;
  }
  .all-items {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    row-gap: 10px;
    -moz-column-gap: 20px;
         column-gap: 20px;
  }
  .all-items .item {
    flex: 0 0 calc(50% - 15px);
    padding: 10px;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.6);
    display: inline-flex;
    align-items: center;
    flex-direction: row;
    font-weight: 400;
    font-size: 20px;
    line-height: 22px;
    color: #000;
  }
  .all-items .item .divider {
    height: 0px;
    border-bottom: 1px solid #000;
    flex: 1 0 auto;
    margin: 0 10px;
  }
  nav {
    background: #fff;
  }
  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: 100px;
    height: 100px;
  }
  nav .container ul.links {
    margin-right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    gap: 40px;
  }
  nav .container ul.links li a {
    text-transform: capitalize;
    font-size: 18px;
    line-height: 30px;
    font-weight: var(--regular);
  }
  nav .container ul.links li a.goFood {
    padding: 10px 16px;
  }
  nav .container ul.links li a:not(.goFood) {
    color: #000;
  }
  nav .container ul.links li a:not(.goFood).active {
    color: var(--color2);
  }
  .hero,
  .contact-us,
  .foods,
  .drinks,
  .why,
  .find-us,
  .seo,
  footer {
    padding: 80px 0;
  }
  .hero .container,
  .contact-us .container,
  .foods .container,
  .drinks .container,
  .why .container,
  .find-us .container,
  .seo .container,
  footer .container {
    padding: 0 60px;
  }
  .hero {
    background: url("assets/hero-2.webp") no-repeat, var(--color3);
    background-size: 100% 100%, cover;
  }
  .hero .container {
    padding-top: 20px;
    padding-bottom: 20px;
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 20px;
  }
  .hero .container .content {
    margin: 0 auto;
    text-align: center;
  }
  .hero .container .content .title {
    white-space: pre-line;
    font-weight: 700;
    font-size: 70px;
    line-height: 105%;
    text-transform: capitalize;
    font-feature-settings: "kern" off;
    color: #000000;
  }
  .hero .container .content .description {
    max-width: 780px;
    font-size: 18px;
    line-height: 22px;
    color: #000;
    font-weight: 500;
    margin: 30px 0;
  }
  .hero .container .content .bottom img,
  .hero .container .content .bottom svg {
    width: 50%;
  }
  .contact-us {
    width: 100%;
    background-color: #fff;
  }
  .contact-us .container {
    display: flex;
    width: 100%;
  }
  .contact-us .container .contact-form {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    -moz-column-gap: 20px;
         column-gap: 20px;
    flex-basis: 100%;
    flex-grow: 1;
  }
  .contact-us .container .contact-form input {
    width: 100%;
    background-color: #dfffc7;
    color: #000;
    border-radius: 10px;
    height: 80px;
    border: none;
    outline: none;
    padding: 0 30px;
  }
  .contact-us .container .contact-form input::-moz-placeholder {
    font-size: 18px;
    text-align: left;
    color: #000;
  }
  .contact-us .container .contact-form input::placeholder {
    font-size: 18px;
    text-align: left;
    color: #000;
  }
  .contact-us .container .contact-form button {
    border-radius: 10px;
    flex-basis: 100%;
    flex-grow: 1;
    background-color: var(--color2);
    max-width: 80px;
    width: 80px;
    height: 80px;
    outline: none;
    border: none;
  }
  .foods .container .top {
    max-width: 720px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0 auto;
    align-items: center;
    row-gap: 10px;
  }
  .foods .container .top h2 {
    font-weight: 700;
    font-size: 70px;
    line-height: 105%;
    text-transform: capitalize;
    font-feature-settings: "kern" off;
    color: #ffffff;
  }
  .foods .container .top p {
    font-weight: 500;
    font-size: 17px;
    line-height: 20px;
    text-align: center;
    color: #ffffff;
  }
  .drinks {
    background-color: var(--color3);
  }
  .drinks .container .top {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0 auto;
    align-items: center;
    row-gap: 10px;
    margin-bottom: 60px;
  }
  .drinks .container .top h2 {
    max-width: 640px;
    font-weight: 700;
    font-size: 70px;
    line-height: 105%;
    text-transform: capitalize;
    font-feature-settings: "kern" off;
    color: #000;
  }
  .drinks .container .top p {
    max-width: 640px;
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    text-align: center;
    color: #000;
  }
  .drinks .container .top .next,
  .drinks .container .top .prev {
    background: #6ab82e;
    border-radius: 10px;
    transform: matrix(-1, 0, 0, 1, 0, 0);
    position: absolute;
    bottom: 0;
    padding: 10px 12px;
    border: none;
    outline: none;
  }
  .drinks .container .top .next {
    right: 0;
  }
  .drinks .container .top .prev {
    left: 0;
  }
  .drinks .container .drink-items .item .name {
    color: #000;
    font-weight: 500;
    font-size: 18px;
    line-height: 20px;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 10px 2px;
    word-break: break-all;
  }
  .drinks .container .drink-items .item .box {
    position: relative;
    width: 220px;
    height: 200px;
    margin-bottom: 40px;
    z-index: 1;
  }
  .drinks .container .drink-items .item .box img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
  }
  .drinks .container .drink-items .item .box .price {
    position: absolute;
    background: #fff;
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    color: #000;
    width: -moz-max-content;
    width: max-content;
    padding: 0px 12px;
    border-radius: 70px;
    text-align: center;
    z-index: 2;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
  }
  .drinks .container .drink-items .item .box .price span {
    text-align: center;
    margin-left: 10px;
    padding-left: 12px;
    padding-right: 2px;
    color: #fff;
  }
  .drinks .container .drink-items .item .box .price span:before {
    content: "";
    position: absolute;
    right: 0;
    background-color: var(--color);
    border-radius: 70px;
    width: 70%;
    height: 100%;
    z-index: -1;
  }
  .why .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
  }
  .why .container h2 {
    font-weight: 700;
    font-size: 70px;
    line-height: 105%;
    text-transform: capitalize;
    font-feature-settings: "kern" off;
    color: #ffffff;
  }
  .why .container .icons {
    display: inline-flex;
    flex-direction: row;
    justify-content: center;
    gap: 20px;
  }
  .why .container .icons div {
    background-color: #fff;
    border-radius: 10px;
    padding: 16px 10px;
  }
  .why .container .icons div h4 {
    font-weight: 400;
    font-size: 20px;
    line-height: 26px;
    text-transform: capitalize;
    color: #000000;
    margin-bottom: 10px;
  }
  .why .container .icons div span {
    font-size: 16px;
    line-height: 17px;
    text-transform: capitalize;
    color: #000000;
  }
  .find-us {
    background-color: var(--color3);
  }
  .find-us .container {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
  }
  .find-us .container .top,
  .find-us .container .sl,
  .find-us .container .map {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 0 40px;
  }
  .find-us .container .top {
    gap: 40px;
    margin-bottom: 30px;
  }
  .find-us .container .top h2 {
    flex: 0 0 calc(36% - 40px);
    font-weight: 700;
    font-size: 70px;
    line-height: 105%;
    text-transform: capitalize;
    font-feature-settings: "kern" off;
    color: #000000;
  }
  .find-us .container .top p {
    flex: 1 0 64%;
    font-weight: 500;
    font-size: 18px;
    line-height: 22px;
    color: #000000;
  }
  .find-us .container .sl {
    gap: 20px;
    align-items: flex-start;
  }
  .find-us .container .sl .schedule,
  .find-us .container .sl .location {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    border-radius: 5px;
    flex: 0 0 calc(50% - 10px);
    height: 190px;
    background-color: var(--color);
    color: #fff;
    white-space: pre-line;
    padding: 26px;
    text-align: center;
    font-size: 20px;
  }
  .find-us .container .sl .schedule:first-of-type,
  .find-us .container .sl .location:first-of-type {
    row-gap: 16px;
    font-size: 24px;
  }
  .find-us .container .sl .schedule:first-of-type strong,
  .find-us .container .sl .location:first-of-type strong {
    font-weight: 600;
  }
  .find-us .container .map iframe {
    height: 400px;
    border-radius: 10px;
  }
  .seo .container {
    color: #fff;
  }
  .seo .container .our-story {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
    justify-content: center;
  }
  .seo .container .our-story h2 {
    font-weight: 600;
    font-size: 48px;
    line-height: 44px;
    /* identical to box height, or 112% */
    text-align: center;
    color: #ffffff;
  }
  .seo .container .our-story .sl {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
  }
  .seo .container .our-story .sl .schedule,
  .seo .container .our-story .sl .location {
    padding: 20px;
    font-size: 18px;
  }
  .seo .container .our-story .sl .schedule:first-of-type,
  .seo .container .our-story .sl .location:first-of-type {
    font-size: 22px;
  }
  .seo .container .our-story .map iframe {
    border-radius: 10px;
    width: 100%;
    height: 380px;
  }
  .seo .container h2 {
    font-size: 48px;
    line-height: 54px;
    font-feature-settings: "kern" off;
    margin-bottom: 20px;
    font-weight: 700;
  }
  .seo .container p {
    font-size: 16px;
    line-height: 19px;
    text-align: justify;
  }
  .seo .container p a {
    text-decoration: underline;
  }
  footer .container {
    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: 180px;
  }
  footer .container .details {
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    text-transform: capitalize;
    color: #000;
  }
  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;
  }
}
@media screen and (max-width: 991px) {
  .hamburger {
    display: none;
    margin: auto 0;
  }
  .items {
    margin: 40px 0;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: center;
    gap: 20px;
  }
  .items .item {
    position: relative;
    flex: 0 0 calc(50% - 15px);
  }
  .items .item img {
    width: 100%;
    height: 100%;
    max-height: 280px;
    border-radius: 10px;
  }
  .items .item .details {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
  }
  .items .item .details .name {
    background: rgba(0, 0, 0, 0.8);
    border-radius: 0px 0px 10px 10px;
    font-weight: 500;
    font-size: 20px;
    line-height: 22px;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    width: 100%;
    height: 52px;
    padding: 0 2px;
  }
  .items .item .details .price {
    margin-top: 20px;
    background: #fff;
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    color: #000;
    padding: 0px 12px;
    border-radius: 70px;
    position: relative;
    z-index: 2;
  }
  .items .item .details .price span {
    font-weight: 400;
    text-align: center;
    margin-left: 10px;
    padding-left: 12px;
    padding-right: 2px;
    color: #fff;
  }
  .items .item .details .price span:before {
    content: "";
    position: absolute;
    right: 0;
    background-color: #000;
    border-radius: 70px;
    width: 70%;
    height: 100%;
    z-index: -1;
  }
  .all-items {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    row-gap: 10px;
    -moz-column-gap: 20px;
         column-gap: 20px;
  }
  .all-items .item {
    flex: 100%;
    padding: 10px;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.6);
    display: inline-flex;
    align-items: center;
    flex-direction: row;
    font-weight: 400;
    font-size: 20px;
    line-height: 22px;
    color: #000;
  }
  .all-items .item .divider {
    height: 0px;
    border-bottom: 1px solid #000;
    flex: 1 0 auto;
    margin: 0 10px;
  }
  nav {
    background: #fff;
  }
  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: 100px;
    height: 100px;
  }
  nav .container ul.links {
    margin-right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    gap: 40px;
  }
  nav .container ul.links li a {
    text-transform: capitalize;
    font-size: 18px;
    line-height: 30px;
    font-weight: var(--regular);
  }
  nav .container ul.links li a.goFood {
    padding: 10px 16px;
  }
  nav .container ul.links li a:not(.goFood) {
    color: #000;
  }
  nav .container ul.links li a:not(.goFood).active {
    color: var(--color2);
  }
  .hero,
  .contact-us,
  .foods,
  .drinks,
  .why,
  .find-us,
  .seo,
  footer {
    padding: 30px 0;
  }
  .hero .container,
  .contact-us .container,
  .foods .container,
  .drinks .container,
  .why .container,
  .find-us .container,
  .seo .container,
  footer .container {
    padding: 0 30px;
  }
  .hero .container {
    padding-top: 20px;
    padding-bottom: 20px;
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 20px;
  }
  .hero .container .content {
    margin: 0 auto;
    text-align: center;
  }
  .hero .container .content .title {
    white-space: pre-line;
    font-weight: 700;
    font-size: 60px;
    line-height: 105%;
    text-transform: capitalize;
    font-feature-settings: "kern" off;
    color: #000000;
  }
  .hero .container .content .description {
    max-width: 680px;
    font-size: 18px;
    line-height: 22px;
    color: #000;
    font-weight: 500;
    margin: 30px 0;
  }
  .hero .container .content .bottom img,
  .hero .container .content .bottom svg {
    width: 50%;
  }
  .contact-us {
    width: 100%;
    background-color: #fff;
  }
  .contact-us .container {
    display: flex;
    width: 100%;
  }
  .contact-us .container .contact-form {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    -moz-column-gap: 20px;
         column-gap: 20px;
    flex-basis: 100%;
    flex-grow: 1;
  }
  .contact-us .container .contact-form input {
    width: 100%;
    background-color: #dfffc7;
    color: #000;
    border-radius: 10px;
    height: 80px;
    border: none;
    outline: none;
    padding: 0 30px;
  }
  .contact-us .container .contact-form input::-moz-placeholder {
    font-size: 18px;
    text-align: left;
    color: #000;
  }
  .contact-us .container .contact-form input::placeholder {
    font-size: 18px;
    text-align: left;
    color: #000;
  }
  .contact-us .container .contact-form button {
    border-radius: 10px;
    flex-basis: 100%;
    flex-grow: 1;
    background-color: var(--color2);
    max-width: 80px;
    width: 80px;
    height: 80px;
    outline: none;
    border: none;
  }
  .foods .container .top {
    max-width: 720px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0 auto;
    align-items: center;
    row-gap: 10px;
  }
  .foods .container .top h2 {
    font-weight: 700;
    font-size: 60px;
    line-height: 105%;
    text-transform: capitalize;
    font-feature-settings: "kern" off;
    color: #ffffff;
  }
  .foods .container .top p {
    font-weight: 400;
    font-size: 17px;
    line-height: 20px;
    text-align: center;
    color: #ffffff;
  }
  .drinks {
    background-color: var(--color3);
  }
  .drinks .container .top {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0 auto;
    align-items: center;
    row-gap: 10px;
    margin-bottom: 60px;
  }
  .drinks .container .top h2 {
    max-width: 640px;
    font-weight: 700;
    font-size: 60px;
    line-height: 105%;
    text-transform: capitalize;
    font-feature-settings: "kern" off;
    color: #000;
  }
  .drinks .container .top p {
    max-width: 540px;
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    text-align: center;
    color: #000;
  }
  .drinks .container .top .next,
  .drinks .container .top .prev {
    background: #6ab82e;
    border-radius: 10px;
    transform: matrix(-1, 0, 0, 1, 0, 0);
    position: absolute;
    bottom: 0;
    padding: 10px 12px;
    border: none;
    outline: none;
  }
  .drinks .container .top .next {
    right: 0;
  }
  .drinks .container .top .prev {
    left: 0;
  }
  .drinks .container .drink-items .item .name {
    color: #000;
    font-weight: 500;
    font-size: 18px;
    line-height: 20px;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 10px 2px;
    word-break: break-all;
  }
  .drinks .container .drink-items .item .box {
    position: relative;
    width: 220px;
    height: 200px;
    margin-bottom: 40px;
    z-index: 1;
  }
  .drinks .container .drink-items .item .box img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
  }
  .drinks .container .drink-items .item .box .price {
    position: absolute;
    background: #fff;
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    color: #000;
    width: -moz-max-content;
    width: max-content;
    padding: 0px 12px;
    border-radius: 70px;
    text-align: center;
    z-index: 2;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
  }
  .drinks .container .drink-items .item .box .price span {
    text-align: center;
    margin-left: 10px;
    padding-left: 12px;
    padding-right: 2px;
    color: #fff;
  }
  .drinks .container .drink-items .item .box .price span:before {
    content: "";
    position: absolute;
    right: 0;
    background-color: var(--color);
    border-radius: 70px;
    width: 70%;
    height: 100%;
    z-index: -1;
  }
  .why .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
  }
  .why .container h2 {
    font-weight: 700;
    font-size: 60px;
    line-height: 105%;
    text-transform: capitalize;
    font-feature-settings: "kern" off;
    color: #ffffff;
  }
  .why .container .icons {
    display: inline-flex;
    flex-direction: row;
    justify-content: center;
    gap: 20px;
  }
  .why .container .icons div {
    background-color: #fff;
    border-radius: 10px;
    padding: 16px 10px;
  }
  .why .container .icons div h4 {
    font-weight: 400;
    font-size: 18px;
    line-height: 22px;
    text-transform: capitalize;
    color: #000000;
    margin-bottom: 10px;
  }
  .why .container .icons div span {
    font-weight: 300;
    font-size: 16px;
    line-height: 16px;
    text-transform: capitalize;
    color: #000000;
  }
  .find-us {
    background-color: var(--color3);
  }
  .find-us .container {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
  }
  .find-us .container .top,
  .find-us .container .sl,
  .find-us .container .map {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 0 40px;
  }
  .find-us .container .top {
    gap: 20px;
    margin-bottom: 30px;
  }
  .find-us .container .top h2 {
    flex: 0 0 calc(40% - 20px);
    font-weight: 700;
    font-size: 60px;
    line-height: 105%;
    text-transform: capitalize;
    font-feature-settings: "kern" off;
    color: #000000;
  }
  .find-us .container .top p {
    flex: 1 0 60%;
    font-weight: 500;
    font-size: 18px;
    line-height: 22px;
    color: #000000;
  }
  .find-us .container .sl {
    gap: 20px;
    align-items: flex-start;
  }
  .find-us .container .sl .schedule,
  .find-us .container .sl .location {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    border-radius: 5px;
    flex: 0 0 calc(50% - 10px);
    height: 190px;
    background-color: var(--color);
    color: #fff;
    white-space: pre-line;
    padding: 26px;
    text-align: center;
    font-size: 20px;
  }
  .find-us .container .sl .schedule:first-of-type,
  .find-us .container .sl .location:first-of-type {
    row-gap: 16px;
    font-size: 24px;
  }
  .find-us .container .sl .schedule:first-of-type strong,
  .find-us .container .sl .location:first-of-type strong {
    font-weight: 600;
  }
  .find-us .container .map iframe {
    height: 400px;
    border-radius: 10px;
  }
  .seo {
    background: var(--color2);
  }
  .seo .container {
    color: #fff;
  }
  .seo .container .our-story {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
    justify-content: center;
    padding: 0 30px 30px;
  }
  .seo .container .our-story h2 {
    font-weight: 600;
    font-size: 48px;
    line-height: 44px;
    /* identical to box height, or 112% */
    text-align: center;
    color: #ffffff;
  }
  .seo .container .our-story .sl {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
  }
  .seo .container .our-story .sl .schedule,
  .seo .container .our-story .sl .location {
    padding: 20px;
    font-size: 18px;
  }
  .seo .container .our-story .sl .schedule:first-of-type,
  .seo .container .our-story .sl .location:first-of-type {
    font-size: 22px;
  }
  .seo .container .our-story .map iframe {
    border-radius: 10px;
    width: 100%;
    height: 380px;
  }
  .seo .container h2 {
    font-size: 42px;
    line-height: 44px;
    font-feature-settings: "kern" off;
    margin-bottom: 20px;
    font-weight: 500;
  }
  .seo .container p {
    font-size: 16px;
    line-height: 19px;
    text-align: justify;
  }
  .seo .container p a {
    text-decoration: underline;
  }
  footer {
    background-color: unset;
  }
  footer .container {
    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: 180px;
  }
  footer .container .details {
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    text-transform: capitalize;
    color: #000;
  }
  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;
  }
}
@media screen and (max-width: 767px) {
  .hamburger {
    display: block;
    margin: auto 0;
  }
  nav {
    background: #fff;
  }
  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: 80px;
    height: 80px;
  }
  nav .container ul.links {
    margin-right: 0;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    position: absolute;
    left: 0;
    top: 101px;
    z-index: 99;
    background-color: #fff;
    gap: 0px;
  }
  nav .container ul.links li a {
    text-transform: capitalize;
    font-size: 18px;
    line-height: 40px;
    font-weight: var(--regular);
  }
  nav .container ul.links li a.goFood {
    padding: 4px 8px;
  }
  nav .container ul.links li a:not(.goFood) {
    color: #000;
  }
  nav .container ul.links li a:not(.goFood).active {
    color: var(--color);
  }
  .hero,
  .contact-us,
  .foods,
  .drinks,
  .why,
  .find-us,
  .seo,
  footer {
    padding: 30px 0;
  }
  .hero .container,
  .contact-us .container,
  .foods .container,
  .drinks .container,
  .why .container,
  .find-us .container,
  .seo .container,
  footer .container {
    padding: 0 30px;
  }
  .hero .container {
    gap: 20px;
  }
  .hero .container .content {
    margin: 0 auto;
    text-align: center;
  }
  .hero .container .content .title {
    white-space: pre-line;
    font-weight: 700;
    font-size: 40px;
    line-height: 105%;
    text-transform: capitalize;
    font-feature-settings: "kern" off;
    color: #000000;
  }
  .hero .container .content .description {
    font-size: 18px;
    line-height: 22px;
    color: #000;
    font-weight: 500;
    margin: 30px 0;
  }
  .hero .container .content .bottom img,
  .hero .container .content .bottom svg {
    width: 80%;
  }
  .contact-us {
    width: 100%;
    background-color: #fff;
  }
  .contact-us .container {
    display: flex;
    width: 100%;
  }
  .contact-us .container .contact-form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    row-gap: 20px;
    flex-basis: 100%;
    flex-grow: 1;
  }
  .contact-us .container .contact-form input {
    width: 100%;
    background-color: #dfffc7;
    color: #000;
    border-radius: 10px;
    height: 80px;
    border: none;
    outline: none;
    padding: 30px;
  }
  .contact-us .container .contact-form input::-moz-placeholder {
    font-size: 18px;
    text-align: left;
    color: #000;
  }
  .contact-us .container .contact-form input::placeholder {
    font-size: 18px;
    text-align: left;
    color: #000;
  }
  .contact-us .container .contact-form button {
    border-radius: 10px;
    flex-basis: 100%;
    flex-grow: 1;
    background-color: var(--color2);
    max-width: 100%;
    width: 100%;
    padding: 30px;
    height: 40px;
    outline: none;
    border: none;
  }
  .foods .container .top {
    max-width: 720px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0 auto;
    align-items: center;
    row-gap: 10px;
  }
  .foods .container .top h2 {
    font-weight: 700;
    font-size: 46px;
    line-height: 105%;
    text-transform: capitalize;
    font-feature-settings: "kern" off;
    color: #ffffff;
  }
  .foods .container .top p {
    font-weight: 400;
    font-size: 17px;
    line-height: 20px;
    text-align: center;
    color: #ffffff;
  }
  .drinks {
    background-color: var(--color3);
  }
  .drinks .container .top {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0 auto;
    align-items: center;
    row-gap: 10px;
    margin-bottom: 60px;
  }
  .drinks .container .top h2 {
    max-width: 440px;
    font-weight: 700;
    font-size: 46px;
    line-height: 105%;
    text-transform: capitalize;
    font-feature-settings: "kern" off;
    color: #000;
  }
  .drinks .container .top p {
    max-width: 380px;
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    text-align: center;
    color: #000;
  }
  .drinks .container .top .next,
  .drinks .container .top .prev {
    background: #6ab82e;
    border-radius: 10px;
    transform: matrix(-1, 0, 0, 1, 0, 0);
    position: absolute;
    bottom: 0;
    padding: 10px 12px;
    border: none;
    outline: none;
  }
  .drinks .container .top .next {
    right: 0;
  }
  .drinks .container .top .prev {
    left: 0;
  }
  .drinks .container .drink-items .item .name {
    color: #000;
    font-weight: 500;
    font-size: 18px;
    line-height: 20px;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 10px 2px;
    word-break: break-all;
  }
  .drinks .container .drink-items .item .box {
    position: relative;
    width: 220px;
    height: 200px;
    margin-bottom: 40px;
    z-index: 1;
  }
  .drinks .container .drink-items .item .box img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
  }
  .drinks .container .drink-items .item .box .price {
    position: absolute;
    background: #fff;
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    color: #000;
    width: -moz-max-content;
    width: max-content;
    padding: 0px 12px;
    border-radius: 70px;
    text-align: center;
    z-index: 2;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
  }
  .drinks .container .drink-items .item .box .price span {
    text-align: center;
    margin-left: 10px;
    padding-left: 12px;
    padding-right: 2px;
    color: #fff;
  }
  .drinks .container .drink-items .item .box .price span:before {
    content: "";
    position: absolute;
    right: 0;
    background-color: var(--color);
    border-radius: 70px;
    width: 70%;
    height: 100%;
    z-index: -1;
  }
  .why .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
  }
  .why .container h2 {
    font-weight: 700;
    font-size: 46px;
    line-height: 105%;
    text-transform: capitalize;
    font-feature-settings: "kern" off;
    color: #ffffff;
  }
  .why .container .icons {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
  }
  .why .container .icons div {
    text-align: center;
    background-color: #fff;
    border-radius: 10px;
    padding: 16px 10px;
  }
  .why .container .icons div h4 {
    font-weight: 400;
    font-size: 18px;
    line-height: 22px;
    text-transform: capitalize;
    color: #000000;
    margin-bottom: 10px;
  }
  .why .container .icons div span {
    font-weight: 300;
    font-size: 16px;
    line-height: 16px;
    text-transform: capitalize;
    color: #000000;
  }
  .find-us {
    background-color: var(--color3);
  }
  .find-us .container {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
  }
  .find-us .container .top,
  .find-us .container .sl,
  .find-us .container .map {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 0px;
  }
  .find-us .container .top {
    gap: 20px;
    margin-bottom: 30px;
  }
  .find-us .container .top h2 {
    flex: 0 0 100%;
    font-weight: 700;
    font-size: 46px;
    line-height: 105%;
    text-transform: capitalize;
    font-feature-settings: "kern" off;
    color: #000000;
  }
  .find-us .container .top p {
    flex: 1 0 auto;
    font-weight: 500;
    font-size: 18px;
    line-height: 22px;
    color: #000000;
  }
  .find-us .container .sl {
    gap: 20px;
    align-items: flex-start;
  }
  .find-us .container .sl .schedule,
  .find-us .container .sl .location {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    border-radius: 5px;
    width: 100%;
    flex: 0 0 100%;
    height: 190px;
    background-color: var(--color);
    color: #fff;
    white-space: pre-line;
    padding: 26px;
    text-align: center;
    font-size: 20px;
  }
  .find-us .container .sl .schedule:first-of-type,
  .find-us .container .sl .location:first-of-type {
    row-gap: 16px;
    font-size: 24px;
  }
  .find-us .container .sl .schedule:first-of-type strong,
  .find-us .container .sl .location:first-of-type strong {
    font-weight: 600;
  }
  .find-us .container .map iframe {
    height: 360px;
    border-radius: 10px;
  }
  .seo {
    background: var(--color2);
  }
  .seo .container {
    color: #fff;
  }
  .seo .container .our-story {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
    justify-content: center;
    padding: 0 0px 30px;
  }
  .seo .container .our-story h2 {
    font-weight: 600;
    font-size: 42px;
    line-height: 44px;
    /* identical to box height, or 112% */
    text-align: center;
    color: #ffffff;
  }
  .seo .container .our-story .sl {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
  }
  .seo .container .our-story .sl .schedule,
  .seo .container .our-story .sl .location {
    padding: 20px 10px;
    font-size: 16px;
  }
  .seo .container .our-story .sl .schedule:first-of-type,
  .seo .container .our-story .sl .location:first-of-type {
    font-size: 18px;
  }
  .seo .container .our-story .map iframe {
    border-radius: 10px;
    width: 100%;
    height: 380px;
  }
  .seo .container h2 {
    font-size: 38px;
    line-height: 42px;
    font-feature-settings: "kern" off;
    margin-bottom: 20px;
    font-weight: 500;
  }
  .seo .container p {
    font-size: 16px;
    line-height: 19px;
    text-align: justify;
  }
  .seo .container p a {
    text-decoration: underline;
  }
  footer {
    background-color: unset;
  }
  footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 30px;
  }
  footer .container .logo > a > img {
    width: 180px;
  }
  footer .container .details {
    order: 1;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    text-transform: capitalize;
    color: #000;
  }
  footer .container .footer-social {
    order: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
  }
  footer .container .footer-social a {
    line-height: 14px;
  }
}
@media screen and (max-width: 567px) {
  .hamburger {
    display: block;
    margin: auto 0;
  }
  nav {
    background: #fff;
  }
  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: 80px;
    height: 80px;
  }
  nav .container ul.links {
    margin-right: 0;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    position: absolute;
    left: 0;
    top: 101px;
    z-index: 99;
    background-color: #fff;
    gap: 0px;
  }
  nav .container ul.links li a {
    text-transform: capitalize;
    font-size: 18px;
    line-height: 40px;
    font-weight: var(--regular);
  }
  nav .container ul.links li a.goFood {
    padding: 4px 8px;
  }
  nav .container ul.links li a:not(.goFood) {
    color: #000;
  }
  nav .container ul.links li a:not(.goFood).active {
    color: var(--color);
  }
  .hero,
  .contact-us,
  .foods,
  .drinks,
  .why,
  .find-us,
  .seo,
  footer {
    padding: 30px 0;
  }
  .hero .container,
  .contact-us .container,
  .foods .container,
  .drinks .container,
  .why .container,
  .find-us .container,
  .seo .container,
  footer .container {
    padding: 0 30px;
  }
  .hero .container {
    gap: 20px;
  }
  .hero .container .content {
    margin: 0 auto;
    text-align: center;
  }
  .hero .container .content .title {
    white-space: pre-line;
    font-weight: 700;
    font-size: 30px;
    line-height: 105%;
    text-transform: capitalize;
    font-feature-settings: "kern" off;
    color: #000000;
  }
  .hero .container .content .description {
    font-size: 16px;
    line-height: 20px;
    color: #000;
    font-weight: 400;
    margin: 10px 0;
  }
  .hero .container .content .bottom img,
  .hero .container .content .bottom svg {
    width: 80%;
  }
  .contact-us {
    width: 100%;
    background-color: #fff;
  }
  .contact-us .container {
    display: flex;
    width: 100%;
  }
  .contact-us .container .contact-form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    row-gap: 20px;
    flex-basis: 100%;
    flex-grow: 1;
  }
  .contact-us .container .contact-form input {
    width: 100%;
    background-color: #dfffc7;
    color: #000;
    border-radius: 10px;
    height: 80px;
    border: none;
    outline: none;
    padding: 30px;
  }
  .contact-us .container .contact-form input::-moz-placeholder {
    font-size: 18px;
    text-align: left;
    color: #000;
  }
  .contact-us .container .contact-form input::placeholder {
    font-size: 18px;
    text-align: left;
    color: #000;
  }
  .contact-us .container .contact-form button {
    border-radius: 10px;
    flex-basis: 100%;
    flex-grow: 1;
    background-color: var(--color2);
    max-width: 100%;
    width: 100%;
    padding: 20px;
    height: 20px;
    outline: none;
    border: none;
  }
  .foods .container .top {
    max-width: 720px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0 auto;
    align-items: center;
    row-gap: 10px;
  }
  .foods .container .top h2 {
    font-weight: 700;
    font-size: 36px;
    line-height: 105%;
    text-transform: capitalize;
    font-feature-settings: "kern" off;
    color: #ffffff;
  }
  .foods .container .top p {
    font-weight: 400;
    font-size: 17px;
    line-height: 20px;
    text-align: center;
    color: #ffffff;
  }
  .drinks {
    background-color: var(--color3);
  }
  .drinks .container .top {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0 auto;
    align-items: center;
    row-gap: 10px;
    margin-bottom: 80px;
  }
  .drinks .container .top h2 {
    max-width: 440px;
    font-weight: 700;
    font-size: 36px;
    line-height: 105%;
    text-transform: capitalize;
    font-feature-settings: "kern" off;
    color: #000;
  }
  .drinks .container .top p {
    max-width: 380px;
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    text-align: center;
    color: #000;
  }
  .drinks .container .top .next,
  .drinks .container .top .prev {
    background: #6ab82e;
    border-radius: 10px;
    transform: matrix(-1, 0, 0, 1, 0, 0);
    position: absolute;
    bottom: -50px;
    padding: 10px 12px;
    border: none;
    outline: none;
  }
  .drinks .container .top .next {
    right: 0;
  }
  .drinks .container .top .prev {
    left: 0;
  }
  .drinks .container .drink-items .item .name {
    color: #000;
    font-weight: 500;
    font-size: 18px;
    line-height: 20px;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 10px 2px;
    word-break: break-all;
  }
  .drinks .container .drink-items .item .box {
    position: relative;
    width: 220px;
    height: 200px;
    margin-bottom: 40px;
    z-index: 1;
  }
  .drinks .container .drink-items .item .box img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
  }
  .drinks .container .drink-items .item .box .price {
    position: absolute;
    background: #fff;
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    color: #000;
    width: -moz-max-content;
    width: max-content;
    padding: 0px 12px;
    border-radius: 70px;
    text-align: center;
    z-index: 2;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
  }
  .drinks .container .drink-items .item .box .price span {
    text-align: center;
    margin-left: 10px;
    padding-left: 12px;
    padding-right: 2px;
    color: #fff;
  }
  .drinks .container .drink-items .item .box .price span:before {
    content: "";
    position: absolute;
    right: 0;
    background-color: var(--color);
    border-radius: 70px;
    width: 70%;
    height: 100%;
    z-index: -1;
  }
  .why .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
  }
  .why .container h2 {
    font-weight: 700;
    font-size: 36px;
    line-height: 105%;
    text-transform: capitalize;
    font-feature-settings: "kern" off;
    color: #ffffff;
  }
  .find-us {
    background-color: var(--color3);
  }
  .find-us .container {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
  }
  .find-us .container .top,
  .find-us .container .sl,
  .find-us .container .map {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 0px;
  }
  .find-us .container .top {
    gap: 20px;
    margin-bottom: 30px;
  }
  .find-us .container .top h2 {
    flex: 0 0 100%;
    font-weight: 700;
    font-size: 36px;
    line-height: 105%;
    text-transform: capitalize;
    font-feature-settings: "kern" off;
    color: #000000;
  }
  .find-us .container .top p {
    flex: 1 0 auto;
    font-weight: 500;
    font-size: 16px;
    line-height: 22px;
    color: #000000;
  }
  .find-us .container .sl {
    gap: 20px;
    align-items: flex-start;
  }
  .find-us .container .sl .schedule,
  .find-us .container .sl .location {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    border-radius: 5px;
    width: 100%;
    flex: 0 0 100%;
    height: 190px;
    background-color: var(--color);
    color: #fff;
    white-space: pre-line;
    padding: 26px;
    text-align: center;
    font-size: 16px;
  }
  .find-us .container .sl .schedule:first-of-type,
  .find-us .container .sl .location:first-of-type {
    row-gap: 16px;
    font-size: 18px;
  }
  .find-us .container .sl .schedule:first-of-type strong,
  .find-us .container .sl .location:first-of-type strong {
    font-weight: 600;
  }
  .find-us .container .map iframe {
    height: 360px;
    border-radius: 10px;
  }
  .seo {
    background: var(--color2);
  }
  .seo .container {
    color: #fff;
  }
  .seo .container .our-story {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
    justify-content: center;
    padding: 0 0px 30px;
  }
  .seo .container .our-story h2 {
    font-weight: 600;
    font-size: 38px;
    line-height: 42px;
    /* identical to box height, or 112% */
    text-align: center;
    color: #ffffff;
  }
  .seo .container .our-story .sl {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
  }
  .seo .container .our-story .sl .schedule,
  .seo .container .our-story .sl .location {
    flex-basis: 100%;
    padding: 20px 10px;
    font-size: 16px;
  }
  .seo .container .our-story .sl .schedule:first-of-type,
  .seo .container .our-story .sl .location:first-of-type {
    font-size: 18px;
  }
  .seo .container .our-story .map iframe {
    border-radius: 10px;
    width: 100%;
    height: 280px;
  }
  .seo .container h2 {
    font-size: 32px;
    line-height: 36px;
    font-feature-settings: "kern" off;
    margin-bottom: 20px;
    font-weight: 500;
  }
  .seo .container p {
    font-size: 16px;
    line-height: 19px;
    text-align: justify;
  }
  .seo .container p a {
    text-decoration: underline;
  }
  footer {
    background-color: unset;
  }
  footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 30px;
  }
  footer .container .logo > a > img {
    width: 180px;
  }
  footer .container .details {
    order: 1;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    text-transform: capitalize;
    color: #000;
  }
  footer .container .footer-social {
    order: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
  }
  footer .container .footer-social a {
    line-height: 14px;
  }
  .items .item {
    flex: 0 0 100%;
  }
  .foods,
  .drinks {
    text-align: center;
  }
}/*# sourceMappingURL=style.css.map */