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

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

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

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

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

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

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

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

.active {
  display: flex !important;
}

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

.pos-r {
  position: relative;
}

.slick-disabled {
  opacity: 0.4;
}

.next,
.prev {
  background: var(--color);
  border-radius: 10px;
  transform: matrix(-1, 0, 0, 1, 0, 0);
  padding: 10px 12px;
  border: none;
  outline: none;
}

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

.items {
  width: 100%;
}
.items .item {
  position: relative;
}
.items .item img {
  border-radius: 10px;
  width: 260px;
  height: 260px;
  -o-object-fit: fill;
     object-fit: fill;
}
.items .item:hover .details .name, .items .item:focus .details .name {
  bottom: 0px;
}
.items .item:hover .details .price, .items .item:focus .details .price {
  top: 5px;
}
.items .item .details {
  transition: opacity 0.5s ease-in;
  position: absolute;
  padding: 0px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  max-width: 260px;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
  left: 0;
  top: 0;
}
.items .item .details .name,
.items .item .details .price {
  filter: drop-shadow(0px 8px 34px rgba(0, 0, 0, 0.15));
  width: 100%;
  text-transform: capitalize;
  text-align: center;
  color: #ffffff;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.items .item .details .name {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.9) 100%);
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
  font-family: "Kameron";
  font-weight: 600;
  font-size: 18px;
  line-height: 60px;
  height: 60px;
  bottom: -60px;
  transition: bottom 0.3s ease-in;
}
.items .item .details .price {
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
  top: -40px;
  transition: top 0.3s ease-in;
}
.items .item .details .price:before {
  background-color: var(--color);
  content: "";
  position: absolute;
  height: 270px;
  top: -235px;
  border-radius: 50%;
  width: 270px;
  left: 0;
  z-index: -1;
}

nav {
  background: #fff;
}
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: 81px;
}
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 a {
  text-transform: capitalize;
  font-size: 18px;
  line-height: 30px;
  font-weight: var(--regular);
}
nav .container ul.links li a.goFood {
  padding: 12px 16px;
}
nav .container ul.links li a:not(.goFood) {
  color: #000;
  transition: all 0.5s ease-in-out;
}
nav .container ul.links li a:not(.goFood):hover {
  color: var(--color);
}

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

.hero {
  background: url("assets/hero.webp") no-repeat;
  background-size: 100% 100%;
}
.hero .container {
  padding-top: 80px;
  padding-bottom: 80px;
  text-align: left;
}
.hero .container .title,
.hero .container .description,
.hero .container .social {
  max-width: 50%;
  margin-bottom: 40px;
}
.hero .container .title {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  font-family: "Kameron", serif;
  font-style: normal;
  font-weight: 500;
  font-size: 120px;
  line-height: 100%;
  text-align: justify;
  color: #ffffff;
}
.hero .container .title span {
  background-color: var(--color);
  padding: 0 8px;
}
.hero .container .description {
  font-size: 18px;
  line-height: 22px;
  color: #000000;
}
.hero .container a.tel {
  line-height: 18px;
  display: inline-flex;
  padding: 15px;
  border-radius: 10px;
  background-color: var(--color);
  color: #fff;
}
.hero .container a.goFood {
  font-size: 18px;
  padding: 16px;
  text-align: center;
}
.hero .container .social {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}

.promo {
  background-color: var(--color);
}
.promo .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.promo .container .block {
  flex: 0 0 calc(33.3333% - 15px);
  position: relative;
  border-radius: 10px;
  background-color: #fff;
  padding: 54px 12px 40px;
  color: #000000;
}
.promo .container .block .image {
  position: absolute;
  background: #ffffff;
  box-shadow: 0px 14px 54px rgba(0, 0, 0, 0.1);
  padding: 15px 16px;
  border-radius: 50%;
  left: 50%;
  top: -50%;
  transform: translate(-50%, 50%);
}
.promo .container .block h4 {
  font-family: "Kameron";
  font-style: normal;
  font-weight: 600;
  font-size: 36px;
  line-height: 111%;
  text-align: center;
  text-transform: capitalize;
  margin-bottom: 8px;
}
.promo .container .block p {
  font-size: 16px;
  line-height: 19px;
  text-align: center;
  text-transform: capitalize;
}

.foods-drinks {
  background-color: var(--color2);
}
.foods-drinks .container .top {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  -moz-column-gap: 10px;
       column-gap: 10px;
}
.foods-drinks .container .top h2 {
  font-family: "Kameron";
  font-style: normal;
  font-weight: 500;
  font-size: 60px;
  line-height: 60px;
  padding: 0 6px;
  text-align: justify;
  color: #ffffff;
  background-color: var(--color);
}
.foods-drinks .container .top .link {
  background-color: var(--color);
  padding: 12px 18px;
  border-radius: 40px;
  border: none;
  outline: none;
}
.foods-drinks .container .bottom {
  margin-top: 40px;
  margin-bottom: 100px;
}
.foods-drinks .container .bottom:last-of-type {
  margin-bottom: 0;
}

