@charset "UTF-8";
@font-face {
  font-family: fredoka;
  src: url(../../Fonts/Fredoka/FredokaOne-Regular.ttf);
}
@font-face {
  font-family: Pacifico;
  src: url(../../Fonts/Pacifico/Pacifico-Regular.ttf);
}
@font-face {
  font-family: poppins;
  src: url(../../Fonts/poppins/Poppins-Regular.ttf);
}
body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  overflow-x: hidden !important;
  font-family: poppins !important;
  background-color: #fff2b2;
}
body main {
  margin: 0;
  padding: 0;
}

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

html {
  scroll-behavior: smooth;
}

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

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

.main-header {
  padding-bottom: 10px;
  font-weight: 600;
  display: inline-flex;
  position: relative;
  color: #FDC500;
}

.special-header {
  display: flex;
  flex-direction: column;
}
.special-header h2 {
  font-weight: bolder;
}
.special-header h6 {
  font-family: Pacifico;
  margin: 10px;
  padding: 10px;
  position: relative;
  max-width: -moz-max-content;
  max-width: max-content;
  color: #0077B6;
  font-weight: bolder;
  font-size: 17px;
}
.special-header h6:before {
  content: "";
  position: absolute;
  left: -25px;
  top: 50%;
  width: 30px;
  height: 3px;
  background-color: #0077B6;
}
.special-header h6:after {
  content: "";
  position: absolute;
  right: -25px;
  top: 50%;
  width: 30px;
  height: 3px;
  background-color: #0077B6;
}

a:hover {
  text-decoration: none;
}

img {
  max-width: 100%;
}

.fade-left1 {
  animation: fade-left1 1s ease-in-out;
}

