:root {
  --color: #fdfe00;
  --color2: #e42125;
  --regular: 400;
  --semibold: 600;
  --bold: 700;
}

* {
  font-family: "Grandstander", cursive;
  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 {
  transition: box-shadow 0.2s ease-in-out;
}
a.goFood:hover,
button:hover {
  box-shadow: 0px 4px 10px rgba(158, 100, 24, 0.9);
}

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

.active {
  display: flex !important;
}

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

.pos-r {
  position: relative;
}

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

.items {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
}
.items .item {
  flex: 0 0 calc(25% - 20px);
  position: relative;
  border-radius: 50%;
  overflow: hidden;
}
.items .item img {
  border-radius: 50%;
  width: 280px;
  height: 260px;
  -o-object-fit: fill;
     object-fit: fill;
}
.items .item .details {
  background-color: rgba(228, 33, 37, 0.8);
  position: absolute;
  padding: 12px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: 10px;
  width: 100%;
  overflow: hidden;
  left: 0;
  bottom: 0;
}
.items .item .details .name,
.items .item .details .price {
  text-transform: capitalize;
  text-align: center;
  color: #ffffff;
}
.items .item .details .name {
  font-weight: 500;
  font-size: 20px;
  line-height: 20px;
}
.items .item .details .price {
  font-weight: 700;
  font-size: 16px;
  line-height: 16px;
  color: var(--color);
}

nav {
  background: var(--color);
  border-bottom: 4px solid var(--color2);
}
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: 138px;
  height: 112px;
}
nav .container ul.links {
  margin-right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  gap: 36px;
}
nav .container ul.links li a {
  font-style: italic;
  font-weight: 600;
  font-size: 18px;
  line-height: 18px;
  text-transform: capitalize;
}
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):hover {
  color: var(--color2);
}

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

.hero {
  background: url("assets/common.webp"), url("assets/hero.webp") no-repeat;
  background-size: 100% 100%, contain;
  background-position: center center, right center;
}
.hero .container {
  padding-top: 80px;
  padding-bottom: 80px;
  text-align: left;
}
.hero .container .title,
.hero .container .description,
.hero .container .social {
  max-width: 590px;
  margin-bottom: 40px;
}
.hero .container .title {
  white-space: pre-line;
  font-weight: 700;
  font-size: 90px;
  line-height: 90px;
  text-transform: capitalize;
  color: #d00501;
}
.hero .container .description {
  font-weight: 400;
  font-size: 18px;
  line-height: 122%;
  color: #000000;
}
.hero .container .social {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  color: #000000;
}
.hero .container a.goFood {
  font-size: 18px;
  padding: 16px 20px;
  text-align: center;
}

.foods,
.drinks {
  background: url("assets/general-bg.webp"), var(--color);
}
.foods .container .top,
.drinks .container .top {
  text-align: center;
}
.foods .container .top h2,
.drinks .container .top h2 {
  font-weight: 700;
  font-size: 70px;
  line-height: 70px;
  text-transform: capitalize;
  color: #d00501;
}
.foods .container .bottom,
.drinks .container .bottom {
  margin-top: 40px;
}

.drinks {
  background: url("assets/drinks.webp");
}
.drinks .container .top {
  text-align: left;
}
.drinks .container .bottom .drink-items {
  display: flex;
  flex-direction: row;
  gap: 10px;
}
.drinks .container .bottom .drink-items .item {
  flex: 0 0 calc(20% - 10px);
  border-radius: 10px;
  overflow: hidden;
}
.drinks .container .bottom .drink-items .item img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
  height: 236px;
}
.drinks .container .bottom .drink-items .item .details {
  color: #fff;
  text-align: center;
}
.drinks .container .bottom .drink-items .item .details .name {
  font-weight: 500;
  font-size: 20px;
  line-height: 20px;
  text-align: center;
  text-transform: capitalize;
  color: #ffffff;
  padding: 10px;
}
.drinks .container .bottom .drink-items .item .details .price {
  position: absolute;
  top: -50px;
  background-color: var(--color2);
  color: var(--color);
  border-radius: 10px;
  padding: 6px 8px;
  font-weight: 700;
  font-size: 16px;
  line-height: 16px;
  left: 50%;
  transform: translateX(-50%);
}

