.main-color {
  color: #AA2948;
}

@font-face {
  font-family: "montserrat";
  src: url(../../Fonts/montserrat/Montserrat-Regular.ttf);
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "montserrat" !important;
  overflow-x: hidden;
  background-color: #2D8ABE;
  background-image: url("../../imgs/hero/background.png");
  background-repeat: repeat-y;
  background-position: center;
  background-size: contain;
}

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;
}
@keyframes fade-left {
  0% {
    transform: translateX(-150px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
.reveal.active .fade-left {
  animation: fade-left 1s ease-in-out;
}
.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 1s 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 1s ease-in-out;
  animation-delay: 0.5s;
}
.reveal.active .fade-bottom-delay {
  animation: fade-bottom 1s ease-in-out;
  animation-delay: 1s;
}
.reveal.active .fade-bottom-delay-two {
  animation: fade-bottom 1s ease-in-out;
  animation-delay: 1.5s;
}
@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;
  }
}
.wave1 {
  background: transparent;
  margin-top: -10px;
  width: 100%;
}
@media (max-width: 768px) {
  .wave1 {
    margin-top: -25px;
  }
}
@media (max-width: 991px) {
  .wave1 {
    display: none !important;
  }
}

.wave {
  margin-top: -2px;
  z-index: 99;
  position: relative;
  width: 100%;
}
@media (max-width: 991px) {
  .wave {
    display: none !important;
  }
}

.wavered {
  margin-top: -10px;
  z-index: 9;
  position: relative;
  width: 100%;
}
@media (max-width: 991px) {
  .wavered {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .wavered {
    margin-top: -21px;
  }
}

.wave-blue-bottom {
  margin-top: -47px;
  z-index: 9;
  position: relative;
  width: 100%;
}
@media (max-width: 991px) {
  .wave-blue-bottom {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .wave-blue-bottom {
    margin-top: -43px;
  }
}

.wave-blue-top {
  margin-top: -7px;
  width: 100%;
}
@media (max-width: 991px) {
  .wave-blue-top {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .wave-blue-top {
    margin-top: -21px;
  }
}

.waveBlack {
  position: relative;
  z-index: 9;
  width: 100%;
  margin-top: -35px;
}
@media (max-width: 991px) {
  .waveBlack {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .waveBlack {
    margin-top: -30px;
  }
}

.waveBlack::before {
  z-index: 10;
  position: absolute;
  content: "";
  background-image: url("../../imgs/hero/background.png");
  background-repeat: repeat-y;
  background-position: center;
  background-size: contain;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.waveBlack1 {
  position: relative;
  z-index: 9;
  width: 100%;
}
@media (max-width: 991px) {
  .waveBlack1 {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .waveBlack1 {
    margin-top: -14px;
  }
}

.waveBeighe {
  position: relative;
  width: 100%;
}
@media (max-width: 991px) {
  .waveBeighe {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .waveBeighe {
    margin-top: -14px;
  }
}

.waveBeighe1 {
  position: relative;
  margin-top: -50px;
  width: 100%;
}
@media (max-width: 991px) {
  .waveBeighe1 {
    display: none !important;
  }
}

/* header */
.offer .container {
  padding: 10px 0;
  background-color: #AA2948;
  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;
}

.head {
  background: #AA2948;
  color: #fdfdfd;
}
.head .container-fluid {
  padding: 0 20px;
  height: 40px;
}
.head .container-fluid .row {
  line-height: 40px;
}
.head .container-fluid .row .Social-media li {
  list-style: none;
}
@media (max-width: 768px) {
  .head {
    display: none;
  }
}

@keyframes animatedBackground {
  from {
    top: -20px;
    right: -100px;
  }
  to {
    top: 0px;
    right: -100px;
  }
}
#animate-header-pizza {
  position: absolute;
  z-index: 0;
  animation: animatedBackground 2s linear infinite alternate;
  width: 100%;
}
@media (max-width: 768px) {
  #animate-header-pizza {
    display: none;
  }
}

@keyframes animatedYumyum {
  from {
    top: -40px;
    right: 290px;
  }
  to {
    top: -20px;
    right: 260px;
  }
}
#animate-yumyum {
  position: absolute;
  width: 300px;
  animation: animatedYumyum 2s linear infinite alternate;
}
@media (max-width: 992px) {
  #animate-yumyum {
    display: none;
  }
}

.section-header {
  font-size: 50px;
  margin-bottom: 30px;
  font-weight: bolder;
  color: #AA2948;
}
@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 .navbar-brand {
  font-size: 1rem !important;
}
header .shop-logo {
  max-width: 180px;
}
@media (max-width: 991px) {
  header .shop-logo {
    max-width: 160px;
  }
}
@media (max-width: 776px) {
  header .shop-logo {
    max-width: 140px;
  }
}
@media (max-width: 576px) {
  header .shop-logo {
    max-width: 120px;
  }
}
@media (min-width: 991px) {
  header .navbar-nav {
    flex-direction: row;
  }
}
header section.menu-section .navbar {
  border-radius: 60px 60px;
  background-color: #AA2948;
  padding: 0 10px;
}
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: #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: #C7871E !important;
}
header section.menu-section nav .nav-item.active .nav-link {
  border-bottom: 2px solid #C7871E;
  color: #C7871E !important;
}
header section.menu-section nav .dropdown-menu {
  background-color: #fff;
  border-radius: 10px;
}
header section.menu-section nav .dropdown-menu .dropdown-item {
  color: #AA2948;
}
header section.menu-section nav .dropdown-menu .dropdown-item:hover {
  background-color: #AA2948;
  color: #aaa;
}
header section.menu-section nav .dropdown-toggle {
  color: #AA2948;
}
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: #AA2948;
  border-color: transparent;
  line-height: 1.5;
}
header section.menu-section nav a.btn {
  background-color: #AA2948;
  color: #fff;
}
header section.menu-section nav .header-links {
  justify-content: flex-end;
}
header section.menu-section .login-btn {
  color: #fff !important;
  background-color: #AA2948;
  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;
  }
}

