:root {
  --color: #d43233;
  --color2: #ade0ff;
  --color3: #ebebeb;
  --regular: 400;
  --semibold: 600;
  --bold: 700;
}

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

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

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

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

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

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

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

.active {
  display: flex !important;
}

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

.pos-r {
  position: relative;
}

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

.items {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 20px;
}
.items .item {
  flex: 0 0 calc(20% - 16px);
  display: flex;
  flex-direction: row;
}
.items .item:hover .details, .items .item:focus .details {
  opacity: 1;
}
.items .item img {
  width: 100%;
  height: 100%;
  max-height: 220px;
  border-radius: 10px;
}
.items .item .details {
  opacity: 0;
  position: absolute;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 10px;
  row-gap: 10px;
  background: rgba(212, 50, 51, 0.8);
  border-radius: 10px;
  height: 60px;
  transition: opacity 0.5s ease-in;
}
.items .item .details .price {
  top: -33px;
  position: absolute;
  background-color: var(--color2);
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  color: #000000;
  border-radius: 10px;
  padding: 2px 6px;
}
.items .item .details .name {
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  text-align: center;
  text-transform: capitalize;
  color: #ffffff;
}

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

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

.top-section {
  background: url("assets/hero.webp") no-repeat, var(--color2);
  background-position: top right;
}

nav {
  position: relative;
  margin: 0 130px;
}
nav .container {
  background: #fff;
  border-radius: 0px 0px 20px 20px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: space-between;
  height: 120px;
}
nav .container .logo {
  margin-left: 0;
  justify-self: flex-end;
}
nav .container .logo img {
  width: 100px;
  height: 109px;
}
nav .container ul.links {
  display: flex;
  flex-direction: row;
  align-items: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
}
nav .container ul.links li a {
  display: inline-flex;
  align-items: center;
  padding: 10px 12px;
}
nav .container ul.links li a:not(.goFood):not(.tel) {
  color: #000;
  font-size: 18px;
  line-height: 18px;
  font-weight: var(--regular);
}
nav .container ul.links li a:not(.goFood):not(.tel).active {
  color: var(--color);
}

.hero .container {
  display: flex;
  width: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0 20px;
  row-gap: 30px;
  margin-bottom: 180px;
}
.hero .container .greet,
.hero .container .title,
.hero .container .social {
  width: 50%;
}
.hero .container .greet {
  font-size: 24px;
  line-height: 29px;
  color: #000000;
  text-decoration: underline;
}
.hero .container .title {
  white-space: pre-line;
  font-style: normal;
  font-weight: 700;
  font-size: 80px;
  line-height: 105%;
  text-transform: capitalize;
  font-feature-settings: "kern" off;
  color: #000000;
}
.hero .container p {
  width: 50%;
  font-size: 18px;
  line-height: 22px;
  color: #000000;
}
.hero .container .social {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.hero .container .social a.goFood {
  padding: 0 14px;
  line-height: 46px;
  font-weight: 500;
}

.foods {
  background-color: var(--color3);
  padding: 10px 130px 80px;
}
.foods .container {
  background-color: #fff;
  margin-top: -160px;
  border-radius: 20px;
  padding: 50px;
}
.foods .container .top {
  display: flex;
  justify-content: space-between;
}
.foods .container .top svg {
  background-color: #fff;
  z-index: 1;
}
.foods .container .top .divider {
  position: absolute;
  width: 100%;
  border-bottom: 2px dashed #000;
  top: 50%;
  transform: translate(0, -50%);
  z-index: 0;
}
.foods .container .top .menuList {
  background-color: #fff;
  z-index: 1;
  padding: 0 8px;
}
.foods .container .top .menuList button {
  font-size: 20px;
  padding: 10px 16px;
  background: var(--color);
  border-radius: 10px;
  opacity: 0.3;
  transition: opacity 0.5s ease-in-out;
  color: #fff;
  border: none;
  outline: none;
}
.foods .container .top .menuList button.mactive {
  opacity: 1;
}
.foods .container .bottom {
  flex: 0 0 100%;
  margin-top: 60px;
}
.foods .container .bottom #makanan,
.foods .container .bottom #minuman {
  flex-direction: column;
}

