@charset "UTF-8";
.main-color {
  color: #FBA600;
}

@font-face {
  font-family: Quicksand;
  src: url(../../Fonts/Quicksand/Quicksand-Regular.ttf);
}
@font-face {
  font-family: Draconis;
  src: url(../../Fonts/Draconis/Draconis.otf);
}
* {
  box-sizing: border-box;
}

html,
body {
  background-color: #fff;
  font-family: Quicksand;
  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;
  }
}
/* header */
.openmenuu {
  width: 100% !important;
}

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

header {
  padding: 10px 0;
  position: relative;
  z-index: 9;
  background-image: linear-gradient(to bottom, #000, transparent);
}
header .navbar-brand {
  font-size: 1rem !important;
}
header .shop-logo {
  max-width: 200px;
  border-radius: 50%;
}
@media (max-width: 480px) {
  header .shop-logo {
    max-width: 160px;
  }
}
header .order-btn {
  border: 2px solid #000;
  color: #000;
  background-color: #ffe700;
  padding: 10px 25px;
  border-radius: 20px;
  font-weight: bolder;
}
header section.menu-section span.open-menu {
  align-self: center;
  z-index: 10;
  width: 130px;
  justify-content: flex-end;
  display: flex;
}
header section.menu-section span.open-menu svg {
  fill: #FBA600;
}
header section.menu-section #myNav {
  display: block;
}
header section.menu-section nav {
  padding: 10px 0;
}
header section.menu-section div.mobile-overlay {
  height: 100%;
  width: 0%;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.93);
  overflow-x: hidden;
  transition: width 0.45s;
}
header section.menu-section div.mobile-overlay .overlay-content {
  justify-content: center;
  position: relative;
  top: 15%;
  width: 100%;
  text-align: center;
}
@media (min-width: 768px) {
  header section.menu-section div.mobile-overlay .overlay-content > div#navbarNavAltMarkup {
    display: flex;
    flex-direction: row;
  }
}
header section.menu-section div.mobile-overlay .overlay-content .closebtn {
  text-decoration: unset;
  position: absolute;
  font-size: 20px;
  top: 0%;
  right: 10%;
  font-size: 26px;
  z-index: 100;
  color: #FBA600;
}
header section.menu-section div.mobile-overlay .overlay-content a.nav-link {
  color: #fff;
  font-size: 19px;
  font-weight: bolder;
  border-bottom: 1px solid transparent;
  transition: ease-in-out 0.4s;
}
header section.menu-section div.mobile-overlay .overlay-content a.nav-link:hover {
  border-bottom: 1px solid #FBA600;
  color: #FBA600 !important;
}
header section.menu-section div.mobile-overlay .overlay-content a.nav-link:hover svg {
  fill: #FBA600 !important;
}
header section.menu-section div.mobile-overlay .overlay-content a.nav-link.active {
  border-bottom: 1px solid #FBA600;
  color: #FBA600 !important;
}
header section.menu-section div.mobile-overlay .overlay-content a.nav-link svg {
  fill: #fff;
  font-weight: 600;
  width: 25px;
  height: 25px;
}
header section.menu-section div.mobile-overlay .overlay-content a.btn {
  background-color: #FBA600;
  color: black;
}
header section.menu-section div.mobile-overlay .overlay-content a.login-btn {
  background-color: #FBA600;
  border-radius: 35px 35px 12px 12px !important;
  padding: 8px 15px 8px 15px;
  color: #fff;
}

