@import url(https://fonts.googleapis.com/css?family=Work+Sans:400,300,700|Open+Sans:400italic,300italic);
.main-color {
  color: #B4974F;
}

@font-face {
  font-family: Roach;
  src: url(../../Fonts/roach/Roach.otf);
}
@font-face {
  font-family: fredoka;
  src: url(../../Fonts/Fredoka/FredokaOne-Regular.ttf);
}
@font-face {
  font-family: ArchivoBlack;
  src: url(../../Fonts/Archivo_Black/ArchivoBlack-Regular.ttf);
}
@font-face {
  font-family: poppins;
  src: url(../../Fonts/poppins/Poppins-Regular.ttf);
}
* {
  box-sizing: border-box;
}

html, body {
  background-color: #161a1d;
  color: #d3d3d3;
  margin: 0;
  padding: 0;
  height: 100%;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

h1, h2, h3, h4, h5 {
  font-family: Roach;
  font-weight: bolder;
}

.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;
  margin-bottom: 30px;
  font-weight: 600;
  display: inline-flex;
  position: relative;
  color: #fff;
}

a:hover {
  text-decoration: none;
}

img {
  max-width: 100%;
}

.reveal {
  position: relative;
  opacity: 0;
}

.reveal.active {
  opacity: 1;
}
.reveal.active .fade-left {
  animation: fade-left 0.7s 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.7s ease-in-out;
}
@keyframes fade-bottom {
  0% {
    transform: translateY(100px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

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

@keyframes top {
  0% {
    transform: translateY(-150px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.home {
  width: 100%;
  height: 100vh;
  position: relative;
  background: linear-gradient(rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.2) 100%), url(../../imgs/hero/Persia-Juje-and-Kebab.jpg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
@media (max-width: 756px) {
  .home {
    height: 80vh;
  }
}

/* ====================================
Navigation 
==================================== */
.overlay-navigation {
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: hsla(0, 0%, 100%, 0.2);
  display: none;
  opacity: 0;
}

nav,
nav ul {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}

nav ul {
  display: flex;
  list-style: none;
}

nav ul li {
  flex-basis: 20%;
  justify-content: center;
  align-items: center;
  height: 100%;
  overflow: hidden;
  opacity: 0;
  display: none;
}

nav li a {
  position: relative;
  top: 46%;
  color: #fff;
  filter: contrast(300%);
  text-shadow: 0 0 3px #000;
  text-transform: uppercase;
  font-family: "Work sans", sans-serif;
  font-weight: 800;
  letter-spacing: 4px;
  text-decoration: none;
  display: block;
  text-align: center;
  font-size: 1.05rem;
  opacity: 0;
}

nav li a:before {
  content: "";
  width: 70px;
  height: 2px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 100;
  transform: translateX(-100%);
  opacity: 0;
  transition: all 0.2s linear;
}

nav li a:after {
  content: attr(data-content);
  font-size: 0.7rem;
  transition: all 0.2s linear;
  opacity: 0;
  position: absolute;
  z-index: 100;
  color: #fff;
  display: block;
  margin-right: auto;
  margin-left: auto;
  left: 0;
  right: 0;
  bottom: -50px;
  text-transform: none;
  font-family: "Open sans", sans-serif;
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0;
}

nav li a:hover {
  color: #FFF !important;
}

nav li a:hover:before {
  transform: translateX(0);
  opacity: 1;
}

nav li a:hover:after {
  transform: translateY(15px);
  opacity: 1;
}

nav li:nth-of-type(1) {
  background-color: #0b090a;
}

nav li:nth-of-type(2) {
  background-color: #161a1d;
}

nav li:nth-of-type(3) {
  background-color: #B4974F;
}

nav li:nth-of-type(4) {
  background-color: rgb(162.7077844311, 150.8754491018, 149.6922155689);
}

nav li:nth-of-type(5) {
  background-color: rgb(165.1, 165.1, 165.1);
}

/* ====================================
Burger king
==================================== */
.open-overlay {
  position: absolute;
  right: 5rem;
  top: 3.2rem;
  z-index: 100;
  width: 34px;
  display: block;
  cursor: pointer;
}
@media (max-width: 999px) {
  .open-overlay {
    top: 2.1rem;
  }
}
@media (max-width: 756px) {
  .open-overlay {
    top: 1.8rem;
  }
}
@media (max-width: 576px) {
  .open-overlay {
    top: 1.3rem;
  }
}
@media (max-width: 488px) {
  .open-overlay {
    top: 1rem;
  }
}

.open-overlay span {
  display: block;
  height: 1px;
  background-color: #fff;
  cursor: pointer;
  margin-top: 8px;
}

.animate-top-bar {
  animation: animate-top-bar 0.6s linear 1 both;
}

.animate-bottom-bar {
  animation: animate-bottom-bar 0.6s linear 1 both;
}

.animate-middle-bar {
  animation: animate-middle-bar 0.6s linear 1 both;
}

.animate-out-top-bar {
  animation: animate-out-top-bar 0.6s linear 1 both;
}

.animate-out-bottom-bar {
  animation: animate-out-bottom-bar 0.6s linear 1 both;
}

.animate-out-middle-bar {
  animation: animate-out-middle-bar 0.6s linear 1 both;
}

/* ====================================
Animation keyframes
==================================== */
@keyframes animate-top-bar {
  0% {
    background-color: #fff;
  }
  50% {
    transform: translateY(9px);
  }
  80% {
    transform: translateY(5px);
    background-color: #B4974F;
  }
  100% {
    transform: translateY(0);
    background-color: #FFF;
  }
}
@keyframes animate-bottom-bar {
  0% {
    background-color: #fff;
  }
  50% {
    transform: translateY(-9px);
  }
  80% {
    transform: translateY(-5px);
    background-color: #B4974F;
  }
  100% {
    transform: translateY(0);
    background-color: #FFF;
  }
}
@keyframes animate-middle-bar {
  0% {
    background-color: #fff;
  }
  80% {
    background-color: #B4974F;
  }
  100% {
    background-color: #FFF;
  }
}
@keyframes animate-out-top-bar {
  0% {
    background-color: #FFF;
  }
  50% {
    transform: translateY(9px);
  }
  80% {
    transform: translateY(5px);
    background-color: #FFF;
  }
  100% {
    transform: translateY(0);
    background-color: #fff;
  }
}
@keyframes animate-out-bottom-bar {
  0% {
    background-color: #B4974F;
  }
  50% {
    transform: translateY(-9px);
  }
  80% {
    transform: translateY(-5px);
    background-color: #B4974F;
  }
  100% {
    transform: translateY(0);
    background-color: #fff;
  }
}
@keyframes animate-out-middle-bar {
  0% {
    background-color: #FFF;
  }
  80% {
    background-color: #FFF;
  }
  100% {
    background-color: #B4974F;
  }
}
.home a.nav-link {
  font-family: "Work Sans", sans-serif;
  color: #222;
  font-weight: 300;
  font-size: 12px;
  text-transform: uppercase;
  text-decoration: none;
  position: absolute;
  z-index: 10;
  top: 50px;
  left: 50px;
  padding-bottom: 3px;
  border-bottom: 1px solid #222;
}

@media (max-width: 640px) {
  nav ul {
    flex-direction: column;
  }
  nav ul li {
    height: 20%;
  }
  nav ul li a {
    font-size: 20px;
  }
  nav li a:after {
    font-size: 0.6rem;
    bottom: -25px;
  }
  nav li a:hover:after {
    transform: translateY(0);
  }
  .open-overlay {
    right: 1rem;
  }
  nav li a:before {
    width: 25px;
  }
}
/* Base styles (desktop first) */
/* Tablet and smaller desktop */
@media (max-width: 1024px) {
  nav ul li a {
    font-size: 16px;
    padding: 0.75rem 1.5rem;
  }
  nav li a:before {
    width: 30px;
  }
  nav li a:after {
    font-size: 0.7rem;
    bottom: -28px;
  }
}
/* Small devices / phones */
@media (max-width: 640px) {
  nav ul {
    flex-direction: column;
    height: 100vh; /* fill full viewport height */
    margin: 0;
    padding: 0;
  }
  nav ul li {
    flex: 1; /* equal vertical height */
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  nav ul li a {
    font-size: 15px;
    padding: 0.5rem 1rem;
  }
  nav li a:before {
    width: 25px;
  }
  nav li a:after {
    font-size: 0.6rem;
    bottom: -25px;
  }
  nav li a:hover:after {
    transform: translateY(0);
  }
  .open-overlay {
    right: 1rem;
  }
}
/* Extra small devices (very small phones) */
@media (max-width: 360px) {
  nav ul li a {
    font-size: 14px;
    padding: 0.4rem 0.8rem;
  }
  nav li a:before {
    width: 20px;
  }
  nav li a:after {
    font-size: 0.5rem;
    bottom: -20px;
  }
}
section.about-us {
  margin: -80px 35px 50px 35px;
}
@media (max-width: 999px) {
  section.about-us {
    margin: -80px 25px 80px 25px;
  }
}
@media (max-width: 756px) {
  section.about-us {
    margin: -60px 20px 80px 20px;
  }
}
@media (max-width: 576px) {
  section.about-us {
    margin: -40px 15px 80px 15px;
  }
}
@media (max-width: 488px) {
  section.about-us {
    margin: -20px 5px 80px 5px;
  }
}
@media (max-width: 576px) {
  section.about-us .about-title {
    margin-left: 30px;
  }
}
@media (max-width: 488px) {
  section.about-us .about-title {
    margin-left: 20px;
  }
}
section.about-us .about-left {
  border-radius: 10px 0px 0px 10px;
  height: 85vh;
  padding: 48px 36px;
  background-color: rgb(200.8, 200.8, 200.8);
  z-index: 0;
}
@media (max-width: 999px) {
  section.about-us .about-left {
    border-radius: 10px 10px 0px 0px;
    height: auto;
    padding: 0px;
  }
}
section.about-us .about-left img {
  border-radius: 10px 0px 0px 10px;
}
section.about-us .about-right::after {
  content: "";
  position: absolute;
  right: 0%;
  bottom: 0%;
  width: 180px;
  height: 260px;
  background-image: url(../../imgs/icons/Dervish.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 1;
}
@media (max-width: 999px) {
  section.about-us .about-right::after {
    display: none;
  }
}
section.about-us .about-right {
  border-radius: 0px 10px 10px 0px;
  height: 85vh;
  padding: 60px 80px;
  color: #0b090a;
  background-color: #d3d3d3;
  z-index: 0;
}
@media (max-width: 999px) {
  section.about-us .about-right {
    border-radius: 0px 0px 10px 10px;
    height: auto;
    padding: 20px 10px;
  }
}
section.about-us .about-right h2 {
  position: relative;
  margin-bottom: 20px;
  color: #B4974F;
}
section.about-us a.cta-btn {
  margin-top: 20px;
  color: #FFF;
  background-color: #B4974F;
  padding: 12px 25px;
  border-radius: 10px;
  font-weight: bolder;
  font-size: 1.2rem;
  transition: background ease-in-out 1.4s;
}
@media (max-width: 1200px) {
  section.about-us a.cta-btn {
    margin-left: 20px;
  }
}
@media (max-width: 576px) {
  section.about-us a.cta-btn {
    font-size: 1rem;
  }
}
section.about-us a.cta-btn:hover {
  background-color: rgba(177, 167, 166, 0.6);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  color: #B4974F;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

section.more-about-us {
  background-color: #2c343a;
  margin: 0;
  padding: 120px 30px 160px 35px;
}
@media (max-width: 999px) {
  section.more-about-us {
    padding: 100px 30px 140px 35px;
  }
}
@media (max-width: 756px) {
  section.more-about-us {
    padding: 80px 20px 120px 25px;
  }
}
@media (max-width: 576px) {
  section.more-about-us {
    padding: 60px 10px 100px 15px;
  }
}
@media (max-width: 488px) {
  section.more-about-us {
    padding: 40px 5px 60px 10px;
  }
}
section.more-about-us .more-about-card {
  color: #0b090a;
}
section.more-about-us .more-about-right {
  height: 75vh;
  padding: 40px;
  background-color: rgb(200.8, 200.8, 200.8);
  z-index: 0;
  border-radius: 0px 10px 10px 0px;
}
@media (max-width: 999px) {
  section.more-about-us .more-about-right {
    border-radius: 0 0 10px 10px;
    height: auto;
  }
}
@media (max-width: 576px) {
  section.more-about-us .more-about-right {
    padding: 40px 60px;
  }
}
@media (max-width: 488px) {
  section.more-about-us .more-about-right {
    padding: 40px 20px;
  }
}
@media (max-width: 388px) {
  section.more-about-us .more-about-right {
    padding: 40px 10px;
  }
}
section.more-about-us .more-about-right #openinghour {
  padding-inline: 100px;
  line-height: 2em;
  font-size: 1.2rem;
}
@media (max-width: 1200px) {
  section.more-about-us .more-about-right #openinghour {
    font-size: 1.15rem;
  }
}
@media (max-width: 756px) {
  section.more-about-us .more-about-right #openinghour {
    font-size: 1.1rem;
    padding-inline: 50px;
  }
}
@media (max-width: 576px) {
  section.more-about-us .more-about-right #openinghour {
    font-size: 1rem;
    padding-inline: 20px;
  }
}
@media (max-width: 388px) {
  section.more-about-us .more-about-right #openinghour {
    font-size: 0.85rem;
    padding-inline: 10px;
  }
}
section.more-about-us .more-about-right img {
  border-radius: 0px 10px 10px 0px;
}
section.more-about-us .more-about-left::after {
  content: "";
  position: absolute;
  left: 0%;
  bottom: 0%;
  width: 180px;
  height: 260px;
  background-image: url(../../imgs/icons/Dervish.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transform: scaleX(-1);
  z-index: 1;
}
@media (max-width: 999px) {
  section.more-about-us .more-about-left::after {
    display: none;
  }
}
section.more-about-us .more-about-left {
  border-radius: 10px 0px 0px 10px;
  height: 75vh;
  padding: 60px 80px;
  background-color: #d3d3d3;
  z-index: 0;
}
@media (max-width: 999px) {
  section.more-about-us .more-about-left {
    height: auto;
    border-radius: 10px 10px 0px 0px;
  }
}
@media (max-width: 576px) {
  section.more-about-us .more-about-left {
    padding: 40px 60px;
  }
}
@media (max-width: 488px) {
  section.more-about-us .more-about-left {
    padding: 40px 20px;
  }
}
@media (max-width: 388px) {
  section.more-about-us .more-about-left {
    padding: 40px 10px;
  }
}
@media (min-width: 1200px) {
  section.more-about-us .more-about-left .dl-app-imgs {
    margin-left: 60px;
  }
}

.about-us h3, .more-about-us h3 {
  margin-bottom: 28px;
  margin-left: 38px;
  position: relative;
  font-size: 2rem;
  font-weight: bolder;
}
.about-us h3::after, .more-about-us h3::after {
  content: "";
  height: 5px;
  border-radius: 2px;
  width: 25px;
  position: absolute;
  left: -35px;
  top: 0;
  bottom: 0;
  margin: auto;
  background-color: #B4974F;
}

.hero-section {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0 180px 0;
  color: #FFF;
  text-shadow: 0 0 5px #000;
}
.hero-section a.shop-name {
  max-width: 180px;
  border: none;
}
.hero-section .container {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.hero-section h1 {
  font-family: Roach;
  font-size: 4rem;
  margin: 50px 0;
}
@media (max-width: 1200px) {
  .hero-section h1 {
    font-size: 3.6rem;
  }
}
@media (max-width: 756px) {
  .hero-section h1 {
    font-size: 3rem;
  }
}
@media (max-width: 576px) {
  .hero-section h1 {
    font-size: 2.8rem;
    margin: 35px 0;
  }
}
@media (max-width: 488px) {
  .hero-section h1 {
    font-size: 2.4rem;
  }
}
@media (max-width: 388px) {
  .hero-section h1 {
    margin: 25px 0;
    font-size: 2rem;
  }
}
.hero-section a.shop-name {
  margin-top: 20px;
  border: none;
  max-width: 35%;
}
@media (max-width: 999px) {
  .hero-section a.shop-name {
    margin-top: 100px;
    max-width: 70%;
  }
}
.hero-section a.cta-btn {
  color: #FFF;
  font-size: 1.6rem;
}
@media (max-width: 1200px) {
  .hero-section a.cta-btn {
    font-size: 1.5rem;
  }
}
@media (max-width: 756px) {
  .hero-section a.cta-btn {
    font-size: 1.4rem;
  }
}
@media (max-width: 576px) {
  .hero-section a.cta-btn {
    font-size: 1.3rem;
  }
}
@media (max-width: 488px) {
  .hero-section a.cta-btn {
    font-size: 1.2rem;
  }
}
@media (max-width: 388px) {
  .hero-section a.cta-btn {
    font-size: 1rem;
  }
}

.cta-btn-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-content: flex-start;
}
.cta-btn-wrapper a {
  position: relative;
  display: inline-block;
  padding: 25px 30px;
  color: #B4974F;
  text-decoration: none;
  text-transform: uppercase;
  transition: 0.5s;
  letter-spacing: 4px;
  overflow: hidden;
}
.cta-btn-wrapper a:hover {
  background: #B4974F;
  color: #FFF;
  box-shadow: 0 0 5px #B4974F, 0 0 25px #B4974F, 0 0 50px #B4974F, 0 0 200px #B4974F;
  -webkit-box-reflect: below 1px linear-gradient(transparent, rgba(0, 0, 0, 0.3333333333));
}
.cta-btn-wrapper a span {
  position: absolute;
  display: block;
}
.cta-btn-wrapper a span:nth-child(1) {
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #B4974F);
  animation: animate1 1s linear infinite;
}
@keyframes animate1 {
  0% {
    left: -100%;
  }
  50%, 100% {
    left: 100%;
  }
}
.cta-btn-wrapper a span:nth-child(2) {
  top: -100%;
  right: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg, transparent, #B4974F);
  animation: animate2 1s linear infinite;
  animation-delay: 0.25s;
}
@keyframes animate2 {
  0% {
    top: -100%;
  }
  50%, 100% {
    top: 100%;
  }
}
.cta-btn-wrapper a span:nth-child(3) {
  bottom: 0;
  right: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(270deg, transparent, #B4974F);
  animation: animate3 1s linear infinite;
  animation-delay: 0.5s;
}
@keyframes animate3 {
  0% {
    right: -100%;
  }
  50%, 100% {
    right: 100%;
  }
}
.cta-btn-wrapper a span:nth-child(4) {
  bottom: -100%;
  left: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(360deg, transparent, #B4974F);
  animation: animate4 1s linear infinite;
  animation-delay: 0.75s;
}
@keyframes animate4 {
  0% {
    bottom: -100%;
  }
  50%, 100% {
    bottom: 100%;
  }
}

section.gallery {
  /* Grid spans */
}
section.gallery * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
section.gallery body {
  margin: 5px;
  font-family: Helvetica, sans-serif;
}
section.gallery #gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 1fr;
  grid-gap: 0.5em;
  height: calc(100vh - 10px);
}
section.gallery #gallery {
  display: grid;
  height: calc(100vh - 10px);
  grid-template: repeat(6, 1fr)/repeat(6, 1fr);
  grid-gap: 0.5em;
}
@media (max-width: 800px) {
  section.gallery #gallery {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: center;
    height: auto; /* allow height to grow naturally */
    padding: 0 1em;
  }
  section.gallery #gallery > div {
    width: 48%;
    margin: 1% 1% 2% 1%;
    height: auto; /* let height be auto to fit content */
    min-height: auto; /* override grid min-height */
  }
  section.gallery #gallery > div:nth-child(6n+1), section.gallery #gallery > div:nth-child(2), section.gallery #gallery > div:nth-child(4) {
    grid-column: auto !important;
    grid-row: auto !important;
  }
  section.gallery #gallery > div > img {
    width: 100%;
    height: auto; /* maintain aspect ratio */
    -o-object-fit: cover;
       object-fit: cover; /* crop if needed */
  }
}
@media (max-width: 350px) {
  section.gallery #gallery > div {
    width: 98%;
    margin: 1% 1% 2% 1%;
  }
}
section.gallery #gallery > div {
  overflow: hidden;
  position: relative;
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.2), 0 3px 20px 0 rgba(0, 0, 0, 0.19);
}
section.gallery #gallery > div > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all ease 1s;
}
section.gallery #gallery > a {
  position: relative;
  display: block;
  overflow: hidden;
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.2), 0 3px 20px 0 rgba(0, 0, 0, 0.19);
  text-decoration: none;
  color: inherit;
}
section.gallery #gallery > a:nth-child(6n+1) {
  grid-column: span 2;
  grid-row: span 2;
}
section.gallery #gallery > a:nth-child(2) {
  grid-column: span 3;
  grid-row: span 3;
}
section.gallery #gallery > a:nth-child(4) {
  grid-column: span 1;
  grid-row: span 2;
}
section.gallery .gallery-item {
  position: relative;
  width: 100%;
  height: 100%;
}
section.gallery .gallery-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: filter 1s ease;
}
section.gallery .overlay {
  font-family: Roach;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-weight: bold;
  font-size: 2rem;
  color: white;
  background-color: rgba(0, 0, 0, 0.4);
  mix-blend-mode: normal;
  display: flex;
  justify-content: center;
  align-items: center;
  text-shadow: 0 -1px 5px rgba(0, 0, 0, 0.8), -1px 0px 5px rgba(0, 0, 0, 0.6), 0 1px 5px rgba(0, 0, 0, 0.4), 1px 0px 5px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transition: opacity 1s ease;
}
section.gallery #gallery > a:hover img {
  filter: blur(4px);
}
section.gallery #gallery > a:hover .overlay {
  opacity: 1;
}

