@font-face {
  font-family: ArchivoBlack;
  src: url(../../fonts/Archivo_Black/ArchivoBlack-Regular.ttf);
}
@font-face {
  font-family: TimesNR;
  src: url(../../fonts/TimesNRBold.ttf);
}
html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
}

.footer {
  padding: 0 60px 60px 60px;
  background-color: #c1121f;
  position: relative;
  overflow: hidden;
  text-align: center;
}
@media (max-width: 991px) {
  .footer {
    padding: 0 0 60px 0;
  }
}
.footer h2 {
  color: #fff;
  text-align: center;
  padding: 20px;
  font-size: 32px;
}
@media (max-width: 486px) {
  .footer h2 {
    font-size: 20px;
  }
}
.footer .dl-app {
  display: flex;
  justify-content: center;
}
.footer .dl-app a img {
  max-width: 180px;
}
.footer a.logo img {
  width: 400px;
  margin-bottom: 30px;
}
.footer ul.useful_links li a {
  font-size: 20px;
}
.footer ul.privacy_links li a {
  font-size: 12px;
}
.footer a#tel {
  color: #FFF;
  font-size: 20px;
  margin-bottom: 10px;
}
.footer ul {
  list-style: none;
  display: flex;
  justify-content: center;
  padding: 0;
  margin: 0;
}
@media (max-width: 991px) {
  .footer ul {
    flex-direction: column;
    text-align: center;
  }
}
.footer ul li {
  padding: 10px;
}
.footer ul li a {
  color: #fff;
}
.footer .footer-fork {
  background-image: url(../../images/footer/french-fries-with-ketchup.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 400px;
  height: 700px;
  position: absolute;
  bottom: 0;
  right: 0;
  top: 0;
  transform: rotate(-40deg);
  -webkit-transform: rotate(-40deg);
  -moz-transform: rotate(-40deg);
  -ms-transform: rotate(-40deg);
  -o-transform: rotate(-40deg);
}
@media (max-width: 991px) {
  .footer .footer-fork {
    opacity: 0.3;
  }
}
.footer div.footer-links {
  padding-top: 40px;
  border-bottom: 1px solid white;
}
.footer div.footer-links h3 {
  color: #c1121f;
}
.footer div.footer-links span {
  color: #fff;
}
.footer div.footer-links ul {
  list-style-type: none;
}
.footer div.footer-links li {
  font-family: ArchivoBlack;
}
.footer div.footer-links a {
  text-decoration: none;
  color: #fff;
}
.footer span.cp-text {
  color: #fff;
  font-size: 14px;
  text-align: center;
  display: flex;
  justify-content: center;
}
.footer p {
  font-size: 26px;
}
.footer a.mealzo-link {
  font-weight: 700;
}
.footer a.mealzo-link img {
  max-width: 100px;
}

.wave {
  animation: wave linear;
  animation-iteration-count: infinite;
  fill: #c1121f;
  animation-direction: alternate;
  -webkit-animation: wave linear;
}

#wave2 {
  animation-duration: 45s;
  animation-direction: reverse;
  opacity: 1;
}

#wave3 {
  animation-duration: 30s;
  animation-direction: reverse;
  opacity: 1;
  fill: #780000;
}

