.main-color {
  color: #EBA601;
}

@font-face {
  font-family: fredoka;
  src: url(../../Fonts/Fredoka/FredokaOne-Regular.ttf);
}
@font-face {
  font-family: poppins;
  src: url(../../Fonts/poppins/Poppins-Regular.ttf);
}
body {
  font-family: poppins !important;
  font-size: 14px;
  background-color: #fff;
  margin-bottom: 80px;
}
@media (max-width: 768px) {
  body {
    margin-bottom: 100px;
  }
}

html {
  scroll-behavior: smooth;
}

.snowflake {
  position: absolute;
  width: 27px;
  height: 27px;
  background: transparent;
  z-index: 999;
  background-image: url(../../imgs/snow.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

ul {
  padding: 0;
  list-style: none;
}
ul li {
  list-style: none !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: poppins !important;
}

.main-header {
  padding-bottom: 10px;
  margin-bottom: 30px;
  font-weight: 600;
  display: inline-flex;
  position: relative;
  color: #000;
}
.main-header::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 30%;
  width: 40%;
  height: 3px;
  background-color: #ffffff;
}

a:hover {
  text-decoration: none;
}

img {
  max-width: 100%;
}

.reveal {
  position: relative;
  opacity: 0;
}

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

.top {
  animation: top 0.5s ease-in;
}

@keyframes top {
  0% {
    transform: translateY(-150px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
/* header */
.openmenuu {
  width: 100% !important;
}

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

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

header {
  background-color: #EBA601;
}
header .navbar-brand {
  font-size: 1rem !important;
}
header .shop-logo {
  max-width: 150px;
  border-radius: 10px;
}
header .order-btn {
  border: 2px solid #FBD8B1;
  color: #000;
  background-color: #EBA601;
  padding: 10px;
  border-radius: 20px;
  font-weight: bolder;
  font-size: 13px;
}
@media (max-width: 576px) {
  header .order-btn {
    display: none;
  }
}
header .order-btn.order-wishaw {
  background-color: #E31E27;
  color: #fff;
}
header section.menu-section span.open-menu {
  align-self: center;
  z-index: 10;
  width: 130px;
  justify-content: flex-end;
  display: flex;
}
header section.menu-section #myNav {
  display: block;
}
header section.menu-section nav {
  padding: 10px 0;
}
header section.menu-section div.mobile-overlay {
  height: 100%;
  width: 0%;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.93);
  overflow-x: hidden;
  transition: width 0.45s;
}
header section.menu-section div.mobile-overlay .overlay-content {
  justify-content: center;
  position: relative;
  top: 15%;
  width: 100%;
  text-align: center;
}
@media (min-width: 768px) {
  header section.menu-section div.mobile-overlay .overlay-content > div#navbarNavAltMarkup {
    display: flex;
    flex-direction: row;
  }
}
header section.menu-section div.mobile-overlay .overlay-content .closebtn {
  text-decoration: unset;
  position: absolute;
  right: 10%;
  top: 0%;
  font-size: 26px;
  z-index: 100;
  color: #EBA601;
}
header section.menu-section div.mobile-overlay .overlay-content a.nav-link {
  color: #fff;
  font-size: 19px;
  font-weight: bolder;
  border-bottom: 1px solid transparent;
  transition: ease-in-out 0.4s;
}
header section.menu-section div.mobile-overlay .overlay-content a.nav-link:hover {
  border-bottom: 1px solid #EBA601;
  color: #EBA601 !important;
}
header section.menu-section div.mobile-overlay .overlay-content a.nav-link:hover svg {
  fill: #EBA601 !important;
}
header section.menu-section div.mobile-overlay .overlay-content a.nav-link.active {
  border-bottom: 1px solid #EBA601;
  color: #EBA601 !important;
}
header section.menu-section div.mobile-overlay .overlay-content a.nav-link svg {
  fill: #fff;
  font-weight: 600;
  width: 25px;
  height: 25px;
}
header section.menu-section div.mobile-overlay .overlay-content a.btn {
  background-color: #EBA601;
  color: black;
}
header section.menu-section div.mobile-overlay .overlay-content a.login-btn {
  background-color: #EBA601;
  border-radius: 35px 35px 12px 12px !important;
  padding: 8px 15px 8px 15px;
  color: #fff;
}

/* section hero */
section.hero-section {
  padding: 60px 0;
}
section.hero-section .food-banner {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
section.hero-section .food-banner img {
  border-radius: 20px;
  margin: 5px;
}

#slider .carousel-item {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  min-height: 700px;
}
@media (max-width: 991px) {
  #slider .carousel-item {
    min-height: 500px;
  }
}
@media (max-width: 380px) {
  #slider .carousel-item {
    min-height: 400px;
  }
}
#slider .carousel-item .order-now {
  position: absolute;
  top: 20%;
  left: 10%;
  right: 10%;
  color: #fff;
  padding: 20px;
  flex-direction: column;
  margin: 0 auto;
  justify-content: center;
  align-items: center;
  display: flex;
  text-align: center;
}
@media (max-width: 767px) {
  #slider .carousel-item .order-now {
    top: 18%;
    padding: 10px;
    left: 0%;
    right: 0%;
  }
}
#slider .carousel-item .order-now h2 {
  font-size: 50px;
  font-weight: 700;
  padding-bottom: 12px;
}
@media (max-width: 767px) {
  #slider .carousel-item .order-now h2 {
    font-size: 40px;
  }
}
#slider .carousel-item .order-now h4 {
  margin: 10px auto;
  padding-bottom: 20px;
}
@media (max-width: 767px) {
  #slider .carousel-item .order-now h4 {
    max-width: 100%;
  }
}
#slider .carousel-item .order-now .order-btn {
  border: 2px solid #FBD8B1;
  color: #fff;
  background-color: #E31E27;
  padding: 10px;
  border-radius: 20px;
  font-weight: bolder;
  font-size: 13px;
  margin-top: 20px;
}
@media (max-width: 380px) {
  #slider .carousel-item .order-now .order-btn {
    display: none;
  }
}
#slider .carousel-item.item-one {
  background-image: url(../../imgs/hero/paratha-house-hero.jpg);
}
#slider .carousel-item.item-two {
  background-image: url(../../imgs/hero/paratha-house-second-hero.jpg);
}
#slider .carousel-item.active {
  transition: transform 7s linear, opacity 5s;
  opacity: 1;
  transform: scale(1.1, 1.1);
}

