:root {
  --color: #331e7b;
  --color2: #777777;
  --regular: 400;
  --semibold: 500;
  --bold: 600;
}

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

button {
  cursor: pointer;
}

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

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

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

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

a.goFood {
  padding: 10px 20px;
  gap: 10px;
  color: var(--color);
  border-radius: 10px;
  font-weight: 700;
  font-size: 20px;
  line-height: 23px;
  text-transform: capitalize;
  background-color: #fff;
}

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

.active {
  display: flex !important;
}

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

.pos-r {
  position: relative;
}

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

.items {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 30px;
}
.items .item {
  flex: 0 0 calc(25% - 24px);
}
.items .item .box {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}
.items .item .box .image {
  box-sizing: border-box;
  border-radius: 20px;
  overflow: hidden;
  height: 160px;
  z-index: 1;
}
.items .item .box .image img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
}
.items .item .box .price {
  position: absolute;
  z-index: 2;
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  text-align: center;
  color: #000000;
  background-color: #fff;
  border-radius: 6px;
  padding: 6px;
  text-transform: uppercase;
  left: 50%;
  transform: translateX(-50%);
  bottom: 20px;
}
.items .item .box .name {
  padding: 5px 30px;
  width: 100%;
  text-align: center;
  background-color: var(--color);
  border-radius: 10px;
  font-weight: 500;
  font-size: 20px;
  line-height: 25px;
  text-align: center;
  text-transform: uppercase;
  color: #ffffff;
  min-height: 64px;
}

.top-section {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0) 100%), url("assets/hero.webp");
  background-repeat: repeat, no-repeat;
  background-size: cover;
}

nav {
  background: transparent;
  position: relative;
}
nav .container {
  padding: 0 130px;
  display: flex;
  align-items: flex-start;
  flex-direction: row;
  justify-content: space-between;
  height: 180px;
}
nav .container .logo {
  margin-left: 0;
  justify-self: flex-end;
}
nav .container .logo img {
  width: 100%;
  height: 180px;
}
nav .container ul.links {
  padding: 30px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  -moz-column-gap: 20px;
       column-gap: 20px;
}
nav .container ul.links li a {
  color: #fff;
  font-size: 20px;
  line-height: 20px;
  padding: 4px 10px;
  font-weight: var(--regular);
}
nav .container ul.links li a.active, nav .container ul.links li a:hover {
  text-decoration: underline;
}
nav .container ul.links li a.goFood {
  color: var(--color);
}

.hero {
  margin-top: 300px;
  background: url("assets/hero2.webp");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  padding: 0;
}
.hero .container {
  padding: 0px 130px;
  margin: 0 auto;
  color: #fff;
  display: flex;
}
.hero .container .content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  padding: 200px 0 80px;
}
.hero .container .content .title {
  max-width: 70%;
  margin-bottom: 30px;
  font-weight: 500;
  font-size: 66px;
  line-height: 82px;
  text-align: center;
  text-transform: capitalize;
  color: #ffffff;
}
.hero .container .content .description {
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  text-align: center;
  text-transform: capitalize;
  color: #ffffff;
}

.our-menu {
  background: #fff;
  padding: 60px 0;
}
.our-menu .container {
  padding: 0 130px;
}
.our-menu .container .content {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.our-menu .container .content .top {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex: 0 0 100%;
  margin-bottom: 30px;
}
.our-menu .container .content .top h2 {
  font-weight: 500;
  font-size: 66px;
  line-height: 82px;
  text-align: center;
  text-transform: capitalize;
  color: var(--color);
}
.our-menu .container .content .top .menuList {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
  -moz-column-gap: 20px;
       column-gap: 20px;
}
.our-menu .container .content .top .menuList button {
  padding: 5px 20px;
  border-radius: 10px;
  background-color: transparent;
  font-weight: 500;
  font-size: 32px;
  line-height: 38px;
  text-transform: capitalize;
  border: 2px solid var(--color);
  color: var(--color);
}
.our-menu .container .content .top .menuList button.mactive {
  color: #fff;
  background-color: var(--color);
}
.our-menu .container .content .bottom {
  flex: 0 0 100%;
}
.our-menu .container .content .bottom #makanan,
.our-menu .container .content .bottom #minuman {
  flex-direction: column;
}