@keyframes animatedBicycle {
  from {
    top: 500px;
    left: 0px;
  }
  to {
    top: 500px;
    left: 400px;
  }
}
#bicycle {
  width: 300px;
  height: 300px;
  position: absolute;
  animation: animatedBicycle 10s linear infinite alternate;
}

section.hero-section {
  padding: 100px 50px;
  color: #000;
  height: 100%;
}
@media (max-width: 991px) {
  section.hero-section {
    height: auto;
    padding: 40px 0;
  }
}
@media (min-width: 991px) {
  section.hero-section .hero-pizza {
    margin-top: -100px;
  }
}
section.hero-section .container-fluid {
  -webkit-backdrop-filter: blur(7px);
          backdrop-filter: blur(7px);
  padding: 40px 0;
  border-radius: 24px;
}
section.hero-section .hero-content h6 {
  color: #fff;
}
section.hero-section .hero-content .title-decor {
  width: 100px;
  margin-bottom: 20px;
}
section.hero-section .hero-content h2 {
  font-size: 58px;
  font-weight: bolder;
  text-shadow: 2px -1px #fff;
  margin-bottom: 20px;
  color: #fff;
}
@media (max-width: 991px) {
  section.hero-section .hero-content h2 {
    margin-top: 30px;
  }
}
@media (max-width: 576px) {
  section.hero-section .hero-content h2 {
    font-size: 32px;
    margin-top: 30px;
  }
}
@media (max-width: 380px) {
  section.hero-section .hero-content h2 {
    font-size: 38px;
    margin-top: 30px;
  }
}
section.hero-section .hero-content p {
  margin-bottom: 50px;
  color: #fdfdfd;
}
section.hero-section .hero-content .order-btn {
  border: 2px solid #fff;
  border-radius: 16px;
  padding: 20px 40px;
  box-shadow: -5px 5px 0 #fff;
  color: #fff;
  transition: all 0.2s ease-in-out;
  margin-top: 48px;
  background-color: #C7871E;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 20px;
  font-weight: bold;
  display: flex;
}
@media (max-width: 480px) {
  section.hero-section .hero-content .order-btn {
    margin: 0 auto;
  }
}
section.hero-section .hero-content .order-btn:hover {
  box-shadow: none;
  transform: translate(-5px, 5px);
}
section.hero-section img {
  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: #AA2948;
  padding: 80px 0 300px 0;
  color: #fff;
  position: relative;
  margin-top: -10px;
}
@media (max-width: 991px) {
  section.more-about-us-section {
    display: none !important;
  }
}
@media (max-width: 768px) {
  section.more-about-us-section {
    padding: 80px 0;
    margin-top: -21px;
  }
}
section.more-about-us-section h5 {
  margin-bottom: 10px;
}
section.more-about-us-section .title-decor {
  width: 100px;
}
section.more-about-us-section h2 {
  margin: 30px 0 80px;
}
section.more-about-us-section .col-md-4 {
  align-items: center;
  display: flex;
  justify-content: center;
  margin-bottom: 80px;
}
section.more-about-us-section .col-md-4 .card {
  background-color: unset;
  border: none;
  align-items: center;
}
section.more-about-us-section .col-md-4 .card img {
  max-width: 200px;
  background: #ddd;
  border-radius: 50%;
  width: 100%;
  margin-bottom: 20px;
}
section.more-about-us-section .animate-fryers {
  position: absolute;
  top: 200px;
  left: -80px;
}
@media (max-width: 992px) {
  section.more-about-us-section .animate-fryers {
    display: none;
  }
}
section.more-about-us-section .animate-pizza {
  position: absolute;
  left: -500px;
  bottom: -80px;
  z-index: 99;
}
@media (max-width: 992px) {
  section.more-about-us-section .animate-pizza {
    display: none;
  }
}
section.more-about-us-section .animate-pizza #animate-pizza {
  z-index: 99;
  right: 0px;
  width: 600px;
}
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: #AA2948;
  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: #AA2948;
  border: 1px solid #fff;
  transition: 0.7s ease-in-out;
  text-align: center;
}
.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: #AA2948;
  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: #AA2948;
  padding: 15px 0;
  color: #fff;
  position: relative;
  z-index: 3;
  margin-bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.Special {
  padding: 120px 0 0;
  color: #fdfdfd;
}
.Special .container-fluid .row {
  justify-content: center;
}
.Special .container-fluid .row h2 {
  font-weight: bolder;
  margin-bottom: 48px;
}
.Special .container-fluid .row .col-12 .col-md-4 {
  margin-bottom: 30px;
}
.Special .container-fluid .row .col-12 .col-md-4 .card {
  min-height: 700px;
  border: 4px solid rgb(42.070212766, 129.0153191489, 177.629787234);
  border-radius: 40px;
  padding: 20px;
}
@media (max-width: 991px) {
  .Special .container-fluid .row .col-12 .col-md-4 .card {
    min-height: -moz-max-content;
    min-height: max-content;
  }
}
.Special .container-fluid .row .col-12 .col-md-4 .card img {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  border-radius: 20px 20px 0px 0px;
  aspect-ratio: 1/1;
  margin-bottom: 20px;
}
.Special .container-fluid .row .col-12 .col-md-4 .card a {
  padding: 20px 40px;
  border-radius: 16px;
  color: #fff;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  border: 2px solid #fdfdfd;
  box-shadow: -5px 5px 0 #fff;
}
.Special .container-fluid .row .col-12 .col-md-4 .card h4 {
  font-weight: bold;
  font-size: 22px;
}
.Special .container-fluid .row .col-12 .col-md-4 .card:hover {
  background-color: #AA2948;
  color: #fff;
}
.Special .container-fluid .row .col-12 .col-md-4 .card:hover a {
  background: #fff;
  color: #AA2948;
  box-shadow: none;
}

