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

@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: #F6EADA;
  color: #000;
  margin: 0;
  padding: 0;
  height: 100%;
  overflow-x: hidden;
}

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;
  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: 90vh;
  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/Marigold-Kilmacolm.jpg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
@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: #532000;
}

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

nav li:nth-of-type(4) {
  background-color: rgb(255, 202.6972972973, 113.4);
}

nav li:nth-of-type(5) {
  background-color: #ca6623;
}

/* ====================================
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: #ECA731;
  }
  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: #ECA731;
  }
  100% {
    transform: translateY(0);
    background-color: #fff;
  }
}
@keyframes animate-middle-bar {
  0% {
    background-color: #fff;
  }
  80% {
    background-color: #ECA731;
  }
  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: #ECA731;
  }
  50% {
    transform: translateY(-9px);
  }
  80% {
    transform: translateY(-5px);
    background-color: #ECA731;
  }
  100% {
    transform: translateY(0);
    background-color: #fff;
  }
}
@keyframes animate-out-middle-bar {
  0% {
    background-color: #fff;
  }
  80% {
    background-color: #fff;
  }
  100% {
    background-color: #ECA731;
  }
}
.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: 1200px) {
  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;
  padding: 36px;
  background-color: rgb(255, 197.5, 98.6);
  z-index: 0;
}
@media (max-width: 999px) {
  section.about-us .about-left {
    border-radius: 10px 10px 0px 0px;
    height: auto;
    padding: 10px;
    -webkit-border-radius: 10px 10px 0px 0px;
    -moz-border-radius: 10px 10px 0px 0px;
    -ms-border-radius: 10px 10px 0px 0px;
    -o-border-radius: 10px 10px 0px 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: 260px;
  height: 260px;
  background-image: url(../../imgs/icons/tajmahal-icon.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;
  padding: 60px;
  color: #0b090a;
  background-color: #ffe1ad;
  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: #532000;
  font-family: ArchivoBlack;
}
section.about-us a.cta-btn {
  margin-top: 20px;
  color: #fff;
  background-color: #532000;
  padding: 12px 25px;
  border-radius: 10px;
  font-weight: bolder;
  font-size: 1.2rem;
  border: 1px solid #532000;
  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: transparent;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  color: #532000;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

section.more-about-us {
  margin: 0;
  padding: 80px 30px;
}
@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 .Opening_hours {
  padding: 40px;
  border-radius: 10px 0px 0px 10px;
  background-color: rgb(255, 217.5365853659, 152.6);
  z-index: 0;
}
@media (max-width: 1200px) {
  section.more-about-us .Opening_hours {
    padding: 20px;
  }
}
@media (max-width: 999px) {
  section.more-about-us .Opening_hours {
    border-radius: 0 0 10px 10px;
    height: auto;
    margin-bottom: 24px;
  }
}
@media (max-width: 576px) {
  section.more-about-us .Opening_hours {
    padding: 40px 60px;
  }
}
@media (max-width: 488px) {
  section.more-about-us .Opening_hours {
    padding: 40px 20px;
  }
}
@media (max-width: 388px) {
  section.more-about-us .Opening_hours {
    padding: 40px 10px;
  }
}
section.more-about-us .Opening_hours #openinghour {
  padding-inline: 100px;
  line-height: 2em;
  font-size: 1.2rem;
}
@media (max-width: 1200px) {
  section.more-about-us .Opening_hours #openinghour {
    font-size: 1.15rem;
    padding-inline: 30px;
  }
}
@media (max-width: 756px) {
  section.more-about-us .Opening_hours #openinghour {
    font-size: 1.1rem;
    padding-inline: 50px;
  }
}
@media (max-width: 576px) {
  section.more-about-us .Opening_hours #openinghour {
    font-size: 1rem;
    padding-inline: 20px;
  }
}
@media (max-width: 388px) {
  section.more-about-us .Opening_hours #openinghour {
    font-size: 0.85rem;
    padding-inline: 10px;
  }
}
section.more-about-us .Opening_hours img {
  border-radius: 0px 10px 10px 0px;
}
section.more-about-us .dl-app {
  border-radius: 10px;
  padding: 60px 80px;
  background-color: #ffebc9;
  z-index: 0;
}
@media (max-width: 1200px) {
  section.more-about-us .dl-app {
    padding: 40px;
  }
}
@media (max-width: 999px) {
  section.more-about-us .dl-app {
    border-radius: 10px 10px 0px 0px;
  }
}
@media (max-width: 576px) {
  section.more-about-us .dl-app {
    padding: 40px 60px;
  }
}
@media (max-width: 488px) {
  section.more-about-us .dl-app {
    padding: 40px 20px;
  }
}
@media (max-width: 388px) {
  section.more-about-us .dl-app {
    padding: 40px 10px;
  }
}
@media (min-width: 1200px) {
  section.more-about-us .dl-app .dl-app-imgs {
    margin-left: 60px;
  }
}
section.more-about-us .dl-app-link {
  position: relative;
  z-index: 99;
}
@media (max-width: 1200px) {
  section.more-about-us .dl-app-link {
    max-width: 150px;
  }
}

.about-us h3,
.more-about-us h3 {
  margin-bottom: 28px;
  margin-left: 38px;
  position: relative;
  font-size: 2rem;
  font-weight: bolder;
  font-family: ArchivoBlack;
}
@media (max-width: 1200px) {
  .about-us h3,
  .more-about-us h3 {
    font-size: 1.5rem;
  }
}
.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: #ECA731;
}
.about-us h4,
.more-about-us h4 {
  margin-bottom: 28px;
  margin-left: 38px;
  position: relative;
  font-size: 1.6rem;
  font-weight: bolder;
  font-family: ArchivoBlack;
}

.app-mockup {
  position: relative;
  justify-content: center;
  width: 50%;
  margin-top: 100px;
  background: rgba(0, 0, 0, 0);
  transform: rotate(-25deg) skew(25deg) scale(0.8);
  transition: 0.5s;
}
@media (max-width: 991px) {
  .app-mockup {
    width: 40%;
    transform: rotate(-11deg) skew(11deg) scale(0.7);
    -webkit-transform: rotate(-11deg) skew(11deg) scale(0.7);
    -moz-transform: rotate(-11deg) skew(11deg) scale(0.7);
    -ms-transform: rotate(-11deg) skew(11deg) scale(0.7);
    -o-transform: rotate(-11deg) skew(11deg) scale(0.7);
  }
}
@media (max-width: 576px) {
  .app-mockup {
    width: 60%;
    margin-top: 60px;
  }
}
.app-mockup img.screens {
  position: absolute;
  width: 100%;
  transition: 0.5s;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}
.app-mockup:hover img:nth-child(4) {
  transform: translate(160px, -160px);
  opacity: 1;
}
.app-mockup:hover img:nth-child(3) {
  transform: translate(120px, -120px);
  opacity: 0.8;
}
.app-mockup:hover img:nth-child(2) {
  transform: translate(80px, -80px);
  opacity: 0.6;
}
.app-mockup:hover img:nth-child(1) {
  transform: translate(40px, -40px);
  opacity: 0.4;
}

#myModal .modal-dialog {
  max-width: 90%;
}
#myModal .close {
  color: #012985;
}

.modal-content {
  background-image: url(../../imgs/hero/modal-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  color: #012985;
  text-align: left;
}
@media (max-width: 400px) {
  .modal-content {
    text-align: center;
  }
}
.modal-content .modal-header,
.modal-content .modal-body {
  padding: 10px 10px 0 10px;
}
.modal-content .modal-header {
  border: none;
}
.modal-content .modal-header h6 {
  font-size: 13px;
}
.modal-content .modal-body {
  padding: 0;
}
.modal-content .modal-body img {
  max-width: 140px;
}

.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;
  position: relative;
}
.hero-section:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 500px;
  height: 100vh;
  background: url(../../imgs/hero/Marigold-Kilmacolm.jpg);
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: center;
  box-shadow: 20px 0 70px rgba(0, 0, 0, 0.2), -20px 0 70px rgba(0, 0, 0, 0.2);
  background-size: 100%;
  animation: animate 20s ease-in-out infinite;
  -webkit-animation: animate 20s ease-in-out infinite;
}
@keyframes animate {
  0%, 100% {
    left: 0px;
  }
  50% {
    left: calc(100% - 300px);
  }
}
.hero-section a.shop-name {
  margin-top: 10px;
  max-width: 150px;
  border: none;
}
.hero-section a.shop-name img {
  max-width: 150px;
}
@media (max-width: 991px) {
  .hero-section a.shop-name img {
    max-width: 120px;
  }
}
.hero-section .container {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.hero-section p {
  margin-top: 30px;
}
.hero-section h1 {
  font-family: ArchivoBlack;
  font-size: 2.5rem;
  margin: 0 0 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: 5px 0;
  }
}
@media (max-width: 488px) {
  .hero-section h1 {
    font-size: 2.4rem;
  }
}
@media (max-width: 388px) {
  .hero-section h1 {
    font-size: 2rem;
  }
}
.hero-section a.cta-btn {
  color: #fff;
  font-family: ArchivoBlack;
  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: #ECA731;
  text-decoration: none;
  text-transform: uppercase;
  transition: 0.5s;
  letter-spacing: 4px;
  overflow: hidden;
}
.cta-btn-wrapper a:hover {
  background: #ECA731;
  color: #fff;
  box-shadow: 0 0 5px #ECA731, 0 0 25px #ECA731, 0 0 50px #ECA731, 0 0 200px #ECA731;
  -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, #ECA731);
  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, #ECA731);
  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, #ECA731);
  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, #ECA731);
  animation: animate4 1s linear infinite;
  animation-delay: 0.75s;
}
@keyframes animate4 {
  0% {
    bottom: -100%;
  }
  50%, 100% {
    bottom: 100%;
  }
}

section.gallery {
  padding: 80px 0;
  position: relative;
  /* Main CSS */
}
@media (max-width: 992px) {
  section.gallery {
    padding: 80px 0;
  }
}
section.gallery::before {
  position: absolute;
  content: "";
  top: 0%;
  left: 20px;
  background-image: url(../../imgs/icons/burger-icon.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 200px;
  height: 200px;
}
@media (max-width: 991px) {
  section.gallery::before {
    width: 150px;
    height: 150px;
  }
}
@media (max-width: 768px) {
  section.gallery::before {
    width: 100px;
    height: 100px;
  }
}
section.gallery h3 {
  color: #532000;
  font-size: 50px;
  line-height: 50px;
  margin: 10px 0 50px 0;
  font-family: ArchivoBlack;
  text-align: center;
}
@media (max-width: 768px) {
  section.gallery h3 {
    font-size: 35px;
  }
}
section.gallery .gallery-img-start {
  width: 150px;
  position: absolute;
  top: 100px;
  left: 40px;
}
@media (max-width: 992px) {
  section.gallery .gallery-img-start {
    display: none;
  }
}
section.gallery .gallery-img-end {
  width: 150px;
  position: absolute;
  bottom: 100px;
  right: 40px;
}
@media (max-width: 992px) {
  section.gallery .gallery-img-end {
    display: none;
  }
}
section.gallery .gallery-card {
  margin-bottom: 20px;
  border-radius: 8px;
  background-repeat: no-repeat;
  background-size: cover;
}
section.gallery .gallery-card #trapezoid {
  border-left: 50px solid transparent;
  border-right: 50px solid transparent;
  height: 0;
  width: 100px;
  background-color: rgba(7, 5, 64, 0.7411764706);
}
section.gallery .gallery-card .gallery-card-content {
  background-color: rgba(7, 5, 64, 0.7411764706);
  height: 100%;
  padding: 20px 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 8px 0 0 8px;
}
section.gallery .gallery-card .gallery-card-content img {
  width: 200px;
}
section.gallery .gallery-card .gallery-card-content p {
  color: #fdfdfd;
  font-size: 24px;
  line-height: 40px;
}
section.gallery .gallery-card .gallery-card-content h4 {
  color: #fdfdfd;
  font-size: 32px;
}
section.gallery .gallery-card .gallery-card-content .gallery-card-content-btn {
  padding: 10px 20px;
  margin-top: 50px;
  color: #fdfdfd;
  border-radius: 8px;
  width: -moz-fit-content;
  width: fit-content;
  align-items: center;
}
section.gallery .gallery-card .gallery-card-content .gallery-card-content-btn:hover {
  text-decoration: none;
}
section.gallery img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  display: inline-block;
}
section.gallery .grid-wrapper > div {
  display: flex;
  justify-content: center;
  align-items: center;
}
section.gallery .grid-wrapper > div > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px;
  transition: ease-in-out 0.7s;
}
section.gallery .grid-wrapper > div > img:hover {
  transform: scale(1.08);
}
section.gallery .grid-wrapper {
  display: grid;
  grid-gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  grid-auto-rows: 200px;
  grid-auto-flow: dense;
}
section.gallery .grid-wrapper .wide {
  grid-column: span 2;
}
section.gallery .grid-wrapper .tall {
  grid-row: span 2;
}
section.gallery .grid-wrapper .big {
  grid-column: span 2;
  grid-row: span 2;
}

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;
  font-family: ArchivoBlack;
}
@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 .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: #532000;
  color: #532000;
  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 {
  padding: 32px 0px 32px 16px;
}
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(202, 102, 35, 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(83, 32, 0, 0.7);
  transition: 0.6s ease all;
  margin: auto;
  padding: 0;
  padding-bottom: 5px;
  border-radius: 15px;
  background-color: transparent;
  border: none;
}
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 h5 {
  font-family: ArchivoBlack;
}
section.special .card .card-body p {
  font-size: 13px;
  color: #532000;
}
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;
  display: flex;
}
section.special .card div.card-footer a.btn {
  color: #ECA731;
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  border: none !important;
  background-color: #532000;
  display: flex;
  font-weight: bolder;
  animation-duration: 1s;
  animation-iteration-count: 1;
}
section.special .card:hover {
  transform: scale(1.04);
}
section.special .card:hover .img-holder::after {
  color: #ECA731;
  font-size: 25px;
}
section.special .card:hover .card-footer a.btn {
  border: none;
  color: rgb(238.584, 178.968, 77.016);
}

.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: #ECA731;
  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: #ECA731;
  border-radius: 40px;
  width: 200px;
  height: 50px;
  color: #ECA731;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-weight: 800;
  text-transform: capitalize;
}
@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: #ECA731;
  border-color: #ECA731;
  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: #ECA731;
}

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

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

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

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

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

footer {
  text-align: left;
}
@media (max-width: 768px) {
  footer {
    text-align: center;
  }
}
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: #ECA731;
  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: #532000;
}
footer section.footer svg:hover {
  fill: #ECA731;
}
footer section.footer ul {
  padding-left: 20px;
  list-style: none;
}
footer section.footer ul li {
  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: #532000;
}
footer section.footer ul li a:hover {
  color: #ECA731;
}
footer section.footer .get-in-touch {
  padding: 0;
  margin: 0;
}
footer section.footer li.contact-us {
  padding: 10px 0;
}
footer section.footer li.contact-us svg {
  width: 25px;
  fill: #532000;
  margin-right: 10px;
}
footer section.footer li.contact-us svg:hover {
  fill: #ECA731;
}

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