.main-color {
  color: #3B4E73;
}

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

body {
  font-family: "montserrat" !important;
  overflow-x: hidden;
}

a:hover {
  text-decoration: none !important;
}

.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;
}

.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-top {
  animation: fade-top 0.7s ease-in-out;
}
@keyframes fade-top {
  0% {
    transform: translateY(-100px);
    opacity: 0;
  }
  100% {
    transform: translateY(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 */
.offer .container {
  padding: 10px 0;
  background-color: #3B4E73;
  border-radius: 0 0 10px 10px;
  color: #000;
}
@media (max-width: 768px) {
  .offer .container {
    padding: 5px 0;
  }
}
.offer .container p {
  font-weight: bolder;
  text-align: center;
  font-size: 18px;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .offer .container p {
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  .offer .container p {
    font-size: 14px;
  }
}

.openmenuu {
  width: 100% !important;
}

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

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

header {
  padding: 15px 0 0 0;
}
header .container {
  border-bottom: 2px solid #000;
}
header .navbar-brand {
  font-size: 1rem !important;
}
header .shop-logo {
  max-width: 110px;
  border-radius: 50%;
}
@media (max-width: 991px) {
  header .shop-logo {
    max-width: 90px;
  }
}
@media (min-width: 991px) {
  header .navbar-nav {
    flex-direction: row;
  }
}
header section.menu-section .navbar-expand-lg .navbar-nav {
  align-items: center;
}
header section.menu-section nav {
  padding: 0;
}
@media (min-width: 992px) {
  header section.menu-section nav {
    display: flex;
    align-items: center;
  }
}
header section.menu-section nav li {
  margin-left: 15px;
}
header section.menu-section nav li a.nav-link {
  color: #000 !important;
  font-weight: 900;
}
@media (max-width: 1200px) {
  header section.menu-section nav li a.nav-link {
    font-size: 15px;
  }
}
header section.menu-section nav li a.nav-link:hover {
  color: #3B4E73 !important;
}
header section.menu-section nav .nav-item.active .nav-link {
  border-bottom: 2px solid #3B4E73;
  color: #3B4E73 !important;
}
header section.menu-section nav .dropdown-menu {
  background-color: #fff;
  border-radius: 10px;
}
header section.menu-section nav .dropdown-menu .dropdown-item {
  color: #3B4E73;
}
header section.menu-section nav .dropdown-menu .dropdown-item:hover {
  background-color: #3B4E73;
  color: #fff;
}
header section.menu-section nav .dropdown-toggle {
  color: #3B4E73;
}
header section.menu-section nav .dropdown-toggle::after {
  display: none;
}
header section.menu-section nav .navbar-toggler-icon {
  background-image: unset !important;
  color: #000;
}
header section.menu-section nav .navbar-toggler {
  color: #3B4E73;
  border-color: transparent;
  line-height: 1.5;
}
header section.menu-section nav a.btn {
  background-color: #3B4E73;
  color: #fff;
}
header section.menu-section nav .header-links {
  justify-content: flex-end;
}
header section.menu-section .login-btn {
  color: #fff !important;
  background-color: #3B4E73;
  border-radius: 35px 35px 12px 12px !important;
  padding: 15px 20px !important;
}
@media (max-width: 1200px) {
  header section.menu-section .login-btn {
    padding: 15px 10px !important;
  }
}
@media (min-width: 768px) {
  header .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
  }
}

.index-hero {
  background-image: url("../../imgs/hero/lunch-box-bg.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  min-height: 100vh;
}

section.hero-section {
  padding: 25px 50px;
  color: #000;
}
@media (max-width: 991px) {
  section.hero-section {
    height: auto;
    padding: 40px 0;
  }
}
section.hero-section .hero-content h1 {
  font-size: 65px;
  font-weight: bolder;
  text-shadow: 2px -1px #000;
  margin-bottom: 20px;
  color: #000;
}
@media (max-width: 991px) {
  section.hero-section .hero-content h1 {
    margin-top: 30px;
  }
}
@media (max-width: 576px) {
  section.hero-section .hero-content h1 {
    font-size: 45px;
    margin-top: 30px;
  }
}
@media (max-width: 380px) {
  section.hero-section .hero-content h1 {
    font-size: 38px;
    margin-top: 30px;
  }
}
section.hero-section .hero-content p {
  margin-bottom: 50px;
  color: #000;
}
section.hero-section .hero-content .order-btn {
  border-radius: 30px;
  display: flex;
  max-width: -moz-max-content;
  max-width: max-content;
  margin: 20px auto;
  padding: 15px 55px;
  background-color: #3B4E73;
  color: #ffffff;
  font-size: 20px;
  font-weight: bolder;
}
section.hero-section .hero-content .order-btn:hover {
  background-color: #fff;
  text-decoration: none;
  color: #3B4E73;
}
section.hero-section img {
  max-width: 80%;
  margin: 0 auto;
  border-radius: 5px;
}
section.hero-section .mySwiper {
  padding: 0 0 80px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
section.hero-section .mySwiper a {
  transition: ease-in-out 0.7s;
}
section.hero-section .mySwiper a:hover {
  transform: scale(1.05);
}
section.hero-section .mySwiper h3 {
  font-size: 50px;
  color: #000;
  font-family: serif;
}
section.hero-section .mySwiper a {
  display: flex;
  flex-direction: column;
}
section.hero-section .mySwiper a button {
  margin: 0 auto;
  width: 100%;
  background-color: transparent;
  border: none;
  outline: none;
  padding: 15px 20px;
  font-weight: bolder;
  color: #000;
  font-size: 25px;
}
@media (max-width: 480px) {
  section.hero-section .mySwiper a button {
    font-size: 20px;
  }
}
@media (max-width: 480px) {
  section.hero-section .mySwiper a button {
    max-width: 300px;
  }
}
section.hero-section .mySwiper img {
  max-width: 400px;
  border-radius: 50%;
}
@media (max-width: 991px) {
  section.hero-section .mySwiper img {
    max-width: 400px;
  }
}
@media (max-width: 576px) {
  section.hero-section .mySwiper img {
    max-width: 300px;
  }
}
@media (max-width: 480px) {
  section.hero-section .mySwiper img {
    max-width: 250px;
  }
}
@media (max-width: 380px) {
  section.hero-section .mySwiper img {
    max-width: 200px;
  }
}
section.hero-section .mySwiper .swiper-pagination-bullet {
  background-color: antiquewhite;
}
section.hero-section .swiper-3d .swiper-slide-shadow-left {
  background-image: none !important;
}
section.hero-section .swiper-3d .swiper-slide-shadow-right {
  background-image: none !important;
}

section.more-about-us-section {
  background-color: rgb(255, 255, 255);
  padding: 80px 0 20px 0;
  color: #000000;
  position: relative;
}
section.more-about-us-section .main-header {
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  section.more-about-us-section h3 {
    font-size: 32px;
  }
}
section.more-about-us-section .about-text {
  margin-bottom: 40px;
  max-width: 550px;
}
section.more-about-us-section .more-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  color: #000;
  padding: 30px 10px;
  border-radius: 0;
}
@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: unset;
    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: #3B4E73;
  padding: 15px 40px;
  border-radius: 15px;
  color: #000;
}

.banners {
  padding: 40px 0;
  position: relative;
}
@media (max-width: 991px) {
  .banners {
    padding: 50px 0;
  }
}
.banners h3 {
  text-shadow: 1px 1px #a7a7a7;
}
.banners img {
  max-width: 100%;
  margin: 20px auto;
  margin-bottom: 20px;
  border-radius: 20px;
  display: flex;
}
.banners ul {
  padding: 0;
  list-style: none;
}
.banners .card {
  background-color: #3B4E73;
  border: 1px solid #fff;
  transition: 0.7s ease-in-out;
}
.banners .card:hover {
  text-decoration: none;
  transform: scale(1.07);
  transition: 0.7s ease-in-out;
}
@media (max-width: 480px) {
  .banners .card {
    background-color: transparent;
  }
}
.banners .card a:hover {
  text-decoration: none;
}
.banners .card img {
  width: 100%;
  position: relative;
  display: flex;
  margin: auto;
}
.banners .card .card-title {
  content: "";
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 100%;
  padding: 15px 0;
  background-color: #3B4E73;
  text-align: center;
  display: flex;
  justify-content: center;
  z-index: 555;
}
.banners .card .card-title h4 {
  color: #fff;
  font-weight: bold;
  font-size: 1.2rem;
}
@media (max-width: 768px) {
  .banners .card .card-title h4 {
    font-size: 1rem;
  }
}
.banners .card p {
  margin-top: -20px;
  width: 100%;
  background-color: #3B4E73;
  padding: 15px 0;
  color: #fff;
  position: relative;
  z-index: 3;
  margin-bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.SpecialOffer {
  background-image: url("../../imgs/hero/lunchbox-english-breakfast.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 100px 0;
  min-height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-attachment: fixed;
  color: #fff;
  font-weight: bolder;
}
@media (max-width: 768px) {
  .SpecialOffer {
    text-align: center;
  }
}
@media (max-width: 768px) {
  .SpecialOffer h3 {
    font-size: 50px;
  }
}
@media (max-width: 576px) {
  .SpecialOffer h3 {
    font-size: 30px;
  }
}
.SpecialOffer a.btn {
  padding: 15px 35px;
  background-color: #3B4E73;
  color: #fff;
  font-weight: bolder;
  border: 1px solid #3B4E73;
  border-radius: 30px;
}
.SpecialOffer a.btn:hover {
  background-color: transparent;
  border: 1px solid #fff;
}

.gallery {
  padding: 40px;
}
.gallery img {
  max-width: 95%;
  border-radius: 20px;
  margin: 15px auto;
  display: flex;
  justify-content: center;
}

section.about-us {
  padding: 80px 50px;
  margin-bottom: 40px;
  position: relative;
}
@media (max-width: 1200px) {
  section.about-us {
    padding: 50px 0;
  }
}
section.about-us h3 {
  font-size: 35px;
}
section.about-us p {
  margin-top: 20px;
  max-width: 90%;
  text-align: justify;
}
@media (max-width: 991px) {
  section.about-us p {
    margin: 5px auto 15px auto;
    max-width: 100%;
    display: flex;
    text-align: center;
  }
}
section.about-us img {
  max-width: 85%;
  display: flex;
  margin-bottom: 20px;
  border-radius: 10px;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 991px) {
  section.about-us img {
    max-width: 100%;
    margin: 10px auto;
    display: flex;
  }
}
section.about-us a.btn {
  padding: 15px 35px;
  background-color: #3B4E73;
  color: #fff;
  font-weight: bolder;
  border: 1px solid #3B4E73;
  border-radius: 30px;
}
section.about-us a.btn:hover {
  background-color: transparent;
  color: #3B4E73;
}

section.peyment-method {
  background-color: #000000;
}
section.peyment-method div.row {
  padding: 50px 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 {
  position: relative;
}
@media (max-width: 768px) {
  section.dl-app {
    padding-top: 50px;
  }
}
section.dl-app .app-mockup {
  margin: 0;
  width: 90%;
  border-radius: 10%;
}
@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: 80%;
  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-style: normal;
  font-weight: bold;
  font-size: 35px;
  margin: 20px 0;
}
@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: #3B4E73;
  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: #3B4E73;
  margin-bottom: 9px;
  color: #fff;
}
section.reviews .comment-section .stars {
  text-align: center;
  margin-bottom: 90px;
}

/* footer */
footer {
  background-color: #3B4E73;
  color: rgb(255, 255, 255);
  padding: 80px 0 0 0;
}
footer .shop-logo {
  width: 160px;
  background-color: #fff;
  border-radius: 5%;
  margin: auto;
  margin-bottom: 18px;
  border: 1px solid #111;
  max-width: 100px;
  border-radius: 50%;
}
footer p {
  text-align: center;
  color: #fff;
  font-size: 16px;
}
footer .Opening li {
  justify-content: space-between;
  padding: 3px;
  list-style: none;
}
footer .Opening li a {
  color: #fff;
  font-size: 18px;
}
footer .Opening li a:hover {
  color: #000;
  text-decoration: none;
}
footer .Social-media {
  list-style: none;
}
@media (max-width: 768px) {
  footer .Social-media {
    padding: 0;
    text-align: center;
    align-items: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
  }
}
footer .Social-media i {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #fff;
  color: #3B4E73;
  font-weight: bolder;
  display: flex;
  justify-content: center;
  align-items: center;
}
footer ul {
  padding: 0;
}
footer .footer-header {
  font-size: 28px;
  text-transform: capitalize;
  font-weight: bolder;
}
@media (max-width: 1200px) {
  footer .footer-header {
    font-size: 21px;
  }
}
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;
  }
}
footer a:hover {
  color: #ffe95a;
}
footer #openinghour {
  max-width: 90%;
  margin: auto;
}

.find-us {
  padding: 0;
}
.find-us iframe {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .find-us iframe {
    height: 500px;
  }
}

ul.foods-link {
  padding: 10px 0;
}
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) {
  ul.foods-link li {
    min-width: -moz-max-content !important;
    min-width: max-content !important;
  }
}
ul.foods-link li:hover {
  border: 2px solid #596988;
  background-color: #fff;
}
ul.foods-link li:hover a {
  color: #596988;
}

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

section.social-media {
  color: #fff;
  background-color: #000;
}
@media (max-width: 768px) {
  section.social-media {
    display: none;
  }
}
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: #3B4E73;
  color: white;
}
::selection {
  background-color: #3B4E73;
  color: white;
}

::-moz-selection {
  background-color: #3B4E73;
  color: white;
}

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

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

section.copyright {
  color: rgb(255, 255, 255);
  background-color: #3B4E73;
}
section.copyright .container {
  padding: 20px 0;
  border-top: 1px solid #fff;
}
section.copyright a.mealzo-link {
  color: #fff !important;
}
section.copyright a.mealzo-link:hover {
  color: #596988 !important;
}/*# sourceMappingURL=style2.css.map */