.Special .card-1 {
  background-color: #f44336;
}
.Special .card-1 a {
  background-color: rgb(246.6462264151, 112.2264150943, 102.3537735849);
}
.Special .card-2 {
  background-color: #ee4266;
}
.Special .card-2 a {
  background-color: rgb(242.2087378641, 112.7912621359, 139.8786407767);
}
.Special .card-3 {
  background-color: #4caf50;
}
.Special .card-3 a {
  background-color: rgb(109.9800796813, 192.0199203187, 113.2948207171);
}
.Special .card-4 {
  background-color: #9c27b0;
}
.Special .card-4 a {
  background-color: rgb(188.0418604651, 55.2604651163, 210.7395348837);
}
.Special .card-5 {
  background-color: #ff9800;
}
.Special .card-5 a {
  background-color: rgb(255, 172.6, 51);
}
.Special .card-6 {
  background-color: #540d6e;
}
.Special .card-6 a {
  background-color: rgb(118.8292682927, 18.3902439024, 155.6097560976);
}

.SpecialOffer {
  margin-top: -20px;
  color: #fdfdfd;
}
.SpecialOffer .SpecialOffer-right {
  background-image: url("../../imgs/hero/Mama-Mia-Paradise-Bubble-Tea-About.jpg");
  background-size: cover;
  background-repeat: no-repeat;
}
.SpecialOffer .SpecialOffer-left {
  padding: 80px 40px;
  justify-content: center;
}
.SpecialOffer .SpecialOffer-left .title-decor {
  width: 100px;
  margin-bottom: 24px;
}
.SpecialOffer .SpecialOffer-left h2 {
  font-size: 54px;
  font-weight: bold;
  margin-bottom: 36px;
  color: #fdfdfd;
}
@media (max-width: 768px) {
  .SpecialOffer .SpecialOffer-left h2 {
    font-size: 32px;
  }
}
.SpecialOffer .SpecialOffer-left h6 {
  color: #fff;
}
.SpecialOffer .SpecialOffer-left a {
  padding: 20px 40px;
  font-size: 20px;
  font-weight: bold;
  color: #fdfdfd;
  border: 2px solid #fdfdfd;
  border-radius: 16px;
  box-shadow: -5px 5px 0 #fdfdfd;
  background-color: #AA2948;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 40px;
  transition: all 0.2s ease-in-out;
}
.SpecialOffer .SpecialOffer-left a:hover {
  box-shadow: none;
  transform: translate(-5px, 5px);
}

