body {
  font-family: Raleway !important;
}

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

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

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

@keyframes fade-two {
  0% {
    transform: translateX(0);
    opacity: 0;
  }
  100% {
    transform: rotate(-115deg);
    opacity: 1;
  }
}
.reveal {
  position: relative;
  opacity: 0;
}

.reveal.active {
  opacity: 1;
}
.reveal.active .fade-left {
  animation: fade-left 0.7s ease-in-out;
}
@keyframes fade-left {
  0% {
    transform: translateX(-150px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
.reveal.active .fade-right {
  animation: fade-right 1s ease-in-out;
}
@keyframes fade-right {
  0% {
    transform: translateX(150px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
.reveal.active .fade-bottom {
  animation: fade-bottom 1.2s ease-in-out;
}
@keyframes fade-bottom {
  0% {
    transform: translateY(100px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.reveal.active .fade-top {
  animation: fade-top 0.7s ease-in-out;
}
@keyframes fade-top {
  0% {
    transform: translateY(-200px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.reveal.active .fade-big {
  animation: fade-big 1s ease-in-out;
}
@keyframes fade-big {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.divider {
  /*
  &::after {
    bottom: 0;
    background-image: url('../../imgs/background/eda-restaurant-patttern4.png'); // Bottom border
  }
  */
}
.divider::before, .divider::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 6%;
  background-size: auto 100%;
  background-repeat: repeat-x;
}
.divider::before {
  top: 0;
  background-image: url("../../imgs/background/eda-restaurant-patttern4-top.png");
  opacity: 0.4;
}

.main-color {
  color: #912225;
}

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

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

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

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

@font-face {
  font-family: Raleway;
  src: url(../../Fonts/Raleway/static/Raleway-Regular.ttf);
}
@font-face {
  font-family: Arbhie;
  src: url(../../Fonts/arbhie-script/Arbhie-Script.ttf);
}
/* header */
.openmenuu {
  width: 100% !important;
}

.displayy {
  display: block !important;
}
@media (min-width: 991px) {
  .displayy {
    display: flex !important;
  }
}

.top-header {
  background-color: rgba(0, 0, 0, 0.6);
  padding: 0% 0%;
}

.shop-logo {
  width: 94px;
}

header a#drink-btn {
  font-weight: 900;
  padding: 8px 16px;
  border-radius: 20px;
  color: #fff;
  box-shadow: 0px 0px 20px #000;
}
@media (min-width: 1200px) {
  header a#drink-btn {
    margin-right: 120px;
  }
}
header a#drink-btn:hover {
  background-color: rgba(255, 255, 255, 0.3);
  color: #ba2c30;
  text-shadow: 0px 0px 10px #000;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}

header {
  background-color: rgba(0, 0, 0, 0.6);
  padding: 0px 0;
  top: 0px;
  position: fixed;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 999;
  width: 100%;
}
@media (max-width: 991px) {
  header {
    background-color: rgba(0, 0, 0, 0.6);
  }
}
header .navbar-brand {
  font-size: 1rem !important;
}
@media (min-width: 991px) {
  header .navbar-nav {
    flex-direction: row;
  }
}
header section.menu-section span.open-menu {
  align-self: center;
  z-index: 10;
}
@media (min-width: 991px) {
  header section.menu-section span.open-menu {
    display: none;
  }
}
header section.menu-section #myNav {
  display: block;
}
@media (min-width: 991px) {
  header section.menu-section #myNav {
    width: 100%;
  }
}
header section.menu-section #overlay-content {
  display: none;
}
@media (min-width: 991px) {
  header section.menu-section #overlay-content {
    display: flex;
  }
}
@media (min-width: 991px) {
  header section.menu-section nav {
    display: flex;
  }
}
header section.menu-section div.mobile-overlay {
  height: 100%;
  width: 0%;
  position: fixed;
  z-index: 999999;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.6);
  overflow-x: hidden;
  transition: width 0.45s;
}
header section.menu-section div.mobile-overlay .overlay-content {
  position: relative;
  top: 15%;
  width: 100%;
  text-align: center;
}
@media (min-width: 991px) {
  header section.menu-section div.mobile-overlay .overlay-content {
    justify-content: center !important;
  }
}
@media (min-width: 991px) {
  header section.menu-section div.mobile-overlay .overlay-content > div#navbarNavAltMarkup {
    display: flex;
    flex-direction: row;
  }
}
@media (min-width: 991px) {
  header section.menu-section div.mobile-overlay .overlay-content {
    display: flex;
  }
}
header section.menu-section div.mobile-overlay .overlay-content .closebtn {
  text-decoration: none;
  position: fixed;
  top: 10px;
  font-size: 20px;
  right: 10%;
  font-size: 26px;
  z-index: 100;
  color: #912225 !important;
  transition: transform 0.2s ease-in-out;
}
header section.menu-section div.mobile-overlay .overlay-content .closebtn:hover {
  transform: scale(1.5);
}
@media (min-width: 991px) {
  header section.menu-section div.mobile-overlay .overlay-content .closebtn {
    display: none;
  }
}
header section.menu-section div.mobile-overlay .overlay-content a.nav-link {
  color: #fff;
  padding: 16px 20px;
  font-size: 18px;
  font-weight: 900;
  line-height: 24px;
  text-align: center;
}
header section.menu-section div.mobile-overlay .overlay-content a.nav-link:hover {
  color: #912226 !important;
}
header section.menu-section div.mobile-overlay .overlay-content a.nav-link .active {
  color: #912225 !important;
}
@media (min-width: 991px) {
  header section.menu-section div.mobile-overlay .overlay-content a.nav-link {
    font-size: 15px;
  }
}
@media (min-width: 1200px) {
  header section.menu-section div.mobile-overlay .overlay-content a.nav-link {
    font-size: 15px;
  }
}
header section.menu-section div.mobile-overlay .overlay-content a.btn {
  background-color: #912225;
  color: black;
}
header section.menu-section div.mobile-overlay .overlay-content a.login-btn {
  background-color: #912225;
  border-radius: 35px 35px 12px 12px !important;
  padding: 8px 15px 8px 15px;
  color: #fff;
}
@media (min-width: 991px) {
  header section.menu-section div.mobile-overlay .overlay-content a.login-btn {
    padding: 14px 25px 13px 19px;
  }
}
@media (min-width: 991px) {
  header section.menu-section div.mobile-overlay {
    position: static;
    display: flex !important;
    flex-direction: row;
    background-color: inherit;
  }
}

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

.index-hero {
  background: center;
  background-image: url(../../imgs/hero/eda-hero.jpg);
  background-position: 0% 100%;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 800px;
  padding-top: 48px;
}
@media (max-width: 768px) {
  .index-hero {
    background-position: center;
    min-height: 650px;
    padding-top: 30%;
  }
  .index-hero section.about-us {
    padding: 5% 3%;
  }
}
@media (max-width: 576px) {
  .index-hero section.about-us {
    padding: 5% 2%;
  }
}
@media (max-width: 400px) {
  .index-hero section.about-us {
    padding: 5% 1%;
  }
}

section.hero-section {
  padding: 150px 0;
  color: #fff;
}
@media (max-width: 768px) {
  section.hero-section {
    padding: 100px 0;
  }
}
section.hero-section div.inner-content h2 .first-title {
  box-shadow: 0px 2px 24px 0px rgba(0, 0, 0, 0.8);
  text-transform: uppercase;
  margin-bottom: 20px;
  font-family: Arbhie;
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 1em;
  text-align: center;
  color: #912226;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
}
@media (max-width: 600px) {
  section.hero-section div.inner-content h2 .first-title {
    font-size: 55px;
    line-height: 1.2em;
  }
}
section.hero-section div.inner-content h2 .second-title {
  font-family: Arbhie;
  font-size: 3rem;
  font-weight: 400;
  line-height: 2em;
  text-align: center;
  background-color: rgba(108, 105, 100, 0.6078431373);
  color: #f7eee0;
}
@media (max-width: 768px) {
  section.hero-section div.inner-content h2 .second-title {
    font-size: 26px;
    line-height: 1em;
  }
}
section.hero-section div.inner-content a {
  color: #fff;
  border-color: #fff;
  background-color: #912225;
  box-shadow: rgba(78, 123, 182, 0.7294117647) 0px 7px 29px 0px;
  border-radius: 35px !important;
  padding: 6px 43px;
  margin: 0 10px;
  font-size: 20px;
  font-weight: 500;
  line-height: 36px;
}
section.hero-section div.inner-content a:hover {
  box-shadow: rgba(78, 123, 182, 0.7294117647) 0px 7px 29px 0px;
  background-color: #912225;
  color: #000;
}
@media (min-width: 992px) {
  section.hero-section div.inner-content a {
    margin-top: 48px;
  }
}
section.hero-section div.inner-content a.booking {
  background-color: transparent;
  border: 1px solid #fff;
  color: #fff;
}
section.hero-section div.inner-content a.booking:hover {
  background-color: #912226;
  box-shadow: #912225 0px 7px 29px 0px;
}

/* more about us section */
section.more-about-us-section {
  background-color: #000;
  padding: 50px 0;
  color: #fff;
}
section.more-about-us-section h3 {
  font-family: Arbhie;
  font-size: 32px;
  font-weight: 700;
  line-height: 40px;
  text-align: left;
  color: #912225;
  margin-bottom: 48px;
}
@media (max-width: 991px) {
  section.more-about-us-section h3 {
    text-align: center;
  }
}
section.more-about-us-section .more-card-text {
  border-top: 1px solid rgba(214, 214, 214, 0.2);
  border-bottom: 1px solid rgba(214, 214, 214, 0.2);
  text-align: center;
  padding: 32px 20px;
}
section.more-about-us-section .more-card-text p {
  max-width: 40ch;
  margin: 0 auto;
  padding-bottom: 10px;
}
@media (max-width: 991px) {
  section.more-about-us-section .more-card-text {
    padding: 10px;
    border-top: 1px solid rgba(0, 0, 0, 0);
  }
}
section.more-about-us-section img {
  margin-bottom: 32px;
}
@media (max-width: 768px) {
  section.more-about-us-section img {
    margin-bottom: 15px;
  }
}
section.more-about-us-section h4 {
  font-family: Arbhie;
  font-size: 24px;
  font-weight: 400;
  line-height: 24px;
  text-align: center;
  color: #912225;
}
section.more-about-us-section p {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  text-align: center;
}
@media (max-width: 991px) {
  section.more-about-us-section p {
    font-size: 13px;
  }
}
@media (max-width: 768px) {
  section.more-about-us-section p {
    font-size: 16px;
  }
}

/* special to try */
section.special {
  padding: 120px;
  background-color: rgba(12, 11, 9, 0.8509803922);
  position: relative;
}
@media (max-width: 768px) {
  section.special {
    padding: 40px 0;
  }
}
section.special h3.special-header {
  font-family: Arbhie;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1em;
  text-align: left;
  color: #912225;
  margin-bottom: 1em;
  margin-top: 6px;
}
@media (max-width: 991px) {
  section.special h3.special-header {
    text-align: center;
  }
}
section.special .main-btn {
  border-radius: 32px;
  padding: 12px 20px 12px 20px;
  background-color: #912225;
  color: #fff;
  font-size: 18px;
  font-weight: bolder;
  line-height: 24px;
  text-align: left;
  display: flex;
  max-width: -moz-max-content;
  max-width: max-content;
  margin: auto;
  margin-top: 40px;
  align-items: center;
  text-align: center;
  text-decoration: none;
}
section.special .main-btn img {
  width: 17px;
  height: 17px;
  margin-left: 2px;
}
section.special .main-btn:hover {
  text-decoration: none;
}
section.special img {
  max-width: 100%;
}
section.special ul.category {
  padding: 0;
  display: flex;
  width: 100%;
  flex-wrap: wrap;
}
section.special ul.category li.category-inner {
  display: flex;
  width: 50%;
  margin-bottom: 10px;
  align-items: center;
}
@media (max-width: 991px) {
  section.special ul.category li.category-inner {
    width: 100%;
  }
}
section.special ul.category li.category-inner .category-des {
  display: flex;
  flex-direction: column;
  width: 100%;
}
section.special ul.category p {
  color: #ddd;
  max-width: 40ch;
}
@media (max-width: 480px) {
  section.special ul.category p {
    font-size: 13px;
  }
}
section.special ul.category a {
  text-align: center;
  padding-left: 8px;
  margin-right: 15%;
  text-decoration: none;
  color: #fff;
}
section.special ul.category a:hover {
  color: #fff;
  text-decoration: underline;
}
section.special ul.category .category-img {
  width: 100px;
  border-radius: 50%;
  margin-right: 10px;
  border: 2px solid #4D4D4D;
}
@media (max-width: 480px) {
  section.special ul.category .category-img {
    width: 60px;
  }
}
section.special ul.category .category-title {
  display: flex;
  justify-content: space-between;
}
section.special ul.category .category-title h3 {
  font-family: Raleway;
  font-size: 20px;
  font-weight: 500;
  line-height: 24px;
  text-align: left;
  color: #fff;
}
@media (max-width: 480px) {
  section.special ul.category .category-title h3 {
    font-size: 16px;
  }
}
section.special .nav-tabs {
  display: flex;
}
section.special .nav-tabs a.nav-link {
  color: rgb(255, 255, 255);
  margin: 0;
  border: none;
  font-size: 18px;
  font-family: Raleway;
  font-weight: 800;
}
section.special .nav-tabs a.nav-link:hover {
  border: none;
}
section.special .nav-tabs a.nav-link:focus {
  border: none;
}
section.special .nav-tabs a.nav-link.active {
  font-family: Raleway;
  font-size: 20px;
  line-height: 24px;
  text-align: center;
  color: #fff;
  border-radius: 6px;
  border-bottom: 3px solid #912225;
  background-color: transparent;
}
section.special .tab-content .swiper-wrapper {
  padding: 20px 0;
}
section.special .tab-content .card {
  transition: 0.6s ease all;
  margin: auto;
  min-height: 480px;
  padding: 0;
  padding-bottom: 20px;
  border-radius: 60px 60px 0 0;
}
section.special .tab-content .card img {
  border-radius: 60px 60px 0 0;
  background-color: #912225;
}
section.special .tab-content .card:hover {
  transform: scale(1.04);
}
section.special .tab-content .card:hover a.btn {
  transition: 0.1s ease all;
  background-color: #912225;
  color: #fff;
}
section.special .tab-content .card .card-body {
  padding: 10px;
}
section.special .tab-content .card .card-body .food-name {
  font-size: 20px;
  font-weight: bolder;
}
section.special .tab-content .card div.card-footer {
  background-color: unset !important;
  border: none !important;
}
section.special .tab-content .card .btn-holder {
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
}
section.special .tab-content .card .btn-holder a.btn {
  background-color: #912225;
  color: #fff;
  border: 3px solid #912225;
  border-radius: 35px 35px 12px 12px !important;
  margin-top: 12px;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  width: 140px;
  height: 45px;
  animation-duration: 1s;
  animation-iteration-count: 1;
}
section.special .tab-content .card .btn-holder a.btn:hover {
  color: #fff;
  border-color: #912225;
  background-color: #912225;
}

.specialoffers {
  padding: 140px 0;
  background-color: #0C0B09;
  position: relative;
}
@media (max-width: 991px) {
  .specialoffers {
    padding: 80px 0;
  }
}
.specialoffers .col-12 {
  padding: 0;
}
.specialoffers h3.special-header {
  font-family: Arbhie;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1em;
  text-align: left;
  color: #912225;
  margin-bottom: 1em;
}
@media (max-width: 991px) {
  .specialoffers h3.special-header {
    text-align: center;
  }
}
@media (max-width: 480px) {
  .specialoffers h3.special-header {
    font-size: 25px;
  }
}
.specialoffers .nav-tabs {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}
@media (max-width: 991px) {
  .specialoffers .nav-tabs {
    flex-direction: row;
    width: 100%;
  }
}
@media (max-width: 576px) {
  .specialoffers .nav-tabs {
    margin-bottom: 0;
  }
}
.specialoffers .nav-tabs a.nav-link {
  color: #fff;
  margin: 0;
  border: none;
  font-size: 18px;
  font-family: Raleway;
  padding: 16px;
  border-radius: 32px 0px 0px 32px;
  transition: ease-in-out 0.7s;
}
@media (max-width: 991px) {
  .specialoffers .nav-tabs a.nav-link {
    border-radius: 20px;
    font-size: 15px;
  }
}
@media (max-width: 576px) {
  .specialoffers .nav-tabs a.nav-link {
    padding: 8px;
    font-size: 13px;
  }
}
.specialoffers .nav-tabs a.nav-link:hover {
  background-color: #912225;
  color: #c7bebe !important;
}
.specialoffers .nav-tabs a.nav-link:focus {
  border: none;
}
.specialoffers .nav-tabs a.nav-link.active {
  font-family: Raleway;
  font-size: 20px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
  color: #fff;
  background-color: #912225;
}
@media (max-width: 991px) {
  .specialoffers .nav-tabs a.nav-link.active {
    font-size: 17px;
  }
}
@media (max-width: 576px) {
  .specialoffers .nav-tabs a.nav-link.active {
    font-size: 15px;
  }
}
.specialoffers .tab-content {
  border-left: 1px solid #912225;
  padding-left: 10px;
}
@media (max-width: 991px) {
  .specialoffers .tab-content {
    border: none;
    padding: 0;
  }
}
.specialoffers .card {
  background-color: transparent;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
  padding: 24px;
}
@media (max-width: 991px) {
  .specialoffers .card {
    flex-direction: row-reverse;
  }
}
@media (max-width: 768px) {
  .specialoffers .card {
    padding: 0;
  }
}
@media (max-width: 576px) {
  .specialoffers .card {
    flex-direction: column-reverse;
  }
}
.specialoffers .card .card-inner h4 {
  font-size: 32px;
  font-weight: 700;
  line-height: 24px;
  text-align: left;
  color: #fff;
  margin-bottom: 24px;
}
@media (max-width: 576px) {
  .specialoffers .card .card-inner h4 {
    text-align: center !important;
  }
}
.specialoffers .card .card-inner p {
  margin-bottom: 48px;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  text-align: left;
  color: #fff;
}
@media (max-width: 576px) {
  .specialoffers .card .card-inner p {
    text-align: center !important;
    max-width: 80%;
    margin: 0 auto 15px auto;
  }
}
.specialoffers .card .card-img {
  max-width: 290px;
  margin: auto;
  display: flex;
  justify-content: center;
}
@media (max-width: 991px) {
  .specialoffers .card .card-img {
    margin: 0;
    margin-top: 15px;
    margin-left: -20px;
  }
}
@media (max-width: 768px) {
  .specialoffers .card .card-img {
    margin: 15px auto;
    max-width: 200px;
  }
}
@media (max-width: 576px) {
  .specialoffers .card .card-img {
    margin: 10px auto;
  }
}
.specialoffers .card .card-img img {
  max-width: 290px;
  border-radius: 50%;
}
@media (max-width: 768px) {
  .specialoffers .card .card-img img {
    max-width: 200px;
    max-height: 200px;
  }
}
.specialoffers .main-btn {
  border-radius: 32px;
  padding: 12px 20px 12px 20px;
  background-color: #912225;
  color: #fff;
  font-size: 18px;
  font-weight: bolder;
  line-height: 24px;
  text-align: left;
  display: flex;
  max-width: -moz-max-content;
  max-width: max-content;
  text-decoration: none;
}
@media (max-width: 576px) {
  .specialoffers .main-btn {
    margin: 0 auto;
  }
}
.specialoffers .main-btn img {
  width: 20px;
  height: 20px;
  margin-left: 2px;
}
.specialoffers .main-btn:hover {
  text-decoration: none;
}

section.about-us {
  padding: 64px 0;
  background-image: url(../../imgs/about/eda-about.jpg);
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 5% 10%;
}
@media (max-width: 768px) {
  section.about-us section.about-us {
    padding: 5% 3%;
  }
}
@media (max-width: 576px) {
  section.about-us section.about-us {
    padding: 5% 2%;
  }
}
@media (max-width: 400px) {
  section.about-us section.about-us {
    padding: 5% 1%;
  }
}
section.about-us p {
  font-family: Raleway;
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  text-align: left;
  color: #fff;
}

section.about-events {
  padding: 64px 0;
  background-image: url("../../imgs/dessert/eda-dessert-bg (2).jpg");
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
}
section.about-events h3 {
  font-size: 3.3rem;
}
section.about-events h5 {
  color: #fff;
  font-family: Arbhie;
  font-size: 40px;
  font-weight: 700;
  line-height: 50px;
  text-align: left;
  color: #912225;
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  section.about-events h5 {
    margin-bottom: 10px;
    font-size: 30px;
    line-height: 35px;
  }
}
section.about-events p {
  font-family: Raleway;
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  text-align: left;
  color: #fff;
}
@media (max-width: 991px) {
  section.about-events p {
    font-size: 16px;
  }
}
section.about-events #dessert-img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: auto;
  padding: 5% 10%;
  border-radius: 15%;
}
section.about-events #dessert-p {
  padding: 5% 2%;
}

.eda-title {
  font-family: Arbhie;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1em;
  text-align: left;
  color: #912226;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
  margin-bottom: 30px;
}

section.reviews {
  padding: 180px 0;
  background-color: #0C0B09;
}
@media (max-width: 768px) {
  section.reviews {
    padding: 50px 0;
  }
}
section.reviews h3 {
  font-family: Arbhie;
  font-size: 36px;
  font-weight: 700;
  line-height: 40px;
  text-align: left;
  color: #912225;
  margin-bottom: 32px;
}
section.reviews .swiper-slide {
  background-color: #1a1a1a;
  min-height: 311px;
  padding: 32px;
  border-radius: 20px;
}
section.reviews .comment-quote {
  margin-bottom: 20px;
}
section.reviews img.comment-avatar {
  border-radius: 50%;
  max-width: 64px;
  margin-right: 20px;
}
section.reviews .comment-section .comment-text {
  max-width: 800px;
  text-align: left;
  color: #9AA3B2;
  font-size: 14px;
  line-height: 31px;
  margin: 0 auto;
  min-height: 125px;
}
section.reviews .comment-section .comment-writter-name {
  margin-top: 35px;
  color: #912225;
  margin-bottom: 9px;
  color: #fff;
}
section.reviews .comment-section .comment-writter-name span {
  color: #9AA3B2;
}
section.reviews .comment-section .stars {
  text-align: center;
  margin-bottom: 90px;
}

section.peyment-method {
  background-color: #1a1a1a;
  padding: 58px 0;
}
section.peyment-method .methods-container {
  justify-content: space-evenly;
}
section.peyment-method .methods-container > div img {
  max-width: 170px;
  display: block;
}
@media (max-width: 991px) {
  section.peyment-method .methods-container > div img {
    max-width: 100px;
  }
}
@media (max-width: 768px) {
  section.peyment-method .methods-container > div img {
    max-width: 50px;
  }
}

/* dwnloap app section */
section.dl-app {
  background-color: #f3f3f3;
  margin-top: 200px;
}
section.dl-app div.inner-content div.d-flex {
  justify-content: space-evenly;
}
section.dl-app div.inner-content img.dl-app-link {
  margin-bottom: 50px;
  width: 150px;
  transition: transform 0.5s ease;
}
section.dl-app div.inner-content img.dl-app-link:hover {
  transform: scale(1.2);
}
section.dl-app div.inner-content h3.dl-ur-app-heading {
  font-family: Raleway;
  font-style: normal;
  font-weight: bold;
  font-size: 46px;
  line-height: 70px;
  margin-bottom: 56px;
  margin-top: 20px;
  font-size: 1.8rem;
}
@media (min-width: 768px) {
  section.dl-app div.inner-content h3.dl-ur-app-heading {
    font-size: 1.9rem;
  }
}
@media (min-width: 992px) {
  section.dl-app div.inner-content h3.dl-ur-app-heading {
    font-size: 2rem;
  }
}

section.map {
  background-color: #0C0B09;
}
section.map h3 {
  font-family: Arbhie;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1em;
  text-align: left;
  color: #912225;
}

/* footer */
footer {
  font-family: Raleway !important;
  background-color: #0c0b09;
  padding-top: 80px;
  padding-bottom: 20px;
  color: #b3b3b3;
}
footer .footer-header {
  font-size: 24px;
  font-weight: 700;
  line-height: 24px;
  color: #912225;
  text-align: left;
}
footer a.d-flex img.shop-logo {
  max-width: 282px;
  max-height: 90px;
}
footer .footer-des {
  padding: 2% 6%;
  max-width: 40ch;
  margin-bottom: 40px;
  font-size: 20px;
}
footer .dl-app {
  align-items: flex-start;
  justify-content: flex-start;
}
footer .dl-app .dl-app-container {
  align-items: center;
}
footer .dl-app .dl-app-container a img {
  max-width: 170px;
  margin: 10px;
}
footer ul {
  padding: 0;
  list-style: none;
}
footer ul li {
  margin-top: 20px;
}
footer ul li span {
  font-size: 20px;
  font-weight: 400;
  line-height: 21px;
  text-align: left;
}
footer ul li a {
  text-decoration: none;
  color: #b3b3b3;
}
footer ul li a:hover {
  color: #912225;
  text-decoration: none;
}
footer ul li h3 {
  color: #912225;
}
footer .fa {
  color: #912225;
  font-size: 1rem;
}
footer .footer-title {
  margin-bottom: 30px;
}
footer .footer-title span {
  font-weight: 500;
  font-size: 22px;
  line-height: 27px;
  color: #272042;
}

.Specialimg {
  background-image: url(../../imgs/hero/specialimg.jfif);
  background-position: 100% 45%;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 314px;
}

.contact-us {
  padding: 0 0 24px 0;
  background-color: #0c0b09;
  color: #fff;
}
@media (max-width: 991px) {
  .contact-us {
    padding: 24px 0;
  }
}
.contact-us .sitin-hours {
  font-family: Raleway;
  font-size: 18px;
  font-weight: 500;
  line-height: 22.5px;
  text-align: center;
  color: #fff;
  margin-bottom: 15px;
}
.contact-us h3.opening-header {
  font-family: Arbhie;
  font-size: 40px;
  font-weight: 700;
  line-height: 59px;
  text-align: center;
  color: #912225;
}
.contact-us .shape {
  margin-right: -20px;
}
.contact-us #openinghour {
  color: #912225;
  border: 1px solid #912225;
  padding: 30px 30px 10px 30px;
  border-radius: 15px;
}
.contact-us #openinghour p {
  font-family: Raleway;
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  text-align: left;
  margin-bottom: 32px;
}
@media (max-width: 768px) {
  .contact-us #openinghour p {
    margin-bottom: 10px;
  }
}
.contact-us ul {
  padding: 0;
}
.contact-us ul li {
  list-style: none;
  margin-bottom: 24px;
}
.contact-us ul li h3 {
  font-family: Arbhie;
  font-size: 40px;
  font-weight: 700;
  line-height: 59px;
  text-align: left;
  color: #912226;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
}
.contact-us ul li span {
  font-family: Raleway;
  font-size: 24px;
  font-weight: 500;
  line-height: 36px;
  text-align: center;
}
.contact-us ul li .small-text {
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  text-align: center;
  margin-top: 2px;
}
.contact-us ul li p {
  font-size: 20px;
  font-weight: 400;
  line-height: 32px;
  text-align: left;
  margin-bottom: 0;
}
.contact-us ul li img.icons {
  width: 56px;
  height: 56px;
  margin-right: 24px;
}
.contact-us .social-media-links {
  padding-left: 70px;
  padding-right: 400px;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  margin-top: 40px;
}
@media (max-height: 700px) {
  .contact-us .social-media-links {
    padding-inline: 70px;
  }
}
.contact-us .social-media-links a {
  text-decoration: none;
}

