@charset "UTF-8";
@font-face {
  font-family: gazpacho;
  src: url(../../fonts/gazpacho-bold.ttf);
}
@font-face {
  font-family: Inter;
  src: url(../../fonts/Inter.ttf);
}
img {
  max-width: 100%;
}

.cursor {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-image: url(../../images/icon/online-order.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: fixed;
  top: 10px;
  left: 10px;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: transform 0.08s ease;
  z-index: 9999;
}
@media (max-width: 999px) {
  .cursor {
    position: relative;
    z-index: 0;
    display: none;
  }
}

h2,
h3,
h4,
h5,
h6 {
  font-family: gazpacho;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter;
  box-sizing: border-box;
}

.Modal-btn {
  background-color: #FF8FB4;
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

@media (max-width: 340px) {
  .modal-header {
    flex-direction: column;
    text-align: center !important;
    justify-content: center;
    align-items: center;
  }
}
@media (max-width: 340px) {
  .modal-header .modal-title-container {
    flex-direction: column;
    text-align: center !important;
    justify-content: center;
    align-items: center;
  }
}
.modal-header .modal-title-container p {
  font-size: 14px;
  margin-bottom: 0;
}
@media (max-width: 380px) {
  .modal-header .modal-title-container p {
    font-size: 12px;
    margin-bottom: 10px;
  }
}

/* SCSS */
/* Base reveal state */
.reveal {
  opacity: 0;
  will-change: transform, opacity;
  transition: transform 0.9s ease, opacity 0.9s ease;
}

/* Initial offsets */
.reveal.fade-left {
  transform: translateX(-100px);
}

.reveal.fade-right {
  transform: translateX(100px);
}

.reveal.fade-top {
  transform: translateY(-100px);
}

.reveal.fade-bottom {
  transform: translateY(100px);
}

.reveal.top {
  transform: translateY(-150px);
}

/* Visible state */
.reveal.active {
  opacity: 1;
  transform: translate(0, 0);
}

.btn-swipe {
  position: relative;
  overflow: hidden;
  color: white;
  padding: 12px 20px;
  border-radius: 10px;
  border: none;
}

.btn-swipe::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.6), transparent);
  animation: shine 2s infinite;
}