.Delivery {
  min-height: 600px;
  background-image: url("../../imgs/hero/openinghour-bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  padding: 80px 0;
  color: #FFF;
  text-shadow: 0 0 2px #000;
  margin-top: -20px;
}
.Delivery .Opening {
  -webkit-backdrop-filter: blur(30px);
          backdrop-filter: blur(30px);
  padding: 20px !important;
  border-radius: 20px;
  background-color: rgba(49.1707317073, 7.6097560976, 64.3902439024, 0.3);
}
.Delivery .container .row .Delivery-content {
  border-radius: 48px;
  padding: 35px 20px;
}
.Delivery .container .row .Delivery-content .title-decor {
  width: 100px;
  margin: 8px 0 48px;
}
.Delivery .container .row .Delivery-content h5 {
  color: #540d6e;
}
.Delivery .container .row .Delivery-content h2 {
  font-size: 54px;
  font-weight: bolder;
  margin-bottom: 54px;
}
@media (max-width: 768px) {
  .Delivery .container .row .Delivery-content h2 {
    font-size: 32px;
  }
}
.Delivery .container .row .Delivery-content ul li {
  list-style: none;
}
.Delivery .container .row .Delivery-content a {
  border: 2px solid #fff;
  border-radius: 16px;
  padding: 20px 40px;
  box-shadow: -5px 5px 0 #fff;
  color: #fff;
  transition: all 0.2s ease-in-out;
  margin-top: 48px;
  background-color: rgb(49.1707317073, 7.6097560976, 64.3902439024);
  font-size: 20px;
  font-weight: bold;
}
.Delivery .container .row .Delivery-content a:hover {
  box-shadow: none;
  transform: translate(-5px, 5px);
}

.food-delivery {
  position: relative;
  width: 100%;
  height: 300px;
  z-index: 9;
}
@media (max-width: 768px) {
  .food-delivery {
    display: none;
  }
}
.food-delivery #food-delivery {
  position: absolute;
  height: 200px;
  bottom: 0;
  left: -1000px;
}

.Gallery {
  padding: 80px 0;
}
.Gallery .col-md-4 {
  padding-left: 40px;
}
.Gallery .col-md-4 h2 {
  color: #fff;
}
.Gallery .col-md-4 .title-decor {
  width: 100px;
}
.Gallery .col-md-4 p {
  color: #fdfdfd;
  margin-top: 32px;
}
.Gallery .col-md-4 .Social-media {
  padding: 0;
}
.Gallery .col-md-4 .Social-media li {
  list-style: none;
}
.Gallery .swiper-slide img {
  border: 3px solid #AA2948;
  border-radius: 16px;
  width: 100%;
}