section.special {
  text-align: center;
  padding: 180px 0px 50px 80px;
  margin: 0;
  position: relative;
}
@media (max-width: 991px) {
  section.special {
    padding: 40px 0;
  }
}
section.special .special-title {
  font-size: 2rem;
}
@media (max-width: 1200px) {
  section.special .special-title {
    font-size: 1.5rem;
  }
}
@media (max-width: 756px) {
  section.special .special-title {
    margin-left: 35px;
    font-size: 1.4rem;
  }
}
@media (max-width: 576px) {
  section.special .special-title {
    margin-left: 30px;
    font-size: 1.3rem;
  }
}
@media (max-width: 488px) {
  section.special .special-title {
    margin-left: 25px;
    font-size: 1.2rem;
  }
}
@media (max-width: 388px) {
  section.special .special-title {
    margin-left: 20px;
    font-size: 1rem;
  }
}
section.special .special-title::before {
  content: "";
  height: 5px;
  border-radius: 2px;
  width: 25px;
  position: absolute;
  left: 80px;
  top: 0;
  bottom: 0;
  margin: auto;
  background-color: #B4974F;
}
@media (max-width: 756px) {
  section.special .special-title::before {
    left: -10px;
  }
}
section.special .menu-desc {
  text-align: left;
  font-size: 1.25rem;
}
@media (max-width: 1200px) {
  section.special .menu-desc {
    font-size: 1.2rem;
  }
}
@media (max-width: 756px) {
  section.special .menu-desc {
    font-size: 1.1rem;
  }
}
@media (max-width: 576px) {
  section.special .menu-desc {
    font-size: 1rem;
  }
}
@media (max-width: 388px) {
  section.special .menu-desc {
    font-size: 0.85rem;
  }
}
section.special .col-12 {
  padding-right: 0;
}
section.special h5 {
  font-weight: bolder;
  font-size: 18px;
}
section.special h4 {
  text-align: left;
  max-width: -moz-max-content;
  max-width: max-content;
  font-size: 2.5rem;
  margin-bottom: 0;
  font-weight: bolder;
  padding: 30px 50px 5px 50px;
  background-color: #161a1d;
  color: #fff;
  border-radius: 20px 20px 0 0;
  font-family: ArchivoBlack;
  text-transform: capitalize;
}
section.special h4 span {
  z-index: 4;
  position: relative;
  display: flex;
}
@media (max-width: 991px) {
  section.special h4 {
    font-size: 2rem;
  }
}
@media (max-width: 768px) {
  section.special h4 {
    font-size: 1.5rem;
    padding: 20px 20px 5px 20px;
  }
}
section.special .swiper {
  border-radius: 0 0 0 20px;
  padding: 32px 0px 32px 16px;
  margin: 60px 0;
}
section.special .swiper .swiper-button-prev,
section.special .swiper .swiper-button-next {
  background-image: url(../../imgs/main/Arrows.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-color: rgba(211, 211, 211, 0.4);
  padding: 20px;
  border-radius: 50%;
  border: none;
}
section.special .swiper .swiper-button-prev::after,
section.special .swiper .swiper-button-next::after {
  display: none;
}
section.special .swiper .swiper-button-next {
  right: 0;
}
section.special .swiper .swiper-button-prev {
  transform: rotate(180deg);
  left: 0;
}
section.special .card {
  background-color: rgba(22, 26, 29, 0.7);
  transition: 0.6s ease all;
  margin: auto;
  min-height: 425px;
  padding: 0;
  padding-bottom: 5px;
  border-radius: 15px;
  background-color: transparent;
  border: none;
}
@media (min-width: 1199px) {
  section.special .card {
    height: 550px;
  }
}
section.special .card .img-holder {
  padding: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
section.special .card .img-holder img {
  aspect-ratio: 3/4;
  max-width: 100%;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0px;
}
section.special .card .card-body {
  text-align: left;
  padding: 10px 5px;
}
section.special .card .card-body p {
  font-size: 13px;
  color: #d3d3d3;
  margin-bottom: 0;
}
section.special .card div.card-footer {
  background-color: unset !important;
  border: none !important;
  padding-top: 0;
  padding-left: 0;
  padding-right: 0;
  display: flex;
  justify-content: flex-start;
}
section.special .card div.card-footer a.btn {
  color: rgb(210.4780876494, 193.2629482072, 150.5219123506);
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  border: none !important;
  font-weight: bolder;
  height: 45px;
  margin: 0;
  max-width: 60%;
  border-radius: 30px;
  animation-duration: 1s;
  animation-iteration-count: 1;
}
section.special .card:hover {
  transform: scale(1.04);
}
section.special .card:hover .img-holder::after {
  color: #B4974F;
  font-size: 25px;
}
section.special .card:hover .card-footer a.btn {
  border: none;
  color: rgb(189.1434262948, 163.6788844622, 100.4565737052);
}

.menu-banner .banner-content {
  background-image: url(../../imgs/hero/Lamegos-Wishaw-meal-deals.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: 25px;
  margin: 0 auto;
  padding: 30px;
  min-height: 570px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.4235294118);
}
@media (max-width: 576px) {
  .menu-banner .banner-content {
    padding: 10px;
  }
}
.menu-banner .banner-content h2 {
  color: #B4974F;
  font-weight: bolder;
  letter-spacing: -0.1rem;
  font-size: 50px;
  text-transform: capitalize;
  text-shadow: -5px 0px #000;
}
@media (max-width: 991px) {
  .menu-banner .banner-content h2 {
    font-size: 35px;
  }
}
@media (max-width: 576px) {
  .menu-banner .banner-content h2 {
    font-size: 30px;
  }
}
.menu-banner .banner-content a {
  background-color: #B4974F;
  border-radius: 40px;
  width: 200px;
  height: 50px;
  color: #B4974F;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-weight: 800;
  text-transform: capitalize;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .menu-banner .banner-content a {
    font-size: 15px;
    padding: 10px;
    width: 150px;
  }
}
@media (max-width: 576px) {
  .menu-banner .banner-content a {
    width: 150px;
    font-size: 13px;
  }
}
.menu-banner .banner-content a:hover {
  color: #B4974F;
  border-color: #B4974F;
  background-color: #fff !important;
}

.menu-slider {
  padding: 40px 0;
}
.menu-slider .swiper-wrapper {
  padding: 50px 0;
}
.menu-slider .card {
  border: none;
}
.menu-slider img {
  border-radius: 25px;
}
.menu-slider .swiper-pagination {
  bottom: 0;
}
.menu-slider .swiper-pagination-bullet-active {
  background-color: #B4974F;
}

#myBtn {
  display: none;
  position: fixed;
  bottom: 80px;
  left: 25px;
  z-index: 3;
  font-size: 18px;
  border: 1px solid #ffffff;
  outline: none;
  background-color: #B4974F;
  color: #ffffff;
  cursor: pointer;
  padding: 6px 11px 6px 11px;
  border-radius: 50%;
}
#myBtn:hover {
  color: #B4974F;
  border: 1px solid #B4974F;
  background-color: #fff;
  box-shadow: #161a1d 0px 7px 29px 0px;
}

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

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

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

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