.contact-us {
  background-color: var(--color);
}
.contact-us .container {
  padding: 0 230px;
  display: flex;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 40px;
}
.contact-us .container h2 {
  font-family: "Kameron";
  font-style: normal;
  font-weight: 500;
  font-size: 60px;
  line-height: 123%;
  text-align: center;
  text-transform: capitalize;
  color: #ffffff;
  width: 100%;
  margin-bottom: 20px;
}
.contact-us .container .contact-form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  row-gap: 20px;
  flex-basis: calc(50% - 20px);
  flex-grow: 0;
}
.contact-us .container .contact-form input {
  border-radius: 10px;
  width: 100%;
  background: rgba(255, 255, 255, 0.4);
  box-shadow: 0px 4px 44px rgba(0, 0, 0, 0.1);
  height: 66px;
  border: none;
  outline: none;
  padding: 0 30px;
}
.contact-us .container .contact-form input::-moz-placeholder {
  text-align: left;
  color: #000;
}
.contact-us .container .contact-form input::placeholder {
  text-align: left;
  color: #000;
}
.contact-us .container .contact-form button {
  text-transform: capitalize;
  font-weight: 500;
  padding: 0 30px;
  border-radius: 10px;
  width: 100%;
  background-color: #fff;
  color: var(--color);
  height: 66px;
  text-align: left;
  outline: none;
  border: none;
}
.contact-us .container .schedule {
  flex-basis: calc(50% - 20px);
  background-color: #fff;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
  align-items: center;
  padding: 40px 20px;
}
.contact-us .container .schedule h4 {
  font-family: "Kameron";
  font-style: normal;
  font-weight: 500;
  font-size: 40px;
  line-height: 47px;
  color: #f37821;
  padding-bottom: 10px;
  position: relative;
}
.contact-us .container .schedule h4:after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 120px;
  height: 3px;
  background-color: #000;
}
.contact-us .container .schedule div {
  display: inline-flex;
  align-items: center;
  flex-direction: row;
  gap: 10px;
  font-weight: 500;
  font-size: 26px;
  line-height: 36px;
  text-transform: capitalize;
  color: #000000;
}

.visit-us {
  background-color: var(--color2);
}
.visit-us .container {
  padding: 0 230px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
}
.visit-us .container h3 {
  white-space: pre-line;
  font-family: "Kameron";
  font-style: normal;
  font-weight: 500;
  font-size: 60px;
  line-height: 102%;
  text-align: center;
  text-transform: capitalize;
  color: #000000;
  margin-bottom: 40px;
}
.visit-us .container .location {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 20px 40px;
  background-color: var(--color);
  font-size: 24px;
  line-height: 31px;
  text-transform: capitalize;
  color: #ffffff;
  border-radius: 10px;
}
.visit-us .container iframe {
  border-radius: 0 0 10px 10px;
}

.seo {
  background-color: var(--color);
  margin-top: -300px;
}
.seo .container {
  padding-top: 200px;
  color: #fff;
}
.seo .container h2 {
  font-size: 60px;
  line-height: 70px;
  font-feature-settings: "kern" off;
  margin-bottom: 20px;
}
.seo .container p {
  font-size: 16px;
  line-height: 19px;
  text-align: justify;
}
.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: 380px;
}
footer .container .details {
  max-width: calc(100% - 380px);
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  text-transform: capitalize;
  color: #000;
}
footer .container .footer-social {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
}
footer .container .footer-social a {
  line-height: 14px;
}

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

button {
  cursor: pointer;
}

.seo a {
  color: #ffffff;
  text-decoration: none !important;
  font-weight: 900;
}
.seo a:hover {
  text-decoration: underline !important;
}

.slick-slide {
  margin: 0 10px;
  overflow: hidden;
  -o-object-fit: fill;
     object-fit: fill;
}
.slick-slide img {
  width: 100% !important;
  -o-object-fit: fill;
     object-fit: fill;
}