@keyframes shine {
  0% {
    left: -100%;
  }
  100% {
    left: 200%;
  }
}
.pulse-button {
  font-size: 1.3em;
  font-family: "Trebuchet MS", sans-serif;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: -1px;
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  /* 🎨 Animated gradient background */
  background: linear-gradient(270deg, #b8b9bb, white, #fff, white, #b8b9bb);
  background-size: 600% 600%;
  /* ✨ Combined animations */
  animation: pulse 1.5s infinite, gradientShift 6s ease infinite;
  box-shadow: 0 0 0 0 rgba(90, 153, 212, 0.5);
  transition: transform 0.3s ease;
}

/* Stop animation on hover (clean UX) */
.pulse-button:hover {
  animation: gradientShift 6s ease infinite; /* keep gradient, stop pulse */
  transform: scale(1.05);
}

/*  Pulse ring + scale */
@keyframes pulse {
  0% {
    transform: scale(0.9);
    box-shadow: 0 0 0 0 rgba(255, 143, 180, 0.5);
  }
  50% {
    transform: scale(1);
    box-shadow: 0 0 0 35px rgba(255, 143, 180, 0);
  }
  100% {
    transform: scale(0.9);
    box-shadow: 0 0 0 0 rgba(255, 143, 180, 0);
  }
}
/* Gradient movement */
@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.SCALING_ANIMATION {
  transform: translateY(0); /* Initial transform state */
  animation-timeline: view();
  animation-range: entry 0% exit 100%; /* Start at entry, end at exit */
  animation-fill-mode: both; /* Ensures animation state is maintained */
  animation-name: SCaleup;
  animation-duration: 1s;
  animation-timing-function: ease-out;
}

@keyframes SCaleup {
  0% {
    opacity: 1;
    transform: scale(1);
    border-radius: 0px;
  }
  50% {
    opacity: 1;
    transform: scale(1);
    border-radius: 0px;
  }
  70% {
    opacity: 1;
    transform: scale(0.8);
    border-radius: 0px;
  }
  90% {
    opacity: 1;
    transform: scale(0.6);
    border-radius: 20px;
  }
  100% {
    opacity: 1;
    transform: scale(0.4);
    border-radius: 20px;
  }
}
.footer {
  padding: 0px 0 60px 0;
}
@media (max-width: 768px) {
  .footer {
    text-align: left;
  }
}
.footer .app_header {
  color: #fff;
  font-family: gazpacho;
  color: #000;
  text-align: center;
  padding: 20px;
  font-size: 45px;
}
@media (max-width: 768px) {
  .footer .app_header {
    text-align: left;
  }
}
@media (max-width: 486px) {
  .footer .app_header {
    font-size: 20px;
  }
}
.footer .app-links {
  max-width: 200px;
}
.footer div.footer-links {
  border-bottom: 1px solid white;
}
.footer div.footer-links h3 {
  color: #FF8FB4;
  font-family: gazpacho;
}
.footer div.footer-links span {
  color: #fff;
}
.footer div.footer-links ul {
  list-style-type: none;
}
.footer div.footer-links li {
  font-family: Inter;
}
.footer div.footer-links a {
  text-decoration: none;
  color: #fff;
}
.footer span.cp-text {
  color: #000;
  font-size: 14px;
}
@media (max-width: 768px) {
  .footer span.cp-text {
    text-align: left;
  }
}
.footer a.mealzo-link {
  font-weight: 700;
}
.footer a.mealzo-link img {
  max-width: 100px;
}

section.review {
  background-color: #FF8FB4;
  padding-top: 60px;
  padding-bottom: 60px;
}
section.review h2 {
  font-family: gazpacho;
  font-weight: 900;
  font-size: 60px;
  color: #191D1C;
}
section.review p {
  font-family: gazpacho;
  font-size: 50px;
  text-align: center;
  text-shadow: 2px 2px #452617;
  color: #191D1C;
}
@media (max-width: 486px) {
  section.review p {
    font-size: 36px;
  }
}
section.review span {
  font-family: Inter;
  font-size: 16px;
  color: #191D1C;
}
section.review img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  border-radius: 30px;
}
section.review div.review-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
section.review .order-btn {
  color: #df001b;
  margin-top: 30px;
  width: 200px;
  justify-content: center;
  background-color: #f5e6c1;
  border: 1px solid #f5e6c1;
  padding: 10px;
  border-radius: 32px;
}
section.review .order-btn svg {
  width: 20px;
  margin-left: 5px;
  fill: #df001b;
}
section.review .order-btn:hover {
  text-decoration: none;
  color: #f5e6c1;
  background: transparent;
  border: 1px solid #f5e6c1;
}
section.review .order-btn:hover svg {
  fill: #f5e6c1;
}

section.bestsellesr {
  padding-bottom: 60px;
}
section.bestsellesr h2 {
  color: #191D1C;
  font-family: gazpacho;
  font-weight: bold;
  font-size: 60px;
  text-align: center;
  margin-top: 50px;
}
@media (max-width: 486px) {
  section.bestsellesr h2 {
    font-size: 36px;
  }
}
section.bestsellesr div.cardtwo {
  background-image: url("../../images/favourites/Tempting-King-Ribs-Lemettis-Falkirk.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 20px;
  padding-bottom: 20px;
  height: 550px;
  background-color: #191D1C;
  border-radius: 32px;
  position: relative;
}
section.bestsellesr div.cardtwo h3 {
  text-align: center;
  font-size: 30px;
  font-family: gazpacho;
  color: #FF8FB4;
}
section.bestsellesr div.cardtwo p {
  font-family: Inter;
  text-align: center;
  padding: 10px;
  padding-top: 270px;
  color: #fff;
}
section.bestsellesr div.cardtwo a.bestorder {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 80%;
  height: 20px;
  background-color: #FF8FB4;
  border-radius: 40px;
  color: #191D1C;
  text-decoration: none;
  padding: 30px 60px;
  font-family: gazpacho;
  margin-bottom: 20px;
}
section.bestsellesr div.cardtwo a.bestorder:hover {
  background-color: #191D1C;
  border: 1px solid #FF8FB4;
  text-decoration: none;
  color: #FF8FB4;
}
section.bestsellesr div.cardone {
  padding: 20px;
  height: 550px;
  background-color: #191D1C;
  border-radius: 32px;
}
section.bestsellesr div.cardone h3 {
  text-align: center;
  font-size: 22px;
  font-family: gazpacho;
  color: #FF8FB4;
}
section.bestsellesr div.cardone p {
  font-family: Inter;
  text-align: center;
  padding: 10px;
}
section.bestsellesr div.cardone img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 70%;
  margin-bottom: 30px;
}
section.bestsellesr div.cardone a.bestorder {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 80%;
  height: 20px;
  background-color: #FF8FB4;
  border-radius: 40px;
  color: #191D1C;
  text-decoration: none;
  padding: 30px 60px;
  font-family: gazpacho;
  margin-bottom: 20px;
}
section.bestsellesr div.cardone a.bestorder:hover {
  background-color: #191D1C;
  border: 1px solid #FF8FB4;
  text-decoration: none;
  color: #FF8FB4;
}

