@import url(https://fonts.googleapis.com/css?family=Work+Sans:400,300,700|Open+Sans:400italic,300italic);
@font-face {
  font-family: Quicksand;
  src: url(../../Fonts/Quicksand/Quicksand-Regular.ttf);
}
@font-face {
  font-family: Akshar;
  src: url(../../Fonts/Akshar/Akshar-Bold.ttf);
}
#myModal .modal-content {
  flex-direction: row;
  padding: 20px;
}
#myModal .modal-content div {
  align-items: center;
}
#myModal .modal-content div p {
  margin: 0;
}
#myModal .modal-content h4 {
  font-size: 16px;
  font-weight: bolder;
}

* {
  box-sizing: border-box;
}

body {
  background-color: #ebebeb;
  color: #fff;
  margin: 0;
  padding: 8px;
  overflow-x: hidden;
}

.main-color {
  color: #af0b04;
}

a.btn {
  margin-top: 10px;
  background-color: #af0b04 !important;
  color: #fff;
  box-shadow: 0 0 10px rgb(0, 0, 0);
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
}

a.btn:hover {
  background-color: #af0b04 !important;
  color: #fff;
}

html {
  scroll-behavior: smooth;
}

.index-body {
  overflow-x: hidden;
}

.chef {
  width: 100%;
  height: 800px;
  padding: 5%;
  border-radius: 30px;
  opacity: 0.7;
}
.chef:hover {
  transition: ease-in-out 600ms;
  transform: scale(1.1);
  opacity: 1;
}