section.more-about-us-section {
  background-color: #EBA601;
  color: #000;
  padding-top: 60px;
  padding-bottom: 60px;
  position: relative;
}
@media (max-width: 768px) {
  section.more-about-us-section {
    padding: 120px 0;
    margin: 50px 0;
  }
}
section.more-about-us-section::before {
  position: absolute;
  top: 10%;
  left: 20px;
  content: "";
  background-image: url(../../imgs/main/cool.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 150px;
  height: 150px;
  background-color: #EBA601;
  padding: 20px;
  border-radius: 50%;
}
@media (max-width: 1440px) {
  section.more-about-us-section::before {
    top: -5%;
  }
}
@media (max-width: 991px) {
  section.more-about-us-section::before {
    top: 8%;
    left: 3%;
  }
}
@media (max-width: 768px) {
  section.more-about-us-section::before {
    top: -2%;
    left: 3%;
  }
}
section.more-about-us-section::after {
  position: absolute;
  bottom: 25%;
  right: 5px;
  content: "";
  background-image: url(../../imgs/main/good-vibes.JPG);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 150px;
  height: 150px;
  border: 1px solid #EBA601;
  padding: 5px;
  border-radius: 50%;
}
@media (max-width: 1440px) {
  section.more-about-us-section::after {
    width: 70px;
    height: 70px;
  }
}
@media (max-width: 1200px) {
  section.more-about-us-section::after {
    display: none;
  }
}
@media (max-width: 991px) {
  section.more-about-us-section::after {
    bottom: 8%;
    right: 3%;
  }
}
@media (max-width: 768px) {
  section.more-about-us-section::after {
    bottom: -2%;
    right: 3%;
  }
}
section.more-about-us-section h2 {
  font-size: 48px;
  font-weight: 600;
  padding-bottom: 12px;
}
@media (max-width: 768px) {
  section.more-about-us-section h2 {
    font-size: 32px;
  }
}
section.more-about-us-section h3.main-section-heading {
  margin-bottom: 30px;
  text-transform: capitalize;
  font-weight: bolder;
  font-size: 38px;
  color: #EBA601;
}
section.more-about-us-section img {
  border-radius: 20px;
}
section.more-about-us-section .more-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-radius: 50%;
  padding: 20px;
  max-width: 45%;
  box-shadow: 2px 2px 10px rgba(196, 196, 196, 0.4509803922);
  margin-top: 20px;
  background-color: #EBA601;
  transition: ease-in-out 0.7s;
}
section.more-about-us-section .more-content img {
  border-radius: 50%;
}
section.more-about-us-section .more-content .more-header * {
  text-align: center;
}
section.more-about-us-section .more-content .more-header h4 {
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 600;
  color: #000;
}
section.more-about-us-section .more-content .more-header span {
  color: #fff;
  max-width: 270px;
  display: none;
}
@media (max-width: 576px) {
  section.more-about-us-section .more-content .more-header span {
    max-width: 400px;
  }
}
section.more-about-us-section a {
  border: 2px solid #FBD8B1;
  background-color: #E31E27;
  color: #fff;
  padding: 12px 20px;
  display: inline-flex;
  font-weight: 600;
  border-radius: 30px;
}
section.more-about-us-section a:hover {
  text-decoration: none;
  background-color: #EBA601;
  color: #000;
}
section.more-about-us-section p {
  font-weight: bolder;
  color: #444444;
  font-size: 16px;
  text-align: justify;
  padding-bottom: 12px;
}