section.hero {
  background-image: url("../../images/hero/full-hero.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
}
@media (max-width: 991px) {
  section.hero {
    background-position: center !important;
    background-size: cover;
  }
}
section.hero .inner {
  background-image: linear-gradient(to bottom, transparent 50%, rgba(184, 185, 187, 0.5) 85%, #B8B9BB);
  padding: 8px 0;
}
@media (max-width: 991px) {
  section.hero .inner {
    background-color: rgba(0, 0, 0, 0.5);
  }
}
section.hero header {
  font-family: gazpacho;
  border-radius: 8px;
  margin: 8px 16px;
  padding: 5px 20px;
  z-index: 2;
  position: relative;
}
section.hero header .nav-links-munchies {
  max-width: -moz-fit-content;
  max-width: fit-content;
}
@media (max-width: 1200px) {
  section.hero .menu-section .navbar {
    flex-direction: row-reverse;
  }
}
section.hero .menu-section a.order-number {
  font-family: gazpacho;
  font-size: 20px;
  text-decoration: none;
  color: #FF8FB4;
  padding-right: 20px;
  border-radius: 30px;
  border: 2px solid #FF8FB4;
  padding: 10px 20px;
  margin-right: 10px;
}
section.hero .menu-section a.order-number:hover {
  background-color: #FF8FB4;
  color: #191D1C;
}
section.hero .menu-section a.nav-link {
  color: #000;
}
@media (max-width: 991px) {
  section.hero .menu-section a.nav-link {
    color: #fff;
    text-shadow: 0 0 2px #000;
  }
}
section.hero .menu-section a.nav-link {
  font-size: 16px;
}
section.hero .menu-section a.nav-link:hover {
  color: #FF8FB4;
}
section.hero .menu-section img {
  width: 140px;
  border-radius: 8px;
  padding: 0px;
}
@media (max-width: 991px) {
  section.hero .menu-section img {
    width: 100px;
  }
}
section.hero .header_svg {
  margin: 0;
}
section.hero section.header-hero {
  padding: 150px 0;
}
@media (max-width: 991px) {
  section.hero section.header-hero {
    padding: 40px 0 80px 0;
  }
}
section.hero section.header-hero .shop-name-title {
  padding-top: 40px;
  font-size: 55px;
  position: relative;
  z-index: 2;
  color: #fff;
  text-transform: uppercase;
  -webkit-text-stroke: 2px #FF8FB4;
  paint-order: stroke fill;
}
@media (max-width: 1200px) {
  section.hero section.header-hero .shop-name-title {
    font-size: 45px;
  }
}
@media (max-width: 991px) {
  section.hero section.header-hero .shop-name-title {
    font-size: 40px;
  }
}
@media (max-width: 768px) {
  section.hero section.header-hero .shop-name-title {
    font-size: 35px;
  }
}
@media (max-width: 576px) {
  section.hero section.header-hero .shop-name-title {
    font-size: 30px;
  }
}
@media (max-width: 480px) {
  section.hero section.header-hero .shop-name-title {
    font-size: 25px;
  }
}
@media (max-width: 480px) {
  section.hero section.header-hero .shop-name-title {
    font-size: 25px;
  }
}
section.hero section.header-hero h1 {
  margin-bottom: 30px;
  font-size: 55px;
  position: relative;
  z-index: 2;
  color: #fff;
  text-transform: uppercase;
  -webkit-text-stroke: 2px #FF8FB4;
  text-shadow: 0 0 10px #232323;
  paint-order: stroke fill;
}
@media (max-width: 1200px) {
  section.hero section.header-hero h1 {
    font-size: 45px;
  }
}
@media (max-width: 991px) {
  section.hero section.header-hero h1 {
    font-size: 40px;
  }
}
@media (max-width: 768px) {
  section.hero section.header-hero h1 {
    font-size: 35px;
  }
}
@media (max-width: 576px) {
  section.hero section.header-hero h1 {
    font-size: 30px;
  }
}
@media (max-width: 480px) {
  section.hero section.header-hero h1 {
    font-size: 20px;
  }
}
@media (max-width: 480px) {
  section.hero section.header-hero h1 {
    font-size: 20px;
  }
}
section.hero section.header-hero p {
  color: #ffffff;
}
section.hero section.header-hero .order-btn {
  font-family: gazpacho;
  font-size: 16px;
  background-color: #B8B9BB;
  border-radius: 10px;
  border: 2px solid #fff;
  text-decoration: none;
  color: #1E1B1C;
  padding: 13px 40px;
  max-width: -moz-fit-content;
  max-width: fit-content;
  box-shadow: 3px 3px 18px rgba(119, 119, 119, 0.494);
  transition: ease-in-out 0.7s;
  margin-top: 30px;
}
section.hero section.header-hero .order-btn:hover {
  background-color: #fff;
  color: #FF8FB4;
  border-color: #FF8FB4;
}

a.menu-button {
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.175);
  font-family: gazpacho;
  font-size: 16px;
  background-color: #FF8FB4;
  border-radius: 10px;
  border: 2px solid #fff;
  text-decoration: none;
  color: #fff;
  padding: 10px 20px;
  display: flex;
  max-width: -moz-max-content;
  max-width: max-content;
  transition: ease-in-out 0.7s;
}
a.menu-button:hover {
  background-color: #fff;
  color: #FF8FB4;
  border-color: #FF8FB4;
}

section.contactus {
  padding: 180px 0 80px 0;
  text-align: left;
  margin-top: -300px;
  background-color: #1E1B1C;
  color: #fff;
}
@media (max-width: 1500px) {
  section.contactus {
    margin-top: -270px;
  }
}
@media (max-width: 1300px) {
  section.contactus {
    margin-top: -240px;
  }
}
@media (max-width: 1200px) {
  section.contactus {
    margin-top: -210px;
  }
}
@media (max-width: 1000px) {
  section.contactus {
    margin-top: -190px;
  }
}
@media (max-width: 900px) {
  section.contactus {
    margin-top: -160px;
    padding: 100px 0 80px 0;
  }
}
@media (max-width: 770px) {
  section.contactus {
    margin-top: -140px;
  }
}
@media (max-width: 700px) {
  section.contactus {
    margin-top: -110px;
  }
}
@media (max-width: 600px) {
  section.contactus {
    margin-top: -90px;
  }
}
@media (max-width: 500px) {
  section.contactus {
    margin-top: -80px;
  }
}
@media (max-width: 380px) {
  section.contactus {
    margin-top: -60px;
  }
}
section.contactus iframe {
  border-radius: 20px;
  position: relative;
}
section.contactus h2 {
  margin-bottom: 20px;
  text-align: center;
  color: #fff;
  font-size: 3rem;
}
@media (max-width: 768px) {
  section.contactus h2 {
    text-align: left;
  }
}
@media (max-width: 576px) {
  section.contactus h2 {
    font-size: 2rem;
  }
}
@media (max-width: 480px) {
  section.contactus h2 {
    font-size: 1.7rem;
  }
}
section.contactus .card {
  background-color: rgba(255, 255, 255, 0.8745098039);
  padding: 16px;
  border-radius: 16px;
  width: 100%;
  min-height: 380px;
}
@media (max-width: 768px) {
  section.contactus .card {
    text-align: left;
  }
}
section.contactus ul {
  padding: 0;
  list-style: none;
  text-align: center;
  align-items: center;
}
@media (max-width: 768px) {
  section.contactus ul {
    text-align: left;
    align-items: flex-start;
  }
}
section.contactus ul .social-media-containers {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  section.contactus ul .social-media-containers {
    text-align: left;
    justify-content: flex-start;
  }
}
section.contactus ul .fa {
  font-size: 16px;
  color: #FF8FB4;
  margin-right: 10px;
}
section.contactus ul svg {
  fill: #FF8FB4;
}
section.contactus ul li {
  margin-bottom: 10px;
}
section.contactus span.opening-hour-title {
  font-family: gazpacho;
  font-size: 16px;
  color: #000;
}
section.contactus .opening-hour-table {
  color: #000;
  position: relative;
}
section.contactus .opening-hour-table .d-flex {
  border-bottom: 1px dashed #7d7d7d;
}

section.gallery {
  padding: 40px 0;
  margin-top: -100px;
  position: relative;
}
@media (max-width: 992px) {
  section.gallery {
    padding: 80px 0;
  }
}
section.gallery::before {
  position: absolute;
  content: "";
  top: 0%;
  left: 20px;
  background-image: url(../../imgs/icons/burger-icon.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 200px;
  height: 200px;
}
@media (max-width: 991px) {
  section.gallery::before {
    width: 150px;
    height: 150px;
  }
}
@media (max-width: 768px) {
  section.gallery::before {
    width: 100px;
    height: 100px;
  }
}
section.gallery h5 {
  color: #191D1C;
  font-size: 50px;
  margin: 10px 0 50px 0;
  text-align: left;
}
@media (max-width: 768px) {
  section.gallery h5 {
    font-size: 40px;
  }
}
@media (max-width: 480px) {
  section.gallery h5 {
    font-size: 30px;
    margin-bottom: 24px;
  }
}
section.gallery .gallery-img-start {
  width: 150px;
  position: absolute;
  top: 100px;
  left: 40px;
}
@media (max-width: 992px) {
  section.gallery .gallery-img-start {
    display: none;
  }
}
section.gallery .gallery-img-end {
  width: 150px;
  position: absolute;
  bottom: 100px;
  right: 40px;
}
@media (max-width: 992px) {
  section.gallery .gallery-img-end {
    display: none;
  }
}
section.gallery .gallery-card {
  margin-bottom: 20px;
  border-radius: 8px;
  background-repeat: no-repeat;
  background-size: cover;
}
section.gallery .gallery-card #trapezoid {
  border-bottom: 100px solid #FF8FB4;
  border-left: 50px solid transparent;
  border-right: 50px solid transparent;
  height: 0;
  width: 100px;
  background-color: rgba(7, 5, 64, 0.7411764706);
}
section.gallery .gallery-card .gallery-card-content {
  background-color: rgba(7, 5, 64, 0.7411764706);
  height: 100%;
  padding: 20px 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 8px 0 0 8px;
}
section.gallery .gallery-card .gallery-card-content img {
  width: 200px;
}
section.gallery .gallery-card .gallery-card-content img:hover {
  border-radius: 2em !important;
}
section.gallery .gallery-card .gallery-card-content p {
  color: #fdfdfd;
  font-size: 24px;
  line-height: 40px;
}
section.gallery .gallery-card .gallery-card-content h4 {
  color: #fdfdfd;
  font-size: 32px;
}
section.gallery .gallery-card .gallery-card-content .gallery-card-content-btn {
  background-color: #FF8FB4;
  padding: 10px 20px;
  margin-top: 50px;
  color: #fdfdfd;
  border-radius: 8px;
  width: -moz-fit-content;
  width: fit-content;
  align-items: center;
}
section.gallery .gallery-card .gallery-card-content .gallery-card-content-btn:hover {
  text-decoration: none;
}
section.gallery a {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  display: inline-block;
}
section.gallery img {
  width: 100%;
  vertical-align: middle;
  display: inline-block;
}
section.gallery {
  /* Main CSS */
}
section.gallery .grid-wrapper > div {
  display: flex;
  justify-content: center;
  align-items: center;
}
section.gallery .grid-wrapper > div > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px;
  transition: ease-in-out 0.7s;
}
section.gallery .grid-wrapper > div > img:hover {
  transform: scale(1.08);
}
section.gallery .grid-wrapper {
  display: grid;
  grid-gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  grid-auto-rows: 200px;
  grid-auto-flow: dense;
}
section.gallery .grid-wrapper .wide {
  grid-column: span 2;
}
section.gallery .grid-wrapper .tall {
  grid-row: span 2;
}
section.gallery .grid-wrapper .big {
  grid-column: span 2;
  grid-row: span 2;
}