.snowflake {
  position: absolute;
  width: 27px;
  height: 27px;
  background: transparent;
  z-index: 999;
  background-image: url("https://www.mealzoforbusiness.co.uk/1/heart.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.gs_reveal {
  opacity: 0;
  visibility: hidden;
  will-change: transform, opacity;
}

.home {
  width: 100%;
  height: 700px;
  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/Golden-Fry-Fauldhouse-Food.jpg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  border-radius: 16px;
}
@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(5) {
  background-color: #ff0000;
}

nav li:nth-of-type(4) {
  background-color: #ff5a00;
}

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

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

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

/* ====================================
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: #de7818;
  }
  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: #de7818;
  }
  100% {
    transform: translateY(0);
    background-color: #fff;
  }
}
@keyframes animate-middle-bar {
  0% {
    background-color: #fff;
  }
  80% {
    background-color: #de7818;
  }
  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: #de7818;
  }
  50% {
    transform: translateY(-9px);
  }
  80% {
    transform: translateY(-5px);
    background-color: #de7818;
  }
  100% {
    transform: translateY(0);
    background-color: #fff;
  }
}
@keyframes animate-out-middle-bar {
  0% {
    background-color: #fff;
  }
  80% {
    background-color: #fff;
  }
  100% {
    background-color: #de7818;
  }
}
.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;
  }
}
.hero-section {
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 180px 0;
  color: #fff;
  text-shadow: 0 0 5px #000;
}
@media (max-width: 480px) {
  .hero-section {
    height: 540px;
  }
}
.hero-section a.shop-name {
  border: none;
}
.hero-section .container {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.hero-section h1 {
  font-size: 5rem;
  margin: 50px 0;
  letter-spacing: 0.03rem;
  color: #fff8e7;
}
@media (max-width: 1200px) {
  .hero-section h1 {
    font-size: 4rem;
  }
}
@media (max-width: 756px) {
  .hero-section h1 {
    font-size: 24px;
  }
}
@media (max-width: 576px) {
  .hero-section h1 {
    font-size: 24px;
    margin: 35px 0;
  }
}
@media (max-width: 488px) {
  .hero-section h1 {
    font-size: 24px;
  }
}
@media (max-width: 388px) {
  .hero-section h1 {
    margin: 25px 0;
    font-size: 24px;
  }
}
.hero-section a.shop-name {
  margin-top: 20px;
  border: none;
  width: 100%;
}
@media (max-width: 999px) {
  .hero-section a.shop-name {
    margin-top: 100px;
  }
}
@media (max-width: 768px) {
  .hero-section a.shop-name {
    margin-top: 10px;
  }
}
.hero-section a.shop-name img {
  max-width: 300px;
}
@media (max-width: 991px) {
  .hero-section a.shop-name img {
    max-width: 200px;
  }
}
.hero-section a.cta-btn {
  color: #fff;
  font-size: 1.6rem;
  position: relative;
  z-index: 8;
}
@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;
  }
}

.hero_svg {
  margin-top: -300px;
  z-index: 7;
  position: relative;
}
@media (max-width: 1290px) {
  .hero_svg {
    margin-top: -220px;
  }
}
@media (max-width: 991px) {
  .hero_svg {
    margin-top: -200px;
  }
}
@media (max-width: 768px) {
  .hero_svg {
    margin-top: -160px;
  }
}
@media (max-width: 576px) {
  .hero_svg {
    margin-top: -130px;
  }
}
@media (max-width: 480px) {
  .hero_svg {
    margin-top: -100px;
  }
}
@media (max-width: 380px) {
  .hero_svg {
    margin-top: -80px;
  }
}

.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: #fff;
  text-decoration: none;
  text-transform: capitalize;
  transition: 0.5s;
  letter-spacing: 4px;
  overflow: hidden;
}
.cta-btn-wrapper a:hover {
  background: #de7818;
  color: #fff;
  box-shadow: 0 0 5px #ddd, 0 0 25px #ddd, 0 0 50px #ddd, 0 0 200px #ddd;
  -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, #de7818);
  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, #de7818);
  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, #de7818);
  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, #de7818);
  animation: animate4 1s linear infinite;
  animation-delay: 0.75s;
}
@keyframes animate4 {
  0% {
    bottom: -100%;
  }
  50%, 100% {
    bottom: 100%;
  }
}

/* more about us section */
section.more-about-us-section {
  background-color: #fffdfc;
  margin-top: 160px;
}
section.more-about-us-section h3.main-section-heading {
  margin-bottom: 50px;
  text-transform: capitalize;
  font-weight: bolder;
  font-size: 35px;
}
section.more-about-us-section .circle-img {
  margin-bottom: 33px;
}
section.more-about-us-section h4 {
  margin-bottom: 15px;
}
section.more-about-us-section p {
  max-width: 300px;
}

section.about-us {
  padding: 80px 40px;
}
@media (max-width: 991px) {
  section.about-us {
    padding: 40px 0;
  }
}
section.about-us h3 {
  font-size: 3rem;
  letter-spacing: 0.04rem;
  color: #000;
}
@media (max-width: 756px) {
  section.about-us h3 {
    font-size: 24px;
  }
}
@media (max-width: 576px) {
  section.about-us h3 {
    font-size: 24px;
  }
}
@media (max-width: 576px) {
  section.about-us h3 {
    font-size: 24px;
  }
}
@media (max-width: 480px) {
  section.about-us h3 {
    font-size: 20px;
  }
}
@media (max-width: 991px) {
  section.about-us a {
    justify-content: center;
    margin: auto;
  }
}
section.about-us p {
  color: #000;
}
section.about-us .about-us {
  padding: 2rem 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
@media (max-width: 756px) {
  section.about-us .about-us {
    padding: 0px;
  }
}
section.about-us .image-panel {
  position: relative;
  margin: 0 auto;
}
section.about-us .swiper {
  padding: 20px 0;
}
section.about-us .swiper img {
  width: 100%;
}
section.about-us .image-panel img {
  width: 100%;
  height: auto;
}
section.about-us .image-panel.left-image img {
  border-radius: 150px 0px 0px 60px;
  z-index: 0;
}
section.about-us .image-panel.left-image:before {
  content: "";
  position: absolute;
  transition: transform 0.35s, all 0.7s;
  margin: 10px;
  height: 100%;
  width: 100%;
  border: 2px solid #af0b04;
  border-radius: 150px 0px 0px 60px;
  z-index: 2;
}
section.about-us .image-panel.right-image img {
  border-radius: 0px 60px 150px 0px;
}
section.about-us .image-panel.right-image:before {
  content: "";
  position: absolute;
  margin: 10px;
  height: 100%;
  width: 100%;
  transition: transform 0.35s, all 0.7s;
  border: 2px solid #af0b04;
  border-radius: 0px 60px 150px 0px;
  z-index: 2;
}
section.about-us .text-panel p {
  font-family: Quicksand;
}
section.about-us .divider-svg {
  display: inline-block;
  margin: 1.5rem auto;
}
@media (min-width: 992px) {
  section.about-us .divider-svg {
    margin: 1.5rem 0;
  }
}
section.about-us .discover-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: #000;
  font-size: 0.875rem;
  margin-top: 0;
  transition: color 0.3s;
  padding: 12px 40px;
  background-color: #fff !important;
}

.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: top left;
     object-position: top left;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
  width: 100%;
  display: block;
}