.about-us {
  background: url("assets/about-us.webp") no-repeat;
  background-size: cover;
}
.about-us .container {
  padding: 0 230px;
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.about-us .container .left,
.about-us .container .right {
  flex: 0 0 calc(50% - 10px);
}
.about-us .container .left h3 {
  font-weight: 700;
  font-size: 70px;
  line-height: 70px;
  text-transform: capitalize;
  color: var(--color);
}
.about-us .container .left p {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  text-align: justify;
  text-transform: capitalize;
  color: #ffffff;
  margin: 20px 0;
}
.about-us .container .right .contact-form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  row-gap: 20px;
  flex-grow: 0;
}
.about-us .container .right .contact-form input {
  border-radius: 10px;
  width: 100%;
  background: #fff;
  box-shadow: 0px 4px 44px rgba(0, 0, 0, 0.1);
  height: 66px;
  border: none;
  outline: none;
  padding: 0 30px;
}
.about-us .container .right .contact-form input::-moz-placeholder {
  text-align: left;
  font-size: 18px;
  color: #5a5a5a;
}
.about-us .container .right .contact-form input::placeholder {
  text-align: left;
  font-size: 18px;
  color: #5a5a5a;
}
.about-us .container .right .contact-form button {
  text-transform: capitalize;
  font-weight: 500;
  padding: 0 30px;
  border-radius: 10px;
  width: 100%;
  background-color: var(--color);
  height: 66px;
  text-align: center;
  outline: none;
  border: none;
  font-style: italic;
  font-weight: 600;
  font-size: 22px;
  line-height: 27px;
  color: #000;
}

.contact-us {
  background: url("assets/contact-us.webp") no-repeat;
  background-size: cover;
}
.contact-us .container {
  padding: 0 230px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 20px;
}
.contact-us .container .schedule,
.contact-us .container .location {
  border-radius: 10px;
  background-color: var(--color);
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  width: 50%;
  font-weight: 500;
  font-size: 19px;
  line-height: 126%;
  text-transform: capitalize;
  color: #000;
  gap: 10px;
  padding: 40px;
}
.contact-us .container .schedule svg,
.contact-us .container .location svg {
  flex: 0 0 64px;
  width: 64px;
  height: 64px;
}
.contact-us .container .schedule {
  font-size: 24px;
  line-height: 142%;
}

.map {
  background-color: var(--color2);
}
.map .container iframe {
  border-radius: 10px;
  width: 100%;
  height: 450px;
  border: 0;
}

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

footer {
  background-color: var(--color);
}
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: 179px;
}
footer .container .details {
  max-width: calc(100% - 179px);
  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: #000;
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  color: #fff;
  padding: 12px 0;
}

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

button {
  cursor: pointer;
}

.seo a {
  color: #ffffff;
  font-weight: 700;
  transition: all 0.5s ease-in-out;
}
.seo a:hover {
  color: var(--color);
}