/* special to try */
section.special {
  padding-top: 60px;
  padding-bottom: 60px;
}
section.special .main-header {
  font-weight: 900;
  font-size: 32px;
  margin-bottom: 10px;
  color: #EBA601;
}
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: #EBA601;
}
@media (max-width: 991px) {
  section.special h3 {
    font-size: 40px;
  }
}
section.special ul.nav-tabs {
  margin-bottom: 40px;
}
section.special ul.nav-tabs .cat-img {
  width: 40px;
}
section.special ul.nav-tabs a.nav-link {
  color: #EBA601;
  font-size: 12px;
  font-weight: 600;
  border: 2px solid #EBA601;
  border-radius: 0 !important;
  background-color: #fff;
  transition: ease-in-out 0.3s;
}
section.special ul.nav-tabs a.nav-link:hover {
  transform: scale(0.9);
}
section.special ul.nav-tabs a.nav-link.active {
  color: #fff;
  background-color: #EBA601;
}
@media (min-width: 768px) {
  section.special ul.nav-tabs a.nav-link {
    font-size: 1rem;
    margin-right: 5px;
  }
}
@media (max-width: 576px) {
  section.special ul.nav-tabs a.nav-link {
    padding: 0 10px;
  }
}
section.special .swiper {
  padding: 30px 0 0 0;
}
section.special .swiper .swiper-slide {
  padding: 20px 0 40px 0;
}
section.special .swiper .swiper-slide .card {
  transition: all 0.5ms ease;
  justify-content: center;
  align-items: center;
  border-radius: 25px;
  transition: ease-in-out 0.5s;
  color: #000;
  min-height: 400px;
  border: none;
  background-color: #EBA601;
  box-shadow: 2px 2px 10px #FBD8B1;
}
@media (max-width: 768px) {
  section.special .swiper .swiper-slide .card {
    min-height: 455px;
  }
}
@media (max-width: 480px) {
  section.special .swiper .swiper-slide .card {
    min-height: 380px;
  }
}
section.special .swiper .swiper-slide .card:hover {
  transform: scale(1.04);
}
section.special .swiper .swiper-slide .card img {
  border-radius: 25px;
}
section.special .swiper .swiper-slide .card .card-body {
  text-align: center;
  padding: 10px 20px !important;
}
section.special .swiper .swiper-slide .card .card-title {
  color: #000;
  text-transform: capitalize;
  font-size: 24px;
  font-weight: 700;
  padding-bottom: 12px;
}
@media (max-width: 768px) {
  section.special .swiper .swiper-slide .card .card-title {
    font-size: 20px;
  }
}
section.special .swiper .swiper-slide .card a.btn {
  text-transform: capitalize;
  font-weight: bolder;
  color: #fff;
  background-color: #E31E27;
  border-radius: 35px 35px 12px 12px !important;
  border-color: #FBD8B1;
  box-shadow: #b3b3b3 5px 5px 10px;
  margin-bottom: -20px;
  padding-top: 12px;
  width: 50%;
}
section.special .swiper-button-prev,
section.special .swiper-button-next {
  background-color: #E31E27;
  border-radius: 5px;
  padding: 25px;
  top: 50%;
  transition: ease-in-out 0.3s;
}
section.special .swiper-button-prev:hover,
section.special .swiper-button-next:hover {
  transform: scale(0.8);
}
@media (max-width: 767px) {
  section.special .swiper-button-prev,
  section.special .swiper-button-next {
    display: none;
  }
}
section.special .swiper-button-prev:after,
section.special .swiper-button-next:after {
  color: #fff;
}
section.special .swiper-button-next {
  left: unset;
  right: 0;
}
section.special .swiper-button-prev {
  right: unset;
  left: 0;
}