@keyframes wave {
  0% {
    transform: translateX(-100%);
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    -o-transform: translateX(-100%);
  }
  50% {
    transform: translateX(0%);
    -webkit-transform: translateX(0%);
    -moz-transform: translateX(0%);
    -ms-transform: translateX(0%);
    -o-transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}
section.review {
  background-color: #fff;
  padding: 0 60px 0 60px;
  text-align: center;
  transition: all 0.7s;
  -webkit-transition: all 0.7s;
  -moz-transition: all 0.7s;
  -ms-transition: all 0.7s;
  -o-transition: all 0.7s;
  margin-top: -60px;
}
@media (max-width: 991px) {
  section.review {
    padding: 0 10px;
  }
}
@media (max-width: 480px) {
  section.review {
    margin-top: -20px;
  }
}
section.review h3 {
  color: #c1121f;
  font-weight: bold;
  font-size: 70px;
  text-align: left;
  margin-top: 50px;
}
@media (max-width: 991px) {
  section.review h3 {
    font-size: 50px;
  }
}
@media (max-width: 768px) {
  section.review h3 {
    font-size: 30px;
  }
}
section.review .swiper-wrapper {
  padding: 40px;
}
section.review .card {
  border: none;
  transition: all 1s;
  -webkit-transition: all 1s;
  -moz-transition: all 1s;
  -ms-transition: all 1s;
  -o-transition: all 1s;
}
section.review .card .review-text {
  border: 5px solid #edc00b;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 20px;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  position: relative;
}
section.review .card .review-text:after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 50%;
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 20px solid #edc00b;
  transform: translateX(-50%);
}
section.review .card .review-text span.review-title {
  font-family: ArchivoBlack;
  font-size: 16px;
}
section.review .card .review-text p.review-des {
  font-size: 15px;
  text-align: center;
}
@media (max-width: 486px) {
  section.review .card .review-text p.review-des {
    font-size: 14px;
  }
}
section.review .card .review-text .stars {
  max-width: 130px;
  display: flex;
  margin: auto;
  justify-content: center;
}
section.review .card .card-img {
  display: flex;
  max-width: -moz-max-content;
  max-width: max-content;
  justify-content: center;
  margin: 20px auto;
}
section.review .card .card-img img {
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  max-width: 80px;
}
section.review .swiper-slide {
  opacity: 0.4;
  transition: ease-in-out 1s;
  -webkit-transition: ease-in-out 1s;
  -moz-transition: ease-in-out 1s;
  -ms-transition: ease-in-out 1s;
  -o-transition: ease-in-out 1s;
}
section.review .swiper-slide.swiper-slide-active {
  opacity: 1;
  transform: scale(1.07);
  -webkit-transform: scale(1.07);
  -moz-transform: scale(1.07);
  -ms-transform: scale(1.07);
  -o-transform: scale(1.07);
}

section.More_about {
  padding: 80px 20px;
  position: relative;
}
@media (max-width: 768px) {
  section.More_about {
    padding: 80px 10px;
  }
}
section.More_about h2 {
  font-size: 3.5rem;
  color: #c1121f;
}
@media (max-width: 1300px) {
  section.More_about h2 {
    font-size: 2.5rem;
  }
}
@media (max-width: 768px) {
  section.More_about h2 {
    font-size: 1.6rem;
  }
}
section.More_about p {
  font-size: 18px;
  margin-bottom: 20px;
  line-height: 2;
  max-width: 90%;
}
section.More_about b {
  font-size: 22px;
}
section.More_about img {
  display: flex;
  width: 90%;
  position: sticky;
  top: 30px;
  margin: auto;
  border-radius: 14px;
  -webkit-border-radius: 14px;
  -moz-border-radius: 14px;
  -ms-border-radius: 14px;
  -o-border-radius: 14px;
}
section.More_about a {
  margin: 0 auto;
  margin-top: 20px;
  padding: 16px 80px;
  text-decoration: none;
  border-radius: 30px;
  color: #c1121f;
  background-color: transparent;
  border: 2px solid #c1121f;
  transition: ease-in-out 0.7;
  -webkit-transition: ease-in-out 0.7;
  -moz-transition: ease-in-out 0.7;
  -ms-transition: ease-in-out 0.7;
  -o-transition: ease-in-out 0.7;
}
section.More_about a svg {
  transition: ease-in-out 0.7;
  -webkit-transition: ease-in-out 0.7;
  -moz-transition: ease-in-out 0.7;
  -ms-transition: ease-in-out 0.7;
  -o-transition: ease-in-out 0.7;
  fill: #c1121f;
}
section.More_about a:hover {
  color: #fff;
  background-color: #edc00b;
  border-color: #edc00b;
  transition: ease-in-out 0.7;
  -webkit-transition: ease-in-out 0.7;
  -moz-transition: ease-in-out 0.7;
  -ms-transition: ease-in-out 0.7;
  -o-transition: ease-in-out 0.7;
}
section.More_about a:hover svg {
  transform: rotate(360deg);
  transition: ease-in-out 0.7s;
  fill: #fff;
  -webkit-transition: ease-in-out 0.7s;
  -moz-transition: ease-in-out 0.7s;
  -ms-transition: ease-in-out 0.7s;
  -o-transition: ease-in-out 0.7s;
  -webkit-transform: rotate(360deg);
  -moz-transform: rotate(360deg);
  -ms-transform: rotate(360deg);
  -o-transform: rotate(360deg);
}

