*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

html {
  height: 100%;
  font-size: 62.5%;
  overflow-x: hidden;
}

body {
  height: 100%;
  font-size: 1.6rem;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body > section {
  overflow-x: hidden;
}

body > div {
  overflow: hidden;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

#root,
#__next {
  isolation: isolate;
}

body {
  font-size: 1.6rem;
  font-family: "Roboto", sans-serif;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

a,
li {
  text-decoration: none;
}
@media (min-width: 1440px) {
  a,
  li {
    font-size: 1.6rem;
  }
}

p {
  text-align: justify;
}
@media (min-width: 1440px) {
  p {
    font-size: 1.6rem;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display", serif;
  font-style: italic;
}

a {
  color: rgb(225, 145, 55);
}

.roboto-font {
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: 600;
}

.heading-xxl {
  font-size: clamp(6rem, 10vw, 12rem);
}

.heading-lg {
  font-size: clamp(3rem, 6.5vw, 7rem);
}

.heading-md {
  font-size: clamp(2.4rem, 4vw, 4rem);
}

.heading-sm {
  font-size: clamp(2rem, 2vw, 2.5rem);
}

.heading-xs {
  font-size: 1.8rem;
}

.light-text {
  color: #fff;
}

.orange-text {
  color: rgb(225, 145, 55);
}

.underline-heading,
.underline-heading-light {
  display: inline-block;
  position: relative;
}

.underline-heading::after {
  content: "";
  position: absolute;
  height: 20px;
  width: 20rem;
  background-image: url("../img/home/vintage-underline-2.svg");
  background-size: contain;
  background-repeat: no-repeat;
  bottom: -2.5rem;
  left: 0;
}

.underline-heading-light::after {
  content: "";
  position: absolute;
  height: 20px;
  width: 20rem;
  background-image: url("../img/contact/vintage-underline-2-light.svg");
  background-size: contain;
  background-repeat: no-repeat;
  bottom: -2.5rem;
  left: 0;
}

.underline-heading--center::after {
  left: 50%;
  transform: translateX(-50%);
}

.disclaimer {
  color: rgb(183, 183, 183);
  font-style: italic;
}

.fa-leaf {
  color: #00bf63;
  margin-left: 0.5rem;
}

.veg-icon {
  margin-left: 10px;
  display: inline-block;
  width: 34px;
}

input#date {
  text-transform: uppercase;
}

.dark-bg {
  background: #1b1b1b;
}

.wrapper {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 5.8vw;
}

.wrapper-no-padding {
  max-width: 1600px;
}
@media (min-width: 1440px) {
  .wrapper-no-padding {
    margin: 0 auto;
  }
}

.hero-sm {
  min-height: 40rem;
}

.padding-v {
  padding-block: min(10vh, 10rem);
}

.padding-t {
  padding-top: min(10vh, 10rem);
}

.padding-b {
  padding-bottom: min(10vh, 10rem);
}

@media (min-width: 992px) {
  .form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

@media (min-width: 992px) {
  .checklist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(0, 30rem));
    gap: 1rem;
  }
}

.hidden {
  opacity: 0;
  transform: translateX(-5%);
  transition: all 1s;
  transition-delay: 0.15s;
}

.show {
  opacity: 1;
  transform: translateX(0);
}

.dark-form .contact__form-field input,
.dark-form .contact__form-field select,
.dark-form .contact__form-field textarea {
  background-color: #fff;
  border: 1px solid #000;
  color: #000;
}

.dark-texture-bg {
  background: url("../img/home/hero-bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  color: #fff;
}

.gray-bg {
  background-color: #e9e9e9;
}

.footer__logo {
  max-width: 26.9rem;
}
.footer .wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 5rem;
}
.footer-lists {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
@media (min-width: 992px) {
  .footer-lists {
    gap: 6rem;
  }
}
.footer-lists ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footer-lists li.social-icons {
  display: flex;
  gap: 1.5rem;
}
.footer-lists a {
  color: #fff;
}
.footer-copyright {
  opacity: 0.5;
}

.page-banner {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 40rem;
  color: #fff;
}
.page-banner__heading::after {
  left: 50%;
  transform: translateX(-50%);
}
.page-banner--menu {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.4) 100%), url("../img/banners/menu-banner.jpg");
  background-size: cover;
  background-position: center;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.classic-list {
  list-style: disc;
  padding-left: 2rem;
}

.main-btn {
  display: inline-block;
  background: #212529;
  color: #fff;
  padding: 1.2rem 2.5rem;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  border-radius: 0.5rem;
  transition: background-color 0.4s;
  border: none;
}
.main-btn:hover {
  background-color: #000;
}
.main-btn-light {
  background: #fff;
  color: #212529;
}
.main-btn-light:hover {
  color: #fff;
}
.main-btn-light:hover i {
  color: #fff;
}
.main-btn-light i {
  color: #212529;
}
.main-btn-logo {
  width: 14rem;
}

.scroll-heading {
  overflow: hidden;
}

.scroll-heading span {
  display: none;
}

.scroll-heading span.text-in {
  display: block;
  animation: textIn 0.5s ease;
}

.scroll-heading span.text-out {
  display: block;
  animation: textOut 0.5s ease;
}

@keyframes textIn {
  0% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(0%);
  }
}
@keyframes textOut {
  0% {
    transform: translateY(0%);
  }
  100% {
    transform: translateY(-100%);
  }
}
.hero {
  background: url("../img/home/hero-bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 70rem;
  color: #fff;
}
.hero .wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 992px) {
  .hero .wrapper {
    flex-direction: row;
    justify-content: space-between;
  }
}
.hero .wrapper > * {
  flex-basis: 100%;
}
.hero .swiper {
  width: 100%;
}
.hero .dish-slide {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero .dish-slide-dish {
  margin: 0 auto;
  width: 60%;
}
.hero .dish-slide-dish-1 {
  width: 65%;
}
.hero .dish-slide-dish-2 {
  position: relative;
  z-index: 1;
  width: 80%;
}
.hero .dish-slide-dish-3 {
  width: 70%;
  position: relative;
  z-index: 1;
}
.hero .dish-slide-el {
  position: absolute;
}
.hero .dish-slide-el-1 {
  width: 20%;
  top: 0;
  right: 0;
}
.hero .dish-slide-el-2 {
  width: 20%;
  bottom: 0;
  right: 0;
}
.hero .dish-slide-el-3 {
  width: 62%;
  top: 0;
  left: 20%;
}
.hero .dish-slide-el-4 {
  width: 20%;
  bottom: 0;
  left: 10%;
}
.hero .dish-slide-el-5 {
  width: 20%;
  top: 20%;
  left: 10%;
}
.hero .dish-slide-el-6 {
  width: 70%;
  right: 0;
  top: 0;
}
.hero .dish-slide-el-7 {
  width: 15%;
  right: 20%;
  top: 40%;
}
.hero .dish-slide-el-8 {
  width: 60%;
  bottom: 0;
  left: 10%;
  z-index: 0;
}
.hero .dish-slide-el-9 {
  width: 65%;
  top: 0;
  right: 0;
}
.hero .dish-slide-el-10 {
  width: 20%;
  right: 10%;
  bottom: 5%;
}
.hero .dish-slide-el-11 {
  width: 30%;
  right: 0;
  top: -5%;
}
.hero .dish-slide-el-12 {
  width: 15%;
  left: 12%;
  bottom: 0%;
}

.fresh-meats h1 span {
  position: relative;
  margin-right: 2rem;
}
.fresh-meats h1 span::after {
  content: "";
  position: absolute;
  right: -1.8rem;
  top: 50%;
  height: 5px;
  width: 5px;
  border-radius: 50%;
  background-color: #fff;
}

.home-banner img {
  width: 100%;
  object-fit: cover;
  max-height: 60rem;
}

.contact-wrapper {
  background: url("../img/home/hero-bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
}

.contact {
  position: relative;
  color: #fff;
  z-index: 1;
}
.contact__img {
  position: absolute;
  z-index: 0;
  opacity: 0.18;
}
.contact__img-1 {
  width: 50%;
  right: 0;
  bottom: 0;
}
@media (min-width: 768px) {
  .contact__img-1 {
    width: 25%;
    right: 0;
    bottom: 0;
  }
}
.contact__img-2 {
  width: 50%;
  left: 0;
  bottom: 0;
}
@media (min-width: 768px) {
  .contact__img-2 {
    width: 25%;
    left: 0;
    bottom: 0;
  }
}
.contact__img-3 {
  width: 50%;
  right: 0;
  top: 0;
}
@media (min-width: 768px) {
  .contact__img-3 {
    width: 25%;
    right: 0;
    top: 0;
  }
}
.contact__img-4 {
  width: 50%;
  left: 0;
  top: 0;
}
@media (min-width: 768px) {
  .contact__img-4 {
    width: 25%;
    left: 0;
    top: 0;
  }
}
@media (min-width: 768px) {
  .contact__layout {
    display: flex;
    gap: min(3vw, 6rem);
  }
  .contact__layout > * {
    flex: 1;
  }
}
.contact__heading::after {
  left: 50%;
  transform: translateX(-50%);
}
.contact__data {
  display: flex;
  flex-direction: column;
  gap: 1.7rem;
}
.contact__data-socials {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}
.contact__form-field input, .contact__form select, .contact__form textarea {
  color: #fff;
  width: 100%;
  display: block;
  padding: 0.8rem 0.5rem;
  border-radius: 0.5rem;
  border: solid #fff 2px;
  background-color: rgba(0, 0, 0, 0.4);
}
.contact__form-submit {
  border: none;
  background-color: #fff;
  color: #000;
}
.contact__form-submit:hover {
  color: #fff;
}

.google-map iframe {
  width: 100%;
}

@media (min-width: 992px) {
  .menu-layout {
    display: flex;
    gap: 4rem;
  }
}
.menu__sidebar {
  margin-bottom: 2rem;
}
@media (min-width: 992px) {
  .menu__sidebar {
    flex: 0 0 300px;
    margin-bottom: 0;
  }
}
.menu__content {
  flex: 1;
  min-width: 0;
}
.menu__toggle {
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 2px solid #000;
  cursor: pointer;
  background: #fff;
  margin-bottom: 1px;
}
.menu__toggle i {
  transition: transform 0.5s;
}
@media (min-width: 992px) {
  .menu__toggle {
    display: none;
  }
}
.menu__toggle--active i {
  transform: rotate(180deg);
}
.menu__content--catering .menu__item {
  margin-bottom: 1rem;
}
.menu__tabs {
  display: none;
  background: #fff;
  border: 2px solid #000;
  border-top: none;
  margin-bottom: 2rem;
}
@media (min-width: 992px) {
  .menu__tabs {
    display: block;
    border: none;
    margin-bottom: 0;
  }
}
.menu__tabs--open {
  display: block;
}
.menu__tab button {
  width: 100%;
  text-align: left;
  background-color: #f5f5f5;
  color: #000;
  padding: 1.5rem 2rem;
  border: none;
  transition: background-color 0.5s;
}
.menu__tab button i {
  opacity: 0;
  margin-left: 0.5rem;
  transform: translateX(0.5rem);
  transition: transform 0.5s;
}
.menu__tab button:hover {
  background-color: #000;
  color: #fff;
}
.menu__tab button:hover i {
  opacity: 1;
  color: #fff;
  transform: translateX(0);
}
.menu__tab--active button {
  background-color: #000;
  color: #fff;
}
.menu__tab--active button i {
  opacity: 1;
  color: #fff;
  transform: translateX(0);
}
.menu__cat {
  display: none;
}
.menu__cat--active {
  display: block;
  animation: moveIn 0.5s forwards;
}
.menu__price {
  font-weight: 600;
}
.menu__price::before {
  content: "$";
}
.menu__price--pound::after {
  content: "/lb";
}
.menu__desc {
  margin-bottom: 1rem;
  border-bottom: 1px solid rgb(221, 221, 221);
}
.menu__desc p {
  max-width: 55rem;
}
.menu__item > p {
  font-weight: 500;
}

@keyframes moveIn {
  0% {
    opacity: 0;
    transform: translateX(1rem);
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
.our-process {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.5) 100%), url("../img/franchising/franchise-img-1.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 62rem;
  display: flex;
  align-items: center;
  color: #fff;
}
.our-process > div {
  width: 100%;
}
.our-process__heading {
  font-family: "Roboto", sans-serif;
  font-style: normal;
}
.our-process__number {
  font-family: "Playfair Display", serif;
  font-style: italic;
  display: inline-block;
  text-align: center;
  width: 3.8rem;
  height: 3.8rem;
  border: 1px solid #fff;
  border-radius: 50%;
}
.our-process__grid {
  display: grid;
  row-gap: 3rem;
  grid-template-columns: repeat(auto-fit, minmax(21.4rem, 1fr));
}

.catering__heading {
  color: rgb(230, 146, 35);
}
.catering__form {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.packages {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.packages .form-field {
  flex: 1;
  display: flex;
  align-items: flex-start;
  gap: 2rem;
}
@media (min-width: 768px) {
  .packages {
    flex-direction: row;
  }
}

.specials {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
}
@media (min-width: 992px) {
  .specials.reverse .specials__img {
    order: 2; /* Change order of Item 1 */
  }
}
@media (min-width: 992px) {
  .specials.reverse .specials__content {
    order: 1; /* Change order of Item 2 */
  }
}
.specials__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.specials p,
.specials h2,
.specials h3,
.specials h4 {
  text-align: center;
  color: #fff;
}
.specials .disclaimer {
  color: #606060;
}
.specials__content {
  padding-inline: 3rem;
}
@media (min-width: 992px) {
  .specials__content {
    padding-inline: 6rem;
  }
}
@media (min-width: 992px) {
  .specials {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
  }
}

.order-online__logo {
  max-width: 30rem;
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.17);
  padding: 3rem;
  border-radius: 1.2rem;
}

dialog {
  position: fixed;
  width: 100%;
  border: none;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (min-width: 768px) {
  dialog {
    width: 50vw;
  }
}

.popup img {
  height: 100%;
  object-fit: cover;
  display: none;
}
@media (min-width: 768px) {
  .popup img {
    display: block;
  }
}

.close-modal {
  position: absolute;
  top: 2rem;
  right: 2rem;
  cursor: pointer;
}

.submit-form-message {
  padding: 10px;
  background-color: rgb(237, 237, 237);
  border-radius: 5px;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(0, 38rem));
}
.events-grid__item {
  background-color: #fff;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0px 0px 18px -7px rgba(0, 0, 0, 0.26);
}
.events-grid__item img {
  width: 100%;
  height: 22rem;
  object-fit: cover;
}
.events-grid__data {
  padding: 4rem;
}

.event__image {
  margin-top: 5rem;
}
.event__image img {
  overflow: hidden;
  border-radius: 3rem;
  object-fit: cover;
  object-position: top;
  height: 60rem;
  width: 100%;
}
.event__banner {
  margin-top: 8rem;
}