.menu-banner .banner-content {
  background-image: url(../../imgs/hero/paratha-bg-food.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: 25px;
  margin: 0 auto;
  padding: 30px;
  min-height: 570px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.4235294118);
}
@media (max-width: 576px) {
  .menu-banner .banner-content {
    padding: 10px;
  }
}
.menu-banner .banner-content h2 {
  color: #EBA601;
  font-weight: bolder;
  letter-spacing: -0.1rem;
  font-size: 50px;
  text-transform: capitalize;
  text-shadow: -5px 0px #000;
}
@media (max-width: 991px) {
  .menu-banner .banner-content h2 {
    font-size: 35px;
  }
}
@media (max-width: 576px) {
  .menu-banner .banner-content h2 {
    font-size: 30px;
  }
}
.menu-banner .banner-content a {
  background-color: #EBA601;
  border-radius: 40px;
  width: 200px;
  height: 50px;
  color: #000000;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-weight: 800;
  text-transform: capitalize;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .menu-banner .banner-content a {
    font-size: 15px;
    padding: 10px;
    width: 150px;
  }
}
@media (max-width: 576px) {
  .menu-banner .banner-content a {
    width: 150px;
    font-size: 13px;
  }
}
.menu-banner .banner-content a:hover {
  color: #EBA601;
  border-color: #EBA601;
  background-color: #fff !important;
}

.menu-slider {
  padding: 40px 0;
}
.menu-slider .swiper-wrapper {
  padding: 50px 0;
}
.menu-slider .card {
  border: none;
}
.menu-slider img {
  border-radius: 25px;
}
.menu-slider .swiper-pagination {
  bottom: 0;
}
.menu-slider .swiper-pagination-bullet-active {
  background-color: #EBA601;
}

section.about-us {
  margin: 60px 0;
}
section.about-us div.section-heading-div h3 {
  font-weight: bold;
  font-size: 32px;
  line-height: 48px;
  text-align: center;
  margin-bottom: 70px;
  text-transform: capitalize;
  color: #EBA601;
}
section.about-us div.about-us-content div.shop-name-secoundry h4 {
  font-family: poppins;
  font-size: 24px;
  line-height: 36px;
  color: #252525;
  margin-bottom: 24px;
  font-weight: bolder;
}
section.about-us div.about-us-content div.shop-about-text p {
  font-size: 18px;
  line-height: 27px;
  letter-spacing: -0.02em;
}
section.about-us div.about-us-content div.read-more-btn a {
  background-color: #EBA601;
  color: #fff;
  border-radius: 20px !important;
  padding-top: 12px;
  width: 210px;
  height: 50px;
  margin-top: 20px;
  transition: all 0.5s ease;
}
section.about-us div.about-us-content div.read-more-btn a:hover {
  color: #fff;
  border-color: #EBA601;
  background-color: #EBA601;
  box-shadow: #000 0px 4px 12px;
  transform: scale(0.9);
}
@media (min-width: 992px) {
  section.about-us div.about-us-content div.read-more-btn a {
    margin-top: 62px;
  }
}

section.peyment-method {
  background-color: #ffffff;
}
section.peyment-method div.row {
  padding: 60px 0;
}
section.peyment-method div.row div.col-10 .methods-container {
  justify-content: space-evenly;
}
section.peyment-method div.row div.col-10 .methods-container > div img {
  width: 70px;
  display: block;
}