.about-us {
  background: var(--color2);
}
.about-us .container {
  display: flex;
  flex-direction: row;
  gap: 40px;
}
.about-us .container .left,
.about-us .container .right {
  display: flex;
  flex-direction: row;
  flex: 0 0 calc(50% - 20px);
}
.about-us .container .left {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 20px;
  align-items: flex-start;
  justify-content: space-between;
}
.about-us .container .left h2 {
  text-align: left;
  white-space: pre-line;
  font-weight: 700;
  font-size: 60px;
  line-height: 73px;
  text-transform: capitalize;
  font-feature-settings: "kern" off;
  color: #000000;
}
.about-us .container .left p {
  font-size: 18px;
  line-height: 22px;
  color: #000000;
}
.about-us .container .left .blocks {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}
.about-us .container .left .blocks p {
  flex: 0 0 calc(50% - 10px);
  padding: 20px 5px;
  border-radius: 10px;
  background-color: #fff;
  font-weight: 500;
  font-size: 24px;
  line-height: 33px;
  text-align: center;
  color: #000000;
}
.about-us .container .right {
  display: inline-flex;
  gap: 20px;
}

.contact-us {
  background-color: var(--color3);
}
.contact-us .container {
  padding: 0 230px;
}
.contact-us .container h2 {
  font-weight: 700;
  font-size: 80px;
  line-height: 112%;
  text-align: center;
  text-transform: capitalize;
  color: #000000;
  margin-bottom: 20px;
}
.contact-us .container .location {
  border-radius: 10px;
  text-align: left;
  font-size: 24px;
  line-height: 29px;
  text-transform: capitalize;
  color: #ffffff;
  background-color: var(--color);
  padding: 16px 20px;
  display: inline-flex;
  align-items: center;
  margin-bottom: 20px;
}
.contact-us .container .content {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
  border-left: none;
}
.contact-us .container .content .contact-form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  row-gap: 20px;
  flex-basis: calc(50% - 15px);
  flex-grow: 0;
}
.contact-us .container .content .contact-form input {
  width: 100%;
  background: #ffffff;
  box-shadow: 0px 4px 44px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  height: 80px;
  border: none;
  outline: none;
  padding: 4px 20px;
}
.contact-us .container .content .contact-form input::-moz-placeholder {
  text-align: left;
  color: #a0a0a0;
}
.contact-us .container .content .contact-form input::placeholder {
  text-align: left;
  color: #a0a0a0;
}
.contact-us .container .content .contact-form button {
  text-align: left;
  text-transform: capitalize;
  font-weight: 500;
  padding: 0 30px;
  border-radius: 10px;
  width: 100%;
  background-color: var(--color);
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  height: 80px;
  outline: none;
  border: none;
}
.contact-us .container .content .map {
  flex-basis: calc(50% - 15px);
}
.contact-us .container .content .map iframe {
  border-radius: 10px;
  width: 100%;
  height: 380px;
}

.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: 180px;
}
footer .container .details {
  max-width: calc(100% - 180px);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  text-transform: capitalize;
  color: #000;
}
footer .container .footer-social {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
}
footer .container .footer-social a {
  line-height: 14px;
}

.copyright {
  text-align: center;
  background-color: var(--color3);
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: 19px;
  color: #000;
  padding: 6px 0;
}

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);
}