@keyframes fade-left1 {
  0% {
    transform: translateX(-150px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
.reveal {
  position: relative;
  opacity: 0;
}

.reveal.active {
  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-left {
  0% {
    transform: translateX(-150px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes fade-right {
  0% {
    transform: translateX(150px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
.reveal.active .fade-bottom {
  animation: fade-bottom 0.4s ease-in-out;
}
@keyframes fade-bottom {
  0% {
    transform: translateY(100px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.reveal.active .fade-bottom1 {
  animation: fade-bottom1 0.8s ease-in-out;
}
@keyframes fade-bottom1 {
  0% {
    transform: translateY(100px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.reveal.active .fade-bottom2 {
  animation: fade-bottom2 1.2s ease-in-out;
}
@keyframes fade-bottom2 {
  0% {
    transform: translateY(100px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.reveal.active .fade-bottom3 {
  animation: fade-bottom3 1.6s ease-in-out;
}
@keyframes fade-bottom3 {
  0% {
    transform: translateY(100px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

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

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

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

.index-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0) 100%), url(../../imgs/hero/memos-takeaway-hero-section-bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 100vh;
  margin: 0;
  padding: 0;
}
@media (max-width: 576px) {
  .index-hero {
    min-height: 80vh !important;
  }
}

header {
  transition: all 0.33s cubic-bezier(0.694, 0.0482, 0.335, 1);
  padding: 3% 4%;
  text-shadow: 0px 0px 6px #000;
}
@media (max-width: 480px) {
  header {
    margin: 0;
  }
}
header .navbar-brand {
  font-size: 1.5rem !important;
  color: #0077B6 !important;
  font-weight: bolder;
  align-items: center;
}
header .shop-name img {
  max-width: 130px;
  border-radius: 20px;
}
@media (max-width: 350px) {
  header .shop-name img {
    max-width: 100px;
  }
}
@media (min-width: 1200px) {
  header .navbar-nav {
    flex-direction: row;
  }
}
header section.menu-section {
  background-color: rgba(142, 202, 230, 0.2);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  border-radius: 20px;
  display: flex;
  align-items: center;
  align-self: center;
  padding: 1% 0;
}
header section.menu-section .navbar-expand-lg .navbar-nav {
  align-items: center;
}
header section.menu-section nav {
  padding: 0;
}
@media (min-width: 1200px) {
  header section.menu-section nav {
    display: flex;
    align-items: center;
  }
}
header section.menu-section nav .navbar-toggler-icon {
  background-image: unset !important;
}
header section.menu-section nav .navbar-toggler {
  color: #fff;
  border-color: transparent;
  line-height: 2;
}
header section.menu-section nav .nav-item {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
}
header section.menu-section nav .nav-item a.nav-link {
  color: #fff !important;
  font-size: 14px;
}
header section.menu-section nav .nav-item a.nav-link:hover {
  color: #50c2ff !important;
}
@media (min-width: 1440px) {
  header section.menu-section nav .nav-item a.nav-link {
    font-size: 16px;
  }
}
header section.menu-section nav .nav-item a.nav-link svg {
  fill: #0077B6;
}
header section.menu-section nav .nav-item .dropdown-menu {
  background-color: rgb(0, 0, 0);
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0.25rem;
}
header section.menu-section nav .nav-item .dropdown-menu .dropdown-item {
  color: #9d9d9d;
  z-index: 999;
}
header section.menu-section nav .nav-item .dropdown-menu .dropdown-item:focus,
header section.menu-section nav .nav-item .dropdown-menu .dropdown-item:hover {
  color: #0077B6;
  text-decoration: none;
  background-color: #000000;
}
header section.menu-section nav .nav-item .nav-item.active .nav-link {
  color: #fff !important;
}
header section.menu-section nav .nav-item .nav-item:last-of-type {
  margin-left: 20px;
}
header section.menu-section nav .nav-item a.login-btn {
  background-color: #0077B6;
  border-radius: 20px;
  padding: 12px 25px;
  color: #fff !important;
  max-width: -moz-max-content;
  max-width: max-content;
}
header section.menu-section nav .nav-item a.login-btn:hover {
  color: #fff !important;
}
header section.menu-section nav .nav-item a.login-btn svg {
  fill: #fff;
}
@media (min-width: 1200px) {
  header section.menu-section nav .nav-item:not(:last-child) {
    margin-right: 15px;
  }
}
header section.menu-section nav .header-links {
  justify-content: flex-end;
}

/* section hero */
section.hero-section {
  padding: 5% 15%;
  margin: 0%;
  width: 100%;
  height: 100%;
}
@media (max-width: 1200px) {
  section.hero-section {
    padding: 25% 5% 0 5%;
    margin-bottom: 0;
  }
}
section.hero-section div.inner-content {
  justify-content: center;
  text-align: center;
}
section.hero-section div.inner-content h2 {
  font-size: 3.7rem;
  font-style: italic;
  font-weight: bolder;
  letter-spacing: 0.03in;
  color: #0077B6;
  text-shadow: 3px 0px 0px #ace2ff;
  line-height: 1.1em;
}
@media (max-width: 1440px) {
  section.hero-section div.inner-content h2 {
    font-size: 40px;
  }
}
@media (max-width: 1200px) {
  section.hero-section div.inner-content h2 {
    font-size: 35px;
  }
}
@media (max-width: 576px) {
  section.hero-section div.inner-content h2 {
    font-size: 35px;
    line-height: 1.5em;
  }
}
@media (max-width: 480px) {
  section.hero-section div.inner-content h2 {
    font-size: 28px;
    font-weight: 100;
    font-style: normal !important;
    text-shadow: 1px 0px 0px #ace2ff !important;
  }
}
section.hero-section div.inner-content p {
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 300;
  text-shadow: 0px 0px 20px #000;
  line-height: 1.8em;
  color: #fff;
}
@media (min-width: 768px) {
  section.hero-section div.inner-content p {
    font-size: 0.9rem;
  }
}
@media (min-width: 992px) {
  section.hero-section div.inner-content p {
    font-size: 1rem;
  }
}
section.hero-section div.inner-content a.btn {
  background-color: rgba(253, 197, 0, 0.3);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  padding: 12px 35px;
  border-radius: 25px;
  justify-content: center;
  color: #fff;
}
section.hero-section div.inner-content a.btn:hover {
  background-color: #FDC500;
  color: #0077B6;
}
section.hero-section div.inner-content img {
  max-width: 90%;
  display: flex;
  margin: auto;
  border-radius: 50%;
  box-shadow: 0 0 6px #000;
}
section.hero-section .hero-items li img {
  max-width: 70px;
  max-height: 70px;
  border-radius: 50%;
}
section.hero-section .hero-items li h5 {
  font-size: 16px;
  font-weight: bolder;
}
section.hero-section .hero-items li p {
  font-size: 13px;
}

/* more about us section */
section.more-about-us-section {
  padding: 70px 0 50px 0;
  margin-top: -120px;
  color: #000;
}
section.more-about-us-section .card {
  background-color: #8ECAE6;
  text-align: center;
  padding: 20px;
  box-shadow: 1px 1px 20px rgba(0, 0, 0, 0.27);
  border: none;
  outline: none;
  min-height: 280px;
  transition: background-color 1s;
  border-radius: 25px;
}
section.more-about-us-section .card:hover {
  background-color: #0077B6;
}
@media (max-width: 1200px) {
  section.more-about-us-section .card {
    padding: 10px;
  }
}
@media (max-width: 991px) {
  section.more-about-us-section .card {
    min-height: 200px;
  }
}
@media (max-width: 576px) {
  section.more-about-us-section .card {
    min-height: unset;
  }
}
section.more-about-us-section .card img {
  max-width: 110px;
  margin-bottom: 10px;
  margin: auto;
}
@media (max-width: 768px) {
  section.more-about-us-section .card img {
    max-width: 60px;
  }
}
section.more-about-us-section .card h4 {
  font-weight: bolder;
  font-size: 20px;
  margin-bottom: 10px;
}
@media (max-width: 1200px) {
  section.more-about-us-section .card h4 {
    font-size: 18px;
    margin-bottom: 10px;
  }
}
@media (max-width: 1440px) {
  section.more-about-us-section .card p {
    font-size: 12px;
  }
}

section.special {
  background-color: #0077B6;
  padding: 0 0 20px 0;
  background-image: url(../../imgs/hero/memos-takeaway-top-faviourites.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
section.special .inner-special {
  padding: 1% 10% 6% 10%;
}
@media (max-width: 700px) {
  section.special .inner-special {
    padding: 1% 6% 4% 6%;
  }
}
@media (max-width: 500px) {
  section.special .inner-special {
    padding: 1% 2%;
  }
}
section.special .special-header {
  padding: 30px 0;
  background-color: #0077B6;
  text-align: center;
  display: flex;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  align-items: center;
  margin-bottom: 40px;
}
section.special .special-header h2 {
  color: #fff;
  margin-bottom: 0;
}
section.special .special-header h6 {
  color: #fff !important;
}
section.special .special-header h6::after, section.special .special-header h6::before {
  background-color: #fff !important;
}
section.special .main-header {
  margin-bottom: 10px;
}
section.special .category {
  margin: 8%;
  padding: 5%;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.4);
}
@media (max-width: 700px) {
  section.special .category {
    margin: 0 0 5% 0;
  }
}
section.special .category .category-header {
  border-bottom: none;
}
section.special .category ul {
  display: flex;
  flex-direction: column;
}
section.special .category ul li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 7px 0;
  padding-bottom: 5px;
  border-bottom: 1px dashed #000;
}
section.special .category ul li h3 {
  font-size: 28px;
  color: #000;
  text-transform: capitalize;
  font-weight: 800;
}
@media (max-width: 991px) {
  section.special .category ul li h3 {
    font-size: 19px;
  }
}
@media (max-width: 480px) {
  section.special .category ul li h3 {
    font-size: 16px;
  }
}
section.special .category ul li h3 span {
  color: #0077B6;
}
section.special .category ul li span {
  text-transform: capitalize;
  color: #000;
  font-size: 1.2rem;
}
section.special .category ul li .add-btn {
  background-color: #0077B6;
  display: flex;
  border-radius: 25px;
}
section.special .category ul li .add-btn a {
  color: #fff;
  padding: 12px 28px;
  border-radius: 15px;
  transition: ease-in-out 0.3s;
}
section.special .category ul li .add-btn a:hover {
  box-shadow: none;
}

section.about-us {
  margin: 50px 0;
  color: #000;
}
@media (max-width: 768px) {
  section.about-us .c {
    padding: 5px;
  }
}
section.about-us h2 {
  font-weight: bolder;
  font-size: 35px;
  text-transform: capitalize;
}
@media (max-width: 991px) {
  section.about-us h2 {
    font-size: 26px;
    text-align: center;
    display: flex;
    justify-content: center;
  }
}
@media (max-width: 480px) {
  section.about-us h2 {
    font-size: 22px;
  }
}
@media (max-width: 991px) {
  section.about-us h6 {
    margin: 10px auto;
    text-align: center;
    display: flex;
    justify-content: center;
  }
}
section.about-us .special-header {
  text-align: left;
}
@media (max-width: 991px) {
  section.about-us .special-header {
    text-align: center;
    margin: auto;
  }
}
section.about-us .about-text {
  font-size: 16px;
}
section.about-us a {
  background-color: #0077B6;
  color: #fff;
  border-radius: 30px !important;
  padding: 15px 30px;
  margin-top: 20px;
  transition: all 0.5s ease;
}
section.about-us a:hover {
  color: #fff;
  border-color: #0077B6;
  background-color: #0077B6;
  box-shadow: #a2a2a2 0px 4px 12px;
  transform: scale(0.9);
}
section.about-us ul {
  padding: 0;
  display: flex;
  flex-direction: column;
}
section.about-us ul li {
  display: flex;
}
section.about-us ul li img {
  margin-bottom: 30px;
  border-radius: 20px;
}
@media (max-width: 768px) {
  section.about-us ul li img {
    margin-bottom: 5px;
  }
}
section.about-us ul li.first-about {
  justify-content: flex-end;
}
section.about-us ul li.first-about img {
  max-width: 100%;
}
section.about-us ul li.second-about {
  justify-content: flex-end;
}
section.about-us ul li.second-about img {
  max-width: 70%;
}
section.about-us ul li.third-about {
  justify-content: flex-start;
}
section.about-us ul li.third-about img {
  max-width: 70%;
}
section.about-us ul li.fourth-about {
  justify-content: flex-start;
}
section.about-us ul li.fourth-about img {
  max-width: 100%;
}

section.peyment-method {
  background-color: #ffffff;
}
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 {
  background-color: #0077B6;
  padding: 70px;
}
@media (max-width: 768px) {
  section.dl-app {
    padding: 70px 0;
  }
}
section.dl-app .app-mockup {
  max-width: 84%;
}
section.dl-app .app-mockup:hover {
  animation: app-animation 1s ease-in;
  animation-delay: 0.3s;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
  animation-direction: alternate;
}
@keyframes app-animation {
  0% {
    transform: translateY(7px);
  }
  100% {
    transform: translateY(-7px);
  }
}
section.dl-app div.inner-content {
  padding: 80px 0 0 0;
  max-width: 516px;
}
@media (max-width: 991px) {
  section.dl-app div.inner-content {
    padding: 0 0 0;
    max-width: 100%;
  }
}
@media (max-width: 576px) {
  section.dl-app div.inner-content {
    padding: 10px 0 0 0;
  }
}
section.dl-app div.inner-content div.d-flex {
  justify-content: space-evenly;
}
@media (max-width: 768px) {
  section.dl-app div.inner-content h2 {
    font-size: 1.5rem;
  }
}
section.dl-app div.inner-content p {
  color: #fff;
}
section.dl-app div.inner-content a.app-link-dl-container:hover img {
  transform: scale(1.2);
  transition: ease-in-out 0.3s;
}
section.dl-app div.inner-content img.dl-app-link {
  width: 180px;
  margin: 0 10px 0 0;
}
section.dl-app div.inner-content h3.dl-ur-app-heading {
  font-family: poppins;
  font-style: normal;
  font-weight: bold;
  font-size: 42px;
  line-height: 50px;
  margin-bottom: 25px;
  margin-top: 20px;
  color: #fff;
}
@media (max-width: 991px) {
  section.dl-app div.inner-content h3.dl-ur-app-heading {
    margin: 0;
    font-size: 35px;
    text-shadow: 3px -3px #0077B6;
  }
}
@media (max-width: 768px) {
  section.dl-app div.inner-content h3.dl-ur-app-heading {
    margin-top: 20px;
    margin-bottom: 20px;
    text-shadow: unset;
    color: #0077B6;
  }
}
@media (max-width: 576px) {
  section.dl-app div.inner-content h3.dl-ur-app-heading {
    margin-top: 0;
    color: #0077B6;
  }
}
@media (max-width: 380px) {
  section.dl-app div.inner-content h3.dl-ur-app-heading {
    font-size: 23px;
    margin-bottom: 0;
  }
}
@media (max-width: 768px) {
  section.dl-app div.inner-content p {
    max-width: 100%;
    color: #fff;
    text-align: center;
    margin: 10px auto;
  }
}
@keyframes scale-up-center {
  0% {
    transform: scale(0.5);
  }
  100% {
    transform: scale(1);
  }
}
.reviews {
  padding: 80px 0;
  text-align: center;
}
@media (max-width: 991px) {
  .reviews {
    padding: 50px 0;
  }
}
@media (max-width: 576px) {
  .reviews .special-header h2 {
    font-size: 25px;
  }
}
.reviews .textbox p {
  color: #0077B6;
  text-align: center;
}
.reviews .textbox h6 {
  font-size: 1rem;
  letter-spacing: 2px;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  padding: 1%;
  width: 40%;
  text-align: center;
  margin: 0 auto;
}
@media (max-width: 576px) {
  .reviews .textbox h6 {
    width: 70%;
  }
}
.reviews .swiper {
  padding: 40px;
}
@media (max-width: 991px) {
  .reviews .swiper {
    padding: 20px 0;
  }
}
.reviews .comments {
  background-color: #f3f3f3;
}
.reviews h3 {
  margin-bottom: 40px;
  font-weight: 900;
  font-size: 33px;
  line-height: 70px;
  color: #000;
}
@media (min-width: 768px) {
  .reviews h3 {
    font-size: 50px;
  }
}
.reviews .swiper-slide.swiper-slide-active .comment-section {
  background-color: #0077B6 !important;
}
.reviews .swiper-slide.swiper-slide-active .comment-section .comment-text p {
  color: #fff !important;
}
.reviews .swiper-slide.swiper-slide-active .comment-section .comment-writter-name {
  color: #fff !important;
}
.reviews .comment-section {
  background-color: #8ECAE6;
  padding: 20px;
  max-width: 95%;
  min-height: 240px;
  align-self: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.08);
}
@media (max-width: 576px) {
  .reviews .comment-section {
    margin-inline: 5%;
  }
}
.reviews .comment-section .comment-text p {
  text-align: center;
  color: #000;
  font-size: 13px;
  margin: 0 auto;
}
.reviews .comment-section .comment-writter-name {
  margin: 0;
  color: #DE9331;
  font-size: 17px;
  font-weight: bolder;
}
.reviews .comment-section .stars {
  text-align: center;
  margin: 10px 0;
}
.reviews .comment-section .stars svg {
  fill: #DE9331;
}
.reviews .comment-section .comment-witter-avatar img {
  max-width: 70px;
  margin-bottom: 15px;
}

/* footer */
footer {
  max-width: 100%;
  height: auto;
  box-sizing: border-box;
  overflow-x: hidden;
  color: rgb(255, 255, 255);
  padding: 8% 8% 2% 8%;
  background-image: url(../../imgs/hero/memos-takeaway-footer-bg.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
footer img.footer-logo {
  margin-top: 30px;
  max-width: 250px;
  border-radius: 20px;
  padding: 2%;
  margin-bottom: 10px;
  border-radius: 20px;
}
footer .footer-columns {
  height: 300px;
  max-width: 280px;
  margin-inline: 20px;
  background-color: #8ECAE6;
  border-radius: 20px;
}
@media (max-width: 576px) {
  footer .footer-columns {
    margin: 5%;
  }
}
footer p {
  text-align: left;
  font-size: 1.2rem;
}
footer .highlight {
  font-size: 30px;
}
footer span {
  font-size: 16px;
}
footer h6 {
  color: #FDC500;
  font-size: 26px !important;
}
footer ul {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: left;
}
footer ul li {
  margin-bottom: 10px;
}
footer ul li a {
  font-size: 0.9rem;
  color: #fff;
  filter: contrast(200%);
}
footer ul li a:hover {
  color: #FDC500;
  filter: contrast(200%);
}
footer ul li a svg {
  fill: #FDC500;
  font-weight: 600;
  width: 35px;
  height: 35px;
}

.foods-tags {
  padding: 30px 0 0 0;
}
.foods-tags ul {
  padding: 0;
  margin: 0;
  flex-direction: row;
}
.foods-tags ul li {
  list-style: none;
  display: inline-block;
  border: 2px solid #0098e9;
  border-radius: 18px;
  padding: 5px 10px;
  margin: 2px;
  background-color: #0077B6;
  font-weight: 500;
  color: #fff;
  font-size: 12px;
  text-transform: capitalize;
}

.contact-us {
  color: #000;
  margin: 0;
}
.contact-us .col-12 {
  height: 100%;
}
.contact-us .navbar-social a {
  transition: ease-in-out 0.4s;
}
.contact-us .navbar-social a svg {
  fill: #0077B6 !important;
  font-weight: 600;
  width: 25px;
  height: 25px;
}
.contact-us .navbar-social a:hover {
  transform: rotate(10deg);
}
.contact-us div.section-heading-div h3 {
  font-weight: bold;
  font-size: 32px;
  line-height: 48px;
  text-align: center;
  margin-bottom: 70px;
  text-transform: capitalize;
  color: #0077B6;
}
.contact-us div.about-us-content h5 {
  font-size: 15px;
}
@media (max-width: 350px) {
  .contact-us div.about-us-content h5 {
    font-size: 11px;
  }
}
.contact-us div.about-us-content div.shop-name-secoundry h4 {
  font-family: Quicksand-bold;
  font-size: 24px;
  line-height: 36px;
  color: #000;
  margin-bottom: 50px;
  font-weight: bolder;
}
.contact-us div.about-us-content div.shop-about-text {
  padding: 0 40px;
}
.contact-us div.about-us-content div.shop-about-text h3 {
  margin-bottom: 20px;
  color: #000;
  font-size: 37px;
  line-height: 33px;
  font-weight: bolder;
}
.contact-us div.about-us-content div.shop-about-text h3 span {
  font-size: 50px;
  color: #0077B6;
}
@media (max-width: 1200px) {
  .contact-us div.about-us-content div.shop-about-text h3 {
    font-size: 26px;
  }
}
@media (max-width: 991px) {
  .contact-us div.about-us-content div.shop-about-text h3 {
    margin-bottom: 20px;
    color: #000;
    font-size: 37px;
    line-height: 33px;
    font-weight: bolder;
    font-family: Worksans;
  }
}
@media (max-width: 768px) {
  .contact-us div.about-us-content div.shop-about-text h3 {
    font-size: 26px;
    margin-bottom: 0;
  }
}
@media (max-width: 480px) {
  .contact-us div.about-us-content div.shop-about-text h3 {
    font-size: 20px;
  }
}
.contact-us div.about-us-content div.shop-about-text p {
  color: #000;
  font-size: 15px;
  line-height: 25px;
  font-style: normal;
  font-weight: 400;
}
@media (max-width: 1200px) {
  .contact-us div.about-us-content div.shop-about-text p {
    font-size: 15px;
  }
}
@media (max-width: 1100px) {
  .contact-us div.about-us-content div.shop-about-text p {
    font-size: 12px;
  }
}
.contact-us div.about-us-content #openinghour {
  max-width: 80%;
  display: flex;
  flex-direction: column;
  margin: auto;
}
.contact-us div.about-us-content iframe {
  height: 600px;
  width: 100%;
  margin: 0;
  padding: 0;
}
@media (max-width: 991px) {
  .contact-us div.about-us-content iframe {
    height: 350px;
  }
}

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

#sidebar {
  position: fixed;
  bottom: 59px;
  right: 25px;
  z-index: 99;
  border: none;
  outline: none;
  background-color: #0077B6;
  color: #FDC500;
  cursor: pointer;
  padding: 10px 15px;
  border-radius: 12px;
}
#sidebar:hover {
  color: #0077B6;
  border: 1px dashed #0077B6;
  background-color: white;
  box-shadow: #0077B6 0px 7px 29px 0px;
}

.staticSidebar {
  position: fixed;
  background-color: #FDC500;
  border-left: 2px solid #0077B6;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: 9998;
  width: 500px;
  max-width: 80%;
  transition: all 700ms ease;
  transform: translateX(100%);
  padding: 20px 10px;
}

.staticSidebar.active {
  transition: all 700ms ease;
  transform: translateX(0%);
}

.closesidebar {
  background-color: #0077B6;
  color: white;
  padding: 0 5px;
  border-radius: 3px;
}

#sidebarWrapper h4 {
  color: #0E2D49;
  font-weight: bolder;
}
#sidebarWrapper a {
  color: #fff;
}
#sidebarWrapper a:hover {
  text-decoration: none;
}
#sidebarWrapper a .card {
  background-color: #0077B6;
  border: 1px solid #0077B6;
  border-top: none;
  display: flex;
  flex-direction: row;
  align-items: center;
  border-radius: 0 20px 20px 0;
}
#sidebarWrapper a .card img {
  max-width: 145px;
  max-height: 145px;
  background-color: #FDC500;
}
@media (max-width: 768px) {
  #sidebarWrapper a .card img {
    max-width: 120px;
    max-height: 120px;
  }
}
@media (max-width: 576px) {
  #sidebarWrapper a .card img {
    max-width: 100px;
    max-height: 100px;
  }
}
@media (max-width: 480px) {
  #sidebarWrapper a .card img {
    display: none;
  }
}
#sidebarWrapper a .card .deal-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
#sidebarWrapper a .card .deal-content p {
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  #sidebarWrapper a .card .deal-content p {
    margin-bottom: 3px;
    font-size: 13px;
  }
}

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

::-moz-selection {
  background-color: #0077B6;
  color: white;
}

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

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

section.copyright {
  background-color: #023047;
}
section.copyright .container-fluid {
  padding: 15px;
  border-top: 1px solid #1e1e1e;
}
section.copyright p {
  line-height: 40px;
  color: #fff;
  margin-bottom: 0;
  font-size: 14px;
}
@media (max-width: 480px) {
  section.copyright p {
    font-size: 11px;
    line-height: 20px;
    padding: 5px;
  }
}
section.copyright a i {
  color: #fff;
}
section.copyright ul {
  padding: 0;
  margin: 0;
  align-items: center;
  display: flex;
}
@media (max-width: 768px) {
  section.copyright ul {
    flex-wrap: wrap;
  }
}
section.copyright ul li {
  padding: 0 5px;
}
section.copyright ul li:not(:last-child) {
  border-right: 1px solid #5b5b5b;
}
section.copyright ul li a {
  color: #ddd;
  font-size: 12px;
}
@media (max-width: 1200px) {
  section.copyright ul li a {
    font-size: 10px;
  }
}
@media (max-width: 991px) {
  section.copyright ul li a {
    font-size: 12px;
  }
}

.gallery-memos {
  max-width: 100%;
  height: auto;
  background: radial-gradient(circle at center, #0077B6 40%, #8ECAE6 60%, #8ECAE6, #fff2b2 90%);
  position: relative;
  padding-inline: 2%;
  padding-block: 4%;
}
@media (max-width: 991px) {
  .gallery-memos {
    padding: 50px 0;
  }
}
.gallery-memos .swiper-memos-takeaway-gallery {
  width: 100%;
}
.gallery-memos .swiper-slide {
  width: 75%; /* Adjust for mobile: try 60%–80% as needed */
  max-width: 300px;
}
.gallery-memos h3 {
  font-family: OleoScript;
  font-size: 75px;
  color: #0077B6;
}
@media (max-width: 1300px) {
  .gallery-memos h3 {
    font-size: 50px;
  }
}
@media (max-width: 480px) {
  .gallery-memos h3 {
    font-size: 30px;
  }
}
.gallery-memos h3 .chef-img {
  max-width: 150px;
}
.gallery-memos .card {
  width: 300px;
  height: 400px;
  transition: ease-in-out 0.7s;
  -webkit-transition: ease-in-out 0.7s;
  -moz-transition: ease-in-out 0.7s;
  -ms-transition: ease-in-out 0.7s;
  -o-transition: ease-in-out 0.7s;
  background-color: unset;
  margin-bottom: 20px;
  border-radius: 8%;
  box-shadow: 0 0 15px #525252;
  position: relative;
}
.gallery-memos .card:hover {
  transition: ease-in-out 0.7s;
  -webkit-transition: ease-in-out 0.7s;
  -moz-transition: ease-in-out 0.7s;
  -ms-transition: ease-in-out 0.7s;
  -o-transition: ease-in-out 0.7s;
}
.gallery-memos .card:hover .card-info {
  display: flex;
}
.gallery-memos .card .card-info {
  position: absolute;
  content: "";
  top: 0%;
  right: 0%;
  left: 0%;
  bottom: 0%;
  display: none;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  align-items: center;
  box-shadow: 0 0 5px #FDC500, 0 0 10px #FDC500, 0 0 15px #FDC500, 0 0 20px #FDC500;
  border-radius: 10%;
  padding: 20px;
  transition: ease-in-out 0.7s;
  -webkit-transition: ease-in-out 0.7s;
  -moz-transition: ease-in-out 0.7s;
  -ms-transition: ease-in-out 0.7s;
  -o-transition: ease-in-out 0.7s;
}
.gallery-memos .card .card-info p {
  font-weight: bolder;
  font-size: 28px;
  color: #fff;
  font-family: OleoScript;
  text-shadow: 0 0 10px #000;
}
.gallery-memos .card .card-info a.btn {
  background-color: #fff;
  color: #FDC500;
  padding: 15px 40px;
  font-weight: bolder;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
  transition: all 2s ease-in-out;
}
.gallery-memos .card .card-info a.btn:hover {
  transform: scale(1.1);
  background-color: #FDC500;
  color: #fff;
}
.gallery-memos .card img {
  border-radius: 8%;
  max-width: 100%;
}
.gallery-memos .card .card-content .info {
  background-color: #fdfdfd;
  display: inline-block;
  color: #0077B6;
  width: -moz-fit-content;
  width: fit-content;
  position: absolute;
  top: 0%;
  left: 0%;
  border-radius: 10px 20px 20px 0;
  padding: 12px 25px;
  font-size: 16px;
  font-weight: bolder;
  border: 1px solid #0077B6;
}
.gallery-memos .card .card-content .info a {
  font-size: 20px;
  font-weight: bolder;
  color: #0077B6;
  padding: 0;
}
.gallery-memos .card h5 {
  font-weight: bolder;
  color: #fff0c8;
  font-size: 24px;
  text-shadow: 1px 1px #000;
}
.gallery-memos .special-offer-text {
  background-color: #0077B6;
  border-radius: 20px;
  max-width: 100%;
  margin: 0 auto;
  padding: 40px 20px;
  border-radius: 100px;
}
.gallery-memos .special-offer-text p {
  max-width: 100%;
  margin: 0 auto;
  color: #fff;
  font-size: 18px;
}

.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;
}/*# sourceMappingURL=style2.css.map */