section.about {
  padding: 80px 0 40px 0;
  position: relative;
  text-align: left;
}
section.about img {
  border-radius: 16px;
  border: 2px solid #fff;
  width: 100%;
}
section.about h2 {
  color: #FF8FB4;
  font-family: gazpacho;
  font-size: 2rem;
  font-weight: bolder;
  padding-bottom: 50px;
}
@media (max-width: 486px) {
  section.about h2 {
    font-size: 1.7rem;
  }
}
section.about a.menu-button {
  background-color: #FF8FB4;
  color: #fff;
  border: 2px solid #FF8FB4;
  padding: 13px 40px;
  margin-top: 20px;
  box-shadow: 3px 3px 18px rgba(119, 119, 119, 0.494);
}

.more-about-us {
  background-image: url("../../images/hero/line.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  min-height: 350px;
  align-items: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .more-about-us {
    min-height: 200px;
    padding: 16px;
  }
}
.more-about-us .container-fluid {
  padding: 20px 40px 0 40px;
}
@media (max-width: 768px) {
  .more-about-us .container-fluid {
    padding: 16px;
  }
}
.more-about-us .card {
  display: flex;
  flex-direction: row;
  background-color: rgba(255, 224, 253, 0.9215686275);
  border-radius: 8px;
  backdrop-filter: blur(5px);
  border: none;
  min-height: 135px;
  box-shadow: 3px 3px 10px rgba(198, 198, 198, 0.494);
}
.more-about-us .card .card-title {
  margin-bottom: 0;
  display: flex;
  align-items: center;
}
.more-about-us .card .card-img {
  width: 16%;
}
.more-about-us .card .card-img img {
  background-color: #fff;
  border-radius: 50%;
  width: 100%;
}
.more-about-us .card h4 {
  width: 80%;
  font-size: 20px;
  margin-bottom: 0;
}
.more-about-us .card .card-body {
  width: 100%;
  padding: 16px;
}
.more-about-us .card .card-body p {
  font-size: 16px;
  margin-bottom: 0;
}
@media (max-width: 480px) {
  .more-about-us .card .card-body p {
    font-size: 14px;
  }
}

.circle_image {
  margin-top: -130px;
}
.circle_image img {
  max-width: 100%;
  border-radius: 50%;
}
@media (max-width: 1200px) {
  .circle_image {
    margin: auto;
    margin-top: 0px;
    max-width: 80%;
  }
}
@media (max-width: 991px) {
  .circle_image {
    margin-bottom: 40px;
  }
}

section.delicious {
  padding-top: 50px;
  padding-bottom: 60px;
  background-image: url(../../images/delicious/Fish-and-Chips-lemettis-Falkirk.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}
section.delicious h2 {
  color: #191D1C;
  font-family: gazpacho;
  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: Inter;
  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;
  font-family: gazpacho;
  color: #FF8FB4;
  background-color: #191D1C;
}
section.delicious div.halal-section a.order-btn:hover {
  color: #191D1C;
  background-color: #FF8FB4;
}
section.delicious img.main-img {
  width: 20%;
  margin: 0 auto;
  border-radius: 20px;
}

section.favourites {
  text-align: left;
  margin-top: -100px;
  padding: 16px;
  position: relative;
  color: #000;
}
@media (max-width: 991px) {
  section.favourites {
    margin-top: -80px;
  }
}
section.favourites h3 {
  color: #FF8FB4;
  font-family: gazpacho;
  font-size: 3rem;
  font-weight: bolder;
  margin-bottom: 24px;
  text-align: left;
}
@media (max-width: 768px) {
  section.favourites h3 {
    font-size: 2rem;
    margin-top: 24px;
  }
}
section.favourites .swiper {
  padding: 40px;
}
@media (max-width: 576px) {
  section.favourites .swiper {
    padding: 40px 20px;
  }
}
section.favourites .swiper-slide {
  align-self: center;
}
section.favourites .swiper-wrapper {
  border-radius: 40px;
}
section.favourites img {
  width: 100%;
  border-radius: 16px;
  box-shadow: -2px 2px 10px rgba(61, 61, 61, 0.624);
  transition: transform 0.7s ease;
}
section.favourites img:hover {
  transform: scale(1.1);
}
section.favourites a.btn {
  background-color: #FF8FB4;
  color: #fff;
  padding: 10px 30px;
  border-radius: 20px;
}
section.favourites a.menu-button {
  margin: 16px auto;
  justify-content: center;
  display: flex;
  max-width: -moz-max-content;
  max-width: max-content;
  padding: 16px 60px;
}

#myBtn {
  display: none;
  position: fixed;
  bottom: 59px;
  left: 25px;
  z-index: 99;
  font-size: 18px;
  border: none;
  outline: none;
  background-color: #fff;
  color: #FF8FB4;
  cursor: pointer;
  padding: 6px 11px 6px 11px;
  border: 1px solid #FF8FB4;
  border-radius: 12px;
}
#myBtn:hover {
  border: 1px solid #FF8FB4;
  background-color: white;
  box-shadow: #FF8FB4 0px 7px 29px 0px;
}/*# sourceMappingURL=style2.css.map */