.gallery {
  background-image: url(../../imgs/hero/Our-gallery.jpg);
  background: conic-gradient(from 0deg, #003554, #000, #003554, #000, #003554);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 100px 24px;
}
.gallery .col-3 {
  padding: 12px;
}
@media (max-width: 1200px) {
  .gallery .col-3 {
    padding: 5px;
  }
}
@media (max-width: 991px) {
  .gallery .col-3 {
    padding: 2px;
  }
}
.gallery h3 {
  font-size: 72px;
  font-weight: 400;
  line-height: 58px;
  text-align: center;
  margin: 100px 0 40px 0;
  color: #fff;
}
@media (max-width: 576px) {
  .gallery h3 {
    font-size: 50px;
  }
}
@media (max-width: 480px) {
  .gallery h3 {
    font-size: 35px;
  }
}
.gallery h3 {
  position: relative;
}
.gallery h3::before {
  position: absolute;
  content: "Discover Our Amazing Gallery!";
  font-family: Akshar;
  font-size: 88px;
  font-weight: 400;
  line-height: 88px;
  text-align: center;
  color: rgba(214, 214, 214, 0.3215686275);
  top: -60px;
  margin: 0 auto;
  left: 0;
  right: 0;
}
@media (max-width: 991px) {
  .gallery h3::before {
    font-size: 50px;
  }
}
@media (max-width: 480px) {
  .gallery h3::before {
    font-size: 35px;
  }
}
.gallery a.gallery-link img {
  transition: all 2s ease-in-out;
}
.gallery a.gallery-link img:hover {
  transform: scale(1.06);
}

.awards {
  padding: 40px;
  color: #000;
  text-align: center;
}
.awards p {
  margin-top: 16px;
}
.awards a.btn {
  margin: auto;
}
.awards img {
  max-width: 100%;
  border-radius: 10px;
}

.accordion-wrapper h1 {
  text-align: center;
  font-family: Montserrat, sans-serif;
  color: #333;
}
.accordion-wrapper .accordion {
  width: 100%;
  height: 450px;
  overflow: hidden;
  margin: 50px auto;
}
.accordion-wrapper .accordion ul {
  width: 100%;
  display: table;
  table-layout: fixed;
  margin: 0;
  padding: 0;
}
.accordion-wrapper .accordion ul li {
  display: table-cell;
  vertical-align: bottom;
  position: relative;
  width: 16.666%;
  height: 450px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  transition: all 500ms ease;
}
.accordion-wrapper .accordion ul li div {
  display: block;
  overflow: hidden;
  width: 100%;
}
.accordion-wrapper .accordion ul li div a {
  display: block;
  height: 450px;
  width: 100%;
  position: relative;
  z-index: 3;
  vertical-align: bottom;
  padding: 15px 20px;
  box-sizing: border-box;
  color: #fff;
  text-decoration: none;
  font-family: Open Sans, sans-serif;
  transition: all 200ms ease;
}
.accordion-wrapper .accordion ul li div a * {
  opacity: 0;
  margin: 0;
  width: 100%;
  text-overflow: ellipsis;
  position: relative;
  z-index: 5;
  white-space: nowrap;
  overflow: hidden;
  transform: translateX(-20px);
  transition: all 400ms ease;
}
.accordion-wrapper .accordion ul li div a h2 {
  font-family: Montserrat, sans-serif;
  text-overflow: clip;
  font-size: 24px;
  text-transform: uppercase;
  margin-bottom: 2px;
  top: 360px;
}
.accordion-wrapper .accordion ul li div a p {
  top: 360px;
  font-size: 13.5px;
}
.accordion-wrapper .accordion ul li:nth-child(1) {
  background-image: url(../../imgs/accordion/Golden-Fry-Beef-Burger-Bathgate.jpg);
}
.accordion-wrapper .accordion ul li:nth-child(2) {
  background-image: url(../../imgs/accordion/Golden-Fry-Calzone-Bathgate.jpg);
}
.accordion-wrapper .accordion ul li:nth-child(3) {
  background-image: url(../../imgs/accordion/Golden-Fry-Chicken-Wings-Bathgate.jpg);
}
.accordion-wrapper .accordion ul li:nth-child(4) {
  background-image: url(../../imgs/accordion/Golden-Fry-Curry-and-Biryani-Bathgate.jpg);
}
.accordion-wrapper .accordion ul li:nth-child(5) {
  background-image: url(../../imgs/accordion/Golden-Fry-Doner-Kebab-Bathgate.jpg);
}
.accordion-wrapper .accordion ul li:nth-child(6) {
  background-image: url(../../imgs/accordion/Golden-Fry-Fish-and-Chips-Bathgate.jpg);
}
.accordion-wrapper .accordion ul:hover li, .accordion-wrapper .accordion ul:focus-within li {
  width: 8%;
}
@media screen and (max-width: 600px) {
  .accordion-wrapper .accordion ul:hover li, .accordion-wrapper .accordion ul:focus-within li {
    width: 100% !important;
  }
}
.accordion-wrapper .accordion ul li:focus {
  outline: none;
}
.accordion-wrapper .accordion ul:hover li:hover,
.accordion-wrapper .accordion ul li:focus, .accordion-wrapper .accordion ul:focus-within li:focus {
  width: 60%;
}
@media screen and (max-width: 600px) {
  .accordion-wrapper .accordion ul:hover li:hover,
  .accordion-wrapper .accordion ul li:focus, .accordion-wrapper .accordion ul:focus-within li:focus {
    width: 100% !important;
  }
}
.accordion-wrapper .accordion ul:hover li:hover a,
.accordion-wrapper .accordion ul li:focus a, .accordion-wrapper .accordion ul:focus-within li:focus a {
  background: rgba(0, 0, 0, 0.4);
}
.accordion-wrapper .accordion ul:hover li:hover a *,
.accordion-wrapper .accordion ul li:focus a *, .accordion-wrapper .accordion ul:focus-within li:focus a * {
  opacity: 1;
  transform: translateX(0);
}
.accordion-wrapper .accordion ul:hover li {
  width: 8% !important;
}
@media screen and (max-width: 600px) {
  .accordion-wrapper .accordion ul:hover li {
    width: 100% !important;
  }
}
.accordion-wrapper .accordion ul:hover li a * {
  opacity: 0 !important;
}
.accordion-wrapper .accordion ul:hover li:hover {
  width: 60% !important;
}
@media screen and (max-width: 600px) {
  .accordion-wrapper .accordion ul:hover li:hover {
    width: 100% !important;
  }
}
.accordion-wrapper .accordion ul:hover li:hover a {
  background: rgba(0, 0, 0, 0.4);
}
.accordion-wrapper .accordion ul:hover li:hover a * {
  opacity: 1 !important;
  transform: translateX(0);
}
@media screen and (max-width: 600px) {
  .accordion-wrapper body {
    margin: 0;
  }
  .accordion-wrapper .accordion {
    height: auto;
  }
  .accordion-wrapper .accordion ul li,
  .accordion-wrapper .accordion ul li:hover,
  .accordion-wrapper .accordion ul:hover li,
  .accordion-wrapper .accordion ul:hover li:hover {
    position: relative;
    display: table;
    table-layout: fixed;
    width: 100%;
    transition: none;
  }
}
.accordion-wrapper .about {
  text-align: center;
  font-family: "Open Sans", sans-serif;
  font-size: 12px;
  color: #666;
}
.accordion-wrapper .about a {
  color: blue;
  text-decoration: none;
}
.accordion-wrapper .about a:hover {
  text-decoration: underline;
}

.pin-section {
  padding: 40px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}
.pin-section h3 {
  font-size: 3rem;
  color: rgb(0, 0, 0);
  letter-spacing: 0.04rem;
}
.pin-section li {
  font-size: 4rem;
}
@media (max-width: 1200px) {
  .pin-section li {
    font-size: 2rem;
  }
}
.pin-section .content {
  width: 100%;
  margin: 0 auto;
  display: flex;
  padding: 0 10px;
  position: relative;
}
.pin-section .content ul {
  font-size: 30px;
  color: #272727;
  margin: 0;
  padding: 0;
  padding-right: 10px;
  list-style: none;
  flex-grow: 0;
}
.pin-section .content .fill {
  position: absolute;
  top: 0;
  left: -16px;
  width: 7px;
  border-radius: 8px;
  height: 100%;
  background-color: #af0b04;
}
.pin-section .content .right {
  flex-grow: 1;
  position: relative;
}
@media (max-width: 1200px) {
  .pin-section .content .right {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.pin-section .right .slide {
  position: absolute;
  width: 60%;
  top: 50%;
  transform: translateY(-50%);
  right: 1rem;
  opacity: 0;
  visibility: hidden;
  border-radius: 10px;
}
@media (max-width: 1200px) {
  .pin-section .right .slide {
    width: 50%;
    top: 75%;
  }
}
.pin-section img {
  width: 100%;
  border-radius: 16px;
}

.specials {
  padding: 40px;
  color: #000;
}
@media (max-width: 576px) {
  .specials {
    padding: 40px 0;
  }
}
.specials .title {
  font-size: 3.5rem;
  font-weight: bolder;
  text-align: center;
  color: #af0b04;
  margin-bottom: 40px;
  letter-spacing: 0.02rem;
}
@media (max-width: 991px) {
  .specials .title {
    font-size: 2.5rem;
  }
}
@media (max-width: 768px) {
  .specials .title {
    font-size: 2rem;
  }
}
.specials p {
  line-height: 1.5em;
}
.specials h6 + p,
.specials p + p {
  margin-top: 10px;
}
.specials .container {
  padding: 40px 80px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.specials .card-wrap {
  margin: 10px;
  transform: perspective(800px);
  transform-style: preserve-3d;
  cursor: pointer;
}
.specials .card-wrap:hover .card-info {
  transform: translateY(0);
}
.specials .card-wrap:hover .card-info p,
.specials .card-wrap:hover .card-info h6 {
  opacity: 1;
}
.specials .card-wrap:hover .card-info,
.specials .card-wrap:hover .card-info p {
  transition: 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}
.specials .card-wrap:hover .card-info:after {
  transition: 5s cubic-bezier(0.23, 1, 0.32, 1);
  opacity: 1;
  transform: translateY(0);
}
.specials .card-wrap:hover .card-bg {
  transition: 0.6s cubic-bezier(0.23, 1, 0.32, 1), opacity 5s cubic-bezier(0.23, 1, 0.32, 1);
  opacity: 0.8;
}
.specials .card-wrap:hover .card {
  transition: 0.6s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 2s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: rgba(255, 255, 255, 0.2) 0 0 40px 5px, white 0 0 0 1px, rgba(0, 0, 0, 0.66) 0 30px 60px 0, inset #333 0 0 0 5px, inset white 0 0 0 6px;
}
.specials .card {
  position: relative;
  flex: 0 0 240px;
  background-color: #333;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.66) 0 30px 60px 0, inset #333 0 0 0 5px, inset rgba(255, 255, 255, 0.5) 0 0 0 6px;
  transition: 1s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  aspect-ratio: 3/4;
  width: 100%;
  height: 50vh;
}
@media (max-width: 576px) {
  .specials .card {
    width: 100%;
    height: 60vh;
  }
}
@media (max-width: 480px) {
  .specials .card {
    width: 100%;
    height: 40vh;
  }
}
.specials .card-bg {
  opacity: 1;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 20px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  transition: 1s cubic-bezier(0.445, 0.05, 0.55, 0.95), opacity 5s 1s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  pointer-events: none;
}
.specials .card-info {
  padding: 20px;
  position: absolute;
  bottom: 0;
  color: #fff;
  transform: translateY(40%);
  transition: 0.6s 1.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.specials .card-info p {
  opacity: 0;
  text-shadow: black 0 2px 3px;
  transition: 0.6s 1.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.specials .card-info * {
  position: relative;
  z-index: 1;
}
.specials .card-info:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
  background-blend-mode: overlay;
  opacity: 0;
  transform: translateY(100%);
  transition: 5s 1s cubic-bezier(0.445, 0.05, 0.55, 0.95);
}
.specials .card-info h6 {
  opacity: 0;
  font-size: 36px;
  font-weight: 700;
  text-shadow: black 0 0 2px;
}

section.peyment-method {
  background-color: #ffffff;
}
section.peyment-method div.row {
  padding: 50px 0;
}
section.peyment-method div.row div.col-10 .methods-container {
  justify-content: space-evenly;
}
section.peyment-method div.row div.col-10 .methods-container > div img {
  width: 70px;
  display: block;
}

.dl-app-img {
  padding: 40px;
}
@media (max-width: 992px) {
  .dl-app-img {
    display: none !important;
  }
}
.dl-app-img .contain {
  position: relative;
  justify-content: center;
  width: 90%;
  min-width: 120px;
  max-width: 280px;
  min-height: 300px;
  max-height: 600px;
  background: rgba(0, 0, 0, 0);
  transition: 0.5s;
}
.dl-app-img .contain img {
  position: absolute;
  width: 100%;
  transition: 0.5s;
  min-width: 120px;
  max-width: 280px;
  min-height: 300px;
  max-height: 600px;
}
.dl-app-img .contain img:nth-child(1) {
  top: 0;
  left: 0;
  z-index: 999;
  opacity: 0.9;
}
.dl-app-img .contain:hover img:nth-child(1) {
  top: 30px;
  left: -150px;
  top: 100px;
  left: -200px;
  transform: rotate(-25deg);
}
.dl-app-img .contain img:nth-child(2) {
  top: 100px;
  left: -100px;
  z-index: 99;
  opacity: 0.9;
}
.dl-app-img .contain:hover img:nth-child(2) {
  top: 140px;
  left: -150px;
  top: 200px;
  left: -200px;
  transform: rotate(-15deg);
}
.dl-app-img .contain img:nth-child(3) {
  top: 200px;
  left: -150px;
  z-index: 9;
  opacity: 1;
}
.dl-app-img .contain:hover img:nth-child(3) {
  top: 200px;
  left: -150px;
  top: 250px;
  left: -200px;
  transform: rotate(-5deg);
}
.dl-app-img .contain img:nth-child(4) {
  top: 250px;
  left: -200px;
  z-index: 1;
  opacity: 1;
}

section.reviews {
  padding: 150px 100px 100px 100px;
}
@media (max-width: 1440px) {
  section.reviews {
    padding: 200px 50px 150px 50px;
  }
}
@media (max-width: 768px) {
  section.reviews {
    padding: 100px 0;
  }
}
section.reviews h3 {
  font-size: 60px;
  font-weight: 500;
  line-height: 40px;
  text-align: center;
  color: #FFFFFF;
  margin-bottom: 32px;
}
@media (max-width: 480px) {
  section.reviews h3 {
    font-size: 25px;
  }
}
section.reviews h3 {
  position: relative;
}
section.reviews h3::before {
  position: absolute;
  content: "Client Testimonials";
  font-family: Akshar;
  font-size: 78px;
  font-weight: 400;
  line-height: 88px;
  text-align: center;
  color: rgba(214, 214, 214, 0.3215686275);
  top: -60px;
  margin: 0 auto;
  left: 0;
  right: 0;
}
@media (max-width: 1200px) {
  section.reviews h3::before {
    font-size: 50px;
  }
}
@media (max-width: 768px) {
  section.reviews h3::before {
    font-size: 40px;
  }
}
@media (max-width: 576px) {
  section.reviews h3::before {
    font-size: 35px;
  }
}
@media (max-width: 480px) {
  section.reviews h3::before {
    font-size: 27px;
  }
}
@media (max-width: 380px) {
  section.reviews h3::before {
    font-size: 20px;
  }
}
section.reviews .swiper {
  padding-bottom: 80px;
}
section.reviews .swiper .swiper-slide {
  align-self: center;
}
section.reviews .swiper-pagination-bullets {
  bottom: 10px;
  left: 0;
  width: 100%;
  z-index: 8;
}
section.reviews .swiper-pagination-bullet {
  background: #ddd;
}
section.reviews .swiper-pagination-bullet-active {
  background: #fff;
}
section.reviews .comment-quote {
  margin-bottom: 20px;
}
section.reviews img.comment-avatar {
  border-radius: 1%;
  width: 56px;
  height: 56px;
  margin-right: 20px;
}
section.reviews .comment-section {
  background: #393939;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2509803922);
  padding: 24px;
  border-radius: 4px;
}
section.reviews .comment-section .comment-text {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 18px;
  text-align: left;
}
section.reviews .comment-section .comment-writter-name {
  font-size: 15px;
  font-weight: 700;
  line-height: 12px;
  text-align: left;
  margin-top: 16px;
  color: #E79FE1;
}
section.reviews .comment-section .stars {
  text-align: center;
  margin-bottom: 10px;
  color: #E79FE1;
  align-items: center;
}
section.reviews .comment-section .stars img {
  width: 70px;
  height: 14px;
  margin-right: 8px;
}
section.reviews .comment-section .stars span {
  font-size: 10px;
}

#myBtn {
  display: none;
  position: fixed;
  bottom: 80px;
  right: 17px;
  z-index: 99;
  font-size: 18px;
  border: 1px solid #af0b04;
  outline: none;
  background-color: #ffffff;
  color: #af0b04;
  cursor: pointer;
  padding: 8px 15px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
}
#myBtn:hover {
  background-color: transparent;
}

section.social-media {
  background-color: #000;
}
section.social-media h5 {
  color: #af0b04;
}
section.social-media div.icon-holder {
  transition: transform 0.5s ease;
}
section.social-media div.icon-holder:hover {
  transform: translate(0px, -8px);
}

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

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

/* Customize  Scrollbar  */
::-webkit-scrollbar {
  background-color: #000;
  width: 12px;
  padding: 1px;
}

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

.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  padding-top: 20px;
}
.copyright a {
  color: #b3b3b3;
}

.web-story {
  padding: 20px 0;
}
.web-story .stories-container {
  display: flex;
  padding: 0 20px;
  justify-content: center;
  gap: 30px;
  box-sizing: border-box;
}
@media (max-width: 992px) {
  .web-story .stories-container {
    overflow-x: scroll;
  }
}
@media (max-width: 576px) {
  .web-story .stories-container {
    justify-content: flex-start;
  }
}
.web-story .stories-container .content {
  position: relative;
  cursor: pointer;
  text-align: center;
}
.web-story .stories-container .imgContent {
  background: linear-gradient(#dd2a7b, #f58529);
  padding: 3px;
  border-radius: 50%;
  width: 90px;
  height: 90px;
}
.web-story .stories-container .imgContent .middleContent {
  background-color: #fff;
  padding: 4px;
  border-radius: 50%;
}
.web-story .stories-container .imgContent .middleContent img {
  position: relative;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 300;
  vertical-align: middle;
}
.web-story .stories-container .storyTitle {
  margin: 10px 0;
  color: #fff;
  font-weight: 600;
  font-size: 12px;
}
.web-story .story-full {
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  justify-content: center;
  opacity: 0;
  z-index: 500;
  pointer-events: none;
  transition: all 100ms ease;
}
.web-story .story-full.active {
  opacity: 1;
  pointer-events: auto;
}
.web-story .story-full .content .close-btn {
  position: fixed;
  top: 32px;
  right: 32px;
  width: 32px;
  cursor: pointer;
}
.web-story .story-full .content .close-btn svg {
  width: 32px;
}
.web-story .story-full .content {
  display: flex;
  align-items: center;
  position: relative;
}
.web-story .story-full .content .story-title {
  position: absolute;
  top: 5px;
  left: 25px;
  /* transform: translateX(-50%); */
  color: #fff;
  line-height: 2;
  padding: 8px 32px;
  z-index: 105;
}
.web-story .story-full .content .story-btn {
  position: absolute;
  top: 200px;
  left: 130px;
  justify-content: center;
  color: #fff;
  line-height: 2;
  padding: 8px 32px;
  border-radius: 20px;
  z-index: 105;
  background-color: #ff0000;
}
.web-story .story-full .content .story-btn:hover {
  text-decoration: none;
}
.web-story .story-full .img-content {
  height: 80%;
  width: 400px;
  /* border-radius: 10px; */
  /* background-color: #dd2a7b; */
  position: relative;
}
.web-story .story-full .img-content .img-story {
  height: 100%;
  width: 400px;
  border-radius: 10px;
  position: absolute;
  z-index: 100;
  display: flex;
}
.web-story .story-full .img-content .profile {
  width: 40px;
  height: 40px;
  position: absolute;
  z-index: 105;
  border-radius: 50%;
  margin: 15px 10px;
}
.web-story .story-full .content .right-arrow,
.web-story .story-full .content .left-arrow {
  cursor: pointer;
  /* background-color: #fff; */
  border-radius: 50%;
  padding: 8px;
  margin: 5px 10px;
  justify-content: center;
}
.web-story .story-full .content .right-arrow {
  transform: rotate(180deg);
}
@media (max-width: 700px) {
  .web-story .story-full img {
    width: 65%;
    height: auto;
  }
}
.web-story .myProgress {
  width: 96%;
  z-index: 110;
  position: absolute;
  margin: 5px 2%;
  background-color: #aaa;
  border-radius: 5px;
}
.web-story #myBar {
  width: 1%;
  height: 2px;
  border-radius: 5px;
  background-color: #eee;
}

section.Booking {
  background-color: #000; /* Base dark */
  background-image: radial-gradient(ellipse at top left, rgba(0, 166, 251, 0.2), transparent 60%), radial-gradient(ellipse at top right, rgba(0, 166, 251, 0.15), transparent 70%), radial-gradient(ellipse at bottom left, rgba(255, 90, 60, 0.1), transparent 60%), radial-gradient(ellipse at bottom right, rgba(100, 60, 255, 0.1), transparent 60%);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 130px 0;
  color: #fff;
}
section.Booking h3 {
  font-size: 56px;
  font-weight: 400;
  line-height: 58px;
  text-align: left;
  margin-bottom: 40px;
  position: relative;
}
@media (max-width: 1440px) {
  section.Booking h3 {
    font-size: 48px;
  }
}
@media (max-width: 768px) {
  section.Booking h3 {
    font-size: 40px;
  }
}
@media (max-width: 576px) {
  section.Booking h3 {
    font-size: 35px;
  }
}
@media (max-width: 480px) {
  section.Booking h3 {
    font-size: 30px;
  }
}
@media (max-width: 380px) {
  section.Booking h3 {
    font-size: 24px;
  }
}
section.Booking h3::before {
  position: absolute;
  content: "Order, Eat and Enjoy with Kocero's!";
  font-family: Akshar;
  font-size: 56px;
  font-weight: 400;
  line-height: 88px;
  text-align: center;
  color: rgba(214, 214, 214, 0.3215686275);
  top: -60px;
  margin: 0 auto;
  left: 0;
  right: 0;
}
@media (max-width: 1440px) {
  section.Booking h3::before {
    font-size: 50px;
  }
}
@media (max-width: 768px) {
  section.Booking h3::before {
    font-size: 40px;
  }
}
@media (max-width: 576px) {
  section.Booking h3::before {
    font-size: 35px;
  }
}
@media (max-width: 480px) {
  section.Booking h3::before {
    font-size: 27px;
  }
}
@media (max-width: 380px) {
  section.Booking h3::before {
    font-size: 24px;
  }
}
section.Booking p {
  text-align: center;
  margin-bottom: 56px;
  font-size: 24px;
  font-weight: 400;
  line-height: 36px;
  text-align: center;
}
@media (max-width: 576px) {
  section.Booking p {
    font-size: 17px;
  }
}
section.Booking a.main-btn {
  color: #ffffff;
  padding: 10px 40px;
  gap: 8px;
  border-radius: 4px 0px 0px 0px;
  background-color: #af0b04;
  font-family: Quicksand;
  font-size: 24px;
  font-weight: 500;
  line-height: 36px;
  width: Fixed 200px px;
  height: Hug 56px px;
  padding: 10px 24px 10px 24px;
  gap: 8px;
  border-radius: 4px;
}
section.Booking a.main-btn:hover {
  color: #af0b04;
  background-color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
}

footer {
  padding: 40px;
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  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: #af0b04;
}
footer .footer-title {
  margin-bottom: 30px;
  font-size: 4rem;
  text-align: center;
  font-weight: bold;
  line-height: 99px;
  text-transform: capitalize;
  display: flex;
  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 .light-pointer {
  position: fixed;
  top: 0;
  left: 0;
  width: 150px;
  height: 150px;
  pointer-events: none;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.25) 0%, transparent 30%);
  mix-blend-mode: screen;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: 1000;
  transition: background 0.2s ease;
}
footer .order-btn {
  border-radius: 8px;
  background: #fff;
  background: linear-gradient(45deg, rgba(150, 0, 10, 0.8862745098), rgba(201, 50, 60, 0.8274509804), rgba(150, 0, 10, 0.8745098039), rgba(216, 60, 60, 0.8941176471));
  padding: 20px 50px;
  display: flex;
  justify-content: center;
  max-width: -moz-max-content;
  max-width: max-content;
  margin: 10px auto;
  color: #fff;
  font-size: 20px;
  border: 2px solid #b4373b;
}
footer .order-btn:hover {
  background: linear-gradient(40deg, rgba(255, 255, 255, 0.8862745098), rgba(255, 65, 65, 0.2392156863), rgba(255, 250, 250, 0.8745098039), rgba(255, 65, 65, 0.2));
  color: #af0b04;
  text-decoration: none;
}
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: #af0b04;
}