@media screen and (max-width: 1024px) {
  .hamburger {
    display: none;
    margin: auto 0;
  }
  .items {
    width: 100%;
  }
  .items .item {
    position: relative;
  }
  .items .item img {
    border-radius: 10px;
    width: 260px;
    height: 260px;
    -o-object-fit: fill;
       object-fit: fill;
  }
  .items .item:hover .details .name, .items .item:focus .details .name {
    bottom: 0px;
  }
  .items .item:hover .details .price, .items .item:focus .details .price {
    top: 5px;
  }
  .items .item .details {
    transition: opacity 0.5s ease-in;
    position: absolute;
    padding: 0px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    max-width: 260px;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
    left: 0;
    top: 0;
  }
  .items .item .details .name,
  .items .item .details .price {
    filter: drop-shadow(0px 8px 34px rgba(0, 0, 0, 0.15));
    width: 100%;
    text-transform: capitalize;
    text-align: center;
    color: #ffffff;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
  .items .item .details .name {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.9) 100%);
    -webkit-backdrop-filter: blur(3px);
            backdrop-filter: blur(3px);
    font-family: "Kameron";
    font-weight: 600;
    font-size: 18px;
    line-height: 60px;
    height: 60px;
    bottom: -60px;
    transition: bottom 0.3s ease-in;
  }
  .items .item .details .price {
    font-weight: 600;
    font-size: 18px;
    line-height: 22px;
    top: -40px;
    transition: top 0.3s ease-in;
  }
  .items .item .details .price:before {
    background-color: var(--color);
    content: "";
    position: absolute;
    height: 270px;
    top: -235px;
    border-radius: 50%;
    width: 270px;
    left: 0;
    z-index: -1;
  }
  nav {
    background: #fff;
  }
  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: 81px;
  }
  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 a {
    text-transform: capitalize;
    font-size: 18px;
    line-height: 30px;
    font-weight: var(--regular);
  }
  nav .container ul.links li a.goFood {
    padding: 12px 16px;
  }
  nav .container ul.links li a:not(.goFood) {
    color: #000;
  }
  nav .container ul.links li a:not(.goFood).active {
    color: var(--color);
  }
  .hero,
  .promo,
  .foods-drinks,
  .contact-us,
  .visit-us,
  .seo,
  footer {
    padding: 80px 0;
  }
  .hero .container,
  .promo .container,
  .foods-drinks .container,
  .contact-us .container,
  .visit-us .container,
  .seo .container,
  footer .container {
    padding: 0 60px;
  }
  .hero .container {
    padding-top: 20px;
    padding-bottom: 20px;
    text-align: left;
  }
  .hero .container .title,
  .hero .container .description,
  .hero .container .social {
    max-width: 50%;
    margin-bottom: 40px;
  }
  .hero .container .title {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
    font-family: "Kameron", serif;
    font-style: normal;
    font-weight: 500;
    font-size: 80px;
    line-height: 100%;
    text-align: justify;
    color: #ffffff;
  }
  .hero .container .title span {
    background-color: var(--color);
    padding: 0 8px;
  }
  .hero .container .description {
    font-size: 18px;
    line-height: 22px;
    color: #000000;
  }
  .hero .container a.tel {
    line-height: 18px;
    display: inline-flex;
    padding: 15px 8px;
    border-radius: 10px;
    background-color: var(--color);
    color: #fff;
  }
  .hero .container a.goFood {
    font-size: 18px;
    padding: 16px 8px;
    text-align: center;
  }
  .hero .container .social {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
  }
  .promo {
    background-color: var(--color);
  }
  .promo .container {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
  }
  .promo .container .block {
    flex: 0 0 calc(33.3333% - 15px);
    position: relative;
    border-radius: 10px;
    background-color: #fff;
    padding: 54px 12px 40px;
    color: #000000;
  }
  .promo .container .block .image {
    position: absolute;
    background: #ffffff;
    box-shadow: 0px 14px 54px rgba(0, 0, 0, 0.1);
    padding: 15px 16px;
    border-radius: 50%;
    left: 50%;
    top: -50%;
    transform: translate(-50%, 50%);
  }
  .promo .container .block h4 {
    font-family: "Kameron";
    font-style: normal;
    font-weight: 600;
    font-size: 26px;
    line-height: 111%;
    text-align: center;
    text-transform: capitalize;
    margin-bottom: 8px;
  }
  .promo .container .block p {
    font-size: 16px;
    line-height: 17px;
    text-align: center;
    text-transform: capitalize;
  }
  .foods-drinks {
    background-color: var(--color2);
  }
  .foods-drinks .container .top {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    -moz-column-gap: 10px;
         column-gap: 10px;
  }
  .foods-drinks .container .top h2 {
    font-family: "Kameron";
    font-style: normal;
    font-weight: 500;
    font-size: 50px;
    line-height: 50px;
    padding: 0 6px;
    text-align: justify;
    color: #ffffff;
    background-color: var(--color);
  }
  .foods-drinks .container .top .link {
    background-color: var(--color);
    padding: 12px 18px;
    border-radius: 40px;
    border: none;
    outline: none;
  }
  .foods-drinks .container .bottom {
    margin-top: 40px;
    margin-bottom: 100px;
  }
  .foods-drinks .container .bottom:last-of-type {
    margin-bottom: 0;
  }
  .contact-us {
    background-color: var(--color);
  }
  .contact-us .container {
    padding: 0 130px;
    display: flex;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 40px;
  }
  .contact-us .container h2 {
    font-family: "Kameron";
    font-style: normal;
    font-weight: 500;
    font-size: 50px;
    line-height: 123%;
    text-align: center;
    text-transform: capitalize;
    color: #ffffff;
    width: 100%;
    margin-bottom: 20px;
  }
  .contact-us .container .contact-form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 20px;
    flex-basis: calc(50% - 20px);
    flex-grow: 0;
  }
  .contact-us .container .contact-form input {
    border-radius: 10px;
    width: 100%;
    background: rgba(255, 255, 255, 0.4);
    box-shadow: 0px 4px 44px rgba(0, 0, 0, 0.1);
    height: 66px;
    border: none;
    outline: none;
    padding: 0 30px;
  }
  .contact-us .container .contact-form input::-moz-placeholder {
    text-align: left;
    color: #000;
  }
  .contact-us .container .contact-form input::placeholder {
    text-align: left;
    color: #000;
  }
  .contact-us .container .contact-form button {
    text-transform: capitalize;
    font-weight: 500;
    padding: 0 30px;
    border-radius: 10px;
    width: 100%;
    background-color: #fff;
    color: var(--color);
    height: 66px;
    text-align: left;
    outline: none;
    border: none;
  }
  .contact-us .container .schedule {
    flex-basis: calc(50% - 20px);
    background-color: #fff;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 30px;
    align-items: center;
    padding: 40px 20px;
  }
  .contact-us .container .schedule h4 {
    font-family: "Kameron";
    font-style: normal;
    font-weight: 500;
    font-size: 30px;
    line-height: 37px;
    color: #f37821;
    padding-bottom: 10px;
    position: relative;
  }
  .contact-us .container .schedule h4:after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 120px;
    height: 2px;
    background-color: #000;
  }
  .contact-us .container .schedule div {
    display: inline-flex;
    align-items: center;
    flex-direction: row;
    gap: 10px;
    font-weight: 500;
    font-size: 24px;
    line-height: 34px;
    text-transform: capitalize;
    color: #000000;
  }
  .visit-us {
    background-color: var(--color2);
  }
  .visit-us .container {
    padding: 0 130px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
  }
  .visit-us .container h3 {
    white-space: pre-line;
    font-family: "Kameron";
    font-style: normal;
    font-weight: 500;
    font-size: 50px;
    line-height: 102%;
    text-align: center;
    text-transform: capitalize;
    color: #000000;
    margin-bottom: 40px;
  }
  .visit-us .container .location {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 20px 40px;
    background-color: var(--color);
    font-size: 24px;
    line-height: 31px;
    text-transform: capitalize;
    color: #ffffff;
    border-radius: 10px;
  }
  .visit-us .container iframe {
    border-radius: 0 0 10px 10px;
  }
  .seo {
    background-color: var(--color);
    margin-top: -300px;
  }
  .seo .container {
    padding-top: 200px;
    color: #fff;
  }
  .seo .container h2 {
    font-size: 50px;
    line-height: 60px;
    font-feature-settings: "kern" off;
    margin-bottom: 20px;
  }
  .seo .container p {
    font-size: 16px;
    line-height: 19px;
    text-align: justify;
  }
  .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: 200px;
  }
  footer .container .details {
    max-width: calc(100% - 200px);
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    text-transform: capitalize;
    color: #000;
  }
  footer .container .footer-social {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
  }
  footer .container .footer-social a {
    line-height: 14px;
  }
}
@media screen and (max-width: 991px) {
  .hamburger {
    display: none;
    margin: auto 0;
  }
  .items {
    width: 100%;
  }
  .items .item {
    position: relative;
  }
  .items .item img {
    border-radius: 10px;
    width: 260px;
    height: 260px;
    -o-object-fit: fill;
       object-fit: fill;
  }
  .items .item:hover .details .name, .items .item:focus .details .name {
    bottom: 0px;
  }
  .items .item:hover .details .price, .items .item:focus .details .price {
    top: 5px;
  }
  .items .item .details {
    transition: opacity 0.5s ease-in;
    position: absolute;
    padding: 0px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    max-width: 260px;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
    left: 0;
    top: 0;
  }
  .items .item .details .name,
  .items .item .details .price {
    filter: drop-shadow(0px 8px 34px rgba(0, 0, 0, 0.15));
    width: 100%;
    text-transform: capitalize;
    text-align: center;
    color: #ffffff;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
  .items .item .details .name {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.9) 100%);
    -webkit-backdrop-filter: blur(3px);
            backdrop-filter: blur(3px);
    font-family: "Kameron";
    font-weight: 600;
    font-size: 18px;
    line-height: 60px;
    height: 60px;
    bottom: -60px;
    transition: bottom 0.3s ease-in;
  }
  .items .item .details .price {
    font-weight: 600;
    font-size: 18px;
    line-height: 22px;
    top: -40px;
    transition: top 0.3s ease-in;
  }
  .items .item .details .price:before {
    background-color: var(--color);
    content: "";
    position: absolute;
    height: 270px;
    top: -235px;
    border-radius: 50%;
    width: 270px;
    left: 0;
    z-index: -1;
  }
  nav {
    background: #fff;
  }
  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: 81px;
  }
  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 a {
    text-transform: capitalize;
    font-size: 18px;
    line-height: 30px;
    font-weight: var(--regular);
  }
  nav .container ul.links li a.goFood {
    padding: 12px 16px;
  }
  nav .container ul.links li a:not(.goFood) {
    color: #000;
  }
  nav .container ul.links li a:not(.goFood).active {
    color: var(--color);
  }
  .hero,
  .promo,
  .foods-drinks,
  .contact-us,
  .visit-us,
  .seo,
  footer {
    padding: 30px 0;
  }
  .hero .container,
  .promo .container,
  .foods-drinks .container,
  .contact-us .container,
  .visit-us .container,
  .seo .container,
  footer .container {
    padding: 0 30px;
  }
  .hero .container {
    padding-top: 20px;
    padding-bottom: 20px;
    text-align: left;
  }
  .hero .container .title,
  .hero .container .description,
  .hero .container .social {
    max-width: 50%;
    margin-bottom: 40px;
  }
  .hero .container .title {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
    font-family: "Kameron", serif;
    font-style: normal;
    font-weight: 500;
    font-size: 60px;
    line-height: 100%;
    text-align: justify;
    color: #ffffff;
  }
  .hero .container .title span {
    background-color: var(--color);
    padding: 0 8px;
  }
  .hero .container .description {
    font-size: 18px;
    line-height: 22px;
    color: #000000;
  }
  .hero .container a.tel {
    line-height: 18px;
    display: inline-flex;
    padding: 15px 8px;
    border-radius: 10px;
    background-color: var(--color);
    color: #fff;
  }
  .hero .container a.goFood {
    font-size: 18px;
    padding: 16px 8px;
    text-align: center;
  }
  .hero .container .social {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
  }
  .hero .container .social svg {
    display: none;
  }
  .promo {
    background-color: var(--color);
  }
  .promo .container {
    padding-top: 40px;
    padding-bottom: 40px;
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
  }
  .promo .container .block {
    flex: 0 0 calc(33.3333% - 15px);
    position: relative;
    border-radius: 10px;
    background-color: #fff;
    padding: 54px 12px 40px;
    color: #000000;
  }
  .promo .container .block .image {
    position: absolute;
    background: #ffffff;
    box-shadow: 0px 14px 54px rgba(0, 0, 0, 0.1);
    padding: 15px 16px;
    border-radius: 50%;
    left: 50%;
    top: -50%;
    transform: translate(-50%, 50%);
  }
  .promo .container .block h4 {
    font-family: "Kameron";
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 111%;
    text-align: center;
    text-transform: capitalize;
    margin-bottom: 8px;
  }
  .promo .container .block p {
    font-size: 15px;
    line-height: 17px;
    text-align: center;
    text-transform: capitalize;
  }
  .foods-drinks {
    background-color: var(--color2);
  }
  .foods-drinks .container .top {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    -moz-column-gap: 10px;
         column-gap: 10px;
  }
  .foods-drinks .container .top h2 {
    font-family: "Kameron";
    font-style: normal;
    font-weight: 500;
    font-size: 40px;
    line-height: 40px;
    padding: 0 6px;
    text-align: justify;
    color: #ffffff;
    background-color: var(--color);
  }
  .foods-drinks .container .top .link {
    background-color: var(--color);
    padding: 10px 16px;
    border-radius: 40px;
    border: none;
    outline: none;
  }
  .foods-drinks .container .bottom {
    margin-top: 40px;
    margin-bottom: 60px;
  }
  .foods-drinks .container .bottom:last-of-type {
    margin-bottom: 0;
  }
  .contact-us {
    background-color: var(--color);
  }
  .contact-us .container {
    padding: 0 30px;
    display: flex;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 40px;
  }
  .contact-us .container h2 {
    font-family: "Kameron";
    font-style: normal;
    font-weight: 500;
    font-size: 50px;
    line-height: 123%;
    text-align: center;
    text-transform: capitalize;
    color: #ffffff;
    width: 100%;
    margin-bottom: 20px;
  }
  .contact-us .container .contact-form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 20px;
    flex-basis: calc(50% - 20px);
    flex-grow: 0;
  }
  .contact-us .container .contact-form input {
    border-radius: 10px;
    width: 100%;
    background: rgba(255, 255, 255, 0.4);
    box-shadow: 0px 4px 44px rgba(0, 0, 0, 0.1);
    height: 66px;
    border: none;
    outline: none;
    padding: 0 30px;
  }
  .contact-us .container .contact-form input::-moz-placeholder {
    text-align: left;
    color: #000;
  }
  .contact-us .container .contact-form input::placeholder {
    text-align: left;
    color: #000;
  }
  .contact-us .container .contact-form button {
    text-transform: capitalize;
    font-weight: 500;
    padding: 0 30px;
    border-radius: 10px;
    width: 100%;
    background-color: #fff;
    color: var(--color);
    height: 66px;
    text-align: left;
    outline: none;
    border: none;
  }
  .contact-us .container .schedule {
    flex-basis: calc(50% - 20px);
    background-color: #fff;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 30px;
    align-items: center;
    padding: 40px 20px;
  }
  .contact-us .container .schedule h4 {
    font-family: "Kameron";
    font-style: normal;
    font-weight: 500;
    font-size: 30px;
    line-height: 37px;
    color: #f37821;
    padding-bottom: 10px;
    position: relative;
  }
  .contact-us .container .schedule h4:after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 120px;
    height: 2px;
    background-color: #000;
  }
  .contact-us .container .schedule div {
    display: inline-flex;
    align-items: center;
    flex-direction: row;
    gap: 10px;
    font-weight: 500;
    font-size: 24px;
    line-height: 34px;
    text-transform: capitalize;
    color: #000000;
  }
  .visit-us {
    background-color: var(--color2);
  }
  .visit-us .container {
    padding: 0 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
  }
  .visit-us .container h3 {
    white-space: pre-line;
    font-family: "Kameron";
    font-style: normal;
    font-weight: 500;
    font-size: 50px;
    line-height: 102%;
    text-align: center;
    text-transform: capitalize;
    color: #000000;
    margin-bottom: 40px;
  }
  .visit-us .container .location {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 20px 40px;
    background-color: var(--color);
    font-size: 24px;
    line-height: 31px;
    text-transform: capitalize;
    color: #ffffff;
    border-radius: 10px;
  }
  .visit-us .container iframe {
    border-radius: 0 0 10px 10px;
    height: 350px;
  }
  .seo {
    background-color: var(--color);
    margin-top: -175px;
  }
  .seo .container {
    padding-top: 150px;
    color: #fff;
  }
  .seo .container h2 {
    font-size: 40px;
    line-height: 62px;
    font-feature-settings: "kern" off;
    margin-bottom: 10px;
  }
  .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;
    -moz-column-gap: 30px;
         column-gap: 30px;
  }
  footer .container .logo > a > img {
    width: 200px;
  }
  footer .container .details {
    max-width: calc(100% - 200px);
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    text-transform: capitalize;
    color: #000;
  }
  footer .container .footer-social {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
  }
  footer .container .footer-social a {
    line-height: 14px;
  }
}
@media screen and (max-width: 767px) {
  .hamburger {
    display: block;
    margin: auto 0;
  }
  .items {
    width: 100%;
  }
  .items .item {
    position: relative;
  }
  .items .item img {
    border-radius: 10px;
    width: 220px;
    height: 220px;
    -o-object-fit: fill;
       object-fit: fill;
  }
  .items .item:hover .details .name, .items .item:focus .details .name {
    bottom: 0px;
  }
  .items .item:hover .details .price, .items .item:focus .details .price {
    top: 5px;
  }
  .items .item .details {
    transition: opacity 0.5s ease-in;
    position: absolute;
    padding: 0px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    max-width: 220px;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
    left: 0;
    top: 0;
  }
  .items .item .details .name,
  .items .item .details .price {
    filter: drop-shadow(0px 8px 34px rgba(0, 0, 0, 0.15));
    width: 100%;
    text-transform: capitalize;
    text-align: center;
    color: #ffffff;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
  .items .item .details .name {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.9) 100%);
    -webkit-backdrop-filter: blur(3px);
            backdrop-filter: blur(3px);
    font-family: "Kameron";
    font-weight: 600;
    font-size: 17px;
    line-height: 60px;
    height: 60px;
    bottom: -60px;
    transition: bottom 0.3s ease-in;
  }
  .items .item .details .price {
    font-weight: 600;
    font-size: 17px;
    line-height: 22px;
    top: -40px;
    transition: top 0.3s ease-in;
  }
  .items .item .details .price:before {
    background-color: var(--color);
    content: "";
    position: absolute;
    height: 220px;
    top: -180px;
    border-radius: 50%;
    width: 220px;
    left: 0;
    z-index: -1;
  }
  nav {
    background: #fff;
  }
  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: 81px;
  }
  nav .container ul.links {
    margin-right: 0;
    display: none;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    gap: 10px;
    position: absolute;
    top: 120px;
    left: 0;
    width: 100%;
    background-color: #fff;
    z-index: 99;
    padding: 20px 0;
  }
  nav .container ul.links li a {
    text-transform: capitalize;
    font-size: 18px;
    line-height: 30px;
    font-weight: var(--regular);
  }
  nav .container ul.links li a.goFood {
    padding: 12px 16px;
  }
  nav .container ul.links li a:not(.goFood) {
    color: #000;
  }
  nav .container ul.links li a:not(.goFood).active {
    color: var(--color);
  }
  .hero,
  .promo,
  .foods-drinks,
  .contact-us,
  .visit-us,
  .seo,
  footer {
    padding: 30px 0;
  }
  .hero .container,
  .promo .container,
  .foods-drinks .container,
  .contact-us .container,
  .visit-us .container,
  .seo .container,
  footer .container {
    padding: 0 30px;
  }
  .hero .container {
    padding-top: 20px;
    padding-bottom: 20px;
    text-align: left;
  }
  .hero .container .title,
  .hero .container .description,
  .hero .container .social {
    max-width: 60%;
    margin-bottom: 20px;
  }
  .hero .container .title {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
    font-family: "Kameron", serif;
    font-style: normal;
    font-weight: 500;
    font-size: 40px;
    line-height: 100%;
    text-align: justify;
    color: #ffffff;
  }
  .hero .container .title span {
    background-color: var(--color);
    padding: 0 8px;
  }
  .hero .container .description {
    font-size: 16px;
    line-height: 20px;
    color: #000000;
  }
  .hero .container a.tel {
    line-height: 18px;
    display: inline-flex;
    padding: 12px 8px;
    border-radius: 10px;
    background-color: var(--color);
    color: #fff;
    font-size: 16px;
  }
  .hero .container a.goFood {
    font-size: 18px;
    padding: 12px 8px;
    text-align: center;
    font-size: 16px;
  }
  .hero .container .social {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
  }
  .hero .container .social svg {
    display: none;
  }
  .promo {
    background-color: var(--color);
  }
  .promo .container {
    padding-top: 40px;
    padding-bottom: 40px;
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    gap: 60px;
  }
  .promo .container .block {
    flex: 0 0 100%;
    position: relative;
    border-radius: 10px;
    background-color: #fff;
    padding: 64px 12px 40px;
    color: #000000;
  }
  .promo .container .block .image {
    position: absolute;
    background: #ffffff;
    box-shadow: 0px 14px 54px rgba(0, 0, 0, 0.1);
    padding: 15px 16px;
    border-radius: 50%;
    left: 50%;
    top: -50%;
    transform: translate(-50%, 44%);
  }
  .promo .container .block h4 {
    font-family: "Kameron";
    font-style: normal;
    font-weight: 600;
    font-size: 28px;
    line-height: 111%;
    text-align: center;
    text-transform: capitalize;
    margin-bottom: 8px;
  }
  .promo .container .block p {
    font-size: 15px;
    line-height: 17px;
    text-align: center;
    text-transform: capitalize;
  }
  .foods-drinks .container .top {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    -moz-column-gap: 10px;
         column-gap: 10px;
  }
  .foods-drinks .container .top h2 {
    font-family: "Kameron";
    font-style: normal;
    font-weight: 500;
    font-size: 32px;
    line-height: 36px;
    padding: 0 6px;
    text-align: justify;
    color: #ffffff;
    background-color: var(--color);
  }
  .foods-drinks .container .top .link {
    background-color: var(--color);
    padding: 10px 16px;
    border-radius: 40px;
    border: none;
    outline: none;
  }
  .foods-drinks .container .bottom {
    margin-top: 40px;
    margin-bottom: 60px;
  }
  .foods-drinks .container .bottom:last-of-type {
    margin-bottom: 0;
  }
  .contact-us {
    background-color: var(--color);
  }
  .contact-us .container {
    padding: 0 30px;
    display: flex;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 40px;
  }
  .contact-us .container h2 {
    font-family: "Kameron";
    font-style: normal;
    font-weight: 500;
    font-size: 32px;
    line-height: 123%;
    text-align: center;
    text-transform: capitalize;
    color: #ffffff;
    width: 100%;
    margin-bottom: 0px;
  }
  .contact-us .container .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 .contact-form input {
    border-radius: 10px;
    width: 100%;
    background: rgba(255, 255, 255, 0.4);
    box-shadow: 0px 4px 44px rgba(0, 0, 0, 0.1);
    height: 66px;
    border: none;
    outline: none;
    padding: 0 30px;
  }
  .contact-us .container .contact-form input::-moz-placeholder {
    text-align: left;
    color: #000;
  }
  .contact-us .container .contact-form input::placeholder {
    text-align: left;
    color: #000;
  }
  .contact-us .container .contact-form button {
    text-transform: capitalize;
    font-weight: 500;
    padding: 0 30px;
    border-radius: 10px;
    width: 100%;
    background-color: #fff;
    color: var(--color);
    height: 66px;
    text-align: left;
    outline: none;
    border: none;
  }
  .contact-us .container .schedule {
    flex-basis: 100%;
    background-color: #fff;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 30px;
    align-items: center;
    padding: 40px 20px;
  }
  .contact-us .container .schedule h4 {
    font-family: "Kameron";
    font-style: normal;
    font-weight: 500;
    font-size: 30px;
    line-height: 37px;
    color: #f37821;
    padding-bottom: 10px;
    position: relative;
  }
  .contact-us .container .schedule h4:after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 120px;
    height: 2px;
    background-color: #000;
  }
  .contact-us .container .schedule div {
    display: inline-flex;
    align-items: center;
    flex-direction: row;
    gap: 10px;
    font-weight: 500;
    font-size: 24px;
    line-height: 34px;
    text-transform: capitalize;
    color: #000000;
  }
  .visit-us {
    background-color: var(--color2);
  }
  .visit-us .container {
    padding: 0 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
  }
  .visit-us .container h3 {
    white-space: pre-line;
    font-family: "Kameron";
    font-style: normal;
    font-weight: 500;
    font-size: 32px;
    line-height: 102%;
    text-align: center;
    text-transform: capitalize;
    color: #000000;
    margin-bottom: 20px;
  }
  .visit-us .container .location {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 20px 40px;
    background-color: var(--color);
    font-size: 18px;
    line-height: 26px;
    text-transform: capitalize;
    color: #ffffff;
    border-radius: 10px;
  }
  .visit-us .container iframe {
    border-radius: 0 0 10px 10px;
    height: 350px;
  }
  .seo {
    background-color: var(--color);
    margin-top: -175px;
  }
  .seo .container {
    padding-top: 150px;
    color: #fff;
  }
  .seo .container h2 {
    font-weight: 600;
    font-size: 40px;
    line-height: 48px;
    font-feature-settings: "kern" off;
    margin-bottom: 10px;
  }
  .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: 30px;
  }
  footer .container .logo > a > img {
    width: 200px;
  }
  footer .container .details {
    max-width: 100%;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    text-transform: capitalize;
    color: #000;
    order: 2;
  }
  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;
  }
}
@media screen and (max-width: 567px) {
  .hamburger {
    display: block;
    margin: auto 0;
  }
  .items {
    width: 100%;
  }
  .items .item {
    position: relative;
  }
  .items .item img {
    border-radius: 10px;
    width: 220px;
    height: 220px;
    -o-object-fit: fill;
       object-fit: fill;
  }
  .items .item:hover .details .name, .items .item:focus .details .name {
    bottom: 0px;
  }
  .items .item:hover .details .price, .items .item:focus .details .price {
    top: 5px;
  }
  .items .item .details {
    transition: opacity 0.5s ease-in;
    position: absolute;
    padding: 0px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    max-width: 220px;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
    left: 0;
    top: 0;
  }
  .items .item .details .name,
  .items .item .details .price {
    filter: drop-shadow(0px 8px 34px rgba(0, 0, 0, 0.15));
    width: 100%;
    text-transform: capitalize;
    text-align: center;
    color: #ffffff;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
  .items .item .details .name {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.9) 100%);
    -webkit-backdrop-filter: blur(3px);
            backdrop-filter: blur(3px);
    font-family: "Kameron";
    font-weight: 600;
    font-size: 17px;
    line-height: 60px;
    height: 60px;
    bottom: -60px;
    transition: bottom 0.3s ease-in;
  }
  .items .item .details .price {
    font-weight: 600;
    font-size: 17px;
    line-height: 22px;
    top: -40px;
    transition: top 0.3s ease-in;
  }
  .items .item .details .price:before {
    background-color: var(--color);
    content: "";
    position: absolute;
    height: 220px;
    top: -180px;
    border-radius: 50%;
    width: 220px;
    left: 0;
    z-index: -1;
  }
  nav {
    background: #fff;
  }
  nav .container {
    padding: 0 30px;
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
    height: 100px;
  }
  nav .container .logo {
    margin-left: 0;
    justify-self: flex-start;
  }
  nav .container .logo img {
    width: 100%;
    height: 81px;
  }
  nav .container ul.links {
    margin-right: 0;
    display: none;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    gap: 10px;
    position: absolute;
    top: 100px;
    left: 0;
    width: 100%;
    background-color: #fff;
    z-index: 99;
    padding: 20px 0;
  }
  nav .container ul.links li a {
    text-transform: capitalize;
    font-size: 18px;
    line-height: 30px;
    font-weight: var(--regular);
  }
  nav .container ul.links li a.goFood {
    padding: 12px 16px;
  }
  nav .container ul.links li a:not(.goFood) {
    color: #000;
  }
  nav .container ul.links li a:not(.goFood).active {
    color: var(--color);
  }
  .hero,
  .promo,
  .foods-drinks,
  .contact-us,
  .visit-us,
  .seo,
  footer {
    padding: 30px 0;
  }
  .hero .container,
  .promo .container,
  .foods-drinks .container,
  .contact-us .container,
  .visit-us .container,
  .seo .container,
  footer .container {
    padding: 0 30px;
  }
  .hero .container {
    padding-top: 0px;
    padding-bottom: 0px;
    text-align: left;
  }
  .hero .container .title,
  .hero .container .description,
  .hero .container .social {
    max-width: 50%;
    margin-bottom: 20px;
  }
  .hero .container .title {
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: flex-start;
    font-family: "Kameron", serif;
    font-style: normal;
    font-weight: 500;
    font-size: 32px;
    line-height: 100%;
    text-align: justify;
    color: #ffffff;
  }
  .hero .container .title span {
    background-color: var(--color);
    padding: 0 8px;
  }
  .hero .container .description {
    font-size: 16px;
    line-height: 16px;
    color: #000000;
  }
  .hero .container a.tel {
    line-height: 18px;
    display: inline-flex;
    padding: 12px 4px;
    border-radius: 10px;
    background-color: var(--color);
    color: #fff;
    font-size: 16px;
  }
  .hero .container a.goFood {
    font-size: 18px;
    padding: 12px 4px;
    text-align: center;
    font-size: 16px;
  }
  .hero .container .social {
    max-width: 70%;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
  }
  .hero .container .social svg {
    display: none;
  }
  .promo {
    background-color: var(--color);
  }
  .promo .container {
    padding-top: 50px;
    padding-bottom: 30px;
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    gap: 60px;
  }
  .promo .container .block {
    flex: 0 0 100%;
    position: relative;
    border-radius: 10px;
    background-color: #fff;
    padding: 64px 12px 40px;
    color: #000000;
  }
  .promo .container .block .image {
    position: absolute;
    background: #ffffff;
    box-shadow: 0px 14px 54px rgba(0, 0, 0, 0.1);
    padding: 15px 16px;
    border-radius: 50%;
    left: 50%;
    top: -50%;
    transform: translate(-50%, 52%);
  }
  .promo .container .block h4 {
    font-family: "Kameron";
    font-style: normal;
    font-weight: 600;
    font-size: 28px;
    line-height: 111%;
    text-align: center;
    text-transform: capitalize;
    margin-bottom: 8px;
  }
  .promo .container .block p {
    font-size: 15px;
    line-height: 17px;
    text-align: center;
    text-transform: capitalize;
  }
  .foods-drinks .container .top {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    -moz-column-gap: 0px;
         column-gap: 0px;
  }
  .foods-drinks .container .top h2 {
    font-family: "Kameron";
    font-style: normal;
    font-weight: 500;
    font-size: 32px;
    line-height: 36px;
    padding: 0 6px;
    text-align: center;
    color: #ffffff;
    background-color: var(--color);
    margin-bottom: 10px;
  }
  .foods-drinks .container .top .link {
    background-color: var(--color);
    padding: 10px 16px;
    border-radius: 40px;
    border: none;
    outline: none;
  }
  .foods-drinks .container .bottom {
    margin-top: 40px;
    margin-bottom: 60px;
  }
  .foods-drinks .container .bottom:last-of-type {
    margin-bottom: 0;
  }
  .contact-us {
    background-color: var(--color);
  }
  .contact-us .container {
    padding: 0 30px;
    display: flex;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
  }
  .contact-us .container h2 {
    font-family: "Kameron";
    font-style: normal;
    font-weight: 500;
    font-size: 32px;
    line-height: 123%;
    text-align: center;
    text-transform: capitalize;
    color: #ffffff;
    width: 100%;
    margin-bottom: 0px;
  }
  .contact-us .container .contact-form {
    order: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 20px;
    flex-basis: 100%;
    flex-grow: 0;
  }
  .contact-us .container .contact-form input {
    border-radius: 10px;
    width: 100%;
    background: rgba(255, 255, 255, 0.4);
    box-shadow: 0px 4px 44px rgba(0, 0, 0, 0.1);
    height: 66px;
    border: none;
    outline: none;
    padding: 0 30px;
  }
  .contact-us .container .contact-form input::-moz-placeholder {
    text-align: left;
    color: #000;
  }
  .contact-us .container .contact-form input::placeholder {
    text-align: left;
    color: #000;
  }
  .contact-us .container .contact-form button {
    text-transform: capitalize;
    font-weight: 500;
    padding: 0 30px;
    border-radius: 10px;
    width: 100%;
    background-color: #fff;
    color: var(--color);
    height: 66px;
    text-align: left;
    outline: none;
    border: none;
  }
  .contact-us .container .schedule {
    flex-basis: 100%;
    background-color: #fff;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 30px;
    align-items: center;
    padding: 40px 20px;
  }
  .contact-us .container .schedule h4 {
    font-family: "Kameron";
    font-style: normal;
    font-weight: 600;
    font-size: 26px;
    line-height: 37px;
    color: #f37821;
    padding-bottom: 10px;
    position: relative;
  }
  .contact-us .container .schedule h4:after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 120px;
    height: 2px;
    background-color: #000;
  }
  .contact-us .container .schedule div {
    display: inline-flex;
    align-items: center;
    flex-direction: row;
    gap: 10px;
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    text-transform: capitalize;
    color: #000000;
  }
  .visit-us {
    background-color: var(--color2);
  }
  .visit-us .container {
    padding: 0 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
  }
  .visit-us .container h3 {
    white-space: pre-line;
    font-family: "Kameron";
    font-style: normal;
    font-weight: 500;
    font-size: 32px;
    line-height: 102%;
    text-align: center;
    text-transform: capitalize;
    color: #000000;
    margin-bottom: 20px;
  }
  .visit-us .container .location {
    display: inline-flex;
    align-items: center;
    flex-direction: column;
    gap: 10px;
    padding: 20px;
    background-color: var(--color);
    font-size: 16px;
    line-height: 20px;
    text-transform: capitalize;
    color: #ffffff;
    border-radius: 10px;
  }
  .visit-us .container .location svg {
    width: 36px;
  }
  .visit-us .container iframe {
    border-radius: 0 0 10px 10px;
    height: 350px;
  }
  .seo {
    background-color: var(--color);
    margin-top: -175px;
  }
  .seo .container {
    padding-top: 150px;
    color: #fff;
  }
  .seo .container h2 {
    font-weight: 600;
    font-size: 32px;
    line-height: 36px;
    font-feature-settings: "kern" off;
    margin-bottom: 10px;
  }
  .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: 30px;
  }
  footer .container .logo > a > img {
    width: 200px;
  }
  footer .container .details {
    max-width: 100%;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    text-transform: capitalize;
    color: #000;
    order: 2;
  }
  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;
  }
  .hero .container .social {
    flex-direction: column;
    align-items: start;
  }
  .promo .container {
    gap: 95px;
  }
}/*# sourceMappingURL=style.css.map */