.main-color {
  color: #F3971E;
}

@font-face {
  font-family: Luxury;
  src: url(../../Fonts/luxury/TOPLUXURY.otf);
}
@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;
}

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

.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(../../imgs/snow.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

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

.fade-right {
  animation: fade-right 0.7s ease-in-out;
}

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

@keyframes fade-two {
  0% {
    transform: translateX(0);
    opacity: 0;
  }
  100% {
    transform: rotate(-115deg);
    opacity: 1;
  }
}
.fade-top {
  animation: fade-top 0.7s ease-in-out;
}

@keyframes fade-top {
  0% {
    transform: translateY(-200px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.reveal {
  position: relative;
  opacity: 0;
}

.reveal.active {
  opacity: 1;
}
.reveal.active .fade-left {
  animation: fade-left 0.7s 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 1s 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 0.7s 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;
  }
}

header {
  position: relative;
  padding: 50px 0;
}
@media (max-width: 1200px) {
  header {
    background-color: transparent;
    border-radius: 0 0 80px 80px;
    padding: 40px 0;
  }
}
header .navbar-brand {
  font-size: 1rem !important;
}
header .shop-logo {
  position: absolute;
  content: "";
  top: 0%;
  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;
  }
}
header .shop-logo img {
  z-index: 9999 !important;
  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;
  z-index: 1000;
}
@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;
    -webkit-backdrop-filter: blur(40px);
            backdrop-filter: blur(40px);
    max-width: 85%;
    justify-content: space-between;
    margin: 0 auto;
    padding: 20px 0;
    border-radius: 20px;
    text-shadow: 0 0 2px #000;
  }
}
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: #F3971E;
  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: #fff;
}
@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: #F3971E !important;
  text-shadow: none;
}
header section.menu-section div.mobile-overlay .overlay-content a.nav-link .active {
  color: #F3971E !important;
}
@media (min-width: 1200px) {
  header section.menu-section div.mobile-overlay .overlay-content a.nav-link {
    margin-left: 10px;
    margin-right: 0;
    font-size: 11px;
    color: #fff;
  }
}
@media (min-width: 1200px) {
  header section.menu-section div.mobile-overlay .overlay-content a.nav-link {
    font-size: 15px;
    margin-left: 20px;
  }
}
header section.menu-section div.mobile-overlay .overlay-content a.btn {
  background-color: #F3971E;
  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: #F3971E;
  color: #fff;
  border-radius: 35px 35px 12px 12px !important;
  padding-top: 12px;
  width: 210px;
  height: 50px;
}
header .header-btn a.btn:hover {
  color: #F3971E;
  border-color: #F3971E;
  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: #F3971E;
}

/* section hero */
.index-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0) 100%), url(../../imgs/hero/Lovea-takeaway-Darlington-hero-section-bg.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media (max-width: 991px) {
  .index-hero {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.5) 100%), url(../../imgs/hero/Lovea-takeaway-Darlington-hero-section-bg.jpg);
  }
}