section.about-us {
  text-align: left;
  z-index: 999;
  position: relative;
  padding: 80px 0;
}
@media (max-width: 1200px) {
  section.about-us {
    text-align: center;
  }
}
section.about-us video {
  width: 95%;
  border-radius: 16px;
}
section.about-us img.about-img {
  border-radius: 16px;
}
@media (max-width: 991px) {
  section.about-us img.about-img {
    margin: 30px 0;
  }
}
section.about-us h2 {
  font-family: Draconis;
  font-weight: bolder;
  display: block;
  font-size: 3.4rem;
  align-items: self-start;
}
@media (max-width: 1200px) {
  section.about-us h2 {
    font-size: 3rem;
    text-align: center;
  }
}
@media (max-width: 991px) {
  section.about-us h2 {
    font-size: 2.5rem;
  }
}
@media (max-width: 576px) {
  section.about-us h2 {
    font-size: 2.1rem;
  }
}
section.about-us h2 img {
  margin: -20px 0px 0 0;
  width: 50px;
  border-radius: 0 0 40px 40px;
  animation: opacityy infinite;
  animation-duration: 1s;
}
@media (max-width: 1290px) {
  section.about-us h2 img {
    max-width: 36px;
  }
}
@media (max-width: 576px) {
  section.about-us h2 img {
    max-width: 25px;
    margin: 0 6px 0 0;
  }
}
@keyframes opacityy {
  0% {
    opacity: 1;
  }
  25% {
    opacity: 0.7;
  }
  50% {
    opacity: 0.3;
  }
  75% {
    opacity: 0.7;
  }
  100% {
    opacity: 1;
  }
}
section.about-us .order-btn {
  margin: 10px;
}
section.about-us .order-btn .fire {
  background-color: #fff;
  border-radius: 50%;
  width: 40px;
  margin-right: 8px;
}
@media (max-width: 1200px) {
  section.about-us .order-btn {
    text-align: center;
    margin: 10px auto;
  }
}
section.about-us p {
  font-size: 20px;
  margin-bottom: 10px;
  max-width: 96%;
}
@media (max-width: 1200px) {
  section.about-us p {
    text-align: center;
    max-width: 100%;
    margin: 10px auto;
    font-size: 16px;
  }
}
section.about-us .row.parallax {
  background-image: url(../../imgs/hero/Rolling-Smoke-Clydebank-food.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  min-height: 500px;
  border-radius: 24px;
  align-items: center;
  display: flex;
  justify-content: center;
}
@media (max-width: 991px) {
  section.about-us .row.parallax {
    min-height: 300px;
    background-attachment: scroll;
  }
}
section.about-us .row.parallax img {
  width: 500px;
  margin: auto;
}
@media (max-width: 991px) {
  section.about-us .row.parallax img {
    width: 300px;
  }
}

.animation-right {
  transform-origin: 50%;
  animation: linear scale-down-on-scroll;
  animation-timeline: view() !important;
  animation-range: exit-crossing 0% exit-crossing 100% !important;
}
@keyframes scale-down-on-scroll {
  to {
    opacity: 0.5;
    translate: 60vi;
    rotate: 20deg;
    scale: 0.9;
  }
}
.animation-right img {
  -o-object-position: top left;
     object-position: top left;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
  width: 100%;
  display: block;
}

.animation-left {
  transform-origin: 50%;
  animation: linear scale-left-on-scroll;
  animation-timeline: view() !important;
  animation-range: exit-crossing 0% exit-crossing 100% !important;
}
@keyframes scale-left-on-scroll {
  to {
    opacity: 0.5;
    translate: -60vi;
    rotate: -20deg;
    scale: 0.9;
  }
}
.animation-left img {
  -o-object-position: bottom right;
     object-position: bottom right;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
  width: 100%;
  display: block;
}

.fire {
  background-color: #fff;
  border-radius: 50%;
  width: 40px;
  margin-right: 8px;
}

.hero {
  position: relative;
  background-image: url(../../imgs/hero/Rolling-Smoke-Clydebank-burgers.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 30%;
  background-attachment: fixed;
}
.hero .hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  padding: 80px 0 180px 0;
}
@media (max-width: 991px) {
  .hero .hero-section {
    padding: 60px 0;
  }
}
.hero .hero-section .hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.hero .hero-section h1 {
  font-family: Draconis;
  font-weight: 400;
  font-style: Regular;
  font-size: 7rem;
  line-height: 80px;
  letter-spacing: 0%;
  margin-bottom: 24px;
  color: #fff;
  text-shadow: 0 0 5px #000;
}
@media (max-width: 1390px) {
  .hero .hero-section h1 {
    font-size: 80px;
  }
}
@media (max-width: 991px) {
  .hero .hero-section h1 {
    font-size: 40px;
    margin-bottom: 10px;
    line-height: 40px;
  }
}
@media (max-width: 380px) {
  .hero .hero-section h1 {
    font-size: 24px;
    margin-bottom: 10px;
    line-height: 25px;
  }
}
.hero .hero-section span {
  margin: 0 0 50px 0;
}
.hero .contact-items {
  position: absolute;
  left: 3%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  bottom: 10px;
}
@media (max-width: 1300px) {
  .hero .contact-items {
    display: none;
  }
}
.hero .contact-items li {
  list-style: none;
  margin-bottom: 16px;
}
.hero .contact-items li .border {
  border-left: 1px solid #fff;
  width: 1px;
  height: 200px;
}
.hero .contact-items li i img {
  max-width: 24px;
}
.hero .contact-items li span {
  font-weight: Regular;
  color: #fff;
  text-shadow: 0 0 5px #000;
  font-size: 16;
}

.SCALING_ANIMATION {
  transform: translateY(0); /* Initial transform state */
  animation-timeline: view();
  animation-range: entry 0% exit 100%; /* Start at entry, end at exit */
  animation-fill-mode: both; /* Ensures animation state is maintained */
  animation-name: SCaleup;
  animation-duration: 1s;
  animation-timing-function: ease-out;
}

@keyframes SCaleup {
  0% {
    opacity: 1;
    transform: scale(1);
    border-radius: 0;
  }
  50% {
    opacity: 1;
    transform: scale(1);
    border-radius: 0;
  }
  70% {
    opacity: 1;
    transform: scale(0.99);
    border-radius: 16px;
  }
  90% {
    opacity: 1;
    transform: scale(0.6);
    border-radius: 20px;
  }
  100% {
    opacity: 1;
    transform: scale(0.4);
  }
}
a.order-btn {
  padding: 12px 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  border: 2px dashed #000;
  font-family: Draconis;
  font-weight: 400;
  font-style: Regular;
  font-size: 32px;
  line-height: 48px;
  letter-spacing: 0%;
  text-align: center;
  background-color: #FBA600;
  color: #000;
  max-width: -moz-max-content;
  max-width: max-content;
  margin: 10px auto;
  border-radius: 8px;
  transition: ease-in-out 0.7s;
}
@media (max-width: 576px) {
  a.order-btn {
    font-size: 24px;
    margin-bottom: 10px;
    line-height: 25px;
  }
}
a.order-btn:hover {
  color: #FBA600;
  background-color: #fff;
  border-color: #FBA600;
}

section.gallery {
  padding: 40px 80px;
}
@media (max-width: 991px) {
  section.gallery {
    padding: 40px;
  }
}
@media (max-width: 991px) {
  section.gallery {
    padding: 40px 24px;
  }
}
section.gallery h3 {
  font-size: 3rem;
  text-align: center;
  color: #FBA600;
  margin-bottom: 50px;
}
@media (max-width: 991px) {
  section.gallery h3 {
    font-size: 2rem;
  }
}
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 {
  /* Grid spans */
}
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;
}