.why {
  background-color: var(--color);
  padding: 60px 0;
}
.why .container {
  padding: 0 130px;
}
.why .container h2 {
  font-weight: 500;
  font-size: 60px;
  line-height: 75px;
  text-align: center;
  text-transform: capitalize;
  color: #ffffff;
  padding-bottom: 10px;
}
.why .container h2:before {
  content: "";
  height: 0;
  width: 200px;
  border-bottom: 2px solid #fff;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
}
.why .container .content {
  margin-top: 40px;
  display: flex;
  -moz-column-gap: 20px;
       column-gap: 20px;
  align-items: center;
  justify-content: space-evenly;
  flex-direction: row;
  width: 100%;
}
.why .container .content .left {
  display: flex;
  flex: 0 0 30%;
  flex-direction: row;
}
.why .container .content .left form {
  flex: 0 0 100%;
}
.why .container .content .left form input {
  background-color: transparent;
  width: 100%;
  padding: 0.8rem;
  border: none;
  margin-bottom: 4px;
  border-bottom: 2px solid #fff;
}
.why .container .content .left form input:focus, .why .container .content .left form input:active {
  outline: none;
}
.why .container .content .left form button {
  margin-top: 40px;
  padding: 5px;
  border: none;
  display: block;
  background-color: #fff;
  color: var(--color);
  width: 100%;
  border-radius: 5px;
  font-weight: 600;
  font-size: 20px;
  line-height: 25px;
  text-transform: capitalize;
}
.why .container .content .left form button:focus, .why .container .content .left form button:active {
  outline: none;
}
.why .container .content img.promo {
  max-width: -moz-fit-content;
  max-width: fit-content;
}
.why .container .content .right {
  display: flex;
  flex: 0 0 60%;
  flex-direction: row;
  -moz-column-gap: 20px;
       column-gap: 20px;
}
.why .container .content .right .content {
  border-radius: 10px;
  padding: 20px;
  row-gap: 20px;
  display: flex;
  flex-direction: column;
  text-align: center;
  color: #000;
  background-color: #fff;
  font-size: 20px;
  font-weight: 400;
}

.thank-you {
  display: flex;
  padding: 0;
  background: url("assets/stir-fried-crispy-pork-with-spring-bean-red-curry-chilli.webp"), url("assets/abstract-blur-coffee-shop-cafe-interior.webp");
  background-repeat: no-repeat;
  background-size: 40% 100%, 100% 100%;
}
.thank-you .container {
  padding: 0 130px;
  display: flex;
  -moz-column-gap: 10px;
       column-gap: 10px;
  align-items: center;
  justify-content: flex-end;
}
.thank-you .container .right {
  padding: 100px 0;
  display: flex;
  flex-direction: column;
  row-gap: 15px;
  flex: 0 0 60%;
}
.thank-you .container .right h2 {
  font-weight: 500;
  font-size: 60px;
  line-height: 66px;
  text-transform: capitalize;
  color: #ffffff;
}
.thank-you .container .right p {
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #ffffff;
  margin-bottom: 40px;
}
.thank-you .container .right a.goFood {
  max-width: -moz-max-content;
  max-width: max-content;
  font-weight: 500;
}

.find-us {
  padding: 60px 0;
  color: #fff;
}
.find-us .container {
  padding: 0 130px;
  margin: 0 auto;
  display: flex;
  -moz-column-gap: 20px;
       column-gap: 20px;
}
.find-us .container .left,
.find-us .container .right {
  flex: 0 0 50%;
  align-items: center;
}
.find-us .container .left {
  border-radius: 32px;
}
.find-us .container .left iframe {
  border-radius: 32px;
}
.find-us .container .right .content {
  border-radius: 32px;
  background: url("assets/1954121_Cute_Christmas_Animals_Background_01_02_by_MissChatz.webp"), #f7dc6f;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: column;
  padding-bottom: 0;
}
.find-us .container .right .content h2 {
  padding: 30px 30px 0 30px;
  font-weight: 700;
  font-size: 40px;
  line-height: 48px;
  color: #564d27;
}
.find-us .container .right .content p {
  padding: 0 30px;
  font-weight: 300;
  font-size: 19px;
  line-height: 120%;
  color: #564d27;
  text-transform: capitalize;
  margin: 20px 0 10px 0;
}
.find-us .container .right .content img {
  max-width: 100%;
  border-radius: 32px;
}

