:root {
  --color: #0200ea;
  --color2: #e3e3e3;
  --regular: 400;
  --semibold: 600;
  --bold: 700;
}

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

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

.active {
  display: flex !important;
}

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

.pos-r {
  position: relative;
}

.slick-disabled {
  opacity: 0.4;
}

.next,
.prev {
  background: var(--color2);
  border-radius: 50%;
  transform: matrix(-1, 0, 0, 1, 0, 0);
  width: 54px;
  height: 54px;
  border: none;
  outline: none;
}

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

nav {
  background: #ffffff;
  box-shadow: 0px 14px 22px rgba(0, 0, 0, 0.1);
  border-radius: 0px;
}
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-family: "Gupter";
  font-weight: 700;
  font-size: 18px;
  line-height: 21px;
  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(--color);
}
nav .container ul.links li.social {
  display: inline-flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
}

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

.hero {
  background: url("assets/hero.webp") no-repeat;
  background-size: 100% 100%;
  padding: 0;
}
.hero .container {
  padding: 0 230px;
  padding-top: 256px;
}
.hero .container .content {
  padding: 100px 100px;
  background-color: rgba(2, 0, 234, 0.8);
}
.hero .container .content .title,
.hero .container .content .description,
.hero .container .content .social {
  text-align: center;
  color: #ffffff;
  text-transform: capitalize;
}
.hero .container .content .title {
  white-space: pre-line;
  font-size: 90px;
  line-height: 93%;
  text-align: center;
}
.hero .container .content .description {
  font-family: "Gupter";
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 122%;
  margin: 20px 0 40px;
  text-transform: unset;
}
.hero .container .content .social {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.hero .container .content a.goFood {
  background-color: #fff;
  color: var(--color);
  font-family: "Gupter";
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 21px;
  padding: 16px;
}

.block {
  background-color: var(--color);
  height: 100px;
}

.promo {
  background-color: var(--color2);
}
.promo .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}
.promo .container .right {
  display: flex;
  flex-direction: column;
  row-gap: 30px;
}
.promo .container .right h2 {
  font-size: 90px;
  line-height: 93%;
  text-transform: capitalize;
  color: #000000;
}
.promo .container .right p {
  font-family: "Gupter";
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 21px;
  color: #000000;
}
.promo .container .right .sl {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
}
.promo .container .right .sl .schedule,
.promo .container .right .sl .location {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  justify-content: center;
  align-items: center;
  flex: 0 0 calc(50% - 15px);
  background-color: var(--color);
  color: #fff;
  border-radius: 10px;
  height: 220px;
  padding: 0 4px;
  font-family: "Gupter";
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 21px;
  text-align: center;
}

.foods,
.drinks {
  background-color: var(--color);
}
.foods .container .top,
.drinks .container .top {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  align-items: center;
}
.foods .container .top h2,
.drinks .container .top h2 {
  text-align: center;
  font-size: 90px;
  line-height: 93%;
  text-transform: capitalize;
  color: #ffffff;
}
.foods .container .bottom,
.drinks .container .bottom {
  margin-top: 40px;
}
.foods .container .bottom .items .item,
.drinks .container .bottom .items .item {
  position: relative;
  height: 400px;
  width: 280px;
}
.foods .container .bottom .items .item img,
.drinks .container .bottom .items .item img {
  border-radius: 50%;
  width: 280px;
  height: 280px;
  z-index: 2;
  position: relative;
}
.foods .container .bottom .items .item .details,
.drinks .container .bottom .items .item .details {
  position: absolute;
  top: 35px;
  left: 0;
  box-sizing: border-box;
  border: 1px solid #ffffff;
  border-top: 0;
  border-radius: 0px 0px 20px 20px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  height: 220px;
  width: 280px;
  padding: 30px 10px;
  margin-top: 120px;
  z-index: 1;
}
.foods .container .bottom .items .item .details .name,
.drinks .container .bottom .items .item .details .name {
  font-family: "Gupter";
  font-style: normal;
  font-weight: 400;
  font-size: 20px !important;
  line-height: 20px !important;
  text-align: center;
  text-transform: capitalize;
  color: #ffffff;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}
.foods .container .bottom .items .item .details .price,
.drinks .container .bottom .items .item .details .price {
  position: absolute;
  bottom: -19px;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Gupter";
  font-weight: 700;
  font-size: 16px;
  line-height: 18px;
  color: #0200ea;
  padding: 10px 20px;
  background-color: #fff;
  border-radius: 10px;
  text-align: center;
}

.drinks {
  background-color: var(--color2);
}
.drinks .top h2 {
  color: #000 !important;
}
.drinks .top .next,
.drinks .top .prev {
  background: var(--color);
}
.drinks .bottom .items .item .details {
  border: 1px solid #000 !important;
}
.drinks .bottom .items .item .details .name {
  color: #000 !important;
}
.drinks .bottom .items .item .details .price {
  color: #fff !important;
  background-color: var(--color) !important;
}

.find-us {
  background-image: url("assets/general-bg.png");
  mix-blend-mode: plus-lighter;
  background-size: cover;
}
.find-us .container {
  padding: 0 230px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}
.find-us .container h2 {
  flex: 0 0 100%;
  text-align: center;
  font-size: 90px;
  line-height: 93%;
  text-transform: capitalize;
  color: #ffffff;
}
.find-us .container .fsl {
  margin: 40px 0;
  flex: 0 0 100%;
  flex-direction: row;
  display: flex;
  gap: 20px;
}
.find-us .container .fsl .schedule,
.find-us .container .fsl .location {
  display: inline-flex;
  align-items: center;
  flex: 0 0 50%;
  padding: 20px;
  border-radius: 10px;
  background-color: var(--color2);
  color: #000;
  flex-direction: row;
  gap: 10px;
  font-weight: 300;
  font-family: "Gupter";
  font-size: 20px;
  line-height: 23px;
  text-transform: capitalize;
}
.find-us .container .fsl .schedule svg,
.find-us .container .fsl .location svg {
  flex: 0 0 64px;
}
.find-us .container iframe {
  width: 100%;
  height: 450px;
  border-radius: 10px;
}

.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: var(--color2);
  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;
}