section.hero-section {
  padding: 40px 10px 120px 10px;
  color: #fff;
}
@media (max-width: 991px) {
  section.hero-section {
    padding: 50px 0;
  }
}
section.hero-section p.h1 {
  font-size: 4rem;
  font-weight: bolder;
  text-transform: uppercase;
  font-family: Luxury;
}
@media (max-width: 1200px) {
  section.hero-section p.h1 {
    font-size: 3rem;
  }
}
@media (max-width: 576px) {
  section.hero-section p.h1 {
    font-size: 2rem;
  }
}
section.hero-section .about-img {
  transition: ease-in-out 0.7s;
}
@media (max-width: 991px) {
  section.hero-section .about-img {
    margin-bottom: 30px;
  }
}
section.hero-section .about-img img.about-main-img {
  position: relative;
  background-color: #F3971E;
  padding: 8px;
  max-width: 80%;
  transition: ease-in-out 0.7s;
  transform: rotate(-50deg);
}
section.hero-section .about-img img.about-img2 {
  position: absolute;
  content: "";
  bottom: 0;
  left: 2%;
  width: 70%;
  transform: rotate(-115deg);
  background-color: #F3971E;
  padding: 8px;
  transition: ease-in-out 0.7s;
}
@media (min-width: 1200px) {
  section.hero-section .about-img img.about-img2 {
    z-index: 999;
  }
}
section.hero-section .about-img img.about-img3 {
  position: absolute;
  content: "";
  bottom: 0;
  left: 2%;
  z-index: 9;
  width: 75%;
  background-color: #F3971E;
  padding: 8px;
  transition: ease-in-out 0.7s;
}
@media (min-width: 1200px) {
  section.hero-section .about-img img.about-img3 {
    z-index: 999;
  }
}
section.hero-section a.btn {
  padding: 15px 35px;
  background-color: #F3971E;
  color: #fff;
  font-weight: bolder;
  border: 1px solid #F3971E;
  border-radius: 30px;
}
section.hero-section a.btn:hover {
  background: radial-gradient(rgba(243, 151, 30, 0.5) 0%, #f3971e 100%);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  border-color: #F3971E;
  color: #fff;
}

section.more-about-us-section {
  background-color: rgb(255, 255, 255);
  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::before {
  position: absolute;
  content: "";
  width: 1200px;
  height: 950px;
  background-color: #F3971E;
  top: -70%;
  left: 0;
  right: 0;
  margin: 0 auto;
  border-radius: 50%;
}
@media (max-width: 1200px) {
  section.more-about-us-section::before {
    top: -50%;
    width: 90%;
    height: 90%;
  }
}
@media (max-width: 991px) {
  section.more-about-us-section::before {
    width: 95%;
  }
}
@media (max-width: 768px) {
  section.more-about-us-section::before {
    width: 99%;
    height: 80%;
    border-radius: 30%;
  }
}
@media (max-width: 576px) {
  section.more-about-us-section::before {
    width: 99%;
    height: 80%;
    border-radius: 80px;
  }
}
section.more-about-us-section .section-header {
  margin-bottom: 10px !important;
  font-size: 2.5rem;
}
@media (max-width: 480px) {
  section.more-about-us-section .section-header {
    font-size: 1.5rem;
  }
}
section.more-about-us-section a.btn {
  background-color: #fff;
  padding: 15px 35px;
  color: #F3971E;
  font-weight: bolder;
  border: 1px solid #F3971E;
  border-radius: 30px;
}
section.more-about-us-section a.btn:hover {
  background-color: #F3971E;
  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(0, 0, 0, 0.7);
  -webkit-backdrop-filter: blur(40px);
          backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(30px);
          backdrop-filter: blur(30px);
  color: #fff;
  text-shadow: 0 0 2px #000;
  padding: 10px;
  border-radius: 20px;
}
@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: #F3971E;
  padding: 15px 40px;
  border-radius: 15px;
  color: #000;
}
section.more-about-us-section .about-text {
  margin-bottom: 40px;
  max-width: 550px;
  font-size: 15px;
}

.special {
  padding: 40px 0;
  position: relative;
}
.special::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 30%;
  background: linear-gradient(to top, #F3971E 0%, rgba(243, 151, 30, 0.5) 50%, rgba(243, 151, 30, 0) 100%);
  bottom: 0;
  left: 0;
}
.special h3 {
  text-shadow: 1px 1px #a7a7a7;
  color: #F3971E;
}
.special p {
  color: #F3971E;
}
.special .swiper-wrapper {
  padding: 40px 5px;
}
.special .swiper-slide.swiper-slide-active .card-title {
  display: flex;
  justify-content: center;
}
.special .card {
  background-color: #F3971E;
  border: 1px solid #fff;
  transition: 0.7s ease-in-out;
  border-radius: 20px;
}
.special .card:hover {
  text-decoration: none;
  transform: scale(1.07);
  transition: 0.7s ease-in-out;
}
@media (max-width: 480px) {
  .special .card {
    background-color: transparent;
  }
}
.special .card a:hover {
  text-decoration: none;
}
.special .card img {
  width: 100%;
  position: relative;
  display: flex;
  margin: auto;
  border-radius: 20px 20px 0 0;
}
.special .card .card-title {
  content: "";
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 100%;
  padding: 15px 0;
  background-color: #F3971E;
  text-align: center;
  display: flex;
  justify-content: center;
  z-index: 555;
  border-radius: 20px;
}
.special .card .card-title h4 {
  color: #fff;
  font-weight: bold;
  font-size: 1.2rem;
}
@media (max-width: 768px) {
  .special .card .card-title h4 {
    font-size: 1rem;
  }
}
.special .card p {
  margin-top: -20px;
  width: 100%;
  background-color: #F3971E;
  padding: 15px 0;
  color: #fff;
  position: relative;
  z-index: 3;
  margin-bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  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;
}

section.about-us {
  padding: 50px 0 100px 0;
  position: relative;
}
@media (max-width: 1200px) {
  section.about-us {
    padding: 50px 0 100px 0;
  }
}
section.about-us::before {
  position: absolute;
  content: "";
  width: 30%;
  height: 35%;
  background-color: #F3971E;
  top: 60%;
  left: 0;
  z-index: -1;
  border-radius: 0 0 15px 0;
}
@media (max-width: 991px) {
  section.about-us::before {
    top: unset;
    bottom: 5%;
    width: 60%;
    height: 30%;
  }
}
@media (max-width: 576) {
  section.about-us::before {
    top: unset;
    bottom: 0%;
    width: 60%;
    height: 30%;
  }
}
section.about-us h2 {
  color: #F3971E;
}
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: #F3971E;
  color: #fff;
  font-weight: bolder;
  border: 1px solid #F3971E;
  border-radius: 30px;
  margin-top: 20px;
}
section.about-us a.btn:hover {
  background-color: #fff;
  border-color: #F3971E;
  color: #F3971E;
}

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