footer {
  background: var(--color);
  box-shadow: 0px -26px 24px rgba(0, 0, 0, 0.05);
  padding: 60px 0;
}
footer .container {
  margin: 0 auto;
  padding: 0 130px;
  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: 80%;
  font-weight: 300;
  font-size: 18px;
  line-height: 22px;
  text-transform: capitalize;
  color: #ffffff;
}
footer .container .footer-social {
  text-align: left;
}
footer .container .footer-social a {
  display: block;
  margin: 20px;
  margin-left: 0;
}

.paras {
  padding: 0 15px 50px;
}
.paras .heading {
  font-size: 40px;
  text-align: center;
}
.paras .desc {
  margin-top: 10px;
  font-size: 18px;
  text-align: justify;
}
.paras .desc a {
  color: var(--color);
}
.paras .desc a:hover {
  text-decoration: underline;
}

@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: center;
    gap: 20px;
  }
  .items .item {
    flex: 0 0 calc(25% - 20px);
  }
  .items .item .box {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
  }
  .items .item .box .image {
    height: 140px;
  }
  .items .item .box .name {
    padding: 5px 15px;
    font-size: 18px;
    line-height: 22px;
    min-height: 76px;
  }
  nav {
    position: relative;
  }
  nav .container {
    padding: 0 90px;
    display: flex;
    align-items: flex-start;
    flex-direction: row;
    justify-content: space-between;
    height: 180px;
  }
  nav .container .logo {
    margin-left: 0;
    justify-self: flex-end;
  }
  nav .container .logo img {
    width: 100%;
    height: 180px;
  }
  nav .container ul.links {
    padding: 30px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    -moz-column-gap: 10px;
         column-gap: 10px;
  }
  .hero {
    margin-top: 100px;
    background: url("assets/hero2.webp");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    padding: 0;
  }
  .hero .container {
    padding: 0px 90px;
    margin: 0 auto;
    color: #fff;
    display: flex;
  }
  .hero .container .content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    padding: 200px 0 80px;
  }
  .hero .container .content .title {
    font-weight: 400;
    font-size: 46px;
    line-height: 56px;
  }
  .hero .container .content .description {
    font-weight: 300;
  }
  .our-menu {
    background: #fff;
    padding: 60px 0;
  }
  .our-menu .container {
    padding: 0 90px;
  }
  .our-menu .container .content {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  .our-menu .container .content .top {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex: 0 0 100%;
    margin-bottom: 30px;
  }
  .our-menu .container .content .top h2 {
    font-size: 60px;
    line-height: 78px;
  }
  .our-menu .container .content .top .menuList {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    -moz-column-gap: 20px;
         column-gap: 20px;
  }
  .our-menu .container .content .top .menuList button {
    padding: 5px 18px;
    font-size: 28px;
    line-height: 28px;
  }
  .why {
    background-color: var(--color);
    padding: 60px 0;
  }
  .why .container {
    padding: 0 90px;
  }
  .why .container .content {
    margin-top: 20px;
    display: flex;
    -moz-column-gap: 20px;
         column-gap: 20px;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    width: 100%;
  }
  .why .container .content .right {
    flex: 0 0 50%;
  }
  .why .container .content .right .content {
    padding: 14px;
    -moz-column-gap: 10px;
         column-gap: 10px;
    font-size: 16px;
    font-weight: 300;
  }
  .thank-you {
    display: flex;
    padding: 0;
    background: url("assets/stir-fried-crispy-pork-with-spring-bean-red-curry-chilli.webp"), url("assets/abstract-blur-coffee-shop-cafe-interior.webp");
    background-repeat: no-repeat;
    background-size: 42% 100%, 100% 100%;
  }
  .thank-you .container {
    padding: 0 90px;
  }
  .thank-you .container .right {
    padding: 70px 0;
  }
  .thank-you .container .right h2 {
    font-weight: 500;
    font-size: 56px;
    line-height: 60px;
  }
  .thank-you .container .right a.goFood {
    max-width: -moz-max-content;
    max-width: max-content;
    font-weight: 500;
  }
  .find-us {
    padding: 60px 0;
    color: #fff;
  }
  .find-us .container {
    padding: 0 90px;
    margin: 0 auto;
    display: flex;
    -moz-column-gap: 20px;
         column-gap: 20px;
  }
  .find-us .container .left,
  .find-us .container .right {
    flex: 0 0 50%;
    align-items: center;
  }
  .find-us .container .left {
    border-radius: 32px;
  }
  .find-us .container .left iframe {
    border-radius: 32px;
  }
  .find-us .container .right .content {
    border-radius: 32px;
    background: url("assets/1954121_Cute_Christmas_Animals_Background_01_02_by_MissChatz.webp"), #f7dc6f;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    padding-bottom: 0;
  }
  .find-us .container .right .content h2 {
    padding: 20px 20px 0 20px;
    font-weight: 600;
    font-size: 40px;
    line-height: 44px;
    color: #564d27;
  }
  .find-us .container .right .content p {
    padding: 0 20px;
    font-weight: 300;
    font-size: 19px;
    line-height: 120%;
    color: #564d27;
    text-transform: capitalize;
    margin: 10px 0 10px 0;
  }
  .find-us .container .right .content img {
    border-radius: 32px;
  }
  footer {
    background: var(--color);
    box-shadow: 0px -26px 24px rgba(0, 0, 0, 0.05);
    padding: 60px 0;
  }
  footer .container {
    margin: 0 auto;
    padding: 0 130px;
    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: 80%;
    font-weight: 300;
    font-size: 18px;
    line-height: 22px;
    text-transform: capitalize;
    color: #ffffff;
  }
  footer .container .footer-social {
    text-align: left;
  }
  footer .container .footer-social a {
    display: block;
    margin: 20px;
    margin-left: 0;
  }
}
@media screen and (max-width: 991px) {
  .hamburger {
    display: block;
    margin: auto 0;
  }
  .items {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
  }
  .items .item {
    flex: 0 0 calc(33.33% - 8px);
  }
  .items .item .box {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
  }
  .items .item .box .name {
    padding: 5px 20px;
    width: 100%;
    text-align: center;
    background-color: var(--color);
    border-radius: 10px;
    font-weight: 400;
    font-size: 18px;
    line-height: 22px;
    text-align: center;
    text-transform: uppercase;
    color: #ffffff;
    min-height: 64px;
  }
  nav {
    position: relative;
  }
  nav .container {
    padding: 0 60px;
    display: flex;
    align-items: flex-start;
    flex-direction: row;
    justify-content: space-between;
    height: 160px;
  }
  nav .container .logo {
    margin-left: 0;
    justify-self: flex-end;
  }
  nav .container .logo img {
    width: 100%;
    height: 160px;
  }
  nav .container ul.links {
    padding: 30px;
    display: none;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    -moz-column-gap: 20px;
         column-gap: 20px;
    position: absolute;
    background-color: rgba(0, 0, 0, 0.85);
    top: 160px;
    right: 0;
    z-index: 99999999;
  }
  nav .container ul.links li {
    display: block;
    width: 100%;
    padding: 8px 0;
  }
  nav .container ul.links li a {
    color: #fff;
    font-size: 20px;
    line-height: 20px;
    padding: 4px 10px;
    font-weight: var(--regular);
  }
  nav .container ul.links li a.active {
    text-decoration: underline;
  }
  nav .container ul.links li a.goFood {
    color: var(--color);
  }
  .hero {
    margin-top: 120px;
    background: url("assets/hero2.webp");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    padding: 0;
  }
  .hero .container {
    padding: 0px 60px;
    margin: 0 auto;
    color: #fff;
    display: flex;
  }
  .hero .container .content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    padding: 240px 0 80px;
  }
  .hero .container .content .title {
    max-width: 75%;
    margin-bottom: 30px;
    font-weight: 400;
    font-size: 40px;
    line-height: 48px;
    text-align: center;
    text-transform: capitalize;
    color: #ffffff;
  }
  .hero .container .content .description {
    font-weight: 300;
    font-size: 16px;
    line-height: 22px;
    text-align: center;
    text-transform: capitalize;
    color: #ffffff;
  }
  .our-menu {
    background: #fff;
    padding: 60px 0;
  }
  .our-menu .container {
    padding: 0 60px;
  }
  .our-menu .container .content {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  .our-menu .container .content .top {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex: 0 0 100%;
    margin-bottom: 30px;
  }
  .our-menu .container .content .top h2 {
    font-weight: 400;
    font-size: 46px;
    line-height: 52px;
    text-align: center;
    text-transform: capitalize;
    color: var(--color);
  }
  .our-menu .container .content .top .menuList {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    -moz-column-gap: 20px;
         column-gap: 20px;
  }
  .our-menu .container .content .top .menuList button {
    padding: 5px 10px;
    border-radius: 10px;
    background-color: transparent;
    font-weight: 500;
    font-size: 26px;
    line-height: 28px;
  }
  .our-menu .container .content .bottom {
    flex: 0 0 100%;
  }
  .our-menu .container .content .bottom #makanan,
  .our-menu .container .content .bottom #minuman {
    flex-direction: column;
  }
  .why {
    background-color: var(--color);
    padding: 60px 0;
  }
  .why .container {
    padding: 0 60px;
  }
  .why .container h2 {
    font-weight: 500;
    font-size: 46px;
    line-height: 54px;
  }
  .why .container .content {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    position: relative;
  }
  .why .container .content .left {
    display: flex;
    flex: 0 0 100%;
    width: 100%;
    flex-direction: row;
  }
  .why .container .content .left form {
    flex: 0 0 100%;
  }
  .why .container .content .left form input {
    background-color: transparent;
    width: 100%;
    padding: 0.8rem;
    border: none;
    margin-bottom: 4px;
    border-bottom: 2px solid #fff;
  }
  .why .container .content .left form input:focus, .why .container .content .left form input:active {
    outline: none;
  }
  .why .container .content .left form button {
    margin-top: 40px;
    padding: 5px;
    border: none;
    display: block;
    background-color: #fff;
    color: var(--color);
    width: 100%;
    border-radius: 5px;
    font-weight: 600;
    font-size: 20px;
    line-height: 25px;
    text-transform: capitalize;
  }
  .why .container .content .left form button:focus, .why .container .content .left form button:active {
    outline: none;
  }
  .why .container .content img.promo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-90deg);
  }
  .why .container .content .right {
    margin-top: 40px;
    display: flex;
    flex: 0 0 50%;
    flex-direction: row;
    -moz-column-gap: 20px;
         column-gap: 20px;
  }
  .why .container .content .right .content {
    border-radius: 10px;
    padding: 20px 10px;
    row-gap: 20px;
    display: flex;
    flex-direction: column;
    text-align: center;
    color: #000;
    background-color: #fff;
  }
  .thank-you {
    padding: 0;
    background: url("assets/abstract-blur-coffee-shop-cafe-interior.webp");
    background-repeat: no-repeat;
    background-position: center center;
  }
  .thank-you .container {
    padding: 0 60px;
    display: flex;
    -moz-column-gap: 20px;
         column-gap: 20px;
    align-items: center;
  }
  .thank-you .container .right {
    flex-direction: column;
    row-gap: 15px;
    flex: 0 0 100%;
  }
  .thank-you .container .right h2 {
    font-weight: 500;
    font-size: 60px;
    line-height: 66px;
    text-transform: capitalize;
    color: #ffffff;
  }
  .thank-you .container .right p {
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    color: #ffffff;
    margin-bottom: 40px;
  }
  .thank-you .container .right a.goFood {
    max-width: -moz-max-content;
    max-width: max-content;
    font-weight: 500;
  }
  .find-us {
    padding: 60px 0;
    color: #fff;
  }
  .find-us .container {
    padding: 0 60px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    row-gap: 20px;
  }
  .find-us .container .left,
  .find-us .container .right {
    flex: 0 0 50%;
    align-items: center;
  }
  .find-us .container .left {
    border-radius: 32px;
  }
  .find-us .container .left iframe {
    border-radius: 32px;
  }
  .find-us .container .right .content {
    border-radius: 32px;
    background: url("assets/1954121_Cute_Christmas_Animals_Background_01_02_by_MissChatz.webp"), #f7dc6f;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    padding-bottom: 0;
  }
  .find-us .container .right .content h2 {
    padding: 30px 30px 0 30px;
    font-weight: 700;
    font-size: 40px;
    line-height: 48px;
    color: #564d27;
  }
  .find-us .container .right .content p {
    padding: 0 30px;
    font-weight: 300;
    font-size: 19px;
    line-height: 120%;
    color: #564d27;
    text-transform: capitalize;
    margin: 20px 0 10px 0;
  }
  .find-us .container .right .content img {
    border-radius: 32px;
  }
  footer .container {
    margin: 0 auto;
    padding: 0 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    -moz-column-gap: 30px;
         column-gap: 30px;
  }
  footer .container .logo > a > img {
    width: 140px;
  }
  footer .container .details {
    max-width: 80%;
    font-weight: 300;
    font-size: 18px;
    line-height: 22px;
    text-transform: capitalize;
    color: #ffffff;
  }
  footer .container .footer-social {
    text-align: left;
  }
  footer .container .footer-social a {
    display: block;
    margin: 20px;
    margin-left: 0;
  }
}
@media screen and (max-width: 767px) {
  .items {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 30px;
  }
  .items .item {
    flex: 0 0 calc(50% - 15px);
  }
  .items .item .box {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
  }
  .items .item .box .image {
    box-sizing: border-box;
    border-radius: 20px;
    overflow: hidden;
    height: 160px;
    z-index: 1;
  }
  .items .item .box .image img {
    width: 100%;
    height: 100%;
    border-radius: 20px;
  }
  .items .item .box .price {
    position: absolute;
    z-index: 2;
    font-weight: 500;
    font-size: 18px;
    line-height: 22px;
    text-align: center;
    color: #000000;
    background-color: #fff;
    border-radius: 6px;
    padding: 6px;
    text-transform: uppercase;
    left: 50%;
    transform: translateX(-50%);
    bottom: 20px;
  }
  .items .item .box .name {
    padding: 5px 30px;
    width: 100%;
    text-align: center;
    background-color: var(--color);
    border-radius: 10px;
    font-weight: 500;
    font-size: 20px;
    line-height: 25px;
    text-align: center;
    text-transform: uppercase;
    color: #ffffff;
    min-height: 64px;
  }
  nav {
    position: relative;
  }
  nav .container {
    padding: 0 30px;
  }
  .hero {
    margin-top: 100px;
    background: url("assets/hero2.webp");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    padding: 0;
  }
  .hero .container {
    padding: 0px 30px;
    margin: 0 auto;
    color: #fff;
    display: flex;
  }
  .hero .container .content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    padding: 200px 0 80px;
  }
  .hero .container .content .title {
    max-width: 70%;
    margin-bottom: 30px;
    font-weight: 500;
    font-size: 36px;
    line-height: 42px;
    text-align: center;
    text-transform: capitalize;
    color: #ffffff;
  }
  .hero .container .content .description {
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    text-align: center;
    text-transform: capitalize;
    color: #ffffff;
  }
  .our-menu {
    padding: 30px 0;
  }
  .our-menu .container {
    padding: 0 30px;
  }
  .our-menu .container .content {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  .our-menu .container .content .top {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex: 0 0 100%;
    margin-bottom: 30px;
  }
  .our-menu .container .content .top h2 {
    font-weight: 400;
    font-size: 36px;
    line-height: 42px;
    text-align: center;
    text-transform: capitalize;
    color: var(--color);
  }
  .our-menu .container .content .top .menuList {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    -moz-column-gap: 20px;
         column-gap: 20px;
  }
  .our-menu .container .content .top .menuList button {
    padding: 5px 10px;
    border-radius: 10px;
    background-color: transparent;
    font-weight: 400;
    font-size: 22px;
    line-height: 28px;
    text-transform: capitalize;
    border: 2px solid var(--color);
    color: var(--color);
  }
  .our-menu .container .content .top .menuList button.mactive {
    color: #fff;
    background-color: var(--color);
  }
  .our-menu .container .content .bottom {
    flex: 0 0 100%;
  }
  .our-menu .container .content .bottom #makanan,
  .our-menu .container .content .bottom #minuman {
    flex-direction: column;
  }
  .why {
    background-color: var(--color);
    padding: 30px 0;
  }
  .why .container {
    padding: 0 30px;
  }
  .why .container h2 {
    font-weight: 500;
    font-size: 36px;
    line-height: 42px;
  }
  .why .container h2:before {
    width: 100px;
  }
  .why .container .content {
    margin-top: 40px;
    display: flex;
    -moz-column-gap: 20px;
         column-gap: 20px;
    align-items: center;
    justify-content: space-evenly;
    flex-direction: column;
    width: 100%;
  }
  .why .container .content .left {
    display: flex;
    flex: 0 0 100%;
    flex-direction: row;
  }
  .why .container .content .left form {
    flex: 0 0 100%;
  }
  .why .container .content .left form input {
    background-color: transparent;
    width: 100%;
    padding: 0.8rem;
    border: none;
    margin-bottom: 4px;
    border-bottom: 2px solid #fff;
  }
  .why .container .content .left form input:focus, .why .container .content .left form input:active {
    outline: none;
  }
  .why .container .content .left form button {
    margin-top: 40px;
    padding: 5px;
    border: none;
    display: block;
    background-color: #fff;
    color: var(--color);
    width: 100%;
    border-radius: 5px;
    font-weight: 600;
    font-size: 20px;
    line-height: 25px;
    text-transform: capitalize;
  }
  .why .container .content .left form button:focus, .why .container .content .left form button:active {
    outline: none;
  }
  .thank-you {
    padding: 30px 0;
    background: url("assets/abstract-blur-coffee-shop-cafe-interior.webp");
    background-repeat: no-repeat;
    background-position: center center;
  }
  .thank-you .container {
    padding: 0 30px;
    display: flex;
    -moz-column-gap: 20px;
         column-gap: 20px;
    align-items: center;
  }
  .thank-you .container .right {
    padding: 0;
    display: inline-flex;
    flex-direction: column;
    row-gap: 15px;
    flex: 0 0 100%;
  }
  .thank-you .container .right h2 {
    font-weight: 400;
    font-size: 36px;
    line-height: 42px;
  }
  .thank-you .container .right p {
    font-weight: 300;
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 10px;
  }
  .thank-you .container .right a.goFood {
    max-width: -moz-max-content;
    max-width: max-content;
    font-weight: 300;
  }
  .find-us {
    padding: 30px 0;
    color: #fff;
  }
  .find-us .container {
    padding: 0 30px;
    margin: 0 auto;
    display: flex;
    -moz-column-gap: 10px;
         column-gap: 10px;
  }
  .find-us .container .left,
  .find-us .container .right {
    flex: 0 0 100%;
    align-items: center;
  }
  .find-us .container .left {
    border-radius: 32px;
  }
  .find-us .container .left iframe {
    border-radius: 32px;
  }
  .find-us .container .right .content {
    border-radius: 32px;
    background: url("assets/1954121_Cute_Christmas_Animals_Background_01_02_by_MissChatz.webp"), #f7dc6f;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    padding-bottom: 0;
  }
  .find-us .container .right .content h2 {
    padding: 20px 20px 0 20px;
    font-weight: 500;
    font-size: 36px;
    line-height: 42px;
  }
  .find-us .container .right .content p {
    padding: 0 20px;
    font-weight: 300;
    font-size: 16px;
    line-height: 120%;
    margin: 20px 0 10px 0;
  }
  footer {
    background: var(--color);
    box-shadow: 0px -26px 24px rgba(0, 0, 0, 0.05);
    padding: 30px 0;
  }
  footer .container {
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    -moz-column-gap: 30px;
         column-gap: 30px;
  }
  footer .container .logo > a > img {
    width: 180px;
  }
  footer .container .details {
    max-width: 100%;
    font-weight: 300;
    font-size: 18px;
    line-height: 22px;
    text-transform: capitalize;
    color: #ffffff;
    margin: 20px 0;
  }
  footer .container .footer-social {
    text-align: left;
  }
  footer .container .footer-social a {
    display: inline-block;
    margin: 0 20px;
  }
}
@media screen and (max-width: 567px) {
  .items {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
  }
  .items .item {
    flex: 0 0 calc(50% - 5px);
  }
  .items .item .box {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
  }
  .items .item .box .image {
    box-sizing: border-box;
    border-radius: 20px;
    overflow: hidden;
    height: 120px;
    z-index: 1;
  }
  .items .item .box .image img {
    width: 100%;
    height: 100%;
    border-radius: 20px;
  }
  .items .item .box .price {
    font-weight: 400;
    font-size: 18px;
    line-height: 22px;
  }
  .items .item .box .name {
    padding: 5px 1px;
    width: 100%;
    text-align: center;
    background-color: var(--color);
    border-radius: 10px;
    font-weight: 300;
    font-size: 16px;
    line-height: 18px;
    text-align: center;
    text-transform: uppercase;
    color: #ffffff;
    min-height: 64px;
  }
  .hero {
    background: unset;
    margin-top: 40px;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    padding: 0;
  }
  .hero .container {
    padding: 0px 30px;
    margin: 0 auto;
    color: #fff;
    display: flex;
  }
  .hero .container .content {
    background-color: rgba(0, 0, 0, 0.75);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    padding: 10px;
  }
  .hero .container .content .title {
    max-width: 100%;
    margin-bottom: 30px;
    font-weight: 400;
    font-size: 28px;
    line-height: 32px;
    text-align: center;
    text-transform: capitalize;
    color: #ffffff;
  }
  .hero .container .content .description {
    font-weight: 300;
    font-size: 16px;
    line-height: 18px;
  }
  .our-menu .container .content {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  .our-menu .container .content .top {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 0 0 100%;
    margin-bottom: 30px;
  }
  .our-menu .container .content .top h2 {
    font-weight: 500;
    font-size: 42px;
    line-height: 52px;
    margin-bottom: 10px;
  }
  .our-menu .container .content .top .menuList {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    -moz-column-gap: 10px;
         column-gap: 10px;
  }
  .our-menu .container .content .top .menuList button {
    padding: 5px 6px;
    font-weight: 400;
    font-size: 26px;
    line-height: 28px;
  }
  .why {
    background-color: var(--color);
    padding: 30px 0;
  }
  .why .container {
    padding: 0 30px;
  }
  .why .container h2 {
    font-weight: 500;
    font-size: 28px;
    line-height: 36px;
    text-align: center;
    text-transform: capitalize;
    color: #ffffff;
    padding-bottom: 10px;
  }
  .why .container h2:before {
    content: "";
    height: 0;
    width: 80px;
    border-bottom: 2px solid #fff;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
  }
  .why .container .content {
    margin-top: 20px;
    display: flex;
    -moz-column-gap: 20px;
         column-gap: 20px;
    align-items: center;
    justify-content: space-evenly;
    flex-direction: column;
    width: 100%;
  }
  .why .container .content .left {
    display: flex;
    flex: 0 0 100%;
    flex-direction: row;
  }
  .why .container .content .left form {
    flex: 0 0 100%;
  }
  .why .container .content .left form input {
    background-color: transparent;
    width: 100%;
    padding: 0.8rem;
    border: none;
    margin-bottom: 4px;
    border-bottom: 2px solid #fff;
  }
  .why .container .content .left form input:focus, .why .container .content .left form input:active {
    outline: none;
  }
  .why .container .content .left form button {
    margin-top: 40px;
    padding: 5px;
    border: none;
    display: block;
    background-color: #fff;
    color: var(--color);
    width: 100%;
    border-radius: 5px;
    font-weight: 600;
    font-size: 20px;
    line-height: 25px;
    text-transform: capitalize;
  }
  .why .container .content .left form button:focus, .why .container .content .left form button:active {
    outline: none;
  }
  .why .container .content img.promo {
    display: none;
  }
  .why .container .content .right {
    display: flex;
    flex: 0 0 100%;
    flex-direction: column;
    -moz-column-gap: 20px;
         column-gap: 20px;
  }
  .why .container .content .right .content {
    border-radius: 10px;
    padding: 20px;
    row-gap: 20px;
    display: flex;
    flex-direction: column;
    text-align: center;
    color: #000;
    background-color: #fff;
  }
  .thank-you {
    padding: 30px 0;
  }
  .thank-you .container {
    padding: 0 30px;
    display: flex;
    -moz-column-gap: 20px;
         column-gap: 20px;
    align-items: center;
  }
  .thank-you .container .right {
    display: inline-flex;
    flex-direction: column;
    row-gap: 15px;
    flex: 0 0 100%;
    padding: 0;
  }
  .thank-you .container .right h2 {
    font-weight: 400;
    font-size: 36px;
    line-height: 36px;
  }
  .thank-you .container .right p {
    font-weight: 300;
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 10px;
  }
  .thank-you .container .right a.goFood {
    max-width: -moz-max-content;
    max-width: max-content;
    font-weight: 400;
    font-size: 16px;
  }
  .find-us {
    padding: 30px 0;
    color: #fff;
  }
  .find-us .container {
    padding: 0 30px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    -moz-column-gap: 0px;
         column-gap: 0px;
  }
  .find-us .container .left,
  .find-us .container .right {
    flex: 0 0 100%;
    align-items: center;
  }
  .find-us .container .left {
    border-radius: 32px;
  }
  .find-us .container .left iframe {
    height: 320px;
  }
  .find-us .container .right .content {
    display: flex;
    flex-direction: column;
    padding-bottom: 0;
  }
  .find-us .container .right .content h2 {
    padding: 10px 10px 0 10px;
    font-weight: 500;
    font-size: 32px;
    line-height: 38px;
  }
  .find-us .container .right .content p {
    padding: 0 10px;
    font-weight: 400;
    font-size: 16px;
    line-height: 120%;
    margin: 20px 0 10px 0;
  }
  footer {
    padding: 30px 0;
  }
  footer .container {
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    -moz-column-gap: 30px;
         column-gap: 30px;
  }
  footer .container .logo > a > img {
    width: 120px;
  }
  footer .container .details {
    max-width: 100%;
    font-size: 16px;
  }
}/*# sourceMappingURL=style.css.map */