@media screen and (max-width: 1024px) {
  .hamburger {
    display: none;
    margin: auto 0;
  }
  .items .item {
    flex: 0 0 calc(33.3333% - 14px);
  }
  .items .item .details .name {
    font-weight: 400;
  }
  .items .item .details .price {
    font-weight: 500;
  }
  nav {
    background: var(--color);
    border-bottom: 4px solid var(--color2);
  }
  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: 138px;
    height: 112px;
  }
  nav .container ul.links {
    margin-right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    gap: 36px;
  }
  nav .container ul.links li a {
    font-style: italic;
    font-weight: 600;
    font-size: 18px;
    line-height: 18px;
    text-transform: capitalize;
  }
  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,
  .foods,
  .drinks,
  .about-us,
  .contact-us,
  .map,
  .seo,
  footer {
    padding: 60px 0;
  }
  .hero .container,
  .foods .container,
  .drinks .container,
  .about-us .container,
  .contact-us .container,
  .map .container,
  .seo .container,
  footer .container {
    padding: 0 60px;
  }
  .hero .container {
    padding-top: 40px;
    padding-bottom: 40px;
    text-align: left;
  }
  .hero .container .title,
  .hero .container .description,
  .hero .container .social {
    max-width: 450px;
    margin-bottom: 40px;
  }
  .hero .container .title {
    white-space: pre-line;
    font-weight: 700;
    font-size: 64px;
    line-height: 64px;
    text-transform: capitalize;
    color: #d00501;
  }
  .hero .container .description {
    font-weight: 400;
    font-size: 18px;
    line-height: 122%;
    color: #000000;
  }
  .hero .container .social {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    margin-bottom: 0;
    color: #000000;
  }
  .hero .container a.goFood {
    font-size: 18px;
    padding: 13px 20px;
    text-align: center;
  }
  .foods .container .top,
  .drinks .container .top {
    text-align: center;
  }
  .foods .container .top h2,
  .drinks .container .top h2 {
    font-weight: 700;
    font-size: 64px;
    line-height: 64px;
    text-transform: capitalize;
    color: #d00501;
  }
  .foods .container .bottom,
  .drinks .container .bottom {
    margin-top: 40px;
  }
  .drinks {
    background: url("assets/drinks.webp");
  }
  .drinks .container .top {
    text-align: left;
  }
  .drinks .container .bottom .drink-items {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
  }
  .drinks .container .bottom .drink-items .item {
    flex: 0 0 calc(33.3333% - 14px);
    border-radius: 10px;
    overflow: hidden;
  }
  .drinks .container .bottom .drink-items .item img {
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 10px;
    height: 236px;
  }
  .drinks .container .bottom .drink-items .item .details {
    color: #fff;
    text-align: center;
  }
  .drinks .container .bottom .drink-items .item .details .name {
    font-weight: 500;
    font-size: 20px;
    line-height: 20px;
    text-align: center;
    text-transform: capitalize;
    color: #ffffff;
    padding: 10px;
  }
  .drinks .container .bottom .drink-items .item .details .price {
    position: absolute;
    top: -50px;
    background-color: var(--color2);
    color: var(--color);
    border-radius: 10px;
    padding: 6px 8px;
    font-weight: 700;
    font-size: 16px;
    line-height: 16px;
    left: 50%;
    transform: translateX(-50%);
  }
  .about-us .container {
    padding: 0 130px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
  }
  .about-us .container .left,
  .about-us .container .right {
    flex: 0 0 calc(50% - 10px);
  }
  .about-us .container .left h3 {
    font-weight: 700;
    font-size: 64px;
    line-height: 64px;
    text-transform: capitalize;
    color: var(--color);
  }
  .about-us .container .left p {
    font-weight: 400;
    font-size: 17px;
    line-height: 20px;
    margin: 10px 0;
  }
  .about-us .container .right .contact-form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 20px;
    flex-grow: 0;
  }
  .about-us .container .right .contact-form input {
    border-radius: 10px;
    width: 100%;
    background: #fff;
    box-shadow: 0px 4px 44px rgba(0, 0, 0, 0.1);
    height: 66px;
    border: none;
    outline: none;
    padding: 0 30px;
  }
  .about-us .container .right .contact-form input::-moz-placeholder {
    text-align: left;
    font-size: 18px;
    color: #5a5a5a;
  }
  .about-us .container .right .contact-form input::placeholder {
    text-align: left;
    font-size: 18px;
    color: #5a5a5a;
  }
  .about-us .container .right .contact-form button {
    text-transform: capitalize;
    font-weight: 500;
    padding: 0 30px;
    border-radius: 10px;
    width: 100%;
    background-color: var(--color);
    height: 66px;
    text-align: center;
    outline: none;
    border: none;
    font-style: italic;
    font-weight: 600;
    font-size: 22px;
    line-height: 27px;
    color: #000;
  }
  .contact-us .container {
    padding: 0 130px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 20px;
  }
  .contact-us .container .schedule,
  .contact-us .container .location {
    border-radius: 10px;
    background-color: var(--color);
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    width: 60%;
    font-weight: 500;
    font-size: 19px;
    line-height: 126%;
    text-transform: capitalize;
    color: #000;
    gap: 10px;
    padding: 40px 30px;
  }
  .contact-us .container .schedule svg,
  .contact-us .container .location svg {
    flex: 0 0 64px;
    width: 64px;
    height: 64px;
  }
  .contact-us .container .schedule {
    font-size: 24px;
    line-height: 142%;
  }
  .map {
    background-color: var(--color2);
  }
  .map .container iframe {
    border-radius: 10px;
    width: 100%;
    height: 450px;
    border: 0;
  }
  .seo .container {
    color: #fff;
  }
  .seo .container h2 {
    font-size: 54px;
    line-height: 66px;
  }
  .seo .container p {
    font-size: 16px;
    line-height: 19px;
    text-align: justify;
    font-style: italic;
  }
  .seo .container p a {
    text-decoration: underline;
  }
}
@media screen and (max-width: 991px) {
  .hamburger {
    display: none;
    margin: auto 0;
  }
  .items {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
  }
  .items .item img {
    border-radius: 50%;
    width: 100%;
    height: 220px;
    -o-object-fit: fill;
       object-fit: fill;
  }
  .items .item .details {
    background-color: rgba(228, 33, 37, 0.8);
    position: absolute;
    padding: 8px 18px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    row-gap: 10px;
    width: 100%;
    overflow: hidden;
    left: 0;
    bottom: 0;
  }
  .items .item .details .name,
  .items .item .details .price {
    text-transform: capitalize;
    text-align: center;
    color: #ffffff;
  }
  .items .item .details .name {
    font-weight: 500;
    font-size: 18px;
    line-height: 18px;
  }
  .items .item .details .price {
    font-weight: 700;
    font-size: 16px;
    line-height: 16px;
    color: var(--color);
  }
  nav {
    background: var(--color);
    border-bottom: 4px solid var(--color2);
  }
  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: 128px;
    height: 102px;
  }
  nav .container ul.links {
    margin-right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    gap: 36px;
  }
  nav .container ul.links li a {
    font-style: italic;
    font-weight: 600;
    font-size: 18px;
    line-height: 18px;
    text-transform: capitalize;
  }
  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,
  .foods,
  .drinks,
  .about-us,
  .contact-us,
  .map,
  .seo,
  footer {
    padding: 30px 0;
  }
  .hero .container,
  .foods .container,
  .drinks .container,
  .about-us .container,
  .contact-us .container,
  .map .container,
  .seo .container,
  footer .container {
    padding: 0 30px;
  }
  .hero .container {
    padding-top: 30px;
    padding-bottom: 30px;
    text-align: left;
  }
  .hero .container .title,
  .hero .container .description,
  .hero .container .social {
    max-width: 380px;
    margin-bottom: 40px;
  }
  .hero .container .title {
    white-space: pre-line;
    font-weight: 700;
    font-size: 50px;
    line-height: 50px;
    text-transform: capitalize;
    color: #d00501;
  }
  .hero .container .description {
    font-weight: 400;
    font-size: 18px;
    line-height: 122%;
    color: #000000;
  }
  .hero .container .social {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    color: #000000;
  }
  .hero .container a.goFood {
    font-weight: 400;
    font-size: 16px;
    padding: 13px 16px;
    text-align: center;
  }
  .foods,
  .drinks {
    background: url("assets/general-bg.webp"), var(--color);
  }
  .foods .container .top,
  .drinks .container .top {
    text-align: center;
  }
  .foods .container .top h2,
  .drinks .container .top h2 {
    font-weight: 700;
    font-size: 50px;
    line-height: 50px;
    text-transform: capitalize;
    color: #d00501;
  }
  .foods .container .bottom,
  .drinks .container .bottom {
    margin-top: 40px;
  }
  .drinks {
    background: url("assets/drinks.webp");
  }
  .drinks .container .top {
    text-align: left;
  }
  .about-us {
    background: url("assets/about-us.webp") no-repeat;
  }
  .about-us .container {
    padding: 0 30px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
  }
  .about-us .container .left,
  .about-us .container .right {
    flex: 0 0 calc(50% - 15px);
  }
  .about-us .container .left h3 {
    font-size: 50px;
    line-height: 50px;
  }
  .about-us .container .left p {
    font-family: "Inter";
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 18px;
    text-align: justify;
    text-transform: capitalize;
    color: #ffffff;
    margin: 20px 0;
  }
  .about-us .container .right .contact-form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 20px;
    flex-grow: 0;
  }
  .about-us .container .right .contact-form input {
    border-radius: 10px;
    width: 100%;
    background: #fff;
    box-shadow: 0px 4px 44px rgba(0, 0, 0, 0.1);
    height: 66px;
    border: none;
    outline: none;
    padding: 0 30px;
  }
  .about-us .container .right .contact-form input::-moz-placeholder {
    text-align: left;
    font-size: 18px;
    color: #5a5a5a;
  }
  .about-us .container .right .contact-form input::placeholder {
    text-align: left;
    font-size: 18px;
    color: #5a5a5a;
  }
  .about-us .container .right .contact-form button {
    text-transform: capitalize;
    font-weight: 500;
    padding: 0 30px;
    border-radius: 10px;
    width: 100%;
    background-color: var(--color);
    height: 66px;
    text-align: center;
    outline: none;
    border: none;
    font-style: italic;
    font-weight: 600;
    font-size: 22px;
    line-height: 27px;
    color: #000;
  }
  .contact-us .container {
    padding: 0 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 20px;
  }
  .contact-us .container .schedule,
  .contact-us .container .location {
    border-radius: 10px;
    background-color: var(--color);
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    width: 60%;
    font-weight: 400;
    font-size: 17px;
    line-height: 126%;
    text-transform: capitalize;
    color: #000;
    gap: 10px;
    padding: 40px;
  }
  .contact-us .container .schedule svg,
  .contact-us .container .location svg {
    flex: 0 0 64px;
    width: 64px;
    height: 64px;
  }
  .contact-us .container .schedule {
    font-size: 24px;
    line-height: 142%;
  }
  .map {
    background-color: var(--color2);
  }
  .map .container iframe {
    border-radius: 10px;
    width: 100%;
    height: 420px;
    border: 0;
  }
  .seo {
    background-image: url("assets/map.webp");
    background-repeat: no-repeat;
    background-size: cover;
  }
  .seo .container {
    color: #fff;
  }
  .seo .container h2 {
    font-size: 50px;
    line-height: 60px;
    font-feature-settings: "kern" off;
    margin-bottom: 20px;
  }
  .seo .container p {
    font-size: 16px;
    line-height: 19px;
    text-align: justify;
    font-style: italic;
  }
  .seo .container p a {
    text-decoration: underline;
  }
  footer {
    background-color: var(--color);
  }
  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: 179px;
  }
  footer .container .details {
    max-width: calc(100% - 179px);
    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: #000;
    font-style: normal;
    font-weight: 300;
    font-size: 16px;
    color: #fff;
    padding: 12px 0;
  }
}
@media screen and (max-width: 767px) {
  .hamburger {
    display: block;
    margin: auto 0;
  }
  .items {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
  }
  .items .item {
    flex: 0 0 calc(50% - 10px);
  }
  .items .item img {
    border-radius: 50%;
    width: 100%;
    height: 240px;
    -o-object-fit: fill;
       object-fit: fill;
  }
  .items .item .details {
    background-color: rgba(228, 33, 37, 0.8);
    position: absolute;
    padding: 8px 20px 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    row-gap: 10px;
    width: 100%;
    overflow: hidden;
    left: 0;
    bottom: 0;
  }
  .items .item .details .name,
  .items .item .details .price {
    text-transform: capitalize;
    text-align: center;
    color: #ffffff;
  }
  .items .item .details .name {
    font-weight: 500;
    font-size: 18px;
    line-height: 18px;
  }
  .items .item .details .price {
    font-weight: 700;
    font-size: 16px;
    line-height: 16px;
    color: var(--color);
  }
  nav {
    background: var(--color);
    border-bottom: 4px solid var(--color2);
  }
  nav .container {
    padding: 0 30px;
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
    height: 98px;
  }
  nav .container .logo {
    margin-left: 0;
    justify-self: flex-start;
  }
  nav .container .logo img {
    width: 118px;
    height: 92px;
  }
  nav .container ul.links {
    margin-right: 0;
    display: none;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    gap: 36px;
    position: absolute;
    left: 0;
    top: 101px;
    width: 100%;
    z-index: 99;
    background-color: var(--color);
    padding: 20px 0;
  }
  nav .container ul.links li a {
    font-style: italic;
    font-weight: 600;
    font-size: 18px;
    line-height: 18px;
    text-transform: capitalize;
  }
  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,
  .foods,
  .drinks,
  .about-us,
  .contact-us,
  .map,
  .seo,
  footer {
    padding: 30px 0;
  }
  .hero .container,
  .foods .container,
  .drinks .container,
  .about-us .container,
  .contact-us .container,
  .map .container,
  .seo .container,
  footer .container {
    padding: 0 30px;
  }
  .hero {
    padding: 0;
  }
  .hero .container {
    background-color: rgba(228, 33, 37, 0.3);
    text-align: left;
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .hero .container .title,
  .hero .container .description,
  .hero .container .social {
    max-width: 100%;
    margin-bottom: 40px;
  }
  .hero .container .title {
    white-space: pre-line;
    font-weight: 700;
    font-size: 50px;
    line-height: 50px;
    text-transform: capitalize;
    color: #d00501;
  }
  .hero .container .description {
    font-weight: 400;
    font-size: 18px;
    line-height: 122%;
    color: #000000;
  }
  .hero .container .social {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    color: #000000;
  }
  .hero .container a.goFood {
    font-weight: 400;
    font-size: 16px;
    padding: 13px 16px;
    text-align: center;
  }
  .foods,
  .drinks {
    background: url("assets/general-bg.webp"), var(--color);
  }
  .foods .container .top,
  .drinks .container .top {
    text-align: center;
  }
  .foods .container .top h2,
  .drinks .container .top h2 {
    font-weight: 700;
    font-size: 42px;
    line-height: 42px;
    text-transform: capitalize;
    color: #d00501;
  }
  .foods .container .bottom,
  .drinks .container .bottom {
    margin-top: 40px;
  }
  .drinks {
    background: url("assets/drinks.webp");
  }
  .drinks .container .top {
    text-align: left;
  }
  .drinks .container .bottom .drink-items {
    display: flex;
    flex-direction: row;
    gap: 20px;
    justify-content: center;
  }
  .drinks .container .bottom .drink-items .item {
    flex: 0 0 calc(50% - 10px);
    border-radius: 10px;
    overflow: hidden;
  }
  .drinks .container .bottom .drink-items .item img {
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 10px;
    height: 236px;
  }
  .drinks .container .bottom .drink-items .item .details {
    color: #fff;
    text-align: center;
  }
  .drinks .container .bottom .drink-items .item .details .name {
    font-weight: 500;
    font-size: 20px;
    line-height: 20px;
    text-align: center;
    text-transform: capitalize;
    color: #ffffff;
    padding: 10px;
  }
  .drinks .container .bottom .drink-items .item .details .price {
    position: absolute;
    top: -50px;
    background-color: var(--color2);
    color: var(--color);
    border-radius: 10px;
    padding: 6px 8px;
    font-weight: 700;
    font-size: 16px;
    line-height: 16px;
    left: 50%;
    transform: translateX(-50%);
  }
  .about-us {
    background-size: 100% 100%;
  }
  .about-us .container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
  }
  .about-us .container .left,
  .about-us .container .right {
    flex: 0 0 100%;
  }
  .about-us .container .left h3 {
    font-size: 42px;
    line-height: 42px;
  }
  .about-us .container .left p {
    font-family: "Inter";
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 18px;
    text-align: justify;
    text-transform: capitalize;
    color: #ffffff;
    margin: 20px 0;
  }
  .about-us .container .right .contact-form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 20px;
    flex-grow: 0;
  }
  .about-us .container .right .contact-form input {
    border-radius: 10px;
    width: 100%;
    background: #fff;
    box-shadow: 0px 4px 44px rgba(0, 0, 0, 0.1);
    height: 48px;
    border: none;
    outline: none;
    padding: 0 30px;
  }
  .about-us .container .right .contact-form input::-moz-placeholder {
    text-align: left;
    font-size: 18px;
    color: #5a5a5a;
  }
  .about-us .container .right .contact-form input::placeholder {
    text-align: left;
    font-size: 18px;
    color: #5a5a5a;
  }
  .about-us .container .right .contact-form button {
    text-transform: capitalize;
    font-weight: 500;
    padding: 0 30px;
    border-radius: 10px;
    width: 100%;
    background-color: var(--color);
    height: 48px;
    text-align: center;
    outline: none;
    border: none;
    font-style: italic;
    font-weight: 600;
    font-size: 22px;
    line-height: 27px;
    color: #000;
  }
  .contact-us .container {
    padding: 0 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 20px;
  }
  .contact-us .container .schedule,
  .contact-us .container .location {
    border-radius: 10px;
    background-color: var(--color);
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    width: 80%;
    font-weight: 400;
    font-size: 16px;
    line-height: 126%;
    text-transform: capitalize;
    color: #000;
    gap: 10px;
    padding: 40px;
  }
  .contact-us .container .schedule svg,
  .contact-us .container .location svg {
    flex: 0 0 56px;
    width: 56px;
    height: 56px;
  }
  .contact-us .container .schedule {
    font-size: 20px;
    line-height: 142%;
  }
  .map {
    background-color: var(--color2);
  }
  .map .container iframe {
    border-radius: 10px;
    width: 100%;
    height: 360px;
    border: 0;
  }
  .seo {
    background-image: url("assets/map.webp");
    background-repeat: no-repeat;
    background-size: cover;
  }
  .seo .container {
    color: #fff;
  }
  .seo .container h2 {
    font-size: 40px;
    line-height: 50px;
    font-feature-settings: "kern" off;
    margin-bottom: 20px;
  }
  .seo .container p {
    font-weight: 300;
    font-size: 16px;
    line-height: 19px;
    text-align: justify;
    font-style: italic;
  }
  .seo .container p a {
    text-decoration: underline;
  }
  footer {
    background-color: var(--color);
  }
  footer .container {
    flex-wrap: wrap;
  }
  footer .container .details {
    order: 2;
    max-width: 100%;
  }
  .copyright {
    text-align: center;
    background-color: #000;
    font-style: normal;
    font-weight: 300;
    font-size: 16px;
    color: #fff;
    padding: 12px 0;
  }
}
@media screen and (max-width: 567px) {
  .hamburger {
    display: block;
    margin: auto 0;
  }
  .items {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 30px;
  }
  .items .item {
    flex: 0 0 100%;
    overflow: hidden;
  }
  .items .item img {
    border-radius: 50%;
    width: 100%;
    height: 280px;
    -o-object-fit: fill;
       object-fit: fill;
    overflow: hidden;
  }
  .items .item .details {
    background-color: rgba(228, 33, 37, 0.8);
    position: absolute;
    padding: 8px 40px 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    row-gap: 10px;
    width: 100%;
    overflow: hidden;
    left: 0;
    bottom: 0;
  }
  .items .item .details .name,
  .items .item .details .price {
    text-transform: capitalize;
    text-align: center;
    color: #ffffff;
  }
  .items .item .details .name {
    font-weight: 500;
    font-size: 20px;
    line-height: 20px;
  }
  .items .item .details .price {
    font-weight: 700;
    font-size: 17px;
    line-height: 17px;
    color: var(--color);
  }
  nav {
    background: var(--color);
    border-bottom: 4px solid var(--color2);
  }
  nav .container {
    padding: 0 30px;
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
    height: 98px;
  }
  nav .container .logo {
    margin-left: 0;
    justify-self: flex-start;
  }
  nav .container .logo img {
    width: 118px;
    height: 92px;
  }
  nav .container ul.links {
    margin-right: 0;
    display: none;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    gap: 36px;
    position: absolute;
    left: 0;
    top: 101px;
    width: 100%;
    z-index: 99;
    background-color: var(--color);
    padding: 20px 0;
  }
  nav .container ul.links li a {
    font-style: italic;
    font-weight: 600;
    font-size: 18px;
    line-height: 18px;
    text-transform: capitalize;
  }
  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,
  .foods,
  .drinks,
  .about-us,
  .contact-us,
  .map,
  .seo,
  footer {
    padding: 30px 0;
  }
  .hero .container,
  .foods .container,
  .drinks .container,
  .about-us .container,
  .contact-us .container,
  .map .container,
  .seo .container,
  footer .container {
    padding: 0 30px;
  }
  .hero {
    padding: 0;
  }
  .hero .container {
    background-color: rgba(228, 33, 37, 0.3);
    text-align: left;
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .hero .container .title,
  .hero .container .description,
  .hero .container .social {
    max-width: 100%;
    margin-bottom: 40px;
  }
  .hero .container .title {
    white-space: pre-line;
    font-weight: 700;
    font-size: 50px;
    line-height: 50px;
    text-transform: capitalize;
    color: #d00501;
  }
  .hero .container .description {
    font-weight: 400;
    font-size: 18px;
    line-height: 122%;
    color: #000000;
  }
  .hero .container .social {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    color: #000000;
  }
  .hero .container a.goFood {
    font-weight: 400;
    font-size: 16px;
    padding: 13px 16px;
    text-align: center;
  }
  .foods,
  .drinks {
    background: url("assets/general-bg.webp"), var(--color);
  }
  .foods .container .top,
  .drinks .container .top {
    text-align: center;
  }
  .foods .container .top h2,
  .drinks .container .top h2 {
    font-weight: 700;
    font-size: 42px;
    line-height: 42px;
    text-transform: capitalize;
    color: #d00501;
  }
  .foods .container .bottom,
  .drinks .container .bottom {
    margin-top: 40px;
  }
  .drinks {
    background: url("assets/drinks.webp");
  }
  .drinks .container .top {
    text-align: left;
  }
  .drinks .container .bottom .drink-items {
    display: flex;
    flex-direction: row;
    gap: 20px;
    justify-content: center;
  }
  .drinks .container .bottom .drink-items .item {
    flex: 0 0 100%;
    border-radius: 10px;
    overflow: hidden;
  }
  .drinks .container .bottom .drink-items .item img {
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 10px;
    height: 260px;
  }
  .drinks .container .bottom .drink-items .item .details {
    color: #fff;
    text-align: center;
  }
  .drinks .container .bottom .drink-items .item .details .name {
    font-weight: 500;
    font-size: 20px;
    line-height: 20px;
    text-align: center;
    text-transform: capitalize;
    color: #ffffff;
    padding: 10px;
  }
  .drinks .container .bottom .drink-items .item .details .price {
    position: absolute;
    top: -50px;
    background-color: var(--color2);
    color: var(--color);
    border-radius: 10px;
    padding: 6px 8px;
    font-weight: 700;
    font-size: 16px;
    line-height: 16px;
    left: 50%;
    transform: translateX(-50%);
  }
  .about-us {
    background-size: 100% 100%;
  }
  .about-us .container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
  }
  .about-us .container .left,
  .about-us .container .right {
    flex: 0 0 100%;
  }
  .about-us .container .left h3 {
    font-size: 42px;
    line-height: 42px;
  }
  .about-us .container .left p {
    font-family: "Inter";
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 18px;
    text-align: justify;
    text-transform: capitalize;
    color: #ffffff;
    margin: 20px 0;
  }
  .about-us .container .right .contact-form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 20px;
    flex-grow: 0;
  }
  .about-us .container .right .contact-form input {
    border-radius: 10px;
    width: 100%;
    background: #fff;
    box-shadow: 0px 4px 44px rgba(0, 0, 0, 0.1);
    height: 48px;
    border: none;
    outline: none;
    padding: 0 30px;
  }
  .about-us .container .right .contact-form input::-moz-placeholder {
    text-align: left;
    font-size: 18px;
    color: #5a5a5a;
  }
  .about-us .container .right .contact-form input::placeholder {
    text-align: left;
    font-size: 18px;
    color: #5a5a5a;
  }
  .about-us .container .right .contact-form button {
    text-transform: capitalize;
    font-weight: 500;
    padding: 0 30px;
    border-radius: 10px;
    width: 100%;
    background-color: var(--color);
    height: 48px;
    text-align: center;
    outline: none;
    border: none;
    font-style: italic;
    font-weight: 600;
    font-size: 22px;
    line-height: 27px;
    color: #000;
  }
  .contact-us .container .schedule,
  .contact-us .container .location {
    width: 100%;
    font-weight: 400;
    font-size: 16px;
    line-height: 126%;
    text-transform: capitalize;
    color: #000;
    gap: 10px;
    padding: 40px 30px;
  }
  .contact-us .container .schedule svg,
  .contact-us .container .location svg {
    flex: 0 0 56px;
    width: 56px;
    height: 56px;
  }
  .contact-us .container .schedule {
    font-size: 18px;
    line-height: 142%;
  }
  .map {
    background-color: var(--color2);
  }
  .map .container iframe {
    border-radius: 10px;
    width: 100%;
    height: 360px;
    border: 0;
  }
  .seo {
    background-image: url("assets/map.webp");
    background-repeat: no-repeat;
    background-size: cover;
  }
  .seo .container {
    color: #fff;
  }
  .seo .container h2 {
    font-size: 40px;
    line-height: 50px;
    font-feature-settings: "kern" off;
    margin-bottom: 20px;
  }
  .seo .container p {
    font-weight: 300;
    font-size: 16px;
    line-height: 19px;
    text-align: justify;
    font-style: italic;
  }
  .seo .container p a {
    text-decoration: underline;
  }
  footer {
    background-color: var(--color);
  }
  footer .container {
    flex-wrap: wrap;
  }
  footer .container .details {
    order: 2;
    max-width: 100%;
  }
  .copyright {
    text-align: center;
    background-color: #000;
    font-style: normal;
    font-weight: 300;
    font-size: 16px;
    color: #fff;
    padding: 12px 0;
  }
}/*# sourceMappingURL=style.css.map */