@charset "UTF-8";
.main-color {
  color: #af855b;
}

@font-face {
  font-family: 'montserrat';
  src: url(../../Fonts/montserrat/Montserrat-Regular.ttf);
}

@font-face {
  font-family: Comic;
  src: url(../../Fonts/Comic/comic.ttf);
}

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

html {
  scroll-behavior: smooth;
}

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

.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 {
  -webkit-animation: fade-left 0.7s ease-in-out;
          animation: fade-left 0.7s ease-in-out;
}

@-webkit-keyframes fade-left {
  0% {
    -webkit-transform: translateX(-150px);
            transform: translateX(-150px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}

@keyframes fade-left {
  0% {
    -webkit-transform: translateX(-150px);
            transform: translateX(-150px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}

.reveal.active .fade-right {
  -webkit-animation: fade-right 1s ease-in-out;
          animation: fade-right 1s ease-in-out;
}

@-webkit-keyframes fade-right {
  0% {
    -webkit-transform: translateX(150px);
            transform: translateX(150px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}

@keyframes fade-right {
  0% {
    -webkit-transform: translateX(150px);
            transform: translateX(150px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}

.reveal.active .fade-top {
  -webkit-animation: fade-top 0.7s ease-in-out;
          animation: fade-top 0.7s ease-in-out;
}

@-webkit-keyframes fade-top {
  0% {
    -webkit-transform: translateY(-100px);
            transform: translateY(-100px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fade-top {
  0% {
    -webkit-transform: translateY(-100px);
            transform: translateY(-100px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}

.reveal.active .fade-bottom {
  -webkit-animation: fade-bottom 0.7s ease-in-out;
          animation: fade-bottom 0.7s ease-in-out;
}

@-webkit-keyframes fade-bottom {
  0% {
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fade-bottom {
  0% {
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}

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

@-webkit-keyframes top {
  0% {
    -webkit-transform: translateY(-150px);
            transform: translateY(-150px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}

@keyframes top {
  0% {
    -webkit-transform: translateY(-150px);
            transform: translateY(-150px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}

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

.displayy {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.section-header {
  font-size: 50px;
  margin-bottom: 30px;
  font-weight: bolder;
  color: #af855b;
}

@media (max-width: 768px) {
  .section-header {
    font-size: 35px;
  }
}

@media (max-width: 380px) {
  .section-header {
    font-size: 25px;
  }
}

header {
  background-color: #af855b;
  padding: 15px 0;
}

@media (max-width: 768px) {
  header {
    padding: 0;
  }
}

header .navbar-brand {
  font-size: 1rem !important;
}

header .shop-logo {
  max-width: 100px;
  border-radius: 50%;
}

@media (max-width: 991px) {
  header .shop-logo {
    max-width: 120px;
  }
}

@media (min-width: 991px) {
  header .navbar-nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

header section.menu-section .navbar-expand-lg .navbar-nav {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

header section.menu-section nav {
  padding: 0;
}

@media (min-width: 992px) {
  header section.menu-section nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

header section.menu-section nav li {
  margin-left: 15px;
}

header section.menu-section nav li a.nav-link {
  color: #fff !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: #39231a !important;
}

header section.menu-section nav .nav-item.active .nav-link {
  border-bottom: 2px solid #39231a;
  color: #39231a !important;
}

header section.menu-section nav .dropdown-menu {
  background-color: #fff;
  border-radius: 10px;
}

header section.menu-section nav .dropdown-menu .dropdown-item {
  color: #af855b;
}

header section.menu-section nav .dropdown-menu .dropdown-item:hover {
  background-color: #af855b;
  color: #fff;
}

header section.menu-section nav .dropdown-toggle::after {
  display: none;
}

header section.menu-section nav .navbar-toggler-icon {
  background-image: unset !important;
  color: #fff;
}

header section.menu-section nav .navbar-toggler {
  color: #fff;
  border-color: transparent;
  line-height: 1.5;
}

header section.menu-section nav a.btn {
  background-color: #af855b;
  color: #fff;
}

header section.menu-section nav .header-links {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

header section.menu-section .login-btn {
  color: #fff !important;
  background-color: #af855b;
  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;
  }
}

section.hero-section {
  background-image: url("../../imgs/hero/Café-13-Bathgate-background.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 100vh;
  padding: 80px 50px 50px 50px;
}

@media (max-width: 991px) {
  section.hero-section {
    height: auto;
    padding: 80px 0 40px 0;
  }
}

section.hero-section .hero-content h1 {
  font-size: 55px;
  font-weight: bolder;
  text-shadow: 1px 5px #000;
  margin-bottom: 20px;
}

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

section.hero-section .hero-content .order-btn {
  border-radius: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  margin: 20px auto;
  padding: 15px 55px;
  background-color: #af855b;
  color: #fff;
  font-size: 20px;
  font-weight: bolder;
}

section.hero-section .hero-content .order-btn:hover {
  background-color: #fff;
  text-decoration: none;
  color: #af855b;
}

section.hero-section img {
  max-width: 80%;
  margin: 0 auto;
  border-radius: 50%;
}

section.hero-section .mySwiper {
  padding: 0 0 80px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

section.hero-section .mySwiper h3 {
  font-size: 50px;
  color: #fff;
  font-family: serif;
}

section.hero-section .mySwiper a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

section.hero-section .mySwiper a:hover {
  text-decoration: none !important;
}

section.hero-section .mySwiper a button {
  margin: 0 auto;
  width: 90%;
  background-color: transparent;
  border: none;
  outline: none;
  padding: 15px 20px;
  font-weight: bolder;
  color: #fff;
  font-size: 25px;
}

@media (max-width: 1200px) {
  section.hero-section .mySwiper a button {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  section.hero-section .mySwiper a button {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  section.hero-section .mySwiper a button {
    max-width: 300px;
  }
}

@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: white;
  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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          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%;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

section.more-about-us-section .more-content .circle-img img {
  max-width: 100px;
  -webkit-transition: ease-in-out 0.7s;
  transition: ease-in-out 0.7s;
}

section.more-about-us-section .more-content .circle-img img:hover {
  -webkit-transform: scale(1.1);
          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: #af855b;
  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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.banners ul {
  padding: 0;
  list-style: none;
}

.banners .card {
  background-color: #af855b;
  border: 1px solid #fff;
  -webkit-transition: 0.7s ease-in-out;
  transition: 0.7s ease-in-out;
}

.banners .card:hover {
  text-decoration: none;
  -webkit-transform: scale(1.07);
          transform: scale(1.07);
  -webkit-transition: 0.7s ease-in-out;
  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: -webkit-box;
  display: -ms-flexbox;
  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: #af855b;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          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: #af855b;
  padding: 15px 0;
  color: #fff;
  position: relative;
  z-index: 3;
  margin-bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

.SpecialOffer {
  background-image: url("../../imgs/hero/Café-13-Bathgate-breakfast-dessert.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 100px 0;
  min-height: 600px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  background-attachment: fixed;
  color: #fff;
  font-weight: bolder;
}

@media (max-width: 991px) {
  .SpecialOffer {
    text-align: center;
    min-height: unset;
    background-attachment: unset;
  }
}

@media (max-width: 768px) {
  .SpecialOffer h3 {
    font-size: 50px;
  }
}

@media (max-width: 480px) {
  .SpecialOffer h3 {
    font-size: 35px;
  }
}

.SpecialOffer a.btn {
  padding: 15px 35px;
  background-color: #af855b;
  color: #fff;
  font-weight: bolder;
  border: 1px solid #af855b;
  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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

section.about-us {
  padding: 80px 0 80px 50px;
  position: relative;
}

@media (max-width: 1200px) {
  section.about-us {
    padding: 50px 0;
  }
}

section.about-us::before {
  position: absolute;
  content: "";
  width: 50%;
  height: 100%;
  background-color: #ffdda9;
  top: 0;
  left: 0;
}

@media (max-width: 991px) {
  section.about-us::before {
    top: auto;
    bottom: 0;
    height: 53%;
  }
}

@media (max-width: 768px) {
  section.about-us::before {
    display: none;
  }
}

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: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    text-align: center;
  }
}

section.about-us img {
  max-width: 85%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
  border-radius: 10px;
}

@media (max-width: 991px) {
  section.about-us img {
    max-width: 100%;
    margin: 10px auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

section.about-us a.btn {
  padding: 15px 35px;
  background-color: #af855b;
  color: #fff;
  font-weight: bolder;
  border: 1px solid #af855b;
  border-radius: 30px;
}

section.about-us a.btn:hover {
  background-color: transparent;
  color: #af855b;
}

section.peyment-method {
  background-color: #000000;
}

section.peyment-method div.row {
  padding: 50px 0;
}

section.peyment-method div.row div.col-10 .methods-container {
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          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::before {
  position: absolute;
  content: "";
  width: 50%;
  height: 100%;
  background-color: #ffdda9;
  top: 0;
  right: 0;
}

@media (max-width: 768px) {
  section.dl-app::before {
    width: 100%;
  }
}

section.dl-app .app-mockup {
  margin: 0;
  width: 90%;
  border-radius: 10%;
}

@media (max-width: 576px) {
  section.dl-app .app-mockup {
    padding: 40px 0;
  }
}

@-webkit-keyframes app-animation {
  0% {
    -webkit-transform: translateY(7px);
            transform: translateY(7px);
  }
  100% {
    -webkit-transform: translateY(-7px);
            transform: translateY(-7px);
  }
}

@keyframes app-animation {
  0% {
    -webkit-transform: translateY(7px);
            transform: translateY(7px);
  }
  100% {
    -webkit-transform: translateY(-7px);
            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 {
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          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 {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  -webkit-transition: ease-in-out 0.3s;
  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: 60px;
  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;
  }
}

@-webkit-keyframes scale-up-center {
  0% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes scale-up-center {
  0% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

section.reviews {
  padding: 80px 0;
}

@media (max-width: 768px) {
  section.reviews {
    padding: 20px;
  }
}

section.reviews .container {
  background-color: #af855b;
  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: #af855b;
  margin-bottom: 9px;
  color: #fff;
}

section.reviews .comment-section .stars {
  text-align: center;
  margin-bottom: 90px;
}

/* footer */
footer {
  background-image: url("../../imgs/hero/Café-13-Bathgate-breakfast-background.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  color: white;
  padding: 80px 0 0 0;
}

footer .shop-logo {
  max-width: 100px;
  background-color: #fff;
  border-radius: 50%;
  margin: 0 auto;
  margin-bottom: 18px;
}

footer .logo-container p {
  text-align: center;
  color: #fff;
  font-size: 16px;
}

footer .Opening li {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-bottom: 1px dotted #3f3f3f;
  padding: 3px;
  list-style: none;
}

footer .Opening li a {
  color: #fff;
  font-size: 18px;
}

footer .Opening li a:hover {
  color: #ffe95a;
  text-decoration: none;
}

footer .Social-media {
  list-style: none;
  margin-top: 50px;
}

@media (max-width: 768px) {
  footer .Social-media {
    padding: 0;
    text-align: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

footer .Social-media i {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #fff;
  color: #af855b;
  font-weight: bolder;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: 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 {
  -webkit-animation: scale-up-center 0.4s cubic-bezier(0.39, 0.575, 0.565, 1) both;
  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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  list-style: none;
}

@media (max-width: 768px) {
  footer .co-info {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
    padding: 0;
  }
}

@media (max-width: 768px) {
  footer .co-info li {
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
  }
}

footer a:hover {
  color: #ffe95a;
}

.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: 14px;
}

@media (max-width: 768px) {
  ul.foods-link li {
    min-width: -webkit-max-content !important;
    min-width: -moz-max-content !important;
    min-width: max-content !important;
  }
}

ul.foods-link li:hover {
  border: 2px solid #ffdda9;
  background-color: #fff;
}

ul.foods-link li:hover a {
  color: #ffdda9;
}

#myBtn {
  display: none;
  position: fixed;
  bottom: 80px;
  right: 17px;
  z-index: 99;
  font-size: 18px;
  border: none;
  outline: none;
  background-color: #af855b;
  color: white;
  cursor: pointer;
  padding: 6px 11px 6px 11px;
  border-radius: 50%;
}

#myBtn:hover {
  color: #af855b;
  border: 1px dashed #af855b;
  background-color: white;
  -webkit-box-shadow: #ffdda9 0px 7px 29px 0px;
          box-shadow: #ffdda9 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 {
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}

section.social-media div.icon-holder:hover {
  -webkit-transform: translate(0px, -8px);
          transform: translate(0px, -8px);
}

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

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

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

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

section.copyright {
  padding-top: 20px;
  color: white;
  background-color: #af855b;
}

section.copyright a.mealzo-link {
  color: #fff !important;
}

section.copyright a.mealzo-link:hover {
  color: #ffdda9 !important;
}
/*# sourceMappingURL=style2.css.map */