/* dwnloap app section */
section.dl-app {
  background-color: #EBA601;
  position: relative;
  margin-bottom: 60px;
  padding-top: 60px;
  padding-bottom: 60px;
}
section.dl-app .container {
  padding: 40px 30px;
  border-radius: 30px;
}
section.dl-app .app-mockup {
  max-width: 84%;
}
section.dl-app .app-mockup:hover {
  animation: app-animation 1s ease-in;
  animation-delay: 0.3s;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
  animation-direction: alternate;
}
@keyframes app-animation {
  0% {
    transform: translateY(7px);
  }
  100% {
    transform: translateY(-7px);
  }
}
section.dl-app div.inner-content {
  padding: 80px 0 0 0;
  max-width: 516px;
}
@media (max-width: 768px) {
  section.dl-app div.inner-content {
    padding: 0 0 0;
    max-width: 100%;
  }
}
@media (max-width: 576px) {
  section.dl-app div.inner-content {
    padding: 10px 0 0 0;
  }
}
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.dl-ur-app-heading {
  font-family: poppins;
  font-style: normal;
  font-weight: 900;
  font-size: 32px;
  margin-bottom: 24px;
  margin-top: 24px;
  color: #000;
}
@media (max-width: 768px) {
  section.dl-app div.inner-content h3.dl-ur-app-heading {
    margin-top: 20px;
    margin-bottom: 20px;
    text-shadow: unset;
    font-size: 28px;
  }
}
@media (max-width: 576px) {
  section.dl-app div.inner-content h3.dl-ur-app-heading {
    margin-top: 0;
  }
}
@media (max-width: 380px) {
  section.dl-app div.inner-content h3.dl-ur-app-heading {
    font-size: 23px;
    margin-bottom: 0;
  }
}
section.dl-app div.inner-content p {
  font-size: 20px;
}
@media (max-width: 768px) {
  section.dl-app div.inner-content p {
    max-width: 90%;
    color: #000;
    text-align: center;
    margin: 20px auto;
  }
}
@keyframes scale-up-center {
  0% {
    transform: scale(0.5);
  }
  100% {
    transform: scale(1);
  }
}
section.reviews {
  padding: 60px 0;
}
section.reviews .container {
  background-color: #EBA601;
  border-radius: 34px;
  padding: 40px 0;
}
section.reviews h3 {
  margin-bottom: 40px;
  font-weight: 900;
  font-size: 32px;
  color: #E31E27;
}
@media (min-width: 991px) {
  section.reviews h3 {
    font-size: 40px;
  }
}
section.reviews .comment-section {
  padding: 20px;
  text-align: center;
}
section.reviews .comment-section .comment-text {
  max-width: 800px;
  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: #EBA601;
  margin-bottom: 9px;
  color: #fff;
}
section.reviews .comment-section .stars {
  text-align: center;
  margin-bottom: 90px;
}
section.reviews img {
  width: 25px !important;
  height: 25px;
  margin-right: 2px;
}
section.reviews .star-o {
  margin-left: 2px;
}

/* footer */
footer {
  color: rgb(255, 255, 255);
  padding: 60px 30px 0 30px;
  background-image: url(../../imgs/hero/Lamegos-wishaw-fastfood-takeaway1.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 576px) {
  footer {
    padding: 50px 0 20px 0;
  }
}
@media (max-width: 480px) {
  footer {
    padding: 70px 0 15px 0;
  }
}
footer .footer-logo img {
  max-width: 80px;
}
footer .footer-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: #EBA601;
  padding: 10px;
  border-radius: 10px;
  height: 400px;
  box-shadow: 3px 3px 20px #FBD8B1;
}
footer .footer-details #openinghour, footer .footer-details #openinghour-Blantyre {
  width: 90%;
  margin: 0 auto;
}
@media (max-width: 991px) {
  footer .footer-details #openinghour, footer .footer-details #openinghour-Blantyre {
    width: 70%;
  }
}
@media (max-width: 480px) {
  footer .footer-details #openinghour, footer .footer-details #openinghour-Blantyre {
    width: 90%;
  }
}
footer .footer-header {
  color: #000;
  font-size: 30px;
  margin-bottom: 45px;
}
footer h5 {
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 0;
  font-weight: bolder;
  color: #E31E27;
}
footer a {
  color: #fff;
}
footer a:hover {
  color: #EBA601;
}
footer p {
  font-size: 15px;
  margin-bottom: 0;
  min-width: 87%;
  color: #444444;
}
footer .highlight {
  font-size: 30px;
}
footer span {
  font-weight: bolder;
  font-size: 15px;
}
footer a.order-btn {
  font-weight: bolder;
  text-transform: capitalize;
  font-size: 16px;
  padding: 10px 30px;
  background-color: #000;
  border-radius: 30px;
}
footer a.order-btn:hover {
  background-color: #EBA601;
  color: #000;
}
footer iframe {
  margin-left: auto;
  margin-right: auto;
  border-radius: 15px;
}