section.bestsellers {
  background-color: #fff;
  padding: 0 24px;
}
@media (max-width: 486px) {
  section.bestsellers {
    padding: 0;
  }
}
section.bestsellers h2 {
  color: #c1121f;
  font-weight: bold;
  font-size: 60px;
  text-align: left;
  margin-top: 50px;
}
@media (max-width: 991px) {
  section.bestsellers h2 {
    font-size: 56px;
  }
}
@media (max-width: 756px) {
  section.bestsellers h2 {
    font-size: 40px;
  }
}
@media (max-width: 576px) {
  section.bestsellers h2 {
    font-size: 30px;
  }
}
@media (max-width: 488px) {
  section.bestsellers h2 {
    font-size: 28px;
  }
}
section.bestsellers div.cardtwo {
  background-image: url("../../images/favourites/Tempting-King-Ribs-Lemettis-Falkirk.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  padding: 80px 40px;
  background-color: #780000;
  background-position: 50% 100%;
  margin-bottom: 24px;
}
section.bestsellers div.cardtwo h3 {
  text-align: center;
  font-size: 30px;
  color: #fff;
}
section.bestsellers div.cardtwo p {
  font-family: ArchivoBlack;
  text-align: center;
  padding: 10px;
  padding-top: 270px;
  color: #fff;
}
section.bestsellers div.cardtwo a.bestorder {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: -moz-max-content;
  max-width: max-content;
  background-color: #c1121f;
  border-radius: 40px;
  color: #780000;
  text-decoration: none;
  padding: 18px 60px;
  margin-bottom: 20px;
  border: 1px solid #c1121f;
}
section.bestsellers div.cardtwo a.bestorder:hover {
  background-color: #780000;
  text-decoration: none;
  color: #c1121f;
}
section.bestsellers .card {
  color: #fff;
  position: relative;
  overflow: hidden;
  margin: 10px;
  border-radius: 32px;
  position: relative;
  border: 5px solid #fff;
  width: 100%;
  color: #ffffff;
  text-align: left;
  background-color: #c1121f;
  font-size: 16px;
  perspective: 50em;
  box-shadow: 6px 6px 20px #a8a8a8;
}
section.bestsellers .card:hover img {
  transform: rotateX(90deg);
  opacity: 0;
}
section.bestsellers .card:hover .info {
  transform: rotateX(0deg);
  opacity: 1;
  transition-delay: 0.2s;
}
section.bestsellers .card * {
  box-sizing: border-box;
  transition: all 0.6s ease;
}
section.bestsellers .card img {
  opacity: 1;
  width: 100%;
  transform-origin: 50% 100%;
}
section.bestsellers .card .info {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transform: rotateX(-90deg);
  transform-origin: 50% -50%;
  z-index: 1;
  opacity: 0;
  padding: 20px 30px;
  align-items: center;
}
section.bestsellers .card .info .card-body {
  text-align: center;
}
section.bestsellers .card .info .card-body h5 {
  color: #fff;
  font-size: 25px;
}
section.bestsellers .card .info .card-footer {
  background-color: #fff;
  text-align: center;
}
section.bestsellers .card .info .card-footer a {
  font-size: 20px;
  font-weight: 700;
  color: #780000;
}

section.hero {
  background: linear-gradient(to top, rgba(255, 255, 255, 0.9) 0%, transparent 100%), url(../../images/hero/hero-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% -10%;
  background-attachment: fixed;
}
@media (max-width: 991px) {
  section.hero {
    background-position: 10%;
  }
}
section.hero .menu-section {
  background-color: #fff;
  padding: 0px;
}
@media (max-width: 991px) {
  section.hero .menu-section .navbar-nav {
    align-items: center;
  }
}
section.hero .menu-section a.order-number {
  font-size: 20px;
  text-decoration: none;
  color: #c1121f;
  padding-right: 20px;
  border-radius: 30px;
  border: 2px solid #c1121f;
  padding: 10px 20px;
  margin-right: 10px;
}
section.hero .menu-section a.order-number:hover {
  background-color: #c1121f;
  color: #780000;
}
section.hero .menu-section a.nav-link {
  color: #141780;
  font-size: 16px;
}
section.hero .menu-section a.nav-link:hover {
  color: #c1121f;
}
section.hero .menu-section img {
  width: 250px;
}
@media (max-width: 480px) {
  section.hero .menu-section img {
    max-width: 170px;
  }
}
section.hero .menu-section a.menu-button {
  font-size: 20px;
  background-color: #141780;
  border-radius: 30px;
  border: 2px solid #FFFF00;
  text-decoration: none;
  color: #fff;
  padding: 10px 20px;
}
@media (max-width: 991px) {
  section.hero .menu-section a.menu-button {
    margin-inline: auto;
  }
}
section.hero .menu-section a.menu-button:hover {
  background-color: #fff;
  color: #780000;
}
section.hero section.header-hero {
  padding: 40px 24px 0 24px;
  margin-bottom: -120px;
}
@media (max-width: 991px) {
  section.hero section.header-hero {
    padding: 80px 24px 0 24px;
    margin-bottom: 0px;
  }
}
@media (max-width: 768px) {
  section.hero section.header-hero {
    padding: 80px 5px 0 5px;
  }
}
section.hero section.header-hero h1 {
  padding-top: 40px;
  color: #c1121f;
  text-shadow: 0 0 30px #fff;
  font-size: 70px;
  font-family: ArchivoBlack;
}
@media (max-width: 1200px) {
  section.hero section.header-hero h1 {
    font-size: 60px;
  }
}
@media (max-width: 991px) {
  section.hero section.header-hero h1 {
    font-size: 50px;
  }
}
@media (max-width: 768px) {
  section.hero section.header-hero h1 {
    font-size: 40px;
  }
}
@media (max-width: 480px) {
  section.hero section.header-hero h1 {
    font-size: 30px;
  }
}
section.hero section.header-hero .order-btn {
  background-color: #c1121f;
  border: 2px solid #c1121f;
  color: #fff;
  padding: 18px 50px;
  border-radius: 32px;
  margin-top: 20px;
  max-width: -moz-max-content;
  max-width: max-content;
  display: flex;
  justify-content: center;
}
section.hero section.header-hero .order-btn:hover {
  text-decoration: none;
  color: #c1121f;
  background-color: transparent;
  border: 2px solid #c1121f;
}

section.contactus {
  background-color: #c1121f;
  color: #fff;
}
section.contactus iframe {
  border-radius: 20px;
}
section.contactus span.opening-hour-title {
  font-size: 50px;
}

section.about {
  margin-top: 100px;
  padding: 40px 40px 0 0;
  margin-bottom: 40px;
  background-color: #fff;
  position: relative;
  text-align: left;
}
section.about .col-12 {
  padding-left: 0;
}
@media (max-width: 991px) {
  section.about .col-12 {
    padding: 10px;
  }
}
section.about img.about-img {
  border-radius: 0 50% 50% 0;
  border: 2px solid #fff;
  width: 100%;
  margin-top: -140px;
  -webkit-border-radius: 0 50% 50% 0;
  -moz-border-radius: 0 50% 50% 0;
  -ms-border-radius: 0 50% 50% 0;
  -o-border-radius: 0 50% 50% 0;
}
@media (max-width: 991px) {
  section.about img.about-img {
    margin: 10px 10px 10px 0;
  }
}
section.about h2 {
  text-align: left;
  color: #c1121f;
  font-weight: bold;
  font-size: 70px;
  text-align: left;
}
@media (max-width: 991px) {
  section.about h2 {
    font-size: 50px;
  }
}
@media (max-width: 486px) {
  section.about h2 {
    font-size: 40px;
  }
}
section.about img.about-icon {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
}
@media (max-width: 486px) {
  section.about img.about-icon {
    width: 20%;
  }
}
section.about a {
  margin-top: 20px;
  padding: 16px 80px;
  text-decoration: none;
  border-radius: 30px;
  display: flex;
  justify-content: flex-start;
  max-width: -moz-fit-content;
  max-width: fit-content;
  color: #c1121f;
  background-color: transparent;
  border: 2px solid #c1121f;
  transition: ease-in-out 0.7;
  -webkit-transition: ease-in-out 0.7;
  -moz-transition: ease-in-out 0.7;
  -ms-transition: ease-in-out 0.7;
  -o-transition: ease-in-out 0.7;
  font-weight: bolder;
}
section.about a svg {
  transition: ease-in-out 0.7;
  -webkit-transition: ease-in-out 0.7;
  -moz-transition: ease-in-out 0.7;
  -ms-transition: ease-in-out 0.7;
  -o-transition: ease-in-out 0.7;
  fill: #c1121f;
}
section.about a:hover {
  color: #fff;
  background-color: #edc00b;
  border-color: #edc00b;
  transition: ease-in-out 0.7;
  -webkit-transition: ease-in-out 0.7;
  -moz-transition: ease-in-out 0.7;
  -ms-transition: ease-in-out 0.7;
  -o-transition: ease-in-out 0.7;
}
section.about a:hover svg {
  transform: rotate(360deg);
  transition: ease-in-out 0.7s;
  fill: #fff;
  -webkit-transition: ease-in-out 0.7s;
  -moz-transition: ease-in-out 0.7s;
  -ms-transition: ease-in-out 0.7s;
  -o-transition: ease-in-out 0.7s;
  -webkit-transform: rotate(360deg);
  -moz-transform: rotate(360deg);
  -ms-transform: rotate(360deg);
  -o-transform: rotate(360deg);
}

section.delicious {
  padding-top: 50px;
  padding-bottom: 60px;
}
section.delicious h2 {
  color: #780000;
  font-size: 50px;
  font-weight: bolder;
  text-align: center;
}
@media (max-width: 486px) {
  section.delicious h2 {
    font-size: 40px;
  }
}
section.delicious div.halal-section div.delicious-content {
  display: fles;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
section.delicious div.halal-section div.delicious-content p {
  padding-top: 10px;
  color: #fff;
  font-family: ArchivoBlack;
  font-size: 20px;
  text-align: center;
}
section.delicious div.halal-section a.order-btn {
  margin: 0 auto;
  margin-top: 20px;
  padding: 16px 80px;
  text-decoration: none;
  border-radius: 30px;
  color: #c1121f;
  background-color: #780000;
}
section.delicious div.halal-section a.order-btn:hover {
  color: #780000;
  background-color: #c1121f;
}
section.delicious img.main-img {
  width: 20%;
  margin: 0 auto;
  border-radius: 20px;
}

section.favourites {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #c1121f;
}
section.favourites h2 {
  font-size: 60px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 40px;
  text-align: center;
}
@media (max-width: 576px) {
  section.favourites h2 {
    font-size: 30px;
  }
}
@media (max-width: 488px) {
  section.favourites h2 {
    font-size: 25px;
  }
}
@media (max-width: 388px) {
  section.favourites h2 {
    font-size: 20px;
  }
}
section.favourites div.fav-card {
  position: relative;
  transition: ease-in-out 1.5s;
  -webkit-transition: ease-in-out 1.5s;
  -moz-transition: ease-in-out 1.5s;
  -ms-transition: ease-in-out 1.5s;
  -o-transition: ease-in-out 1.5s;
}
section.favourites div.fav-card:hover .shape {
  transition: ease-in-out 1.5s;
  -webkit-transition: ease-in-out 1.5s;
  -moz-transition: ease-in-out 1.5s;
  -ms-transition: ease-in-out 1.5s;
  -o-transition: ease-in-out 1.5s;
  background-image: linear-gradient(to top, transparent, #dceaff);
}
section.favourites div.fav-card:hover .shape h3 {
  color: #c1121f;
}
section.favourites div.fav-card:hover img {
  border-color: #c1121f;
  transform: rotate(360deg);
  -webkit-transform: rotate(360deg);
  -moz-transform: rotate(360deg);
  -ms-transform: rotate(360deg);
  -o-transform: rotate(360deg);
}
section.favourites div.fav-card div.shape {
  background-image: linear-gradient(to bottom, transparent, #dceaff);
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  margin-top: -80px;
  padding: 60px 20px 20px 20px;
  transition: ease-in-out 1.5s;
  -webkit-transition: ease-in-out 1.5s;
  -moz-transition: ease-in-out 1.5s;
  -ms-transition: ease-in-out 1.5s;
  -o-transition: ease-in-out 1.5s;
  z-index: 2;
}
section.favourites div.fav-card div.shape h3 {
  text-align: center;
  color: #fff;
  padding-top: 30px;
  padding-bottom: 10px;
  font-size: 30px;
}
@media (max-width: 1200px) {
  section.favourites div.fav-card div.shape h3 {
    font-size: 20px;
  }
}
section.favourites div.fav-card div.shape a {
  text-decoration: none;
  border: 4px solid #dceaff;
  background-color: #c1121f;
  border-radius: 30px;
  padding: 15px 40px;
  color: #fff;
  font-size: 20px;
}
@media (max-width: 1200px) {
  section.favourites div.fav-card div.shape a {
    font-size: 15px;
  }
}
section.favourites div.fav-card div.shape a:hover {
  text-decoration: none;
  background-color: #780000;
  color: #fff;
}
section.favourites div.fav-card div.shape a svg {
  fill: antiquewhite;
}
section.favourites div.fav-card img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 90%;
  margin-bottom: 20px;
  border: 7px solid #fff;
  border-radius: 50%;
  transition: ease-in-out 1.5s;
  -webkit-transition: ease-in-out 1.5s;
  -moz-transition: ease-in-out 1.5s;
  -ms-transition: ease-in-out 1.5s;
  -o-transition: ease-in-out 1.5s;
}

#myBtn {
  display: none;
  position: fixed;
  bottom: 59px;
  left: 25px;
  z-index: 99;
  font-size: 18px;
  border: none;
  outline: none;
  background-color: #780000;
  color: #fff;
  cursor: pointer;
  padding: 6px 8px;
  border: 3px solid #780000;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
#myBtn:hover {
  border-color: #fff;
  background-color: #780000;
  box-shadow: #c1121f 0px 7px 29px 0px;
}/*# sourceMappingURL=style2.css.map */