.seo {
  background-color: var(--color2);
}
.seo .container {
  color: #000;
}
.seo .container h2 {
  font-size: 60px;
  line-height: 70px;
  font-feature-settings: "kern" off;
  margin-bottom: 20px;
}
.seo .container p {
  font-family: "Gupter";
  font-size: 16px;
  line-height: 19px;
  text-align: justify;
}
.seo .container p a {
  font-family: "Gupter";
  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: 179px;
}
footer .container .details {
  max-width: calc(100% - 179px);
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  text-transform: capitalize;
  color: #000;
  font-family: "Gupter";
}
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(--color);
  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: #000000;
  font-weight: 700;
  transition: all 0.5s ease-in-out;
}
.seo a:hover {
  color: var(--color);
}

.slick-slide {
  margin: 0 10px !important;
  overflow-x: hidden;
}
.slick-slide img {
  width: 100% !important;
}
.slick-slide .details {
  width: 100% !important;
}

@media screen and (max-width: 1024px) {
  .hamburger {
    display: none;
    margin: auto 0;
  }
  nav {
    background: #ffffff;
    box-shadow: 0px 14px 22px rgba(0, 0, 0, 0.1);
    border-radius: 0px;
  }
  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-family: "Gupter";
    font-weight: 700;
    font-size: 18px;
    line-height: 21px;
    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(--color);
  }
  nav .container ul.links li.social {
    display: inline-flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
  }
  .hero,
  .promo,
  .foods,
  .drinks,
  .find-us,
  .contact-us,
  .seo,
  footer {
    padding: 60px 0;
  }
  .hero .container,
  .promo .container,
  .foods .container,
  .drinks .container,
  .find-us .container,
  .contact-us .container,
  .seo .container,
  footer .container {
    padding: 0 60px;
  }
  .hero {
    padding: 0;
  }
  .hero .container {
    padding: 0 130px;
    padding-top: 156px;
  }
  .hero .container .content .title,
  .hero .container .content .description,
  .hero .container .content .social {
    text-align: center;
    color: #ffffff;
    text-transform: capitalize;
  }
  .hero .container .content .title {
    white-space: pre-line;
    font-size: 72px;
    line-height: 93%;
    text-align: center;
  }
  .hero .container .content .description {
    font-family: "Gupter";
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 122%;
    margin: 20px 0 40px;
    text-transform: unset;
  }
  .hero .container .content .social {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 20px;
  }
  .hero .container .content a.goFood {
    background-color: #fff;
    color: var(--color);
    font-family: "Gupter";
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 21px;
    padding: 16px;
  }
  .block {
    background-color: var(--color);
    height: 60px;
  }
  .promo {
    background-color: var(--color2);
  }
  .promo .container {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
  }
  .promo .container .left {
    flex: 0 0 50%;
  }
  .promo .container .left img {
    width: 100%;
  }
  .promo .container .right {
    display: flex;
    flex-direction: column;
    row-gap: 15px;
  }
  .promo .container .right h2 {
    font-size: 62px;
    line-height: 93%;
    text-transform: capitalize;
    color: #000000;
  }
  .promo .container .right p {
    font-family: "Gupter";
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 21px;
    color: #000000;
  }
  .promo .container .right .sl {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
  }
  .promo .container .right .sl .schedule,
  .promo .container .right .sl .location {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    justify-content: center;
    align-items: center;
    flex: 0 0 calc(50% - 8px);
    background-color: var(--color);
    color: #fff;
    border-radius: 10px;
    height: 180px;
    padding: 0 4px;
    font-family: "Gupter";
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 19px;
    text-align: center;
  }
  .promo .container .right .sl .schedule svg,
  .promo .container .right .sl .location svg {
    width: 48px;
  }
  .foods,
  .drinks {
    background-color: var(--color);
  }
  .foods .container .top,
  .drinks .container .top {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    align-items: center;
  }
  .foods .container .top h2,
  .drinks .container .top h2 {
    text-align: center;
    font-size: 72px;
    line-height: 93%;
    text-transform: capitalize;
    color: #ffffff;
  }
  .foods .container .bottom,
  .drinks .container .bottom {
    margin-top: 40px;
  }
  .foods .container .bottom .items .item,
  .drinks .container .bottom .items .item {
    position: relative;
    height: 400px;
    width: 260px;
  }
  .foods .container .bottom .items .item img,
  .drinks .container .bottom .items .item img {
    border-radius: 50%;
    width: 260px;
    height: 260px;
    z-index: 2;
    position: relative;
  }
  .foods .container .bottom .items .item .details,
  .drinks .container .bottom .items .item .details {
    position: absolute;
    top: 30px;
    left: 0;
    box-sizing: border-box;
    border: 1px solid #ffffff;
    border-top: 0;
    border-radius: 0px 0px 20px 20px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    height: 200px;
    width: 260px;
    padding: 30px 10px;
    margin-top: 120px;
    z-index: 1;
  }
  .foods .container .bottom .items .item .details .name,
  .drinks .container .bottom .items .item .details .name {
    font-family: "Gupter";
    font-style: normal;
    font-weight: 400;
    font-size: 28px;
    line-height: 30px;
    text-align: center;
    text-transform: capitalize;
    color: #ffffff;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
  }
  .foods .container .bottom .items .item .details .price,
  .drinks .container .bottom .items .item .details .price {
    position: absolute;
    bottom: -19px;
    left: 50%;
    transform: translateX(-50%);
    font-family: "Gupter";
    font-weight: 700;
    font-size: 16px;
    line-height: 18px;
    color: #0200ea;
    padding: 10px 20px;
    background-color: #fff;
    border-radius: 10px;
  }
  .drinks {
    background-color: var(--color2);
  }
  .drinks .top h2 {
    color: #000 !important;
  }
  .drinks .top .next,
  .drinks .top .prev {
    background: var(--color);
  }
  .drinks .bottom .items .item .details {
    border: 1px solid #000 !important;
  }
  .drinks .bottom .items .item .details .name {
    color: #000 !important;
  }
  .drinks .bottom .items .item .details .price {
    color: #fff !important;
    background-color: var(--color) !important;
  }
  .find-us {
    background-image: url("assets/general-bg.png");
    mix-blend-mode: plus-lighter;
    background-size: cover;
  }
  .find-us .container {
    padding: 0 130px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
  .find-us .container h2 {
    flex: 0 0 100%;
    text-align: center;
    font-size: 62px;
    line-height: 93%;
    text-transform: capitalize;
    color: #ffffff;
  }
  .find-us .container .fsl {
    margin: 40px 0;
    flex: 0 0 100%;
    flex-direction: row;
    display: flex;
    gap: 20px;
  }
  .find-us .container .fsl .schedule,
  .find-us .container .fsl .location {
    display: inline-flex;
    align-items: center;
    flex: 0 0 50%;
    padding: 20px;
    border-radius: 10px;
    background-color: var(--color2);
    color: #000;
    flex-direction: row;
    gap: 10px;
    font-weight: 300;
    font-family: "Gupter";
    font-size: 20px;
    line-height: 23px;
    text-transform: capitalize;
  }
  .find-us .container .fsl .schedule svg,
  .find-us .container .fsl .location svg {
    flex: 0 0 64px;
  }
  .find-us .container iframe {
    width: 100%;
    height: 450px;
    border-radius: 10px;
  }
  .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: var(--color2);
    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;
  }
  .seo {
    background-color: var(--color2);
  }
  .seo .container {
    color: #000;
  }
  .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;
  }
  .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: 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: var(--color);
    font-style: normal;
    font-weight: 300;
    font-size: 16px;
    color: #fff;
    padding: 12px 0;
  }
}
@media screen and (max-width: 991px) {
  .hamburger {
    display: none;
    margin: auto 0;
  }
  nav {
    background: #ffffff;
    box-shadow: 0px 14px 22px rgba(0, 0, 0, 0.1);
    border-radius: 0px;
  }
  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: 92px;
  }
  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-family: "Gupter";
    font-weight: 700;
    font-size: 18px;
    line-height: 21px;
    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(--color);
  }
  nav .container ul.links li.social {
    display: inline-flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
  }
  .hero,
  .promo,
  .foods,
  .drinks,
  .find-us,
  .contact-us,
  .seo,
  footer {
    padding: 30px 0;
  }
  .hero .container,
  .promo .container,
  .foods .container,
  .drinks .container,
  .find-us .container,
  .contact-us .container,
  .seo .container,
  footer .container {
    padding: 0 30px;
  }
  .hero {
    padding: 0;
  }
  .hero .container {
    padding: 0 60px;
    padding-top: 80px;
  }
  .hero .container .content {
    padding: 60px 60px;
  }
  .hero .container .content .title,
  .hero .container .content .description,
  .hero .container .content .social {
    text-align: center;
    color: #ffffff;
    text-transform: capitalize;
  }
  .hero .container .content .title {
    white-space: pre-line;
    font-size: 62px;
    line-height: 93%;
    text-align: center;
  }
  .hero .container .content .description {
    font-family: "Gupter";
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 122%;
    margin: 20px 0 40px;
    text-transform: unset;
  }
  .hero .container .content .social {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 20px;
  }
  .hero .container .content a.goFood {
    background-color: #fff;
    color: var(--color);
    font-family: "Gupter";
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 21px;
    padding: 16px;
  }
  .block {
    background-color: var(--color);
    height: 60px;
  }
  .promo {
    background-color: var(--color2);
  }
  .promo .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .promo .container .left {
    order: 1;
    flex: 0 0 100%;
  }
  .promo .container .left img {
    width: 100%;
  }
  .promo .container .right {
    display: flex;
    flex-direction: column;
    row-gap: 15px;
  }
  .promo .container .right h2 {
    font-size: 62px;
    line-height: 93%;
    text-transform: capitalize;
    color: #000000;
  }
  .promo .container .right p {
    font-family: "Gupter";
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 21px;
    color: #000000;
  }
  .promo .container .right .sl {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
  }
  .promo .container .right .sl .schedule,
  .promo .container .right .sl .location {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    justify-content: center;
    align-items: center;
    flex: 0 0 calc(50% - 8px);
    background-color: var(--color);
    color: #fff;
    border-radius: 10px;
    height: 180px;
    padding: 0 4px;
    font-family: "Gupter";
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 19px;
    text-align: center;
  }
  .promo .container .right .sl .schedule svg,
  .promo .container .right .sl .location svg {
    width: 48px;
  }
  .foods,
  .drinks {
    background-color: var(--color);
  }
  .foods .container .top,
  .drinks .container .top {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    align-items: center;
  }
  .foods .container .top h2,
  .drinks .container .top h2 {
    text-align: center;
    font-size: 56px;
    line-height: 93%;
    text-transform: capitalize;
    color: #ffffff;
  }
  .foods .container .bottom,
  .drinks .container .bottom {
    margin-top: 40px;
  }
  .foods .container .bottom .items .item,
  .drinks .container .bottom .items .item {
    position: relative;
    height: 400px;
    width: 260px;
  }
  .foods .container .bottom .items .item img,
  .drinks .container .bottom .items .item img {
    border-radius: 50%;
    width: 260px;
    height: 260px;
    z-index: 2;
    position: relative;
  }
  .foods .container .bottom .items .item .details,
  .drinks .container .bottom .items .item .details {
    position: absolute;
    top: 30px;
    left: 0;
    box-sizing: border-box;
    border: 1px solid #ffffff;
    border-top: 0;
    border-radius: 0px 0px 20px 20px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    height: 200px;
    width: 260px;
    padding: 30px 10px;
    margin-top: 120px;
    z-index: 1;
  }
  .foods .container .bottom .items .item .details .name,
  .drinks .container .bottom .items .item .details .name {
    font-family: "Gupter";
    font-style: normal;
    font-weight: 400;
    font-size: 28px;
    line-height: 30px;
    text-align: center;
    text-transform: capitalize;
    color: #ffffff;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
  }
  .foods .container .bottom .items .item .details .price,
  .drinks .container .bottom .items .item .details .price {
    position: absolute;
    bottom: -19px;
    left: 50%;
    transform: translateX(-50%);
    font-family: "Gupter";
    font-weight: 700;
    font-size: 16px;
    line-height: 18px;
    color: #0200ea;
    padding: 10px 20px;
    background-color: #fff;
    border-radius: 10px;
  }
  .drinks {
    background-color: var(--color2);
  }
  .drinks .top h2 {
    color: #000 !important;
  }
  .drinks .top .next,
  .drinks .top .prev {
    background: var(--color);
  }
  .drinks .bottom .items .item .details {
    border: 1px solid #000 !important;
  }
  .drinks .bottom .items .item .details .name {
    color: #000 !important;
  }
  .drinks .bottom .items .item .details .price {
    color: #fff !important;
    background-color: var(--color) !important;
  }
  .find-us {
    background-image: url("assets/general-bg.png");
    mix-blend-mode: plus-lighter;
    background-size: cover;
  }
  .find-us .container {
    padding: 0 60px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
  .find-us .container h2 {
    flex: 0 0 100%;
    text-align: center;
    font-size: 58px;
    line-height: 93%;
    text-transform: capitalize;
    color: #ffffff;
  }
  .find-us .container .fsl {
    margin: 20px 0;
    flex: 0 0 100%;
    flex-direction: row;
    display: flex;
    gap: 20px;
  }
  .find-us .container .fsl .schedule,
  .find-us .container .fsl .location {
    display: inline-flex;
    align-items: center;
    flex: 0 0 calc(50% - 10px);
    padding: 20px;
    border-radius: 10px;
    background-color: var(--color2);
    color: #000;
    flex-direction: row;
    gap: 10px;
    font-weight: 300;
    font-family: "Gupter";
    font-size: 20px;
    line-height: 23px;
    text-transform: capitalize;
  }
  .find-us .container .fsl .schedule svg,
  .find-us .container .fsl .location svg {
    flex: 0 0 64px;
  }
  .find-us .container iframe {
    width: 100%;
    height: 400px;
    border-radius: 10px;
  }
  .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: 10px;
         column-gap: 10px;
    flex-basis: 100%;
    flex-grow: 1;
  }
  .contact-us .container .contact-form input {
    width: 100%;
    background-color: var(--color2);
    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;
  }
  .seo {
    background-color: var(--color2);
  }
  .seo .container {
    color: #000;
  }
  .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;
  }
  .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: 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: var(--color);
    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;
  }
  nav {
    background: #ffffff;
    box-shadow: 0px 14px 22px rgba(0, 0, 0, 0.1);
    border-radius: 0px;
  }
  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: 92px;
  }
  nav .container ul.links {
    margin-right: 0;
    display: none;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    gap: 36px;
    position: absolute;
    width: 100%;
    left: 0;
    top: 120px;
    background-color: #fff;
    z-index: 1000;
    padding: 36px 0;
  }
  nav .container ul.links li a {
    font-family: "Gupter";
    font-weight: 700;
    font-size: 18px;
    line-height: 21px;
    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(--color);
  }
  nav .container ul.links li.social {
    display: inline-flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
  }
  .hero,
  .promo,
  .foods,
  .drinks,
  .find-us,
  .contact-us,
  .seo,
  footer {
    padding: 30px 0;
  }
  .hero .container,
  .promo .container,
  .foods .container,
  .drinks .container,
  .find-us .container,
  .contact-us .container,
  .seo .container,
  footer .container {
    padding: 0 30px;
  }
  .hero {
    padding: 0;
  }
  .hero .container {
    padding: 0 30px;
    padding-top: 80px;
  }
  .hero .container .content {
    padding: 30px 30px;
  }
  .hero .container .content .title,
  .hero .container .content .description,
  .hero .container .content .social {
    text-align: center;
    color: #ffffff;
    text-transform: capitalize;
  }
  .hero .container .content .title {
    white-space: pre-line;
    font-size: 62px;
    line-height: 93%;
    text-align: center;
  }
  .hero .container .content .description {
    font-family: "Gupter";
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 122%;
    margin: 20px 0 40px;
    text-transform: unset;
  }
  .hero .container .content .social {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 20px;
  }
  .hero .container .content a.goFood {
    background-color: #fff;
    color: var(--color);
    font-family: "Gupter";
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 21px;
    padding: 16px;
  }
  .block {
    background-color: var(--color);
    height: 60px;
  }
  .promo {
    background-color: var(--color2);
  }
  .promo .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .promo .container .left {
    order: 1;
    flex: 0 0 100%;
  }
  .promo .container .left img {
    width: 100%;
  }
  .promo .container .right {
    display: flex;
    flex-direction: column;
    row-gap: 15px;
  }
  .promo .container .right h2 {
    font-size: 40px;
    line-height: 93%;
    text-transform: capitalize;
    color: #000000;
  }
  .promo .container .right p {
    font-family: "Gupter";
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 21px;
    color: #000000;
  }
  .promo .container .right .sl {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
  }
  .promo .container .right .sl .schedule,
  .promo .container .right .sl .location {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    justify-content: center;
    align-items: center;
    flex: 0 0 calc(50% - 8px);
    background-color: var(--color);
    color: #fff;
    border-radius: 10px;
    height: 180px;
    padding: 0 4px;
    font-family: "Gupter";
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 19px;
    text-align: center;
  }
  .promo .container .right .sl .schedule svg,
  .promo .container .right .sl .location svg {
    width: 48px;
  }
  .foods,
  .drinks {
    background-color: var(--color);
  }
  .foods .container .top,
  .drinks .container .top {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    align-items: center;
  }
  .foods .container .top h2,
  .drinks .container .top h2 {
    text-align: center;
    font-size: 38px;
    line-height: 93%;
    text-transform: capitalize;
    color: #ffffff;
  }
  .foods .container .bottom,
  .drinks .container .bottom {
    margin-top: 40px;
  }
  .foods .container .bottom .items .item,
  .drinks .container .bottom .items .item {
    position: relative;
    height: 400px;
    width: 220px;
  }
  .foods .container .bottom .items .item img,
  .drinks .container .bottom .items .item img {
    border-radius: 50%;
    width: 220px;
    height: 220px;
    z-index: 2;
    position: relative;
  }
  .foods .container .bottom .items .item .details,
  .drinks .container .bottom .items .item .details {
    position: absolute;
    top: 10px;
    left: 0;
    box-sizing: border-box;
    border: 1px solid #ffffff;
    border-top: 0;
    border-radius: 0px 0px 20px 20px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    height: 180px;
    width: 220px;
    padding: 30px 10px;
    margin-top: 120px;
    z-index: 1;
  }
  .foods .container .bottom .items .item .details .name,
  .drinks .container .bottom .items .item .details .name {
    font-family: "Gupter";
    font-style: normal;
    font-weight: 400;
    font-size: 22px;
    line-height: 24px;
    text-align: center;
    text-transform: capitalize;
    color: #ffffff;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
  }
  .foods .container .bottom .items .item .details .price,
  .drinks .container .bottom .items .item .details .price {
    position: absolute;
    bottom: -19px;
    left: 50%;
    transform: translateX(-50%);
    font-family: "Gupter";
    font-weight: 700;
    font-size: 16px;
    line-height: 18px;
    color: #0200ea;
    padding: 10px 20px;
    background-color: #fff;
    border-radius: 10px;
  }
  .drinks {
    background-color: var(--color2);
  }
  .drinks .top h2 {
    color: #000 !important;
  }
  .drinks .top .next,
  .drinks .top .prev {
    background: var(--color);
  }
  .drinks .bottom .items .item .details {
    border: 1px solid #000 !important;
  }
  .drinks .bottom .items .item .details .name {
    color: #000 !important;
  }
  .drinks .bottom .items .item .details .price {
    color: #fff !important;
    background-color: var(--color) !important;
  }
  .find-us {
    background-image: url("assets/general-bg.png");
    mix-blend-mode: plus-lighter;
    background-size: cover;
  }
  .find-us .container {
    padding: 0 30px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
  .find-us .container h2 {
    flex: 0 0 100%;
    text-align: center;
    font-size: 38px;
    line-height: 93%;
    text-transform: capitalize;
    color: #ffffff;
  }
  .find-us .container .fsl {
    margin: 20px 0;
    flex: 0 0 100%;
    flex-direction: column;
    display: flex;
    gap: 20px;
  }
  .find-us .container .fsl .schedule,
  .find-us .container .fsl .location {
    display: inline-flex;
    align-items: center;
    flex: 0 0 calc(50% - 10px);
    padding: 20px;
    border-radius: 10px;
    background-color: var(--color2);
    color: #000;
    flex-direction: row;
    gap: 10px;
    font-weight: 300;
    font-family: "Gupter";
    font-size: 20px;
    line-height: 23px;
    text-transform: capitalize;
  }
  .find-us .container .fsl .schedule svg,
  .find-us .container .fsl .location svg {
    flex: 0 0 64px;
  }
  .find-us .container iframe {
    width: 100%;
    height: 400px;
    border-radius: 10px;
  }
  .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: center;
    row-gap: 10px;
    flex-basis: 100%;
    flex-grow: 1;
  }
  .contact-us .container .contact-form input {
    width: 100%;
    background-color: var(--color2);
    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(--color);
    max-width: 100%;
    width: 100%;
    height: 100px;
    max-height: 100px;
    outline: none;
    border: none;
  }
  .seo {
    background-color: var(--color2);
  }
  .seo .container {
    color: #000;
  }
  .seo .container h2 {
    font-size: 34px;
    line-height: 40px;
    font-feature-settings: "kern" off;
    margin-bottom: 20px;
  }
  .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;
    flex-wrap: wrap;
    -moz-column-gap: 30px;
         column-gap: 30px;
  }
  footer .container .logo > a > img {
    width: 179px;
  }
  footer .container .details {
    order: 2;
    max-width: 100%;
    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(--color);
    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;
  }
  .next,
  .prev {
    background: var(--color2);
    border-radius: 50%;
    transform: matrix(-1, 0, 0, 1, 0, 0);
    width: 24px;
    height: 24px;
    border: none;
    outline: none;
    padding: 4px 2px;
  }
  .next svg,
  .prev svg {
    width: 16px;
    height: 16px;
  }
  nav {
    background: #ffffff;
    box-shadow: 0px 14px 22px rgba(0, 0, 0, 0.1);
    border-radius: 0px;
  }
  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: 92px;
  }
  nav .container ul.links {
    margin-right: 0;
    display: none;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    gap: 36px;
    position: absolute;
    width: 100%;
    left: 0;
    top: 120px;
    background-color: #fff;
    z-index: 1000;
    padding: 36px 0;
  }
  nav .container ul.links li a {
    font-family: "Gupter";
    font-weight: 700;
    font-size: 18px;
    line-height: 21px;
    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(--color);
  }
  nav .container ul.links li.social {
    display: inline-flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
  }
  .hero,
  .promo,
  .foods,
  .drinks,
  .find-us,
  .contact-us,
  .seo,
  footer {
    padding: 30px 0;
  }
  .hero .container,
  .promo .container,
  .foods .container,
  .drinks .container,
  .find-us .container,
  .contact-us .container,
  .seo .container,
  footer .container {
    padding: 0 30px;
  }
  .hero {
    padding: 0;
  }
  .hero .container {
    padding: 0 30px;
    padding-top: 60px;
  }
  .hero .container .content {
    padding: 30px 30px;
  }
  .hero .container .content .title,
  .hero .container .content .description,
  .hero .container .content .social {
    text-align: center;
    color: #ffffff;
    text-transform: capitalize;
  }
  .hero .container .content .title {
    white-space: pre-line;
    font-size: 34px;
    line-height: 93%;
    text-align: center;
  }
  .hero .container .content .description {
    font-family: "Gupter";
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 92%;
    margin: 20px 0 20px;
    text-transform: unset;
  }
  .hero .container .content .social {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 20px;
  }
  .hero .container .content a.goFood {
    background-color: #fff;
    color: var(--color);
    font-family: "Gupter";
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 21px;
    padding: 16px;
  }
  .block {
    background-color: var(--color);
    height: 60px;
  }
  .promo {
    background-color: var(--color2);
  }
  .promo .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .promo .container .left {
    order: 1;
    flex: 0 0 100%;
  }
  .promo .container .left img {
    width: 100%;
  }
  .promo .container .right {
    display: flex;
    flex-direction: column;
    row-gap: 15px;
  }
  .promo .container .right h2 {
    text-align: center;
    font-size: 32px;
    line-height: 93%;
    text-transform: capitalize;
    color: #000000;
  }
  .promo .container .right p {
    font-family: "Gupter";
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 21px;
    color: #000000;
  }
  .promo .container .right .sl {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
  }
  .promo .container .right .sl .schedule,
  .promo .container .right .sl .location {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    justify-content: center;
    align-items: center;
    flex: 0 0 100%;
    background-color: var(--color);
    color: #fff;
    border-radius: 10px;
    height: 160px;
    padding: 0 4px;
    font-family: "Gupter";
    font-style: normal;
    font-weight: 400;
    font-size: 17px;
    line-height: 19px;
    text-align: center;
  }
  .promo .container .right .sl .schedule svg,
  .promo .container .right .sl .location svg {
    width: 48px;
  }
  .foods,
  .drinks {
    background-color: var(--color);
  }
  .foods .container .top,
  .drinks .container .top {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    align-items: center;
  }
  .foods .container .top h2,
  .drinks .container .top h2 {
    text-align: center;
    font-size: 22px;
    line-height: 93%;
    text-transform: capitalize;
    color: #ffffff;
  }
  .foods .container .bottom,
  .drinks .container .bottom {
    margin-top: 40px;
  }
  .foods .container .bottom .items .item,
  .drinks .container .bottom .items .item {
    position: relative;
    height: 400px;
    width: 220px;
  }
  .foods .container .bottom .items .item img,
  .drinks .container .bottom .items .item img {
    border-radius: 50%;
    width: 220px;
    height: 220px;
    z-index: 2;
    position: relative;
  }
  .foods .container .bottom .items .item .details,
  .drinks .container .bottom .items .item .details {
    position: absolute;
    top: 10px;
    left: 0;
    box-sizing: border-box;
    border: 1px solid #ffffff;
    border-top: 0;
    border-radius: 0px 0px 20px 20px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    height: 180px;
    width: 220px;
    padding: 30px 10px;
    margin-top: 120px;
    z-index: 1;
  }
  .foods .container .bottom .items .item .details .name,
  .drinks .container .bottom .items .item .details .name {
    font-family: "Gupter";
    font-style: normal;
    font-weight: 400;
    font-size: 22px;
    line-height: 24px;
    text-align: center;
    text-transform: capitalize;
    color: #ffffff;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
  }
  .foods .container .bottom .items .item .details .price,
  .drinks .container .bottom .items .item .details .price {
    position: absolute;
    bottom: -19px;
    left: 50%;
    transform: translateX(-50%);
    font-family: "Gupter";
    font-weight: 700;
    font-size: 16px;
    line-height: 18px;
    color: #0200ea;
    padding: 10px 20px;
    background-color: #fff;
    border-radius: 10px;
  }
  .drinks {
    background-color: var(--color2);
  }
  .drinks .top h2 {
    color: #000 !important;
  }
  .drinks .top .next,
  .drinks .top .prev {
    background: var(--color);
  }
  .drinks .bottom .items .item .details {
    border: 1px solid #000 !important;
  }
  .drinks .bottom .items .item .details .name {
    color: #000 !important;
  }
  .drinks .bottom .items .item .details .price {
    color: #fff !important;
    background-color: var(--color) !important;
  }
  .find-us {
    background-image: url("assets/general-bg.png");
    mix-blend-mode: plus-lighter;
    background-size: cover;
  }
  .find-us .container {
    padding: 0 30px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
  .find-us .container h2 {
    flex: 0 0 100%;
    text-align: center;
    font-size: 32px;
    line-height: 93%;
    text-transform: capitalize;
    color: #ffffff;
  }
  .find-us .container .fsl {
    margin: 20px 0;
    flex: 0 0 100%;
    flex-direction: row;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  .find-us .container .fsl .schedule,
  .find-us .container .fsl .location {
    display: inline-flex;
    align-items: center;
    flex: 0 0 100%;
    padding: 20px;
    border-radius: 10px;
    background-color: var(--color2);
    color: #000;
    flex-direction: row;
    gap: 10px;
    font-weight: 300;
    font-family: "Gupter";
    font-size: 20px;
    line-height: 23px;
    text-transform: capitalize;
  }
  .find-us .container .fsl .schedule svg,
  .find-us .container .fsl .location svg {
    flex: 0 0 64px;
  }
  .find-us .container iframe {
    width: 100%;
    height: 320px;
    border-radius: 10px;
  }
  .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: center;
    row-gap: 10px;
    flex-basis: 100%;
    flex-grow: 1;
  }
  .contact-us .container .contact-form input {
    width: 100%;
    background-color: var(--color2);
    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(--color);
    max-width: 100%;
    width: 100%;
    height: 100px;
    max-height: 100px;
    outline: none;
    border: none;
  }
  .seo {
    background-color: var(--color2);
  }
  .seo .container {
    color: #000;
  }
  .seo .container h2 {
    font-size: 34px;
    line-height: 40px;
    font-feature-settings: "kern" off;
    margin-bottom: 20px;
  }
  .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;
    flex-wrap: wrap;
    -moz-column-gap: 30px;
         column-gap: 30px;
  }
  footer .container .logo > a > img {
    width: 179px;
  }
  footer .container .details {
    order: 2;
    max-width: 100%;
    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(--color);
    font-style: normal;
    font-weight: 300;
    font-size: 16px;
    color: #fff;
    padding: 12px 0;
  }
}/*# sourceMappingURL=style.css.map */