.foods-link {
  margin: 30px 0;
}
.foods-link ul {
  padding: 10px;
  margin: 0;
}
.foods-link ul li {
  list-style: none;
  display: inline-block;
  border-radius: 18px;
  padding: 5px 15px;
  margin: 5px;
  border: 2px solid #EBA601;
  background-color: #EBA601;
}
.foods-link ul li a {
  color: #000;
}
.foods-link ul li a:hover {
  text-decoration: none;
}
.foods-link ul li:hover {
  background-color: transparent;
}
.foods-link ul li:hover a {
  color: #EBA601;
}

.foods-tags {
  margin: 40px 0;
}
@media (max-width: 991px) {
  .foods-tags {
    margin: 30px 0 70px 0;
  }
}
@media (max-width: 576px) {
  .foods-tags {
    margin: 30px 0;
  }
}
.foods-tags .foods-link {
  padding-top: 20px;
}
.foods-tags ul {
  padding: 10px;
  display: flex;
  flex-wrap: wrap;
}
.foods-tags ul li {
  list-style: none;
  display: inline-block;
  border: 1px solid #FBD8B1;
  text-transform: capitalize;
  border-radius: 10px;
  padding: 5px 10px;
  margin: 4px;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  background-color: #E31E27;
}
.foods-tags ul li a,
.foods-tags ul li span {
  color: #fff !important;
  margin-bottom: 0;
  font-size: 13px;
}
.foods-tags ul li a:hover,
.foods-tags ul li span:hover {
  text-decoration: none;
}
.foods-tags ul li:hover {
  border: 1px solid #EBA601;
}

#myBtn {
  display: none;
  position: fixed;
  bottom: 80px;
  left: 25px;
  z-index: 3;
  font-size: 18px;
  border: 1px solid #FBD8B1;
  outline: none;
  background-color: #E31E27;
  color: #fff;
  cursor: pointer;
  padding: 6px 11px 6px 11px;
  border-radius: 12px;
}
#myBtn:hover {
  color: #444444;
  border: 1px solid #EBA601;
  background-color: #EBA601;
  box-shadow: #FBD8B1 0px 7px 29px 0px;
}

.fixed-part {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  font-size: 15px;
  border: none;
  outline: none;
  background-color: #EBA601;
  color: #444444;
  cursor: pointer;
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 2px solid #000;
}
.fixed-part a {
  color: #000;
}
.fixed-part a.btn {
  border: 2px solid #FBD8B1;
  color: #fff;
  background-color: #E31E27;
  padding: 8px 10px;
  border-radius: 20px;
  font-weight: bolder;
  margin: 5px;
}
@media (max-width: 380px) {
  .fixed-part a.btn {
    padding: 5px 2px;
    font-size: 13px;
  }
}
.fixed-part .order-Blantyre {
  background-color: #EBA601 !important;
  color: #000 !important;
}
.fixed-part p {
  margin-bottom: 0;
}
.fixed-part img {
  max-width: 150px;
}

section.social-media {
  background-color: #000;
}
section.social-media h5 {
  color: #EBA601;
}
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: #EBA601;
  color: white;
}
::selection {
  background-color: #EBA601;
  color: white;
}

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

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

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

section.copyright {
  margin-top: 30px;
}
section.copyright .container {
  padding: 5px;
  border-top: 1px solid #fff;
}
section.copyright p {
  line-height: 40px;
  color: #fff;
  margin-bottom: 0;
  font-size: 14px;
}
@media (max-width: 480px) {
  section.copyright p {
    font-size: 11px;
    line-height: 20px;
    padding: 5px;
  }
}
section.copyright a.mealzo-link {
  color: #000 !important;
  border-bottom: 1px solid #000;
}
section.copyright a i {
  color: #fff;
}/*# sourceMappingURL=style2.css.map */