.contact-us {
  background-image: url(../../imgs/hero/Golden-Fry-Fauldhouse-Pizzas.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  padding: 80px 0;
}
.contact-us .card {
  padding: 32px;
  background-color: rgba(0, 0, 0, 0.7803921569);
  margin: 8px;
  text-align: center;
  min-height: 420px;
  backdrop-filter: blur(10px);
}
.contact-us .card .logo {
  max-width: 200px;
}
.contact-us .card a {
  color: #fff;
}
.contact-us .card h5 {
  font-size: 2rem;
  letter-spacing: 0.06rem;
  color: #fff8e7;
  text-align: center;
}
.contact-us .card #openinghour p {
  font-size: 16px;
}
.contact-us .card .dl-app-link {
  max-width: 200px;
}
.contact-us .dl-app-row img {
  max-width: 40px;
}

#myModal .modal-content {
  flex-direction: row;
  padding: 20px;
}
#myModal .modal-content div {
  align-items: center;
}
#myModal .modal-content div p {
  margin: 0;
  color: black;
}
#myModal .modal-content h4 {
  font-size: 16px;
  font-weight: bolder;
  color: black;
}
#myModal a {
  background-color: #de7818;
  text-decoration: none;
  padding: 10px 20px;
  color: #ffffff;
  border-radius: 8px;
}/*# sourceMappingURL=style2.css.map */