/* dwnloap app section */
section.dl-app {
  position: relative;
  padding: 0 0 50px 0;
}
@media (max-width: 768px) {
  section.dl-app {
    padding-top: 50px;
  }
}
section.dl-app .app-mockup {
  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.dl-ur-app-heading {
  font-weight: bold;
  font-size: 40px;
  margin: 20px 0;
  color: #F3971E;
}
@media (max-width: 1200px) {
  section.dl-app div.inner-content h3.dl-ur-app-heading {
    font-size: 25px;
  }
}
@media (max-width: 380px) {
  section.dl-app div.inner-content h3.dl-ur-app-heading {
    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: #F3971E;
  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: #F3971E;
  margin-bottom: 9px;
  color: #fff;
}
section.reviews .comment-section .stars {
  text-align: center;
  margin-bottom: 90px;
}

/* footer */
.index-footer {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.5) 100%), url("../../imgs/hero/Lovea-takeaway-Darlington-footer-bg.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

footer {
  color: rgb(255, 255, 255);
  padding: 80px 0 0 0;
}
footer h1, footer h2, footer h3, footer h4, footer h5, footer h6 {
  text-shadow: 0 0 2px #000;
  font-weight: bolder;
}
footer .footer-logo .shop-logo {
  width: 100px;
  background: rgba(255, 255, 255, 0.5);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-radius: 50%;
  margin: auto;
  margin-bottom: 18px;
}
footer .Opening {
  padding: 0;
}
footer .Opening li {
  padding: 3px;
  list-style: none;
}
footer .Opening li a {
  color: #fff;
}
footer .Opening li a:hover {
  color: #F3971E;
  text-decoration: none;
}
footer .footer-header {
  font-size: 28px;
  text-transform: capitalize;
  font-weight: bolder;
}
@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.foods-link {
  padding: 10px 0;
}
.foods-tags ul.foods-link li {
  list-style: none;
  display: inline-block;
  border: 2px solid #fff;
  border-radius: 18px;
  padding: 5px 10px;
  margin: 2px;
  background-color: #fff;
  font-weight: 500;
  color: #000;
  font-size: 13px;
}
@media (max-width: 768px) {
  .foods-tags ul.foods-link li {
    min-width: -moz-max-content !important;
    min-width: max-content !important;
  }
}
.foods-tags ul.foods-link li:hover {
  border: 2px solid #dad0c4;
  background-color: #fff;
}
.foods-tags ul.foods-link li:hover a {
  color: #dad0c4;
}

.find-us {
  padding: 90px 0;
  position: relative;
  color: #000;
}
.find-us a {
  color: #000;
}
.find-us::after {
  position: absolute;
  content: "";
  width: 30%;
  height: 35%;
  background-color: #F3971E;
  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: 576) {
  .find-us::after {
    top: unset;
    bottom: 0%;
    width: 60%;
    height: 30%;
  }
}
.find-us iframe {
  border-radius: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  height: 100%;
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  .find-us iframe {
    height: 400px;
  }
}
.find-us ul {
  list-style: none;
  padding: 0;
}

section.foods-link {
  margin: 10px 0;
}
section.foods-link ul {
  padding: 10px;
  margin: 0;
}
section.foods-link ul li {
  list-style: none;
  display: inline-block;
  border: 2px solid #dad0c4;
  border-radius: 18px;
  padding: 5px 15px;
  margin: 5px;
  background-color: #dad0c4;
  font-weight: 500;
}
section.foods-link ul li a {
  color: #fff;
}
section.foods-link ul li a:hover {
  text-decoration: none;
}
section.foods-link ul li:hover {
  border: 2px solid #dad0c4;
  background-color: #fff;
}
section.foods-link ul li:hover a {
  color: #dad0c4;
}

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

.Modal-btn {
  background-color: #F3971E;
  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;
  }
}

section.social-media {
  color: #fff;
  background-color: #F3971E;
  padding: 15px 0;
}
section.social-media .fa {
  font-size: 35px;
  color: #F3971E;
}
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: #F3971E;
  color: white;
}
::selection {
  background-color: #F3971E;
  color: white;
}

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

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

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

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