.main-color {
  color: #000671;
}

@font-face {
  font-family: Barlow;
  src: url(../../Fonts/Barlow/Barlow-Bold.ttf);
}
@font-face {
  font-family: "Raleway";
  src: url(../../Fonts/Raleway/Raleway-Regular.ttf);
}
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Raleway" !important;
  overflow-x: hidden;
  background-image: url(../../imgs/hero/beautiful-shining-stars-night-skyy.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  min-height: 100vh;
  background-attachment: fixed;
}

.valentine-gif {
  max-width: 100px;
}
@media (max-width: 480px) {
  .valentine-gif {
    max-width: 60px;
  }
}

.snowflake {
  position: absolute;
  width: 27px;
  height: 27px;
  background: transparent;
  z-index: 999;
  background-image: url("https://www.mealzoforbusiness.co.uk/1/heart.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.faderight {
  animation: faderight 1.5s ease-in-out;
}

@keyframes faderight {
  0% {
    transform: translateX(150px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
.reveal {
  position: relative;
  opacity: 0;
}

.reveal.active {
  opacity: 1;
}
.reveal.active .fade-left {
  animation: fade-left 1.2s ease-in-out;
}
@keyframes fade-left {
  0% {
    transform: translateX(-150px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
.reveal.active .fade-right {
  animation: fade-right 1.2s ease-in-out;
}
@keyframes fade-right {
  0% {
    transform: translateX(150px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
.reveal.active .fade-bottom {
  animation: fade-bottom 1.2s ease-in-out;
}
@keyframes fade-bottom {
  0% {
    transform: translateY(100px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.modal-open .modal {
  z-index: 99999;
}

/* header */
.openmenuu {
  width: 100% !important;
}

.displayy {
  display: flex !important;
  justify-content: center;
}

.section-header {
  font-size: 50px;
  margin-bottom: 30px;
  font-weight: bolder;
}
@media (max-width: 768px) {
  .section-header {
    font-size: 35px;
  }
}
@media (max-width: 380px) {
  .section-header {
    font-size: 25px;
  }
}

.valentine-section {
  background-color: rgb(99, 0, 0);
  background-image: url(https://www.mealzoforbusiness.co.uk/1/heart-background.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.valentine-section img {
  max-width: 55px;
}
@media (max-width: 480px) {
  .valentine-section img {
    max-width: 35px;
  }
}
.valentine-section marquee {
  color: #fff;
  font-size: 17px;
}
@media (max-width: 480px) {
  .valentine-section marquee {
    font-size: 15px;
  }
}

.top-header {
  background-color: #e7d334;
  display: flex;
  justify-content: center;
  padding: 10px;
  position: relative;
  display: inline-flex;
  width: 100%;
  position: relative;
  transition: all 400ms ease-in-out;
  z-index: 0;
}
.top-header::after {
  content: "";
  position: absolute;
  width: 0;
  height: 100%;
  background: #000671;
  left: 0;
  right: 0;
  top: 0;
  margin: 0 auto;
  transition: all 600ms ease-in-out;
  z-index: -1;
}
.top-header a {
  margin: 0 auto;
  text-align: center;
  font-weight: bolder;
  color: #000;
}
.top-header:hover a {
  text-decoration: none;
  color: #e7d334 !important;
}
.top-header:hover::after {
  width: 100%;
}

header {
  position: relative;
  padding: 15px 0;
}
@media (max-width: 1200px) {
  header {
    background-color: #000671;
    border-radius: 0 0 80px 80px;
    padding: 40px 0;
  }
}
header .navbar-brand {
  font-size: 1rem !important;
}
header .shop-logo {
  position: absolute;
  content: "";
  top: 50%;
  bottom: 0%;
  left: 0%;
  right: 0%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
  max-width: 130px;
}
@media (max-width: 1200px) {
  header .shop-logo {
    left: 5%;
    right: auto;
    top: 3%;
  }
}
header .shop-logo img {
  z-index: 9999 !important;
  border-radius: 50%;
  max-width: 140px;
}
@media (max-width: 1200px) {
  header .shop-logo img {
    max-width: 100px;
  }
}
@media (min-width: 1200px) {
  header .navbar-nav {
    flex-direction: row;
  }
}
header section.menu-section span.open-menu {
  align-self: center;
  z-index: 10;
  color: #fff !important;
}
@media (min-width: 1200px) {
  header section.menu-section span.open-menu {
    display: none;
  }
}
header section.menu-section #myNav {
  display: block;
}
@media (min-width: 1200px) {
  header section.menu-section #myNav {
    width: 100%;
  }
}
header section.menu-section #overlay-content {
  display: none;
}
@media (min-width: 1440px) {
  header section.menu-section #overlay-content {
    max-width: 90%;
  }
}
@media (min-width: 1200px) {
  header section.menu-section #overlay-content {
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    padding: 20px 0 7px 0;
    border-bottom: 1px solid #fff;
  }
}
header section.menu-section nav {
  padding-top: 10px;
}
@media (min-width: 1200px) {
  header section.menu-section nav {
    display: flex;
  }
}
header section.menu-section div.mobile-overlay {
  height: 100%;
  width: 0%;
  position: fixed;
  z-index: 99999;
  left: 0;
  top: 0;
  background-color: #000671;
  overflow-x: hidden;
  transition: width 0.45s;
}
header section.menu-section div.mobile-overlay .overlay-content {
  position: relative;
  top: 10%;
  width: 100%;
  text-align: center;
}
@media (min-width: 1200px) {
  header section.menu-section div.mobile-overlay .overlay-content {
    justify-content: flex-end;
  }
}
@media (min-width: 1200px) {
  header section.menu-section div.mobile-overlay .overlay-content > div#navbarNavAltMarkup {
    display: flex;
    flex-direction: row;
  }
}
@media (min-width: 1200px) {
  header section.menu-section div.mobile-overlay .overlay-content {
    display: flex;
  }
}
header section.menu-section div.mobile-overlay .overlay-content .closebtn {
  text-decoration: unset;
  position: fixed;
  top: 10px;
  font-size: 20px;
  right: 10%;
  font-size: 26px;
  z-index: 100;
  color: #dad0c4;
}
@media (min-width: 1200px) {
  header section.menu-section div.mobile-overlay .overlay-content .closebtn {
    display: none;
  }
}
header section.menu-section div.mobile-overlay .overlay-content a.nav-link {
  color: #fff;
  font-weight: bolder;
  border-bottom: 1px solid transparent;
}
header section.menu-section div.mobile-overlay .overlay-content a.nav-link:hover {
  color: #e7d334 !important;
}
header section.menu-section div.mobile-overlay .overlay-content a.nav-link .active {
  color: #e7d334 !important;
}
@media (min-width: 1200px) {
  header section.menu-section div.mobile-overlay .overlay-content a.nav-link {
    font-size: 16px;
    margin: 0 10px;
    color: #fff;
  }
}
header section.menu-section div.mobile-overlay .overlay-content a.btn {
  background-color: #000671;
  color: black;
}
@media (min-width: 1200px) {
  header section.menu-section div.mobile-overlay {
    position: static;
    display: flex !important;
    flex-direction: row;
    background-color: inherit;
    z-index: 999;
  }
}
header .header-btn {
  display: flex;
  justify-content: center;
  margin: 20px 0;
}
header .header-btn a.btn {
  background-color: #000671;
  color: #fff;
  border-radius: 35px 35px 12px 12px !important;
  padding-top: 12px;
  width: 210px;
  height: 50px;
}
header .header-btn a.btn:hover {
  color: #000671;
  border-color: #000671;
  background-color: #fff !important;
  box-shadow: #dad0c4 0px 4px 12px;
}
@media (min-width: 1200px) {
  header .header-btn a.btn {
    margin-top: 10px;
  }
}
header .header-btn a.btn .order-now-icon-main {
  width: 30px;
  height: 30px;
  stroke: white;
}
header .header-btn a.btn .order-now-icon-main:hover {
  stroke: #000671;
}

/* section hero */
.index-hero {
  background-image: url(../../imgs/hero/The-Sun-Takeaway-Helensburgh-pizza.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  overflow: hidden;
}

section.hero-section {
  padding: 20px 0;
  color: #fff;
  position: relative;
}
section.hero-section .col-12 {
  padding: 0;
}
@media (max-width: 991px) {
  section.hero-section {
    padding: 50px 0;
  }
}
section.hero-section h2 {
  font-size: 80px;
  font-weight: bolder;
  color: #e7d334;
  text-transform: capitalize;
  -webkit-text-stroke: 0.01rem #000000;
  font-family: Barlow;
}
@media (max-width: 768px) {
  section.hero-section h2 {
    font-size: 60px;
  }
}
section.hero-section img {
  width: 100%;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  section.hero-section img {
    margin-top: -80px;
  }
}
@media (max-width: 480px) {
  section.hero-section img {
    font-size: 60px;
  }
}
section.hero-section a.btn {
  padding: 15px 35px;
  background-color: #000671;
  color: #e7d334;
  font-weight: bolder;
  border: 1px solid #000671;
  border-radius: 30px;
  position: relative;
  display: inline-block;
  width: -moz-max-content;
  width: max-content;
  color: #fff !important;
  position: relative;
  transition: all 400ms ease-in-out;
  z-index: 0;
}
section.hero-section a.btn::after {
  content: "";
  position: absolute;
  width: 0;
  height: 100%;
  background: #e7d334;
  left: 0;
  right: 0;
  top: 0;
  margin: 0 auto;
  transition: all 400ms ease-in-out;
  z-index: -1;
  border-radius: 30px;
}
section.hero-section a.btn:hover {
  color: #000671 !important;
}
section.hero-section a.btn:hover::after {
  width: 100%;
}

section.more-about-us-section {
  padding: 80px 0;
  color: #fff;
  position: relative;
  overflow: hidden;
}
@media (max-width: 991px) {
  section.more-about-us-section {
    padding: 80px 0 0 0;
  }
}
section.more-about-us-section .more-text {
  font-size: 26px;
}
section.more-about-us-section .section-header {
  margin-bottom: 10px !important;
  text-shadow: 1px 2px #000;
}
section.more-about-us-section .about-text {
  margin-bottom: 40px;
  max-width: 550px;
}
section.more-about-us-section a.btn {
  background-color: #fff;
  padding: 15px 35px;
  color: #000671;
  font-weight: bolder;
  border: 1px solid #000671;
  border-radius: 30px;
}
section.more-about-us-section a.btn:hover {
  background-color: #000671;
  border-color: #fff;
  color: #fff;
}
section.more-about-us-section .more-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  min-height: 280px;
  background-color: rgba(255, 254, 191, 0.9176470588);
  color: #000;
  padding: 10px;
  border-radius: 20px;
  box-shadow: 2px 2px 15px #a7a7a7;
}
@media (max-width: 1200px) {
  section.more-about-us-section .more-content {
    padding: 20px 10px;
  }
}
@media (max-width: 768px) {
  section.more-about-us-section .more-content {
    min-height: 250px;
    padding: 0;
  }
}
section.more-about-us-section .more-content .circle-img {
  margin-bottom: 15px;
  margin-right: 15px;
  border-radius: 50%;
  transition: all 0.5s;
}
section.more-about-us-section .more-content .circle-img img {
  max-width: 100px;
  transition: ease-in-out 0.7s;
}
section.more-about-us-section .more-content .circle-img img:hover {
  transform: scale(1.1);
}
@media (max-width: 576px) {
  section.more-about-us-section .more-content .circle-img {
    margin-bottom: 20px;
  }
}
section.more-about-us-section .more-content .about-details {
  padding: 0 10px;
}
section.more-about-us-section .more-content .about-details h4 {
  margin-bottom: 7px;
  font-size: 1.2rem;
  font-weight: 700;
}
section.more-about-us-section .more-content .about-details p {
  margin: 0;
  max-width: 400px;
  font-size: 13px;
  font-weight: 800;
}
section.more-about-us-section .more-content a.btn {
  margin-top: 20px;
  background-color: #000671;
  padding: 15px 40px;
  border-radius: 15px;
  color: #000;
}

section.special {
  padding: 50px;
  background-image: url(../../imgs/hero/chicken-wings.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media (max-width: 1440px) {
  section.special {
    padding: 50px 0;
  }
}
section.special .main-header {
  margin-bottom: 20px;
  color: #fff;
}
@media (max-width: 1200px) {
  section.special .main-header {
    font-size: 40px;
    font-weight: bolder;
  }
}
section.special h3 {
  text-align: center;
  font-size: 46px;
  margin-bottom: 52px;
  color: #000;
  text-transform: capitalize;
  font-weight: 800;
}
section.special h3 span {
  color: #000671;
}
@media (max-width: 991px) {
  section.special h3 {
    font-size: 40px;
  }
}
section.special ul.nav-tabs {
  display: flex;
  flex-direction: column;
  border: none;
}
@media (max-width: 1200px) {
  section.special ul.nav-tabs {
    flex-direction: row;
    justify-content: center;
    margin-bottom: 40px;
  }
}
section.special ul.nav-tabs .cat-img {
  width: 40px;
}
@media (max-width: 1200px) {
  section.special ul.nav-tabs .cat-img {
    width: 30px;
  }
}
section.special ul.nav-tabs .nav-item {
  margin: 0;
  line-height: 13px;
}
section.special ul.nav-tabs a.nav-link {
  color: #a1a1a1;
  font-size: 22px;
  font-weight: 600;
  border: 2px solid #a1a1a1;
  border-radius: 30px !important;
  max-width: 70%;
  margin: auto;
  transition: ease-in-out 0.3s;
  text-align: left;
}
@media (max-width: 1440px) {
  section.special ul.nav-tabs a.nav-link {
    font-size: 16px;
  }
}
@media (max-width: 1200px) {
  section.special ul.nav-tabs a.nav-link {
    max-width: -moz-max-content;
    max-width: max-content;
    padding: 5px 10px;
    margin: 2px;
  }
}
section.special ul.nav-tabs a.nav-link:hover {
  transform: scale(1.02);
  color: #fff;
  background-color: #000671;
  border-color: #000671;
}
section.special ul.nav-tabs a.nav-link.active {
  color: #fff;
  background-color: #000671;
  border: 2px solid #000671;
}
section.special .card-img {
  border-radius: 20px;
}
section.special .card {
  transition: all 0.5ms ease;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
  transition: ease-in-out 0.5s;
  color: #000;
  border-radius: 80px;
  display: flex;
  flex-direction: row;
  padding: 3px 10px;
  margin-left: 10px;
  margin: 40px 0 20px 60px;
  background-color: #000671;
  max-width: 80%;
}
section.special .card:hover {
  transform: scale(1.04);
}
@media (max-width: 991px) {
  section.special .card {
    margin: 0 auto 20px auto;
  }
}
@media (max-width: 768px) {
  section.special .card {
    max-width: 95%;
  }
}
@media (max-width: 480px) {
  section.special .card {
    max-width: 100%;
  }
}
section.special .card img {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  margin: auto;
  margin-left: -65px;
  display: flex;
  justify-content: center;
  border: 6px solid #fff;
}
@media (max-width: 768px) {
  section.special .card img {
    width: 100px;
    height: 100px;
    margin-left: -20px;
  }
}
section.special .card .card-body {
  text-align: left;
  padding: 10px 20px !important;
}
@media (max-width: 576px) {
  section.special .card .card-body {
    padding: 10px;
  }
  section.special .card .card-body p {
    margin-bottom: 0;
  }
}
@media (max-width: 576px) and (max-width: 768px) {
  section.special .card .card-body p {
    font-size: 14px;
  }
}
@media (max-width: 576px) and (max-width: 480px) {
  section.special .card .card-body p {
    font-size: 12px;
  }
}
section.special .card .card-title {
  color: #fff;
  text-transform: capitalize;
  font-size: 22px;
  font-weight: bolder;
}
@media (max-width: 1300px) {
  section.special .card .card-title {
    font-size: 18px;
  }
}
@media (max-width: 576px) {
  section.special .card .card-title {
    font-size: 15px;
  }
}
section.special .card p {
  color: #fff;
}
section.special .card span {
  text-transform: capitalize;
  font-weight: bolder;
  color: #fff;
  font-size: 17px;
}
section.special .card span svg {
  fill: #fff;
}
section.special .tab-pane {
  transition: ease-in-out 0.7s;
}
section.special .tab-pane.active {
  display: flex;
}
@media (max-width: 991px) {
  section.special .tab-pane.active {
    flex-direction: column;
  }
}
section.special div.tab-content {
  transition: ease-in-out 0.7s;
}
section.special div.tab-content div.row div.food-card {
  margin-bottom: 25px;
}
@media (min-width: 768px) {
  section.special div.tab-content div.row div.food-card {
    margin-bottom: 0;
  }
}
section.special div.tab-content div.row div.food-card img {
  border-radius: 30px 12px 30px 30px;
}
section.special div.tab-content div.row div.food-card div.food-name {
  margin-top: 21px;
  font-family: Poppins;
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px;
  letter-spacing: 0em;
  text-align: center;
}
section.special div.tab-content div.row div.food-card div.food-comment {
  margin-top: 10px;
  font-family: poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0em;
  text-align: center;
}

.swiper-pagination-bullet {
  background-color: antiquewhite;
}

.swiper-3d .swiper-slide-shadow-left {
  background-image: none !important;
}
.swiper-3d .swiper-slide-shadow-right {
  background-image: none !important;
}

.deals {
  padding: 80px 0;
}
.deals .card {
  background-color: transparent;
  position: relative;
  min-height: 450px;
  border-radius: 150px;
  display: flex;
  justify-content: center;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  transition: ease-in-out 0.7s;
}
.deals .card h4 {
  transform: rotate(-15deg);
  color: #ffffff;
  font-weight: bolder;
  font-size: 34px;
  -webkit-text-stroke: 13px #000671;
  paint-order: stroke fill;
}
.deals a:hover {
  transform: scale(1.05);
  text-decoration: none !important;
}
.deals a:hover h4 {
  text-decoration: none !important;
}
.deals .card-napoli {
  background-image: url(../../imgs/deals/The-Sun-Takeaway-Helensburgh-Napoli-Pizza.jpg);
}
.deals .card-Oriental {
  background-image: url(../../imgs/deals/The-Sun-Takeaway-Helensburgh-Oriental-Pizza.jpg);
}
.deals .card-Beefeater {
  background-image: url(../../imgs/deals/The-Sun-Takeaway-Helensburgh-Beefeater-Pizza.jpg);
}
.deals .card-Milano {
  background-image: url(../../imgs/deals/The-Sun-Takeaway-Helensburgh-Milano-Pizza.jpg);
}
.deals .card-Vegetarian {
  background-image: url(../../imgs/deals/The-Sun-Takeaway-Helensburgh-Vegetarian-Pizza.jpg);
}
.deals .deal-img {
  border-radius: 50%;
  max-width: 100%;
}

section.about-us {
  padding: 50px 0;
  position: relative;
  color: #fff;
}
@media (max-width: 1200px) {
  section.about-us {
    padding: 50px 0;
  }
}
section.about-us::before {
  position: absolute;
  content: "";
  width: 30%;
  height: 35%;
  background-color: #000671;
  top: 60%;
  left: 0;
  z-index: -1;
  border-radius: 0 0 15px 0;
}
@media (max-width: 991px) {
  section.about-us::before {
    top: unset;
    bottom: 0%;
    width: 60%;
    height: 30%;
  }
}
@media (max-width: 576px) {
  section.about-us::before {
    top: unset;
    bottom: 0%;
    width: 70%;
    height: 25%;
  }
}
section.about-us h3 {
  color: #e7d334;
}
section.about-us p {
  margin-top: 5px;
  max-width: 90%;
  text-align: justify;
}
@media (max-width: 991px) {
  section.about-us p {
    margin: 5px auto 15px auto;
    max-width: 80%;
    display: flex;
    text-align: center;
  }
}
section.about-us img {
  max-width: 100%;
  display: flex;
  margin: auto;
  border-radius: 20px;
}
@media (max-width: 991px) {
  section.about-us img {
    max-width: 80%;
    margin: 0 auto;
    display: flex;
  }
}
section.about-us a.btn {
  padding: 15px 35px;
  background-color: #000671;
  color: #e7d334;
  font-weight: bolder;
  border: 1px solid #000671;
  border-radius: 30px;
  position: relative;
  display: inline-block;
  width: -moz-max-content;
  width: max-content;
  color: #fff !important;
  border: 1px solid #000671;
  text-shadow: none !important;
  position: relative;
  transition: all 400ms ease-in-out;
  z-index: 0;
}
section.about-us a.btn::after {
  content: "";
  position: absolute;
  width: 0;
  height: 100%;
  background: #fff;
  left: 0;
  right: 0;
  top: 0;
  margin: 0 auto;
  transition: all 400ms ease-in-out;
  z-index: -1;
  border-radius: 30px;
}
section.about-us a.btn:hover {
  color: #000671 !important;
}
section.about-us a.btn:hover::after {
  width: 100%;
}

section.peyment-method {
  padding: 10px 0;
}
section.peyment-method .methods-container {
  justify-content: space-evenly;
}
section.peyment-method .methods-container img {
  width: 80px;
  display: block;
}

/* dwnloap app section */
section.dl-app {
  position: relative;
  padding: 0 0 50px 0;
  position: relative;
}
@media (max-width: 1200px) {
  section.dl-app {
    margin: 50px 0 80px 0;
  }
}
section.dl-app::after {
  position: absolute;
  content: "";
  width: 30%;
  height: 35%;
  background-color: #000671;
  top: 60%;
  right: 0;
  z-index: -1;
  border-radius: 15px 0 0 15px;
}
@media (max-width: 991px) {
  section.dl-app::after {
    top: unset;
    bottom: 0%;
    width: 60%;
    height: 30%;
  }
}
@media (max-width: 576px) {
  section.dl-app::after {
    top: unset;
    bottom: 0%;
    width: 70%;
    height: 25%;
  }
}
section.dl-app .app-mockup {
  background-color: #fff;
  border-radius: 20px;
  width: 100%;
}
@media (max-width: 576px) {
  section.dl-app .app-mockup {
    padding: 40px 0;
  }
}
@keyframes app-animation {
  0% {
    transform: translateY(7px);
  }
  100% {
    transform: translateY(-7px);
  }
}
section.dl-app div.inner-content {
  max-width: 100%;
  margin: auto;
}
@media (max-width: 576px) {
  section.dl-app div.inner-content {
    max-width: 100%;
  }
}
section.dl-app div.inner-content div.d-flex {
  justify-content: space-evenly;
}
section.dl-app div.inner-content p {
  color: #000;
}
section.dl-app div.inner-content a.app-link-dl-container:hover img {
  transform: scale(1.2);
  transition: ease-in-out 0.3s;
}
section.dl-app div.inner-content img.dl-app-link {
  width: 180px;
  margin: 0 10px 0 0;
}
section.dl-app div.inner-content h3 {
  font-weight: bold;
  font-size: 40px;
  margin: 20px 0;
  color: #e7d334;
}
@media (max-width: 380px) {
  section.dl-app div.inner-content h3 {
    margin-bottom: 0;
  }
}
@keyframes scale-up-center {
  0% {
    transform: scale(0.5);
  }
  100% {
    transform: scale(1);
  }
}
section.reviews {
  padding: 80px 0;
}
@media (max-width: 768px) {
  section.reviews {
    padding: 20px;
  }
}
section.reviews .container {
  background-color: #000671;
  border-radius: 34px;
}
section.reviews h3 {
  margin-bottom: 40px;
  font-weight: 900;
  font-size: 33px;
  line-height: 70px;
  color: #fff;
}
@media (max-width: 576px) {
  section.reviews h3 {
    font-size: 25px;
  }
}
@media (max-width: 480px) {
  section.reviews h3 {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  section.reviews h3 {
    font-size: 13px;
  }
}
section.reviews .comment-section .comment-text {
  max-width: 800px;
  min-height: 100px;
  text-align: center;
  color: #fff;
  font-size: 14px;
  line-height: 31px;
  margin: 0 auto;
}
section.reviews .comment-section .comment-writter-name {
  margin-top: 35px;
  color: #000671;
  margin-bottom: 9px;
  color: #fff;
}
section.reviews .comment-section .stars {
  text-align: center;
  margin-bottom: 90px;
}

/* footer */
.index-footer {
  background-image: url("../../imgs/hero//closeup-image-woman-holding-plate-fish-chips-table-restaurant.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

footer {
  color: rgb(255, 255, 255);
  padding: 80px 0 0 0;
}
footer .footer-logo {
  display: flex;
  justify-content: center;
}
footer .footer-logo .shop-logo {
  width: 100px;
  background-color: #fff;
  border-radius: 50%;
  margin: 0 auto;
  margin-bottom: 18px;
  box-shadow: 0 0 15px #e7d334;
}
footer .Opening {
  padding: 0;
}
footer .Opening li {
  padding: 3px;
  list-style: none;
}
footer .Opening li a {
  color: #fff;
}
footer .Opening li a:hover {
  color: #e7d334;
  text-decoration: none;
}
footer .footer-header {
  font-size: 28px;
  text-transform: capitalize;
  font-weight: bolder;
  margin: 0 auto;
  max-width: -moz-max-content;
  max-width: max-content;
  position: relative;
}
footer .footer-header::after {
  position: absolute;
  content: "";
  top: -29%;
  left: -16%;
  background-image: url(../../imgs/header/logo/footer-logo.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 30px;
  height: 30px;
}
@media (max-width: 480px) {
  footer .footer-header {
    font-size: 35px;
  }
}
footer .fa {
  color: #fff;
  font-size: 1.25rem;
}
footer .footer-title {
  margin-bottom: 30px;
}
footer .footer-title span {
  font-weight: 500;
  font-size: 22px;
  line-height: 27px;
  color: #ffffff;
}
footer a.app-link-dl-container:hover img {
  animation: scale-up-center 0.4s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}
footer img.dl-app-link {
  margin-bottom: 50px;
  width: 170px;
}
@media (min-width: 768px) {
  footer img.dl-app-link {
    margin-bottom: 0;
    width: 140px;
    margin-left: 20px;
  }
}
footer h3.dl-ur-app-heading {
  font-style: normal;
  font-weight: bold;
  font-size: 46px;
  line-height: 50px;
  margin-bottom: 15px;
  font-size: 1.8rem;
  color: #fff;
}
@media (min-width: 768px) {
  footer h3.dl-ur-app-heading {
    font-size: 1.9rem;
  }
}
@media (min-width: 992px) {
  footer h3.dl-ur-app-heading {
    font-size: 2rem;
  }
}
footer .co-info {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  list-style: none;
}
@media (max-width: 768px) {
  footer .co-info {
    justify-content: center;
    text-align: center;
    padding: 0;
  }
}
@media (max-width: 768px) {
  footer .co-info li {
    width: 100%;
    justify-content: center;
    display: flex;
    align-items: center;
    text-align: center;
  }
}

.foods-tags {
  padding: 0;
}
.foods-tags ul {
  padding: 10px 0;
}
.foods-tags ul li {
  list-style: none;
  display: inline-block;
  margin: 2px;
}
@media (max-width: 768px) {
  .foods-tags ul li {
    min-width: -moz-max-content !important;
    min-width: max-content !important;
  }
}
.foods-tags ul li a {
  border: 2px solid #fff;
  padding: 5px 8px;
  background-color: #d6d6d6;
  font-weight: bolder;
  color: #000;
  font-size: 13px;
  border-radius: 30px;
  display: inline-block;
  width: -moz-max-content;
  width: max-content;
  color: #000671 !important;
  position: relative;
  transition: all 400ms ease-in-out;
  z-index: 0;
}
.foods-tags ul li a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 100%;
  background: #fff;
  left: 0;
  right: 0;
  top: 0;
  margin: 0 auto;
  transition: all 400ms ease-in-out;
  z-index: -1;
  border-radius: 30px;
}
.foods-tags ul li a:hover {
  color: #000671 !important;
  text-decoration: none;
}
.foods-tags ul li a:hover::after {
  width: 100%;
}

.find-us {
  padding: 90px 0;
  position: relative;
  color: #fff;
}
@media (max-width: 576px) {
  .find-us {
    padding: 30px 0;
  }
}
.find-us a {
  color: #fff;
}
.find-us::after {
  position: absolute;
  content: "";
  width: 30%;
  height: 35%;
  background-color: #000671;
  top: 60%;
  right: 0;
  z-index: -1;
  border-radius: 15px 0 0 15px;
}
@media (max-width: 991px) {
  .find-us::after {
    top: unset;
    bottom: 0%;
    width: 60%;
    height: 30%;
  }
}
@media (max-width: 576px) {
  .find-us::after {
    top: unset;
    bottom: 0%;
    width: 70%;
    height: 25%;
  }
}
.find-us iframe {
  border-radius: 20px;
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  .find-us iframe {
    height: 400px;
  }
}
.find-us ul {
  list-style: none;
  padding: 0;
}
.find-us h3 {
  color: #e7d334;
}

#myBtn {
  display: none;
  position: fixed;
  bottom: 59px;
  left: 25px;
  z-index: 99;
  font-size: 18px;
  border: none;
  outline: none;
  background-color: #e7d334;
  color: #000671;
  border: 1px solid #000671;
  cursor: pointer;
  padding: 6px 11px;
  border-radius: 50%;
}
#myBtn:hover {
  color: #000671;
  border: 1px dashed #000671;
  background-color: white;
  box-shadow: #dad0c4 0px 7px 29px 0px;
}

#social-media {
  display: flex;
  justify-content: center;
  flex-direction: column;
  position: fixed;
  bottom: 100px;
  left: 25px;
  z-index: 99;
  font-size: 18px;
  border: none;
  outline: none;
}
#social-media a {
  background-color: #000671;
  padding: 6px;
  margin-bottom: 7px;
  border-radius: 50%;
  border: 1px solid #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
#social-media a svg {
  fill: #fff;
}

section.social-media {
  color: #fff;
  background-color: #000671;
  padding: 15px 0;
}
section.social-media .fa {
  font-size: 35px;
  color: #e7d334;
}
section.social-media .fa:hover {
  color: #fff;
}
section.social-media .card {
  background-color: transparent;
  border-radius: 50%;
  transition: ease-in-out 0.7s;
}
section.social-media .card:hover {
  transform: scale(1.1);
  transition: ease-in-out 0.7s;
}
section.social-media .card img {
  border-radius: 50%;
}
section.social-media h6 {
  font-size: 20px;
  font-weight: bolder;
}
section.social-media div.icon-holder {
  transition: transform 0.5s ease;
}
section.social-media div.icon-holder:hover {
  transform: translate(0px, -8px);
}

/* Customize  Color Of Selection  */
::-moz-selection {
  background-color: #000671;
  color: white;
}
::selection {
  background-color: #000671;
  color: white;
}

::-moz-selection {
  background-color: #000671;
  color: white;
}

/* Customize  Scrollbar  */
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-thumb {
  background: #000671;
  border-radius: 10px;
}

section.copyright {
  margin-top: 20px;
  color: rgb(255, 255, 255);
}
section.copyright .container {
  padding: 30px 0;
  border-top: 2px solid #9ca1ff;
}
section.copyright a.mealzo-link {
  color: #fff !important;
}
section.copyright a.mealzo-link:hover {
  color: #dad0c4 !important;
}/*# sourceMappingURL=style2.css.map */