section.openinghours {
  background-image: url(../../imgs/hero/openinghours.jfif);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 90px 0;
}

section.awards {
  background-color: #0C0B09;
  padding: 126px 0;
  position: relative;
}
@media (max-width: 991px) {
  section.awards {
    padding: 80px 0;
  }
}
section.awards:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-image: url(../../imgs/awards/awards-outer-img.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 190px;
  height: 100%;
  z-index: 0;
}
@media (max-width: 991px) {
  section.awards:before {
    width: 100px;
  }
}
section.awards:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  background-image: url(../../imgs/awards/awards-outer-img.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 190px;
  height: 100%;
  transform: rotate(180deg);
  z-index: 0;
}
@media (max-width: 991px) {
  section.awards:after {
    width: 100px;
  }
}
section.awards h2 {
  color: #912225;
  font-family: Raleway;
  font-size: 72px;
  font-weight: 700;
  line-height: 40px;
  text-align: center;
  margin-bottom: 16px;
}
@media (max-width: 1200px) {
  section.awards h2 {
    font-size: 45px;
  }
}
section.awards span {
  color: #fff;
  font-family: Raleway;
  font-size: 20px;
  font-weight: 500;
  line-height: 25px;
  text-align: center;
  margin-bottom: 40px;
}
section.awards .card {
  background-color: transparent;
  position: relative;
  z-index: 1;
  border: none;
  outline: none;
}
section.awards .card a:hover {
  text-decoration: none !important;
}
section.awards .card a:hover h3 {
  text-decoration: none !important;
}
section.awards .card a img {
  border-radius: 32px;
  margin-bottom: 20px;
  max-width: 100%;
}
section.awards .card a h3 {
  font-family: Raleway;
  font-size: 24px;
  font-weight: 700;
  line-height: 40px;
  text-align: left;
  color: #fff;
}
section.awards .card a p {
  font-family: Raleway;
  font-size: 24px;
  font-weight: 500;
  line-height: 36px;
  text-align: left;
  color: #fff;
}