.deals {
  background-color: #fff;
  padding: 40px 0;
  position: relative;
}
.deals:after {
  position: absolute;
  content: "";
  background-image: url(../../imgs/gallery/deals-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  bottom: 0;
  left: 0;
  z-index: 0;
  width: 370px;
  height: 370px;
}
@media (max-width: 991px) {
  .deals:after {
    width: 300px;
    height: 300px;
    bottom: 100px;
  }
}
@media (max-width: 576px) {
  .deals:after {
    width: 200px;
    height: 200px;
    bottom: -100px;
  }
}
@media (max-width: 400px) {
  .deals:after {
    width: 140px;
    height: 140px;
  }
}
.deals::before {
  position: absolute;
  content: "";
  background-image: url(../../imgs/gallery/doner-kebab.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  top: 0;
  right: 0;
  z-index: 1;
  width: 370px;
  height: 370px;
}
@media (max-width: 991px) {
  .deals::before {
    top: 100px;
    width: 300px;
    height: 300px;
  }
}
@media (max-width: 576px) {
  .deals::before {
    width: 200px;
    height: 200px;
    top: 170px;
  }
}
@media (max-width: 400px) {
  .deals::before {
    width: 140px;
    height: 140px;
  }
}
.deals span {
  font-family: Draconis;
  font-weight: bolder;
  position: relative;
  z-index: 5;
  font-size: 4.5rem;
}
@media (max-width: 768px) {
  .deals span {
    font-size: 3rem;
  }
}
@media (max-width: 480px) {
  .deals span {
    font-size: 2rem;
  }
}
.deals img {
  border-radius: 20px;
  display: flex;
  justify-content: center;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.deals a {
  position: relative;
  z-index: 5;
}
.deals .deal-img {
  border-radius: 20px;
}
.deals .swiper {
  border-radius: 20px;
}
.deals .swiper-deal-reverse {
  transform: rotate(180deg);
}
.deals .swiper-deal-reverse img {
  transform: rotate(180deg);
}

footer {
  background-image: url(../../imgs/hero/chef.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 0 50%;
  padding: 140px 40px 40px 40px;
  position: relative;
  color: #000;
}
@media (max-width: 1200px) {
  footer {
    padding: 40px 0;
  }
}
footer img.shop-logo {
  width: 100%;
  width: 300px;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  footer img.shop-logo {
    max-width: 130px;
    margin-bottom: 10px;
  }
}
footer .social_media svg {
  fill: #FBA600;
}
footer .footer-title {
  margin-bottom: 50px;
  font-size: 5.5rem;
  line-height: 80px;
  text-align: center;
  font-weight: bold;
  text-transform: capitalize;
  display: flex;
  font-family: Draconis;
  font-weight: bolder;
  justify-content: center;
}
@media (max-width: 1300px) {
  footer .footer-title {
    font-size: 4rem;
    line-height: 79px;
  }
}
@media (max-width: 991px) {
  footer .footer-title {
    font-size: 3rem;
    line-height: 59px;
  }
}
@media (max-width: 768px) {
  footer .footer-title {
    font-size: 2.6rem;
    line-height: 59px;
  }
}
@media (max-width: 480px) {
  footer .footer-title {
    font-size: 2rem;
    line-height: 39px;
  }
}
footer ul {
  margin-top: 50px;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
}
footer ul li {
  margin: 8px 13px;
}
@media (max-width: 768px) {
  footer ul li {
    margin: 4px 8px;
  }
}
footer ul li a {
  color: #000;
}
footer ul li a:hover {
  color: #FBA600;
}

.tabs {
  @import url("https://fonts.googleapis.com/css?family=Raleway");
}
.tabs .flex-container {
  position: relative;
  height: 550px;
  width: 100%;
  transition: ease-in-out 0.7s;
  display: flex;
  overflow: hidden;
}
@media screen and (max-width: 991px) {
  .tabs .flex-container {
    flex-direction: column;
    height: unset;
  }
}
.tabs ul {
  list-style: none;
}
.tabs .flex-title {
  color: #FBA600;
  position: relative;
  font-size: 2.2rem;
  margin: auto;
  text-align: center;
  transform: rotate(90deg);
  top: 45%;
  display: flex;
  justify-content: center;
  transition: all 500ms ease;
}
@media screen and (max-width: 991px) {
  .tabs .flex-title {
    transform: rotate(0deg) !important;
    top: 60%;
    margin-bottom: 16px;
  }
}
.tabs .flex-about {
  opacity: 0;
  color: #f1f1f1;
  position: relative;
  width: 70%;
  font-size: 1.2rem;
  padding: 24px;
  top: 20%;
  border: 2px solid #f1f1f1;
  border-radius: 10px;
  line-height: 1.3;
  margin: auto;
  text-align: center;
  align-items: center;
  transform: rotate(0deg);
  transition: all 500ms ease;
}
@media screen and (max-width: 991px) {
  .tabs .flex-about {
    padding: 8px;
    border: 1px solid #f1f1f1;
  }
}
.tabs .flex-about a {
  color: #fff;
  align-items: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.tabs .flex-about a svg {
  width: 32px;
  margin-left: 8px;
}
.tabs .flex-slide {
  flex: 1;
  cursor: pointer;
  transition: all 500ms ease;
}
@media screen and (max-width: 991px) {
  .tabs .flex-slide {
    overflow: auto;
    overflow-x: hidden;
    padding: 24px;
  }
}
.tabs .flex-slide:hover {
  flex-grow: 3;
  min-height: 350px;
}
.tabs .flex-slide:hover .flex-about {
  opacity: 1;
}
.tabs .flex-slide:hover .flex-title {
  transform: rotate(0deg);
  top: 10%;
  bottom: auto;
}
.tabs ul {
  padding: 0;
}
.tabs .home {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../../imgs/tabs/Pizza–Aladdin–Dumbarton–Takeaway.jpg);
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
}
@media screen and (min-width: 991px) {
  .tabs .home {
    animation: aboutFlexSlide 3s 1;
    animation-delay: 0s;
  }
}
@keyframes aboutFlexSlide {
  0% {
    flex-grow: 1;
  }
  50% {
    flex-grow: 3;
  }
  100% {
    flex-grow: 1;
  }
}
@media screen and (min-width: 768px) {
  .tabs .flex-title-home {
    transform: rotate(90deg);
    top: 15%;
    animation: aboutFlexSlide 3s 1;
    animation-delay: 0s;
  }
}
@keyframes homeFlextitle {
  0% {
    transform: rotate(90deg);
    top: 15%;
  }
  50% {
    transform: rotate(0deg);
    top: 15%;
  }
  100% {
    transform: rotate(90deg);
    top: 15%;
  }
}
.tabs .flex-about-home {
  opacity: 0;
}
@media screen and (min-width: 768px) {
  .tabs .flex-about-home {
    animation: aboutFlexSlide 3s 1;
    animation-delay: 0s;
  }
}
@keyframes flexAboutHome {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.tabs .about {
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
}
.tabs .contact-form {
  width: 100%;
}
.tabs input {
  width: 100%;
}
.tabs textarea {
  width: 100%;
}
.tabs .contact {
  background-size: cover;
  background-position: 50% 50%;
  background-attachment: fixed;
}
.tabs .work {
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.tabs .branding {
  position: fixed;
  bottom: 20px;
  background: #fff;
  right: 20px;
  padding: 12px;
  box-sizing: border-box;
  border-radius: 56px;
  line-height: 0;
}
@media screen and (max-width: 991px) {
  .tabs .flex-about {
    opacity: 1;
  }
}
@media screen and (max-width: 991px) {
  .tabs .flex-slide {
    padding: 16px !important;
    min-height: 450px;
  }
}
@media screen and (max-width: 576px) {
  .tabs .flex-slide {
    padding: 10px;
  }
}
@media screen and (max-width: 576px) {
  .tabs p {
    font-size: 15px;
  }
}

.contactus .about.openinghours {
  margin: 8px;
  border-radius: 16px;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../../imgs/contact/opening.jpg);
  background-position: center;
}
.contactus .work.map {
  margin: 8px 4px;
  border-radius: 16px;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../../imgs/contact/map.jpg);
  background-position: 20% 20%;
}
.contactus .contact.getintouch {
  margin: 8px 4px 8px 8px;
  border-radius: 16px;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../../imgs/contact/getintouch.jpg);
  background-position: 30% 30%;
}
@media screen and (max-width: 991px) {
  .contactus .flex-about {
    opacity: 1;
  }
}
@media screen and (max-width: 991px) {
  .contactus .flex-slide {
    padding: 16px;
    min-height: unset;
  }
}

.copyright {
  text-align: center;
  margin-top: 20px;
  z-index: 99;
  position: relative;
}
.copyright .container {
  padding: 40px 0;
  border-top: 1px solid #000;
}
.copyright {
  color: #000;
}
.copyright p {
  color: #000;
  margin-bottom: 0;
  font-size: 16px;
}
@media (max-width: 480px) {
  .copyright p {
    font-size: 14px;
    line-height: 20px;
    padding: 5px;
  }
}

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

@media (max-width: 380px) {
  .modal-header {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  .modal-header .Modal-btn {
    margin-top: 10px;
  }
}
.modal-header .modal-title-container p {
  font-size: 14px;
  color: #000;
  margin-bottom: 0;
}
.modal-header .modal-title-container h6 {
  color: #000;
}
.modal-header .Modal-btn {
  background-color: #FBA600;
  padding: 8px 24px;
  color: #fff;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
}

/* Customize  Color Of Selection  */
::-moz-selection {
  background-color: #FBA600;
  color: white;
  z-index: 9;
}
::selection {
  background-color: #FBA600;
  color: white;
  z-index: 9;
}

::-moz-selection {
  background-color: #FBA600;
  color: white;
  z-index: 9;
}

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

::-webkit-scrollbar-thumb {
  background: #FBA600;
  border-radius: 10px;
  z-index: 9;
}

footer {
  background-image: url(../../imgs/hero/chef.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 0 50%;
  padding: 140px 40px 40px 40px;
  position: relative;
  color: #000;
}
@media (max-width: 1200px) {
  footer {
    padding: 40px 0;
  }
}
footer img.shop-logo {
  width: 100%;
  width: 300px;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  footer img.shop-logo {
    max-width: 130px;
    margin-bottom: 10px;
  }
}
footer .social_media svg {
  fill: #FBA600;
}
footer .footer-title {
  margin-bottom: 50px;
  font-size: 5.5rem;
  line-height: 80px;
  text-align: center;
  font-weight: bold;
  text-transform: capitalize;
  display: flex;
  font-family: Draconis;
  font-weight: bolder;
  justify-content: center;
}
@media (max-width: 1300px) {
  footer .footer-title {
    font-size: 4rem;
    line-height: 79px;
  }
}
@media (max-width: 991px) {
  footer .footer-title {
    font-size: 3rem;
    line-height: 59px;
  }
}
@media (max-width: 768px) {
  footer .footer-title {
    font-size: 2.6rem;
    line-height: 59px;
  }
}
@media (max-width: 480px) {
  footer .footer-title {
    font-size: 2rem;
    line-height: 39px;
  }
}
footer ul {
  margin-top: 50px;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
}
footer ul li {
  margin: 8px 13px;
}
@media (max-width: 768px) {
  footer ul li {
    margin: 4px 8px;
  }
}
footer ul li a {
  color: #000;
}
footer ul li a:hover {
  color: #FBA600;
}

.tabs {
  @import url("https://fonts.googleapis.com/css?family=Raleway");
}
.tabs .flex-container {
  position: relative;
  height: 550px;
  width: 100%;
  transition: ease-in-out 0.7s;
  display: flex;
  overflow: hidden;
}
@media screen and (max-width: 991px) {
  .tabs .flex-container {
    flex-direction: column;
    height: unset;
  }
}
.tabs ul {
  list-style: none;
}
.tabs .flex-title {
  color: #FBA600;
  position: relative;
  font-size: 2.2rem;
  margin: auto;
  text-align: center;
  transform: rotate(90deg);
  top: 45%;
  display: flex;
  justify-content: center;
  transition: all 500ms ease;
}
@media screen and (max-width: 991px) {
  .tabs .flex-title {
    transform: rotate(0deg) !important;
    top: 60%;
    margin-bottom: 16px;
  }
}
.tabs .flex-about {
  opacity: 0;
  color: #f1f1f1;
  position: relative;
  width: 70%;
  font-size: 1.2rem;
  padding: 24px;
  top: 20%;
  border: 2px solid #f1f1f1;
  border-radius: 10px;
  line-height: 1.3;
  margin: auto;
  text-align: center;
  align-items: center;
  transform: rotate(0deg);
  transition: all 500ms ease;
}
@media screen and (max-width: 991px) {
  .tabs .flex-about {
    padding: 8px;
    border: 1px solid #f1f1f1;
  }
}
.tabs .flex-about a {
  color: #fff;
  align-items: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.tabs .flex-about a svg {
  width: 32px;
  margin-left: 8px;
}
.tabs .flex-slide {
  flex: 1;
  cursor: pointer;
  transition: all 500ms ease;
}
@media screen and (max-width: 991px) {
  .tabs .flex-slide {
    overflow: auto;
    overflow-x: hidden;
    padding: 24px;
  }
}
.tabs .flex-slide:hover {
  flex-grow: 3;
  min-height: 350px;
}
.tabs .flex-slide:hover .flex-about {
  opacity: 1;
}
.tabs .flex-slide:hover .flex-title {
  transform: rotate(0deg);
  top: 10%;
  bottom: auto;
}
.tabs ul {
  padding: 0;
}
.tabs .home {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../../imgs/tabs/Pizza–Aladdin–Dumbarton–Takeaway.jpg);
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
}
@media screen and (min-width: 991px) {
  .tabs .home {
    animation: aboutFlexSlide 3s 1;
    animation-delay: 0s;
  }
}
@keyframes aboutFlexSlide {
  0% {
    flex-grow: 1;
  }
  50% {
    flex-grow: 3;
  }
  100% {
    flex-grow: 1;
  }
}
@media screen and (min-width: 768px) {
  .tabs .flex-title-home {
    transform: rotate(90deg);
    top: 15%;
    animation: aboutFlexSlide 3s 1;
    animation-delay: 0s;
  }
}
@keyframes homeFlextitle {
  0% {
    transform: rotate(90deg);
    top: 15%;
  }
  50% {
    transform: rotate(0deg);
    top: 15%;
  }
  100% {
    transform: rotate(90deg);
    top: 15%;
  }
}
.tabs .flex-about-home {
  opacity: 0;
}
@media screen and (min-width: 768px) {
  .tabs .flex-about-home {
    animation: aboutFlexSlide 3s 1;
    animation-delay: 0s;
  }
}
@keyframes flexAboutHome {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.tabs .about {
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
}
.tabs .contact-form {
  width: 100%;
}
.tabs input {
  width: 100%;
}
.tabs textarea {
  width: 100%;
}
.tabs .contact {
  background-size: cover;
  background-position: 50% 50%;
  background-attachment: fixed;
}
.tabs .work {
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.tabs .branding {
  position: fixed;
  bottom: 20px;
  background: #fff;
  right: 20px;
  padding: 12px;
  box-sizing: border-box;
  border-radius: 56px;
  line-height: 0;
}
@media screen and (max-width: 991px) {
  .tabs .flex-about {
    opacity: 1;
  }
}
@media screen and (max-width: 991px) {
  .tabs .flex-slide {
    padding: 16px !important;
    min-height: 450px;
  }
}
@media screen and (max-width: 576px) {
  .tabs .flex-slide {
    padding: 10px;
  }
}
@media screen and (max-width: 576px) {
  .tabs p {
    font-size: 15px;
  }
}

.contactus .about.openinghours {
  margin: 8px;
  border-radius: 16px;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../../imgs/contact/opening.jpg);
  background-position: center;
}
.contactus .work.map {
  margin: 8px 4px;
  border-radius: 16px;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../../imgs/contact/map.jpg);
  background-position: 20% 20%;
}
.contactus .contact.getintouch {
  margin: 8px 4px 8px 8px;
  border-radius: 16px;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../../imgs/contact/getintouch.jpg);
  background-position: 30% 30%;
}
@media screen and (max-width: 991px) {
  .contactus .flex-about {
    opacity: 1;
  }
}
@media screen and (max-width: 991px) {
  .contactus .flex-slide {
    padding: 16px;
    min-height: unset;
  }
}

.copyright {
  text-align: center;
  margin-top: 20px;
  z-index: 99;
  position: relative;
}
.copyright .container {
  padding: 40px 0;
  border-top: 1px solid #000;
}
.copyright {
  color: #000;
}
.copyright p {
  color: #000;
  margin-bottom: 0;
  font-size: 16px;
}
@media (max-width: 480px) {
  .copyright p {
    font-size: 14px;
    line-height: 20px;
    padding: 5px;
  }
}/*# sourceMappingURL=style2.css.map */