:root {
  --color: #000;
  --color2: #fff;
  --regular: 400;
  --semibold: 600;
  --bold: 700;
}

* {
  font-family: "Manrope", sans-serif;
  font-style: normal;
  font-optical-sizing: auto;
  font-weight: 400;
  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 #000;
}

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

a.goFood {
  padding: 6px 16px;
  background: linear-gradient(180deg, #ddbb4b 0%, #685210 100%);
  border-radius: 50px;
  color: #fff;
}

.active {
  display: flex !important;
}

.line {
  margin-bottom: 6px;
  width: 36px;
  height: 2px;
  background: linear-gradient(180deg, #ddbb4b 0%, #685210 100%);
}

.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(25% - 15px);
  display: flex;
  flex-direction: row;
}
.items .item img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}
.items .item .details {
  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: linear-gradient(180deg, #ddbb4b 0%, #685210 100%);
  border-radius: 10px;
  height: 90px;
}
.items .item .details .price {
  font-family: "Philosopher";
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 20px;
  text-transform: capitalize;
  color: #ffffff;
}
.items .item .details .name {
  font-family: "Philosopher";
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 27px;
  text-align: center;
  text-transform: capitalize;
  color: #ffffff;
}

.all-items {
  margin-top: 40px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 30px;
}
.all-items .item {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  flex: 0 0 calc(50% - 15px);
}
.all-items .item .name,
.all-items .item .price {
  font-family: "Philosopher";
  font-style: normal;
  font-weight: 600;
  font-size: 22px;
  line-height: 25px;
  text-transform: capitalize;
  color: #ffffff;
  width: 52%;
}
.all-items .item .price {
  font-size: 18px;
  line-height: 20px;
  width: 20%;
  text-align: right;
}
.all-items .item .separator {
  background-color: #fff;
  height: 2px;
  width: 24%;
}

nav {
  background: #000;
}
nav.sticky {
  position: sticky;
  top: 0;
  width: 100%;
  box-sizing: border-box;
  z-index: 10;
  transition: position 1s ease-in-out;
}
nav.sticky .hamburger {
  margin: 0 20px;
}
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: 100%;
  height: 90px;
}
nav .container ul.links {
  margin-right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  gap: 30px;
}
nav .container ul.links li {
  text-transform: capitalize;
}
nav .container ul.links li a:not(.goFood) {
  color: #fff;
  font-size: 18px;
  line-height: 18px;
  font-weight: var(--regular);
  font-weight: var(--semibold);
}
nav .container ul.links li a:not(.goFood).active, nav .container ul.links li a:not(.goFood):hover {
  background: linear-gradient(180deg, #ddbb4b 0%, #685210 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.hero,
.foods,
.find-us,
.sl,
.contact,
.seo,
footer {
  padding: 60px 0;
}
.hero .container,
.foods .container,
.find-us .container,
.sl .container,
.contact .container,
.seo .container,
footer .container {
  padding: 0 130px;
}

.hero {
  background: 100% 100% url("assets/hero.webp") no-repeat, var(--color);
  background-size: 100% 100%;
}
.hero .container {
  display: flex;
  flex-direction: row;
  -moz-column-gap: 0px;
       column-gap: 0px;
}
.hero .container .left,
.hero .container .right {
  flex: 0 0 40%;
}
.hero .container .left {
  padding: 100px 0;
  flex: 0 0 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero .container .left .greet {
  font-weight: 500;
  font-size: 22px;
  line-height: 30px;
  text-transform: capitalize;
  color: #000000;
  text-decoration: underline;
  text-underline-offset: 8px;
}
.hero .container .left .title {
  font-family: "Philosopher";
  font-style: normal;
  font-weight: 700;
  font-size: 72px;
  line-height: 81px;
  text-transform: capitalize;
  margin: 10px 0;
  color: #000000;
}
.hero .container .left .description {
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  text-transform: capitalize;
  color: #000000;
  margin: 10px 0;
}
.hero .container .left .social {
  position: absolute;
  left: 0;
  bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  -moz-column-gap: 30px;
       column-gap: 30px;
}
.hero .container .left .social a.goFood {
  padding: 10px 20px;
  line-height: 24px;
}

.foods {
  background: #000;
}
.foods .container {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.foods .container .top {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.foods .container .top h2 {
  font-family: "Philosopher";
  font-style: normal;
  font-weight: 700;
  font-size: 72px;
  line-height: 81px;
  text-transform: capitalize;
  background: linear-gradient(180deg, #ddbb4b 0%, #685210 100%), #ffffff;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.foods .container .top .divider {
  position: absolute;
  width: 100%;
  border-bottom: 2px dashed #fff;
  bottom: -10px;
}
.foods .container .top .divider svg {
  position: absolute;
  right: 0px;
  top: -20px;
  background-color: #000;
}
.foods .container .top .menuList {
  display: flex;
  justify-content: space-evenly;
  align-items: flex-end;
  -moz-column-gap: 10px;
       column-gap: 10px;
}
.foods .container .top .menuList button {
  font-size: 20px;
  padding: 6px 16px;
  background: linear-gradient(180deg, #ddbb4b 0%, #685210 100%);
  border-radius: 50px;
  opacity: 0.5;
  transition: opacity 0.5s ease-in-out;
  color: #fff;
}
.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;
}

.find-us {
  background-color: #fff;
  background-size: 100% 100%;
  padding: 100px 0;
}
.find-us .container {
  padding: 0 130px;
}
.find-us .container .content {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
}
.find-us .container .content .left,
.find-us .container .content .right {
  display: flex;
  flex: 0 0 calc(50% - 10px);
}
.find-us .container .content .right {
  flex-direction: column;
  justify-content: space-between;
}
.find-us .container .content .right h2 {
  font-family: "Philosopher";
  font-style: normal;
  font-weight: 700;
  font-size: 72px;
  line-height: 81px;
  text-transform: capitalize;
  background: linear-gradient(180deg, #ddbb4b 0%, #685210 100%), #ffffff;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.find-us .container .content .right p {
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: #000000;
}
.find-us .container .content .right .points {
  display: flex;
  flex-direction: row;
  gap: 20px;
}
.find-us .container .content .right .points > div {
  background: linear-gradient(180deg, #ddbb4b 0%, #685210 100%), #ffb814;
  border-radius: 10px;
  font-family: "Manrope";
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 33px;
  text-align: center;
  color: #ffffff;
  padding: 20px;
}

.sl {
  padding: 90px 0;
  background-color: #000;
}
.sl .container {
  display: flex;
  flex-direction: row;
  gap: 20px;
}
.sl .container > div {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  flex: 0 0 50%;
  padding: 40px;
  background: #ffffff;
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 25px;
  color: #000000;
}

.contact {
  background-color: var(--color2);
}
.contact .container {
  display: flex;
  flex-direction: row;
  gap: 30px;
}
.contact .container .right {
  color: #000;
  flex: 0 0 50%;
  display: flex;
}
.contact .container .left {
  flex: 0 0 50%;
}
.contact .container .left .contact-form {
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  row-gap: 20px;
}
.contact .container .left .contact-form input {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 27px;
  text-align: center;
  color: #000000;
  width: 100%;
  background-color: transparent;
  border-radius: 10px;
  border: 1.5px solid #000;
  color: #000;
  padding: 30px;
  outline: none;
}
.contact .container .left .contact-form input::-moz-placeholder {
  text-align: center;
  color: #000;
  text-transform: capitalize;
}
.contact .container .left .contact-form input::placeholder {
  text-align: center;
  color: #000;
  text-transform: capitalize;
}
.contact .container .left .contact-form button {
  background: linear-gradient(180deg, #ddbb4b 0%, #685210 100%);
  border-radius: 10px;
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  width: 100%;
  padding: 26px;
  line-height: 27px;
  outline: none;
  border: none;
}

.seo {
  background-color: #000;
}
.seo .container h2 {
  font-family: "Philosopher";
  font-style: normal;
  font-weight: 700;
  font-size: 66px;
  line-height: 70px;
  font-feature-settings: "kern" off;
  color: #ffffff;
}
.seo .container p {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  text-align: justify;
  color: #ffffff;
  margin: 20px 0;
}
.seo .container p a {
  color: var(--color2);
  text-decoration: underline;
}

footer {
  background: var(--color2);
}
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% - 190px);
  font-weight: 300;
  font-size: 18px;
  line-height: 22px;
  text-transform: capitalize;
  color: #000;
}
footer .container .details .footer-social {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  -moz-column-gap: 12px;
       column-gap: 12px;
}
footer .container .details .footer-social a {
  line-height: 14px;
}

.copyright {
  text-align: center;
  background-color: var(--color);
  color: var(--color2);
  padding: 10px 0;
}

button {
  cursor: pointer;
}

svg {
  transition: all 0.5s ease-in-out;
}
svg:hover {
  transform: scale(1.1);
}

@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(25% - 8px);
    display: flex;
    flex-direction: row;
  }
  .items .item .details {
    padding: 10px 4px;
    row-gap: 10px;
  }
  .items .item .details .price {
    font-family: "Philosopher";
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 20px;
    text-transform: capitalize;
    color: #ffffff;
  }
  .items .item .details .name {
    font-family: "Philosopher";
    font-style: normal;
    font-weight: 600;
    font-size: 22px;
    line-height: 25px;
    text-align: center;
    text-transform: capitalize;
    color: #ffffff;
  }
  .all-items {
    margin-top: 40px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
  }
  .all-items .item {
    flex: 0 0 calc(50% - 10px);
  }
  .all-items .item .name,
  .all-items .item .price {
    font-family: "Philosopher";
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 23px;
    text-transform: capitalize;
    color: #ffffff;
    width: 58%;
  }
  .all-items .item .price {
    font-size: 18px;
    line-height: 20px;
    width: 20%;
    text-align: right;
  }
  .all-items .item .separator {
    background-color: #fff;
    height: 2px;
    width: 20%;
  }
  nav {
    background: #000;
  }
  nav.sticky {
    position: sticky;
    top: 0;
    width: 100%;
    box-sizing: border-box;
    z-index: 10;
    transition: position 1s ease-in-out;
  }
  nav.sticky .hamburger {
    margin: 0 20px;
  }
  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: 100%;
    height: 90px;
  }
  nav .container ul.links {
    margin-right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    gap: 30px;
  }
  nav .container ul.links li {
    text-transform: capitalize;
  }
  nav .container ul.links li a:not(.goFood) {
    color: #fff;
    font-size: 18px;
    line-height: 18px;
    font-weight: var(--regular);
    font-weight: var(--semibold);
  }
  nav .container ul.links li a:not(.goFood).active {
    background: linear-gradient(180deg, #ddbb4b 0%, #685210 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
  }
  .hero,
  .foods,
  .find-us,
  .sl,
  .contact,
  .seo,
  footer {
    padding: 60px 0;
  }
  .hero .container,
  .foods .container,
  .find-us .container,
  .sl .container,
  .contact .container,
  .seo .container,
  footer .container {
    padding: 0 60px;
  }
  .hero .container {
    display: flex;
    flex-direction: row;
    -moz-column-gap: 0px;
         column-gap: 0px;
  }
  .hero .container .left,
  .hero .container .right {
    flex: 0 0 40%;
  }
  .hero .container .left {
    padding: 100px 0;
    flex: 0 0 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .hero .container .left .greet {
    font-size: 22px;
    line-height: 30px;
  }
  .hero .container .left .title {
    font-weight: 700;
    font-size: 52px;
    line-height: 58px;
  }
  .hero .container .left .description {
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
  }
  .hero .container .left .social {
    position: absolute;
    left: 0;
    bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    -moz-column-gap: 30px;
         column-gap: 30px;
  }
  .hero .container .left .social a.goFood {
    padding: 10px 20px;
    line-height: 24px;
  }
  .foods {
    background: #000;
  }
  .foods .container {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  .foods .container .top {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .foods .container .top h2 {
    font-size: 52px;
    line-height: 58px;
  }
  .foods .container .top .divider {
    position: absolute;
    width: 100%;
    border-bottom: 2px dashed #fff;
    bottom: -20px;
  }
  .foods .container .top .divider svg {
    position: absolute;
    right: 0px;
    top: -20px;
    background-color: #000;
  }
  .foods .container .top .menuList {
    display: flex;
    justify-content: space-evenly;
    align-items: flex-end;
    -moz-column-gap: 10px;
         column-gap: 10px;
  }
  .foods .container .top .menuList button {
    font-size: 20px;
    padding: 6px 16px;
    background: linear-gradient(180deg, #ddbb4b 0%, #685210 100%);
    border-radius: 50px;
    opacity: 0.5;
    transition: opacity 0.5s ease-in-out;
    color: #fff;
  }
  .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;
  }
  .find-us {
    background-color: #fff;
    padding: 60px 0;
  }
  .find-us .container {
    padding: 0 60px;
  }
  .find-us .container .content {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
  }
  .find-us .container .content .left,
  .find-us .container .content .right {
    display: flex;
    flex: 0 0 calc(50% - 10px);
  }
  .find-us .container .content .left img {
    width: 100%;
  }
  .find-us .container .content .right {
    flex-direction: column;
    justify-content: space-between;
  }
  .find-us .container .content .right h2 {
    font-family: "Philosopher";
    font-style: normal;
    font-weight: 600;
    font-size: 52px;
    line-height: 48px;
    text-transform: capitalize;
    background: linear-gradient(180deg, #ddbb4b 0%, #685210 100%), #ffffff;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
  }
  .find-us .container .content .right p {
    font-weight: 400;
    font-size: 16px;
    line-height: 18px;
    color: #000000;
  }
  .find-us .container .content .right .points {
    display: flex;
    flex-direction: row;
    gap: 20px;
  }
  .find-us .container .content .right .points > div {
    background: linear-gradient(180deg, #ddbb4b 0%, #685210 100%), #ffb814;
    border-radius: 10px;
    font-family: "Manrope";
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 20px;
    text-align: center;
    color: #ffffff;
    padding: 10px;
  }
  .sl {
    padding: 60px 0;
    background-color: #000;
  }
  .sl .container {
    display: flex;
    flex-direction: row;
    gap: 20px;
  }
  .sl .container > div {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    flex: 0 0 50%;
    padding: 40px;
    background: #ffffff;
    font-family: "Manrope";
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 25px;
    color: #000000;
  }
  .contact {
    background-color: var(--color2);
  }
  .contact .container {
    display: flex;
    flex-direction: row;
    gap: 30px;
  }
  .contact .container .right {
    color: #000;
    flex: 0 0 50%;
    display: flex;
  }
  .contact .container .left {
    flex: 0 0 50%;
  }
  .contact .container .left .contact-form {
    display: flex;
    flex-direction: column;
    justify-content: stretch;
    row-gap: 30px;
  }
  .contact .container .left .contact-form input {
    font-family: "Manrope";
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 27px;
    text-align: center;
    color: #000000;
    width: 100%;
    background-color: transparent;
    border-radius: 10px;
    border: 1.5px solid #000;
    color: #000;
    padding: 20px;
    outline: none;
  }
  .contact .container .left .contact-form input::-moz-placeholder {
    text-align: center;
    color: #000;
    text-transform: capitalize;
  }
  .contact .container .left .contact-form input::placeholder {
    text-align: center;
    color: #000;
    text-transform: capitalize;
  }
  .contact .container .left .contact-form button {
    background: linear-gradient(180deg, #ddbb4b 0%, #685210 100%);
    border-radius: 10px;
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    width: 100%;
    padding: 26px;
    line-height: 27px;
    outline: none;
    border: none;
  }
  .seo {
    background-color: #000;
  }
  .seo .container h2 {
    font-family: "Philosopher";
    font-style: normal;
    font-weight: 700;
    font-size: 66px;
    line-height: 70px;
    font-feature-settings: "kern" off;
    color: #ffffff;
  }
  .seo .container p {
    font-family: "Manrope";
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    text-align: justify;
    color: #ffffff;
    margin: 20px 0;
  }
  .seo .container p a {
    color: var(--color2);
    text-decoration: underline;
  }
  footer {
    background: var(--color2);
  }
  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% - 190px);
    font-weight: 300;
    font-size: 18px;
    line-height: 22px;
    text-transform: capitalize;
    color: #000;
  }
  footer .container .details .footer-social {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    -moz-column-gap: 12px;
         column-gap: 12px;
  }
  footer .container .details .footer-social a {
    line-height: 14px;
  }
  .copyright {
    text-align: center;
    background-color: var(--color);
    color: var(--color2);
    padding: 10px 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(25% - 8px);
    display: flex;
    flex-direction: row;
  }
  .items .item .details {
    padding: 10px 4px;
    row-gap: 10px;
    height: 70px;
  }
  .items .item .details .price {
    font-family: "Philosopher";
    font-style: normal;
    font-weight: 300;
    font-size: 16px;
    line-height: 18px;
    text-transform: capitalize;
    color: #ffffff;
  }
  .items .item .details .name {
    font-family: "Philosopher";
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 18px;
    text-align: center;
    text-transform: capitalize;
    color: #ffffff;
  }
  .all-items {
    margin-top: 40px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
  }
  .all-items .item {
    flex: 0 0 calc(50% - 10px);
  }
  .all-items .item .name,
  .all-items .item .price {
    font-family: "Philosopher";
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 17px;
    text-transform: capitalize;
    color: #ffffff;
    width: 58%;
  }
  .all-items .item .price {
    font-weight: 300;
    font-size: 16px;
    line-height: 16px;
    width: 26%;
    text-align: right;
  }
  .all-items .item .separator {
    background-color: #fff;
    height: 2px;
    width: 14%;
  }
  nav {
    background: #000;
  }
  nav.sticky {
    position: sticky;
    top: 0;
    width: 100%;
    box-sizing: border-box;
    z-index: 10;
    transition: position 1s ease-in-out;
  }
  nav.sticky .hamburger {
    margin: 0 20px;
  }
  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: 100%;
    height: 90px;
  }
  nav .container ul.links {
    margin-right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    gap: 30px;
  }
  nav .container ul.links li {
    text-transform: capitalize;
  }
  nav .container ul.links li a:not(.goFood) {
    color: #fff;
    font-size: 18px;
    line-height: 18px;
    font-weight: var(--regular);
    font-weight: var(--semibold);
  }
  nav .container ul.links li a:not(.goFood).active {
    background: linear-gradient(180deg, #ddbb4b 0%, #685210 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
  }
  .hero,
  .foods,
  .find-us,
  .sl,
  .contact,
  .seo,
  footer {
    padding: 30px 0;
  }
  .hero .container,
  .foods .container,
  .find-us .container,
  .sl .container,
  .contact .container,
  .seo .container,
  footer .container {
    padding: 0 30px;
  }
  .hero .container {
    display: flex;
    flex-direction: row;
    -moz-column-gap: 0px;
         column-gap: 0px;
  }
  .hero .container .left,
  .hero .container .right {
    flex: 0 0 35%;
  }
  .hero .container .left {
    padding: 100px 0;
    flex: 0 0 55%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .hero .container .left .greet {
    font-size: 20px;
    line-height: 26px;
  }
  .hero .container .left .title {
    font-weight: 600;
    font-size: 42px;
    line-height: 42px;
  }
  .hero .container .left .description {
    font-weight: 400;
    font-size: 16px;
    line-height: 18px;
  }
  .hero .container .left .social {
    position: absolute;
    left: 0;
    bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    -moz-column-gap: 30px;
         column-gap: 30px;
  }
  .hero .container .left .social a.goFood {
    padding: 10px 20px;
    line-height: 24px;
  }
  .foods {
    background: #000;
  }
  .foods .container {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  .foods .container .top {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .foods .container .top h2 {
    font-size: 42px;
    line-height: 48px;
  }
  .foods .container .top .divider {
    position: absolute;
    width: 100%;
    border-bottom: 2px dashed #fff;
    bottom: -30px;
  }
  .foods .container .top .divider svg {
    position: absolute;
    right: 0px;
    top: -20px;
    background-color: #000;
  }
  .foods .container .top .menuList {
    display: flex;
    justify-content: space-evenly;
    align-items: flex-end;
    -moz-column-gap: 10px;
         column-gap: 10px;
  }
  .foods .container .top .menuList button {
    font-size: 18px;
    padding: 6px 16px;
    background: linear-gradient(180deg, #ddbb4b 0%, #685210 100%);
    border-radius: 50px;
    opacity: 0.5;
    transition: opacity 0.5s ease-in-out;
    color: #fff;
  }
  .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;
  }
  .find-us {
    background-color: #fff;
    padding: 30px 0;
  }
  .find-us .container {
    padding: 0 30px;
  }
  .find-us .container .content {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
  }
  .find-us .container .content .left,
  .find-us .container .content .right {
    display: flex;
    flex: 0 0 calc(50% - 10px);
  }
  .find-us .container .content .left img {
    width: 100%;
  }
  .find-us .container .content .right {
    flex-direction: column;
    justify-content: space-between;
  }
  .find-us .container .content .right h2 {
    font-family: "Philosopher";
    font-style: normal;
    font-weight: 600;
    font-size: 42px;
    line-height: 44px;
    text-transform: capitalize;
    background: linear-gradient(180deg, #ddbb4b 0%, #685210 100%), #ffffff;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
  }
  .find-us .container .content .right p {
    font-weight: 300;
    font-size: 16px;
    line-height: 18px;
    color: #000000;
    margin: 6px 0;
  }
  .find-us .container .content .right .points {
    display: flex;
    flex-direction: row;
    gap: 10px;
  }
  .find-us .container .content .right .points > div {
    background: linear-gradient(180deg, #ddbb4b 0%, #685210 100%), #ffb814;
    border-radius: 10px;
    font-family: "Manrope";
    font-style: normal;
    font-weight: 300;
    font-size: 16px;
    line-height: 18px;
    text-align: center;
    color: #ffffff;
    padding: 8px 5px;
  }
  .sl {
    padding: 30px 0;
    background-color: #000;
  }
  .sl .container {
    display: flex;
    flex-direction: row;
    gap: 30px;
  }
  .sl .container > div {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    flex: 0 0 calc(50% - 15px);
    padding: 30px;
    background: #ffffff;
    font-family: "Manrope";
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 25px;
    color: #000000;
  }
  .contact {
    background-color: var(--color2);
  }
  .contact .container {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
  .contact .container .right {
    color: #000;
    flex: 0 0 50%;
    display: flex;
    order: 1;
  }
  .contact .container .left {
    order: 2;
    flex: 0 0 50%;
  }
  .contact .container .left .contact-form {
    display: flex;
    flex-direction: column;
    justify-content: stretch;
    row-gap: 20px;
  }
  .contact .container .left .contact-form input {
    font-family: "Manrope";
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 27px;
    text-align: center;
    color: #000000;
    width: 100%;
    background-color: transparent;
    border-radius: 10px;
    border: 1.5px solid #000;
    color: #000;
    padding: 24px;
    outline: none;
  }
  .contact .container .left .contact-form input::-moz-placeholder {
    text-align: center;
    color: #000;
    text-transform: capitalize;
  }
  .contact .container .left .contact-form input::placeholder {
    text-align: center;
    color: #000;
    text-transform: capitalize;
  }
  .contact .container .left .contact-form button {
    background: linear-gradient(180deg, #ddbb4b 0%, #685210 100%);
    border-radius: 10px;
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    width: 100%;
    padding: 26px;
    line-height: 27px;
    outline: none;
    border: none;
  }
  .seo {
    background-color: #000;
  }
  .seo .container h2 {
    font-family: "Philosopher";
    font-style: normal;
    font-weight: 500;
    font-size: 42px;
    line-height: 40px;
    font-feature-settings: "kern" off;
    color: #ffffff;
  }
  .seo .container p {
    font-family: "Manrope";
    font-style: normal;
    font-weight: 300;
    font-size: 16px;
    line-height: 18px;
    text-align: justify;
    color: #ffffff;
    margin: 20px 0;
  }
  .seo .container p a {
    color: var(--color2);
    text-decoration: underline;
  }
  footer {
    background: var(--color2);
  }
  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% - 190px);
    font-weight: 300;
    font-size: 16px;
    line-height: 18px;
    text-transform: capitalize;
    color: #000;
  }
  footer .container .details .footer-social {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    -moz-column-gap: 12px;
         column-gap: 12px;
  }
  footer .container .details .footer-social a {
    line-height: 14px;
  }
  .copyright {
    text-align: center;
    background-color: var(--color);
    color: var(--color2);
    padding: 10px 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: 30px;
  }
  .items .item {
    flex: 0 0 calc(50% - 15px);
    display: flex;
    flex-direction: row;
  }
  .items .item .details {
    padding: 10px 4px;
    row-gap: 10px;
    height: 70px;
  }
  .items .item .details .price {
    font-family: "Philosopher";
    font-style: normal;
    font-weight: 300;
    font-size: 16px;
    line-height: 18px;
    text-transform: capitalize;
    color: #ffffff;
  }
  .items .item .details .name {
    font-family: "Philosopher";
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 18px;
    text-align: center;
    text-transform: capitalize;
    color: #ffffff;
  }
  .all-items {
    margin-top: 40px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
  }
  .all-items .item {
    flex: 0 0 100%;
  }
  .all-items .item .name,
  .all-items .item .price {
    font-family: "Philosopher";
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 17px;
    text-transform: capitalize;
    color: #ffffff;
    width: 50%;
  }
  .all-items .item .price {
    font-weight: 300;
    font-size: 16px;
    line-height: 16px;
    width: 20%;
    text-align: right;
  }
  .all-items .item .separator {
    background-color: #fff;
    height: 2px;
    width: 30%;
  }
  nav {
    background: #000;
  }
  nav.sticky {
    position: sticky;
    top: 0;
    width: 100%;
    box-sizing: border-box;
    z-index: 10;
    transition: position 1s ease-in-out;
  }
  nav.sticky .hamburger {
    margin: 0 20px;
  }
  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: 100%;
    height: 90px;
  }
  nav .container ul.links {
    margin-right: 0;
    display: none;
    align-items: center;
    justify-content: flex-end;
    flex-direction: column;
    position: absolute;
    left: 0;
    top: 121px;
    width: 100%;
    gap: 20px;
    z-index: 100;
    background: #000;
  }
  nav .container ul.links li {
    text-transform: capitalize;
    min-height: 40px;
  }
  nav .container ul.links li a:not(.goFood) {
    padding: 10px 0;
    color: #fff;
    font-size: 18px;
    line-height: 22px;
    font-weight: var(--semibold);
  }
  nav .container ul.links li a:not(.goFood).active {
    color: #ddbb4b;
  }
  .hero,
  .foods,
  .find-us,
  .sl,
  .contact,
  .seo,
  footer {
    padding: 30px 0;
  }
  .hero .container,
  .foods .container,
  .find-us .container,
  .sl .container,
  .contact .container,
  .seo .container,
  footer .container {
    padding: 0 30px;
  }
  .hero .container {
    display: flex;
    flex-direction: row;
    -moz-column-gap: 0px;
         column-gap: 0px;
  }
  .hero .container .left,
  .hero .container .right {
    flex: 0 0 40%;
  }
  .hero .container .left {
    padding: 100px 0;
    flex: 0 0 60%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .hero .container .left .greet {
    font-weight: 400;
    font-size: 16px;
    line-height: 16px;
  }
  .hero .container .left .title {
    font-weight: 500;
    font-size: 32px;
    line-height: 32px;
  }
  .hero .container .left .description {
    padding-right: 30px;
    font-weight: 300;
    font-size: 16px;
    line-height: 18px;
  }
  .hero .container .left .social {
    position: absolute;
    left: 0;
    bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    -moz-column-gap: 30px;
         column-gap: 30px;
  }
  .hero .container .left .social a.goFood {
    padding: 10px 20px;
    line-height: 24px;
  }
  .foods {
    background: #000;
  }
  .foods .container {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  .foods .container .top {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .foods .container .top h2 {
    font-size: 26px;
    line-height: 28px;
  }
  .foods .container .top .menuList {
    display: flex;
    justify-content: space-evenly;
    align-items: flex-end;
    -moz-column-gap: 10px;
         column-gap: 10px;
  }
  .foods .container .top .menuList button {
    font-weight: 600;
    font-size: 16px;
    padding: 6px 16px;
    background: linear-gradient(180deg, #ddbb4b 0%, #685210 100%);
    border-radius: 50px;
    opacity: 0.5;
    transition: opacity 0.5s ease-in-out;
    color: #fff;
  }
  .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;
  }
  .find-us {
    background-color: #fff;
    padding: 30px 0;
  }
  .find-us .container {
    padding: 0 30px;
  }
  .find-us .container .content {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
  }
  .find-us .container .content .left,
  .find-us .container .content .right {
    display: flex;
    flex: 0 0 55%;
  }
  .find-us .container .content .left {
    flex: 0 0 40%;
  }
  .find-us .container .content .left img {
    width: 100%;
  }
  .find-us .container .content .right {
    flex-direction: column;
    justify-content: space-between;
  }
  .find-us .container .content .right h2 {
    font-family: "Philosopher";
    font-style: normal;
    font-weight: 600;
    font-size: 36px;
    line-height: 38px;
    text-transform: capitalize;
    background: linear-gradient(180deg, #ddbb4b 0%, #685210 100%), #ffffff;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
  }
  .find-us .container .content .right p {
    font-weight: 300;
    font-size: 16px;
    line-height: 16px;
    color: #000000;
    margin: 6px 0;
  }
  .find-us .container .content .right .points {
    display: flex;
    flex-direction: row;
    gap: 4px;
  }
  .find-us .container .content .right .points > div {
    background: linear-gradient(180deg, #ddbb4b 0%, #685210 100%), #ffb814;
    border-radius: 4px;
    font-family: "Manrope";
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 16px;
    text-align: center;
    color: #ffffff;
    padding: 4px 0;
  }
  .sl {
    padding: 30px 0;
    background-color: #000;
  }
  .sl .container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 30px;
  }
  .sl .container > div {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    flex: 0 0 100%;
    padding: 20px;
    background: #ffffff;
    font-family: "Manrope";
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 25px;
    color: #000000;
  }
  .contact {
    background-color: var(--color2);
  }
  .contact .container {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
  .contact .container .right {
    color: #000;
    flex: 0 0 50%;
    display: flex;
    order: 1;
  }
  .contact .container .left {
    order: 2;
    flex: 0 0 50%;
  }
  .contact .container .left .contact-form {
    display: flex;
    flex-direction: column;
    justify-content: stretch;
    row-gap: 20px;
  }
  .contact .container .left .contact-form input {
    font-family: "Manrope";
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 27px;
    text-align: center;
    color: #000000;
    width: 100%;
    background-color: transparent;
    border-radius: 10px;
    border: 1.5px solid #000;
    color: #000;
    padding: 24px;
    outline: none;
  }
  .contact .container .left .contact-form input::-moz-placeholder {
    text-align: center;
    color: #000;
    text-transform: capitalize;
  }
  .contact .container .left .contact-form input::placeholder {
    text-align: center;
    color: #000;
    text-transform: capitalize;
  }
  .contact .container .left .contact-form button {
    background: linear-gradient(180deg, #ddbb4b 0%, #685210 100%);
    border-radius: 10px;
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    width: 100%;
    padding: 26px;
    line-height: 27px;
    outline: none;
    border: none;
  }
  .seo {
    background-color: #000;
  }
  .seo .container h2 {
    font-family: "Philosopher";
    font-style: normal;
    font-weight: 500;
    font-size: 42px;
    line-height: 40px;
    font-feature-settings: "kern" off;
    color: #ffffff;
  }
  .seo .container p {
    font-family: "Manrope";
    font-style: normal;
    font-weight: 300;
    font-size: 16px;
    line-height: 18px;
    text-align: justify;
    color: #ffffff;
    margin: 20px 0;
  }
  .seo .container p a {
    color: var(--color2);
    text-decoration: underline;
  }
  footer {
    background: var(--color2);
  }
  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% - 190px);
    font-weight: 300;
    font-size: 16px;
    line-height: 18px;
    text-transform: capitalize;
    color: #000;
  }
  footer .container .details .footer-social {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    -moz-column-gap: 12px;
         column-gap: 12px;
  }
  footer .container .details .footer-social a {
    line-height: 14px;
  }
  .copyright {
    text-align: center;
    background-color: var(--color);
    color: var(--color2);
    padding: 10px 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: 30px;
  }
  .items .item {
    flex: 0 0 100%;
    display: flex;
    flex-direction: row;
  }
  .items .item .details {
    padding: 10px 4px;
    row-gap: 10px;
    height: 70px;
  }
  .items .item .details .price {
    font-family: "Philosopher";
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 18px;
    text-transform: capitalize;
    color: #ffffff;
  }
  .items .item .details .name {
    font-family: "Philosopher";
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 18px;
    text-align: center;
    text-transform: capitalize;
    color: #ffffff;
  }
  .all-items {
    margin-top: 40px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
  }
  .all-items .item {
    flex: 0 0 100%;
  }
  .all-items .item .name,
  .all-items .item .price {
    font-family: "Philosopher";
    font-style: normal;
    font-weight: 300;
    font-size: 16px;
    line-height: 17px;
    text-transform: capitalize;
    color: #ffffff;
    width: 55%;
  }
  .all-items .item .price {
    font-weight: 300;
    font-size: 16px;
    line-height: 16px;
    width: 35%;
    text-align: right;
  }
  .all-items .item .separator {
    background-color: #fff;
    height: 2px;
    width: 6%;
  }
  nav {
    background: #000;
  }
  nav.sticky {
    position: sticky;
    top: 0;
    width: 100%;
    box-sizing: border-box;
    z-index: 10;
    transition: position 1s ease-in-out;
  }
  nav.sticky .hamburger {
    margin: 0 20px;
  }
  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: 100%;
    height: 90px;
  }
  nav .container ul.links {
    margin-right: 0;
    display: none;
    align-items: center;
    justify-content: flex-end;
    flex-direction: column;
    position: absolute;
    left: 0;
    top: 121px;
    width: 100%;
    gap: 20px;
    z-index: 100;
    background: #000;
  }
  nav .container ul.links li {
    text-transform: capitalize;
    min-height: 40px;
  }
  nav .container ul.links li a:not(.goFood) {
    padding: 10px 0;
    color: #fff;
    font-size: 18px;
    line-height: 22px;
    font-weight: var(--semibold);
  }
  nav .container ul.links li a:not(.goFood).active {
    color: #ddbb4b;
  }
  .hero,
  .foods,
  .find-us,
  .sl,
  .contact,
  .seo,
  footer {
    padding: 30px 0;
  }
  .hero .container,
  .foods .container,
  .find-us .container,
  .sl .container,
  .contact .container,
  .seo .container,
  footer .container {
    padding: 0 30px;
  }
  .hero {
    padding: 0;
  }
  .hero .container {
    padding-top: 30px;
    padding-bottom: 30px;
    background: rgba(255, 255, 255, 0.7);
    display: flex;
    flex-direction: row;
    -moz-column-gap: 0px;
         column-gap: 0px;
  }
  .hero .container .left,
  .hero .container .right {
    flex: 0 0 0%;
  }
  .hero .container .left {
    padding: 0;
    flex: 0 0 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .hero .container .left .greet {
    font-weight: 400;
    font-size: 16px;
    line-height: 16px;
  }
  .hero .container .left .title {
    font-weight: 500;
    font-size: 32px;
    line-height: 32px;
  }
  .hero .container .left .description {
    padding-right: 0px;
    font-weight: 300;
    font-size: 16px;
    line-height: 18px;
    margin: 0;
    margin-bottom: 90px;
  }
  .hero .container .left .social {
    position: absolute;
    left: 0;
    bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    -moz-column-gap: 30px;
         column-gap: 30px;
  }
  .hero .container .left .social a.goFood {
    padding: 10px 20px;
    line-height: 24px;
  }
  .foods {
    background: #000;
  }
  .foods .container {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  .foods .container .top {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    row-gap: 20px;
  }
  .foods .container .top h2 {
    font-size: 26px;
    line-height: 28px;
  }
  .foods .container .top .menuList {
    display: flex;
    justify-content: space-evenly;
    align-items: flex-end;
    -moz-column-gap: 10px;
         column-gap: 10px;
  }
  .foods .container .top .menuList button {
    font-weight: 600;
    font-size: 16px;
    padding: 6px 16px;
    background: linear-gradient(180deg, #ddbb4b 0%, #685210 100%);
    border-radius: 50px;
    opacity: 0.5;
    transition: opacity 0.5s ease-in-out;
    color: #fff;
  }
  .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;
  }
  .find-us {
    background-color: #fff;
    padding: 30px 0;
  }
  .find-us .container {
    padding: 0 30px;
  }
  .find-us .container .content {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 10px;
  }
  .find-us .container .content .left,
  .find-us .container .content .right {
    display: flex;
    flex: 0 0 100%;
  }
  .find-us .container .content .left {
    flex: 0 0 100%;
  }
  .find-us .container .content .left img {
    width: 100%;
  }
  .find-us .container .content .right {
    flex-direction: column;
    justify-content: space-between;
  }
  .find-us .container .content .right h2 {
    font-family: "Philosopher";
    font-style: normal;
    font-weight: 600;
    font-size: 36px;
    line-height: 38px;
    text-transform: capitalize;
    background: linear-gradient(180deg, #ddbb4b 0%, #685210 100%), #ffffff;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
  }
  .find-us .container .content .right p {
    font-weight: 300;
    font-size: 16px;
    line-height: 16px;
    color: #000000;
    margin: 6px 0;
  }
  .find-us .container .content .right .points {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .find-us .container .content .right .points > div {
    background: linear-gradient(180deg, #ddbb4b 0%, #685210 100%), #ffb814;
    border-radius: 10px;
    font-family: "Manrope";
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
    text-align: center;
    color: #ffffff;
    padding: 14px 10px 16px 10px;
  }
  .sl {
    padding: 30px 0;
    background-color: #000;
  }
  .sl .container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 30px;
  }
  .sl .container > div {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    flex: 0 0 100%;
    padding: 12px;
    background: #ffffff;
    font-family: "Manrope";
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: #000000;
  }
  .sl .container > div img {
    width: 48px;
  }
  .contact {
    background-color: var(--color2);
  }
  .contact .container {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
  .contact .container .right {
    color: #000;
    flex: 1 1 100%;
    display: flex;
    order: 1;
  }
  .contact .container .left {
    order: 2;
    flex: 1 1 100%;
  }
  .contact .container .left .contact-form {
    display: flex;
    flex-direction: column;
    justify-content: stretch;
    row-gap: 20px;
  }
  .contact .container .left .contact-form input {
    font-family: "Manrope";
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 27px;
    text-align: center;
    color: #000000;
    width: 100%;
    background-color: transparent;
    border-radius: 10px;
    border: 1.5px solid #000;
    color: #000;
    padding: 14px;
    outline: none;
  }
  .contact .container .left .contact-form input::-moz-placeholder {
    text-align: center;
    color: #000;
    text-transform: capitalize;
  }
  .contact .container .left .contact-form input::placeholder {
    text-align: center;
    color: #000;
    text-transform: capitalize;
  }
  .contact .container .left .contact-form button {
    background: linear-gradient(180deg, #ddbb4b 0%, #685210 100%);
    border-radius: 10px;
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    width: 100%;
    padding: 16px;
    line-height: 27px;
    outline: none;
    border: none;
  }
  .seo {
    background-color: #000;
  }
  .seo .container h2 {
    font-family: "Philosopher";
    font-style: normal;
    font-weight: 500;
    font-size: 26px;
    line-height: 30px;
    font-feature-settings: "kern" off;
    color: #ffffff;
  }
  .seo .container p {
    font-family: "Manrope";
    font-style: normal;
    font-weight: 300;
    font-size: 16px;
    line-height: 18px;
    text-align: justify;
    color: #ffffff;
    margin: 20px 0;
  }
  .seo .container p a {
    color: var(--color2);
    text-decoration: underline;
  }
  footer {
    background: var(--color2);
  }
  footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    align-items: center;
    row-gap: 30px;
  }
  footer .container .logo > a > img {
    width: 180px;
  }
  footer .container .details {
    max-width: 100%;
    font-weight: 400;
    font-size: 16px;
    line-height: 18px;
    text-transform: capitalize;
    color: #000;
  }
  footer .container .details .footer-social {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    -moz-column-gap: 12px;
         column-gap: 12px;
  }
  footer .container .details .footer-social a {
    line-height: 14px;
  }
  .copyright {
    text-align: center;
    background-color: var(--color);
    color: var(--color2);
    padding: 10px 0;
  }
}/*# sourceMappingURL=style.css.map */