.gallery {
  padding: 52px 0 0 0;
  background-color: #0C0B09;
  position: relative;
}
.gallery .col-6 {
  padding: 2px;
}
.gallery h3 {
  font-family: Arbhie;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1em;
  text-align: left;
  color: #912225;
  margin-bottom: 45px;
  text-align: center;
}
.gallery img {
  -o-object-fit: fill;
     object-fit: fill;
  max-width: 100%;
  transition: ease-in-out 0.7s;
}
.gallery img:hover {
  transform: scale(1.08);
  border-radius: 5px;
}

section.social-media {
  background-color: #f3f3f3;
}
section.social-media div.facebook i {
  color: #912225;
}
section.social-media div.facebook i:hover {
  transition: all 0.5s ease;
  filter: blur(1px);
  transform: scale(1.1);
}

section.copyright {
  background-color: #0c0b09;
  border-top: 1px solid #912225;
}
section.copyright .cp-text {
  font-family: Raleway;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  text-align: center;
  color: #fff;
}
section.copyright a.mealzo-link {
  color: #FC5203;
  font-weight: bolder;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
}

#myBtn {
  display: none;
  position: fixed;
  bottom: 90px;
  right: 25px;
  z-index: 99;
  font-size: 18px;
  border: none;
  outline: none;
  background-color: #912225;
  color: white;
  cursor: pointer;
  padding: 6px 11px;
  border-radius: 50%;
  transition: all 0.5s ease;
  border: 1px solid #912225;
}
#myBtn:hover {
  color: #912225;
  border: 1px dashed #912225;
  background-color: white;
  box-shadow: rgba(78, 123, 182, 0.7294117647) 0px 7px 29px 0px;
}/*# sourceMappingURL=style2.css.map */