section.AboutUs {
  padding: 80px 0;
  justify-content: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
section.AboutUs h2 {
  font-weight: bolder;
  text-align: center;
  font-size: 44px;
  margin-bottom: 40px;
  color: #fff;
}
section.AboutUs .container-fluid .about-circle {
  border-radius: 50%;
  border: 2px solid #0f9349;
  box-shadow: -5px 5px 0 #0f9349;
  background-color: #fff;
  width: 200px;
  height: 200px;
  align-items: center;
  justify-content: center;
  display: flex;
  flex-direction: column;
  margin-bottom: -100px;
  z-index: 9;
  margin-right: -50px;
  transform: rotate(-25deg);
}
section.AboutUs .container-fluid .col-12 {
  border: 4px solid #fff;
  border-radius: 40px;
  padding: 0;
  color: #fff;
}
section.AboutUs .container-fluid .col-12 .about-content {
  padding: 80px 40px;
}
section.AboutUs .container-fluid .col-12 .about-content h2 {
  text-align: left;
}
section.AboutUs .container-fluid .col-12 .about-content h5 {
  color: #fff;
}
section.AboutUs .container-fluid .col-12 .about-content img {
  width: 100px;
  margin-bottom: 40px;
}
section.AboutUs .container-fluid .col-12 .about-content a {
  border: 2px solid #fff;
  border-radius: 16px;
  padding: 20px 40px;
  box-shadow: -5px 5px 0 #fff;
  color: #fff;
  transition: all 0.2s ease-in-out;
  margin-top: 48px;
  background-color: #AA2948;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: bold;
  font-size: 20px;
}
section.AboutUs .container-fluid .col-12 .about-content a:hover {
  box-shadow: none;
  transform: translate(-5px, 5px);
}
section.AboutUs .container-fluid .col-12 .about-img {
  background: url("../../imgs/about/about.jpg");
  height: 600px;
  border-radius: 36px 0 0 36px;
  background-size: cover;
  background-repeat: no-repeat;
}

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;
  background-color: #F44336;
  margin-top: -30px;
}
section.Reviews .container .row h2 {
  display: block;
  font-size: 42px;
  font-weight: bold;
  color: #fff;
  text-align: center;
}
@media (max-width: 768px) {
  section.Reviews .container .row h2 {
    font-size: 32px;
  }
}
section.Reviews .container .row .title-decor {
  margin-bottom: 20px;
  width: 100px;
}
section.Reviews .container .row .swiper-slide .col-md-4 img {
  background-color: #fff;
  border-radius: 50%;
  width: 160px;
}
section.Reviews .container .row .swiper-slide .col-md-8 {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
section.Reviews .container .row .swiper-slide .col-md-8 h3 {
  font-weight: bolder;
  font-size: 24px;
  color: #fdfdfd;
}
section.Reviews .container .row .swiper-slide .col-md-8 h4 {
  font-size: 20px;
  color: #ddd;
}

/* footer */
footer {
  background: #AA2948;
  padding: 80px 0 0 0;
  margin-top: -20px;
  color: #fdfdfd;
}
footer .shop-logo {
  border-radius: 5%;
  margin: auto;
  margin-bottom: 18px;
  width: 220px;
}
@media (max-width: 991px) {
  footer .shop-logo {
    max-width: 160px;
  }
}
@media (max-width: 776px) {
  footer .shop-logo {
    max-width: 140px;
  }
}
@media (max-width: 576px) {
  footer .shop-logo {
    max-width: 120px;
  }
}
footer p {
  text-align: center;
  font-size: 16px;
}
footer .Opening li {
  justify-content: space-between;
  padding: 3px;
  list-style: none;
}
footer .Opening li a {
  color: #fdfdfd;
  font-size: 18px;
}
footer .Opening li a:hover {
  color: #aaa;
  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: #AA2948;
  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 #7A1F33;
  border-radius: 18px;
  padding: 5px 10px;
  margin: 2px;
  background-color: #C7871E;
  font-weight: 500;
  font-size: 13px;
}
ul.foods-link li a {
  color: #FFF;
}
@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 #B94330;
  background-color: #B94330;
}
ul.foods-link li:hover a {
  color: #fff;
}

#myBtn {
  display: none;
  position: fixed;
  bottom: 59px;
  left: 25px;
  z-index: 99;
  font-size: 18px;
  border: none;
  outline: none;
  background-color: #AA2948;
  color: white;
  cursor: pointer;
  padding: 6px 11px 6px 11px;
  border-radius: 12px;
}
#myBtn:hover {
  color: #AA2948;
  border: 1px dashed #AA2948;
  background-color: white;
  box-shadow: rgba(170, 41, 72, 0.4) 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: #AA2948;
  color: white;
}
::selection {
  background-color: #AA2948;
  color: white;
}

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

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

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

section.copyright {
  color: #fff;
}
section.copyright a.mealzo-link {
  color: #fff !important;
}
section.copyright a.mealzo-link:hover {
  color: rgba(170, 41, 72, 0.4) !important;
}/*# sourceMappingURL=style2.css.map */