@media screen and (max-width: 1524px) {
  .about-us .container .right {
    display: none;
  }
}
@media screen and (max-width: 1024px) {
  .hamburger {
    display: none;
    margin: auto 0;
  }
  .items {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 10px;
  }
  .items .item {
    flex: 0 0 calc(20% - 8px);
    display: flex;
    flex-direction: row;
  }
  .items .item:hover .details, .items .item:focus .details {
    opacity: 1;
  }
  .items .item img {
    width: 100%;
    height: 100%;
    height: 180px;
    border-radius: 10px;
  }
  .items .item .details .price {
    top: -33px;
    font-weight: 500;
    font-size: 16px;
    line-height: 16px;
  }
  .items .item .details .name {
    font-weight: 500;
    font-size: 18px;
    line-height: 20px;
  }
  .all-items {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    gap: 15px;
    margin-top: 20px;
  }
  .all-items .item {
    flex: 0 0 calc(50% - 8px);
    padding: 16px;
    border-radius: 10px;
    background-color: #ade0ff;
    display: inline-flex;
    align-items: center;
    flex-direction: row;
    font-weight: 400;
    font-size: 18px;
    line-height: 18px;
    text-transform: capitalize;
    color: #000;
  }
  .all-items .item .divider {
    height: 0px;
    border-bottom: 1px solid #000;
    flex: 1 0 auto;
    margin: 0 10px;
  }
  .hero,
  .foods,
  .about-us,
  .contact-us,
  .seo,
  footer {
    padding: 60px 0;
  }
  .hero .container,
  .foods .container,
  .about-us .container,
  .contact-us .container,
  .seo .container,
  footer .container {
    padding: 0 60px;
  }
  .top-section {
    background-size: 50% 100%;
  }
  nav {
    position: relative;
    margin: 0 60px;
  }
  nav .container {
    margin: 0px 60px;
  }
  .hero .container {
    row-gap: 20px;
    margin: unset;
    margin-bottom: 120px;
  }
  .hero .container .greet {
    font-size: 22px;
    line-height: 24px;
  }
  .hero .container .title {
    font-weight: 700;
    font-size: 64px;
    line-height: 105%;
  }
  .hero .container p {
    font-size: 18px;
    line-height: 20px;
    color: #000000;
  }
  .hero .container .social {
    display: inline-flex;
    align-items: center;
    gap: 10px;
  }
  .hero .container .social a.goFood {
    padding: 0 14px;
    line-height: 46px;
    font-weight: 500;
  }
  .foods {
    background-color: var(--color3);
    padding: 10px 60px 60px;
  }
  .foods .container {
    background-color: #fff;
    margin-top: -110px;
    border-radius: 20px;
    padding: 30px;
  }
  .foods .container .top .menuList {
    background-color: #fff;
    z-index: 1;
    padding: 0 8px;
  }
  .foods .container .top .menuList button {
    font-size: 18px;
    padding: 8px 16px;
  }
  .foods .container .bottom {
    margin-top: 30px;
  }
  .about-us .container {
    gap: 20px;
  }
  .about-us .container .left,
  .about-us .container .right {
    display: flex;
    flex-direction: row;
    flex: 0 0 calc(50% - 10px);
  }
  .about-us .container .left {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 20px;
    align-items: flex-start;
    justify-content: space-between;
  }
  .about-us .container .left h2 {
    text-align: left;
    white-space: pre-line;
    font-weight: 700;
    font-size: 50px;
    line-height: 52px;
    text-transform: capitalize;
    font-feature-settings: "kern" off;
    color: #000000;
  }
  .about-us .container .left p {
    font-size: 16px;
    line-height: 18px;
    color: #000000;
  }
  .about-us .container .left .blocks {
    gap: 20px;
  }
  .about-us .container .left .blocks p {
    font-size: 20px;
    line-height: 26px;
  }
  .about-us .container .right {
    display: inline-flex;
    gap: 20px;
  }
  .about-us .container .right img {
    width: calc(50% - 10px);
  }
  .contact-us .container {
    padding: 0 130px;
  }
  .contact-us .container h2 {
    font-weight: 700;
    font-size: 60px;
    line-height: 112%;
    text-align: center;
    text-transform: capitalize;
    color: #000000;
    margin-bottom: 20px;
  }
  .contact-us .container .location {
    border-radius: 10px;
    text-align: left;
    font-size: 22px;
    line-height: 24px;
    text-transform: capitalize;
    color: #ffffff;
    background-color: var(--color);
    padding: 16px 20px;
    display: inline-flex;
    align-items: center;
    margin-bottom: 20px;
  }
  .contact-us .container .content {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
    border-left: none;
  }
  .contact-us .container .content .contact-form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 20px;
    flex-basis: calc(45% - 15px);
    flex-grow: 0;
  }
  .contact-us .container .content .contact-form input {
    box-shadow: 0px 4px 44px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    height: 66px;
    border: none;
    outline: none;
    padding: 4px 20px;
  }
  .contact-us .container .content .contact-form input::-moz-placeholder {
    text-align: left;
    color: #a0a0a0;
  }
  .contact-us .container .content .contact-form input::placeholder {
    text-align: left;
    color: #a0a0a0;
  }
  .contact-us .container .content .contact-form button {
    text-transform: capitalize;
    font-weight: 500;
    padding: 0 30px;
    border-radius: 10px;
    width: 100%;
    font-size: 20px;
    font-weight: 600;
    height: 66px;
  }
  .contact-us .container .content .map {
    flex-basis: calc(55% - 15px);
  }
  .contact-us .container .content .map iframe {
    border-radius: 10px;
    width: 100%;
    height: 320px;
  }
  .seo .container h2 {
    font-size: 52px;
    line-height: 54px;
  }
  .seo .container p {
    font-size: 16px;
    line-height: 18px;
    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: 167px;
  }
  footer .container .details {
    max-width: calc(100% - 167px);
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    text-transform: capitalize;
    color: #000;
  }
  footer .container .footer-social {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
  }
  footer .container .footer-social a {
    line-height: 14px;
  }
  .copyright {
    text-align: center;
    background-color: var(--color3);
    font-style: normal;
    font-weight: 300;
    font-size: 16px;
    line-height: 19px;
    color: #000;
    padding: 6px 0;
  }
}
@media screen and (max-width: 991px) {
  .hamburger {
    display: none;
    margin: auto 0;
  }
  .items {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 10px;
  }
  .items .item {
    flex: 0 0 calc(33% - 8px);
    display: flex;
    flex-direction: row;
  }
  .items .item:hover .details, .items .item:focus .details {
    opacity: 1;
  }
  .items .item img {
    width: 100%;
    height: 100%;
    height: 200px;
    border-radius: 10px;
  }
  .items .item .details .price {
    top: -33px;
    font-weight: 400;
    font-size: 16px;
    line-height: 16px;
  }
  .items .item .details .name {
    font-weight: 400;
    font-size: 16px;
    line-height: 18px;
  }
  .all-items {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    gap: 15px;
    margin-top: 20px;
  }
  .all-items .item {
    flex: 0 0 100%;
    padding: 16px;
    border-radius: 10px;
    background-color: #ade0ff;
    display: inline-flex;
    align-items: center;
    flex-direction: row;
    font-weight: 400;
    font-size: 18px;
    line-height: 18px;
    text-transform: capitalize;
    color: #000;
  }
  .all-items .item .divider {
    height: 0px;
    border-bottom: 1px solid #000;
    flex: 1 0 auto;
    margin: 0 10px;
  }
  .hero,
  .foods,
  .about-us,
  .contact-us,
  .seo,
  footer {
    padding: 30px 0;
  }
  .hero .container,
  .foods .container,
  .about-us .container,
  .contact-us .container,
  .seo .container,
  footer .container {
    padding: 0 30px;
  }
  .top-section {
    background-size: 45% 100%;
    z-index: 2;
  }
  nav {
    position: relative;
    margin: 0 30px;
  }
  nav .container {
    margin: 0px 30px;
  }
  .hero .container {
    row-gap: 20px;
    margin: unset;
    margin-bottom: 120px;
  }
  .hero .container .greet {
    font-size: 20px;
    line-height: 20px;
  }
  .hero .container .title {
    font-weight: 700;
    font-size: 52px;
    line-height: 105%;
  }
  .hero .container p {
    font-size: 16px;
    line-height: 18px;
  }
  .hero .container .social a.goFood {
    padding: 0 18px;
    line-height: 46px;
    font-weight: 500;
  }
  .foods {
    background-color: var(--color3);
    padding: 10px 30px 30px;
  }
  .foods .container {
    background-color: #fff;
    margin-top: -110px;
    border-radius: 20px;
    padding: 30px;
  }
  .foods .container .top .menuList {
    background-color: #fff;
    z-index: 1;
    padding: 0 8px;
  }
  .foods .container .top .menuList button {
    font-size: 18px;
    padding: 8px 16px;
  }
  .foods .container .bottom {
    margin-top: 30px;
  }
  .about-us .container {
    gap: 20px;
  }
  .about-us .container .left,
  .about-us .container .right {
    display: flex;
    flex-direction: row;
    flex: 0 0 calc(50% - 10px);
  }
  .about-us .container .left {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 20px;
    align-items: flex-start;
    justify-content: space-between;
  }
  .about-us .container .left h2 {
    font-weight: 600;
    font-size: 42px;
    line-height: 48px;
    text-transform: capitalize;
    font-feature-settings: "kern" off;
    color: #000000;
  }
  .about-us .container .left p {
    font-size: 16px;
    line-height: 18px;
    color: #000000;
  }
  .about-us .container .left .blocks {
    gap: 20px;
  }
  .about-us .container .left .blocks p {
    font-size: 16px;
    line-height: 20px;
  }
  .about-us .container .right {
    display: inline-flex;
    gap: 10px;
  }
  .about-us .container .right img {
    width: calc(50% - 5px);
  }
  .contact-us .container {
    padding: 0 30px;
  }
  .contact-us .container h2 {
    font-weight: 700;
    font-size: 60px;
    line-height: 112%;
    text-align: center;
    text-transform: capitalize;
    color: #000000;
    margin-bottom: 20px;
  }
  .contact-us .container .location {
    border-radius: 10px;
    text-align: left;
    font-size: 22px;
    line-height: 24px;
    text-transform: capitalize;
    color: #ffffff;
    background-color: var(--color);
    padding: 16px 20px;
    display: inline-flex;
    align-items: center;
    margin-bottom: 20px;
  }
  .contact-us .container .content {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
    border-left: none;
  }
  .contact-us .container .content .contact-form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 20px;
    flex-basis: calc(45% - 15px);
    flex-grow: 0;
  }
  .contact-us .container .content .contact-form input {
    box-shadow: 0px 4px 44px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    height: 66px;
    border: none;
    outline: none;
    padding: 4px 20px;
  }
  .contact-us .container .content .contact-form input::-moz-placeholder {
    text-align: left;
    color: #a0a0a0;
  }
  .contact-us .container .content .contact-form input::placeholder {
    text-align: left;
    color: #a0a0a0;
  }
  .contact-us .container .content .contact-form button {
    text-transform: capitalize;
    font-weight: 500;
    padding: 0 30px;
    border-radius: 10px;
    width: 100%;
    font-size: 20px;
    font-weight: 600;
    height: 66px;
  }
  .contact-us .container .content .map {
    flex-basis: calc(55% - 15px);
  }
  .contact-us .container .content .map iframe {
    border-radius: 10px;
    width: 100%;
    height: 320px;
  }
  .seo .container h2 {
    font-size: 52px;
    line-height: 54px;
  }
  .seo .container p {
    font-size: 16px;
    line-height: 18px;
    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: 167px;
  }
  footer .container .details {
    max-width: calc(100% - 167px);
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    text-transform: capitalize;
    color: #000;
  }
  footer .container .footer-social {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
  }
  footer .container .footer-social a {
    line-height: 14px;
  }
  .copyright {
    text-align: center;
    background-color: var(--color3);
    font-style: normal;
    font-weight: 300;
    font-size: 16px;
    line-height: 19px;
    color: #000;
    padding: 6px 0;
  }
}
@media screen and (max-width: 767px) {
  .hamburger {
    display: block;
    margin: auto 0;
  }
  .items {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 10px;
  }
  .items .item {
    flex: 0 0 calc(33% - 8px);
    display: flex;
    flex-direction: row;
  }
  .items .item:hover .details, .items .item:focus .details {
    opacity: 1;
  }
  .items .item img {
    width: 100%;
    height: 100%;
    height: 160px;
    border-radius: 10px;
  }
  .items .item .details {
    height: 50px;
  }
  .items .item .details .price {
    top: -30px;
    font-weight: 300;
    font-size: 16px;
    line-height: 16px;
  }
  .items .item .details .name {
    font-weight: 400;
    font-size: 16px;
    line-height: 18px;
  }
  .all-items {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    gap: 10px;
    margin-top: 10px;
  }
  .all-items .item {
    flex: 0 0 100%;
    padding: 16px;
    border-radius: 10px;
    background-color: #ade0ff;
    display: inline-flex;
    align-items: center;
    flex-direction: row;
    font-weight: 400;
    font-size: 18px;
    line-height: 18px;
    text-transform: capitalize;
    color: #000;
  }
  .all-items .item .divider {
    height: 0px;
    border-bottom: 1px solid #000;
    flex: 1 0 auto;
    margin: 0 10px;
  }
  .hero,
  .foods,
  .about-us,
  .contact-us,
  .seo,
  footer {
    padding: 30px 0;
  }
  .hero .container,
  .foods .container,
  .about-us .container,
  .contact-us .container,
  .seo .container,
  footer .container {
    padding: 0 30px;
  }
  .top-section {
    background-size: 42% 100%;
    z-index: 2;
  }
  nav {
    position: relative;
  }
  nav .container {
    border-radius: 0px 0px 10px 10px;
    margin: 0px 30px;
    padding: 0 30px;
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
    height: 90px;
  }
  nav .container .logo {
    margin-left: 0;
    justify-self: flex-end;
  }
  nav .container .logo img {
    width: 60px;
    height: 60px;
  }
  nav .container ul.links {
    display: none;
    flex-direction: column;
    align-items: center;
    row-gap: 10px;
    width: calc(100% - 60px);
    position: absolute;
    top: 76px;
    z-index: 99;
    background-color: #fff;
    border-radius: 0px 0px 10px 10px;
    left: 30px;
    padding: 10px 0;
  }
  nav .container ul.links li a {
    display: inline-flex;
    align-items: center;
    padding: 10px 12px;
  }
  nav .container ul.links li a:not(.goFood):not(.tel) {
    color: #000;
    font-size: 18px;
    line-height: 18px;
    font-weight: var(--regular);
  }
  nav .container ul.links li a:not(.goFood):not(.tel).active {
    color: var(--color);
  }
  .hero .container {
    row-gap: 10px;
    margin: unset;
    margin-bottom: 90px;
  }
  .hero .container .greet,
  .hero .container .title,
  .hero .container .social {
    width: 60%;
  }
  .hero .container .greet {
    font-size: 17px;
    line-height: 17px;
  }
  .hero .container .title {
    font-weight: 700;
    font-size: 48px;
    line-height: 105%;
  }
  .hero .container p {
    font-size: 16px;
    line-height: 17px;
  }
  .hero .container .social a.goFood {
    padding: 0 18px;
    line-height: 46px;
    font-weight: 700;
  }
  .foods {
    background-color: var(--color3);
    padding: 10px 30px 30px;
  }
  .foods .container {
    background-color: #fff;
    margin-top: -100px;
    border-radius: 20px;
    padding: 30px;
  }
  .foods .container .top .menuList {
    background-color: #fff;
    z-index: 1;
    padding: 0 8px;
  }
  .foods .container .top .menuList button {
    font-size: 16px;
    font-weight: 600;
    padding: 8px 16px;
  }
  .foods .container .bottom {
    margin-top: 30px;
  }
  .about-us .container {
    gap: 8px;
  }
  .about-us .container .left,
  .about-us .container .right {
    display: flex;
    flex-direction: row;
    flex: 0 0 calc(50% - 4px);
  }
  .about-us .container .left {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 10px;
    align-items: flex-start;
    justify-content: space-between;
  }
  .about-us .container .left h2 {
    font-weight: 700;
    font-size: 30px;
    line-height: 32px;
    text-transform: capitalize;
    font-feature-settings: "kern" off;
    color: #000000;
  }
  .about-us .container .left p {
    font-size: 16px;
    line-height: 16px;
    font-weight: 300;
    color: #000000;
  }
  .about-us .container .left .blocks {
    gap: 5px;
  }
  .about-us .container .left .blocks p {
    font-size: 16px;
    line-height: 20px;
    font-weight: 300;
  }
  .about-us .container .right {
    display: inline-flex;
    gap: 10px;
  }
  .about-us .container .right img {
    width: calc(50% - 5px);
  }
  .contact-us .container {
    padding: 0 30px;
  }
  .contact-us .container h2 {
    font-weight: 700;
    font-size: 36px;
    line-height: 112%;
  }
  .contact-us .container .location {
    border-radius: 10px;
    text-align: left;
    font-size: 18px;
    line-height: 20px;
    text-transform: capitalize;
    color: #ffffff;
    background-color: var(--color);
    padding: 12px 10px;
    display: inline-flex;
    align-items: center;
    margin-bottom: 20px;
  }
  .contact-us .container .content {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
    border-left: none;
  }
  .contact-us .container .content .contact-form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 20px;
    flex-basis: 100%;
    flex-grow: 0;
  }
  .contact-us .container .content .contact-form input {
    box-shadow: 0px 4px 44px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    height: 66px;
    border: none;
    outline: none;
    padding: 4px 20px;
  }
  .contact-us .container .content .contact-form input::-moz-placeholder {
    text-align: left;
    color: #a0a0a0;
  }
  .contact-us .container .content .contact-form input::placeholder {
    text-align: left;
    color: #a0a0a0;
  }
  .contact-us .container .content .contact-form button {
    text-transform: capitalize;
    font-weight: 500;
    padding: 0 30px;
    border-radius: 10px;
    width: 100%;
    font-size: 20px;
    font-weight: 600;
    height: 66px;
  }
  .contact-us .container .content .map {
    flex-basis: 100%;
  }
  .contact-us .container .content .map iframe {
    border-radius: 10px;
    width: 100%;
    height: 380px;
  }
  .seo .container h2 {
    font-size: 32px;
    line-height: 34px;
  }
  .seo .container p {
    font-size: 16px;
    line-height: 16px;
    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;
    gap: 20px;
  }
  footer .container .logo > a > img {
    width: 167px;
  }
  footer .container .details {
    order: 2;
    width: 100%;
    max-width: unset;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    text-transform: capitalize;
    color: #000;
  }
  footer .container .footer-social {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
  }
  footer .container .footer-social a {
    line-height: 14px;
  }
  .copyright {
    text-align: center;
    background-color: var(--color3);
    font-style: normal;
    font-weight: 300;
    font-size: 16px;
    line-height: 19px;
    color: #000;
    padding: 6px 0;
  }
}
@media screen and (max-width: 567px) {
  .hamburger {
    display: block;
    margin: auto 0;
  }
  .items {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 10px;
  }
  .items .item {
    flex: 0 0 calc(50% - 5px);
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .items .item:hover .details, .items .item:focus .details {
    opacity: 1;
  }
  .items .item img {
    width: 100%;
    height: 100%;
    height: 160px;
    border-radius: 10px;
  }
  .items .item .details {
    height: 44px;
    border-radius: 6px;
  }
  .items .item .details .price {
    top: -30px;
    font-weight: 300;
    font-size: 14px;
    line-height: 16px;
    border-radius: 6px;
  }
  .items .item .details .name {
    font-weight: 400;
    font-size: 16px;
    line-height: 16px;
  }
  .all-items {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    gap: 10px;
    margin-top: 10px;
  }
  .all-items .item {
    flex: 0 0 100%;
    padding: 16px;
    border-radius: 10px;
    background-color: #ade0ff;
    display: inline-flex;
    align-items: center;
    flex-direction: row;
    font-weight: 400;
    font-size: 16px;
    line-height: 18px;
    text-transform: capitalize;
    color: #000;
  }
  .all-items .item .divider {
    height: 0px;
    border-bottom: 1px solid #000;
    flex: 1 0 auto;
    min-width: 40px;
    margin: 0 5px;
  }
  .hero,
  .foods,
  .about-us,
  .contact-us,
  .seo,
  footer {
    padding: 30px 0;
  }
  .hero .container,
  .foods .container,
  .about-us .container,
  .contact-us .container,
  .seo .container,
  footer .container {
    padding: 0 30px;
  }
  .top-section {
    background: linear-gradient(rgba(173, 224, 255, 0.6)), url("assets/hero.webp") no-repeat;
    background-size: cover;
  }
  nav {
    position: relative;
  }
  nav .container {
    border-radius: 0px 0px 10px 10px;
    margin: 0px 30px;
    padding: 0 30px;
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
    height: 90px;
  }
  nav .container .logo {
    margin-left: 0;
    justify-self: flex-end;
  }
  nav .container .logo img {
    width: 60px;
    height: 60px;
  }
  nav .container ul.links {
    display: none;
    flex-direction: column;
    align-items: center;
    row-gap: 10px;
    width: calc(100% - 60px);
    position: absolute;
    top: 76px;
    z-index: 99;
    background-color: #fff;
    border-radius: 0px 0px 10px 10px;
    left: 30px;
    padding: 10px 0;
  }
  nav .container ul.links li a {
    display: inline-flex;
    align-items: center;
    padding: 10px 12px;
  }
  nav .container ul.links li a:not(.goFood):not(.tel) {
    color: #000;
    font-size: 18px;
    line-height: 18px;
    font-weight: var(--regular);
  }
  nav .container ul.links li a:not(.goFood):not(.tel).active {
    color: var(--color);
  }
  .hero .container {
    row-gap: 10px;
    margin: unset;
    margin-bottom: 90px;
  }
  .hero .container .greet,
  .hero .container .title,
  .hero .container .social {
    width: 100%;
  }
  .hero .container .greet {
    font-size: 17px;
    line-height: 17px;
  }
  .hero .container .title {
    font-weight: 700;
    font-size: 48px;
    line-height: 105%;
  }
  .hero .container p {
    font-size: 16px;
    line-height: 17px;
    width: 100%;
  }
  .hero .container .social a.goFood {
    padding: 0 18px;
    line-height: 46px;
    font-weight: 700;
  }
  .foods {
    background-color: var(--color3);
    padding: 10px 15px 30px;
  }
  .foods .container {
    background-color: #fff;
    margin-top: -100px;
    border-radius: 20px;
    padding: 20px 10px;
  }
  .foods .container .top {
    justify-content: center;
  }
  .foods .container .top svg {
    display: none;
  }
  .foods .container .top .divider {
    display: none;
  }
  .foods .container .top .menuList {
    background-color: #fff;
    z-index: 1;
    padding: 0 8px;
  }
  .foods .container .top .menuList button {
    font-size: 16px;
    font-weight: 600;
    padding: 8px 16px;
  }
  .foods .container .bottom {
    margin-top: 30px;
  }
  .about-us .container {
    gap: 8px;
    flex-wrap: wrap;
  }
  .about-us .container .left,
  .about-us .container .right {
    display: flex;
    flex-direction: row;
    flex: 0 0 100%;
  }
  .about-us .container .left {
    order: 1;
    gap: 10px;
    align-items: flex-start;
    justify-content: space-between;
  }
  .about-us .container .left h2 {
    font-weight: 700;
    font-size: 30px;
    line-height: 32px;
    text-transform: capitalize;
    font-feature-settings: "kern" off;
    color: #000000;
  }
  .about-us .container .left p {
    font-size: 16px;
    line-height: 16px;
    font-weight: 300;
    color: #000000;
  }
  .about-us .container .left .blocks {
    gap: 5px;
  }
  .about-us .container .left .blocks p {
    flex: 0 0 100%;
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
  }
  .about-us .container .right {
    order: 0;
    display: inline-flex;
    gap: 10px;
  }
  .about-us .container .right img {
    width: calc(50% - 5px);
  }
  .contact-us .container {
    padding: 0 30px;
  }
  .contact-us .container h2 {
    font-weight: 700;
    font-size: 26px;
    line-height: 112%;
  }
  .contact-us .container .location {
    border-radius: 10px;
    text-align: left;
    font-size: 16px;
    line-height: 18px;
    text-transform: capitalize;
    color: #ffffff;
    background-color: var(--color);
    padding: 12px 10px;
    display: inline-flex;
    align-items: center;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
  }
  .contact-us .container .location svg {
    display: block;
  }
  .contact-us .container .content {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
    border-left: none;
  }
  .contact-us .container .content .contact-form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 20px;
    flex-basis: 100%;
    flex-grow: 0;
  }
  .contact-us .container .content .contact-form input {
    box-shadow: 0px 4px 44px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    height: 48px;
    border: none;
    outline: none;
    padding: 4px 20px;
  }
  .contact-us .container .content .contact-form input::-moz-placeholder {
    text-align: left;
    color: #a0a0a0;
  }
  .contact-us .container .content .contact-form input::placeholder {
    text-align: left;
    color: #a0a0a0;
  }
  .contact-us .container .content .contact-form button {
    text-transform: capitalize;
    font-weight: 500;
    padding: 0 30px;
    border-radius: 10px;
    width: 100%;
    font-size: 20px;
    font-weight: 600;
    height: 48px;
  }
  .contact-us .container .content .map {
    flex-basis: 100%;
  }
  .contact-us .container .content .map iframe {
    border-radius: 10px;
    width: 100%;
    height: 380px;
  }
  .seo .container h2 {
    font-size: 26px;
    line-height: 30px;
  }
  .seo .container p {
    font-size: 16px;
    line-height: 16px;
    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;
    gap: 20px;
  }
  footer .container .logo > a > img {
    width: 167px;
  }
  footer .container .details {
    order: 2;
    width: 100%;
    max-width: unset;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    text-transform: capitalize;
    color: #000;
  }
  footer .container .footer-social {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
  }
  footer .container .footer-social a {
    line-height: 14px;
  }
  .copyright {
    text-align: center;
    background-color: var(--color3);
    font-style: normal;
    font-weight: 300;
    font-size: 16px;
    line-height: 19px;
    color: #000;
    padding: 6px 0;
  }
}/*# sourceMappingURL=style.css.map */