footer {
  background-color: #161a1d;
}
footer .shop-name img {
  width: 220px;
  height: auto;
}
@media (max-width: 999px) {
  footer .shop-name img {
    width: 200px;
  }
}
@media (max-width: 756px) {
  footer .shop-name img {
    width: 180px;
  }
}
@media (max-width: 576px) {
  footer .shop-name img {
    width: 160px;
  }
}
footer section.footer {
  margin: 80px 60px;
  padding: 0;
}
@media (max-width: 756px) {
  footer section.footer {
    margin: 80px 50px;
  }
}
@media (max-width: 576px) {
  footer section.footer {
    margin: 60px 40px;
  }
}
@media (max-width: 488px) {
  footer section.footer {
    margin: 40px 30px;
  }
}
@media (max-width: 388px) {
  footer section.footer {
    margin: 40px 15px;
  }
}
footer section.footer h6 {
  margin-left: -20px;
  color: #B4974F;
  font-size: 1.6rem;
}
@media (max-width: 1200px) {
  footer section.footer h6 {
    font-size: 1.5rem;
  }
}
@media (max-width: 756px) {
  footer section.footer h6 {
    font-size: 1.4rem;
  }
}
@media (max-width: 576px) {
  footer section.footer h6 {
    font-size: 1.3rem;
  }
}
@media (max-width: 488px) {
  footer section.footer h6 {
    font-size: 1.2rem;
  }
}
@media (max-width: 388px) {
  footer section.footer h6 {
    font-size: 1rem;
  }
}
footer section.footer svg {
  fill: #d3d3d3;
}
footer section.footer svg:hover {
  fill: #B4974F;
}
footer section.footer ul {
  padding-left: 20px;
  list-style: none;
}
footer section.footer ul li {
  line-height: 2em;
  font-size: 1.3rem;
}
@media (max-width: 1200px) {
  footer section.footer ul li {
    font-size: 1.2rem;
  }
}
@media (max-width: 756px) {
  footer section.footer ul li {
    font-size: 1.1rem;
  }
}
@media (max-width: 576px) {
  footer section.footer ul li {
    font-size: 1rem;
  }
}
@media (max-width: 388px) {
  footer section.footer ul li {
    font-size: 0.85rem;
  }
}
footer section.footer ul li a {
  color: #d3d3d3;
}
footer section.footer ul li a:hover {
  color: #B4974F;
}
footer section.footer .get-in-touch {
  padding: 0;
  margin: 0;
}
footer section.footer li.contact-us {
  line-height: 4em;
}
footer section.footer li.contact-us svg {
  width: 25px;
  fill: #FFF;
  margin-right: 10px;
}
footer section.footer li.contact-us svg:hover {
  fill: #B4974F;
}

iframe {
  border-radius: 0px;
  height: 160px;
  width: 100vw;
}/*# sourceMappingURL=style2.css.map */