.main-color {
  color: #ed1010;
}

@font-face {
  font-family: "Raleway";
  src: url(../../Fonts/Raleway/Raleway-Regular.ttf);
}
@font-face {
  font-family: OpenSans;
  src: url(../../Fonts/OpenSans/OpenSans-Regular.ttf);
}
@font-face {
  font-family: Lora;
  src: url(../../Fonts/Lora/Lora-Regular.ttf);
}
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Raleway" !important;
  overflow-x: hidden;
  background-color: #000;
}

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

.fade-left {
  animation: fade-left 3s ease-in-out;
}

@keyframes fade-left {
  0% {
    transform: translateX(-150px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
.fade-right {
  animation: fade-right 3s ease-in-out;
}

@keyframes fade-right {
  0% {
    transform: translateX(150px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
.fade-left2 {
  animation: fade-left2 4s ease-in-out;
}

@keyframes fade-left2 {
  0% {
    transform: translateX(-150px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
.fade-right2 {
  animation: fade-right2 4s ease-in-out;
}

@keyframes fade-right2 {
  0% {
    transform: translateX(150px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
/* header */
.openmenuu {
  width: 100% !important;
}

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

.valentine-section {
  background-color: rgb(99, 0, 0);
  background-image: url(https://www.mealzoforbusiness.co.uk/1/heart-background.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.valentine-section img {
  max-width: 55px;
}
@media (max-width: 480px) {
  .valentine-section img {
    max-width: 35px;
  }
}
.valentine-section marquee {
  color: #fff;
  font-size: 17px;
}
@media (max-width: 480px) {
  .valentine-section marquee {
    font-size: 15px;
  }
}

.top-header {
  background-color: #000;
  padding: 10px 0;
}
.top-header .shop-name {
  padding: 0;
  margin: auto;
  display: flex;
  justify-content: center;
}
.top-header .shop-name .shop-logo {
  max-width: 150px;
}
@media (max-width: 768px) {
  .top-header .shop-name .shop-logo {
    max-width: 160px;
  }
}

header {
  background-color: #ed1010;
  padding: 10px 0;
  background: repeating-linear-gradient(120deg, #ff0000, #680000, #dc0d0d);
  background-repeat: repeat-x;
  background-size: 400% 100%;
  animation: AnimationName 3s linear infinite;
  /* required */
}
@keyframes AnimationName {
  0% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
header .navbar-brand {
  font-size: 1rem !important;
}
@media (min-width: 1200px) {
  header .navbar-nav {
    flex-direction: row;
  }
}
header section.menu-section span.open-menu {
  align-self: center;
  z-index: 10;
}
@media (min-width: 1200px) {
  header section.menu-section span.open-menu {
    display: none;
  }
}
header section.menu-section #myNav {
  display: block;
}
@media (min-width: 1200px) {
  header section.menu-section #myNav {
    width: 100%;
  }
}
header section.menu-section #overlay-content {
  display: none;
}
@media (min-width: 1200px) {
  header section.menu-section #overlay-content {
    display: flex;
  }
}
header section.menu-section nav {
  padding: 10px 0;
}
@media (min-width: 1200px) {
  header section.menu-section nav {
    display: flex;
  }
}
header section.menu-section div.mobile-overlay {
  height: 100%;
  width: 0%;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  background-color: #f2f2f2;
  overflow-x: hidden;
  transition: width 0.45s;
}
header section.menu-section div.mobile-overlay .overlay-content {
  position: relative;
  top: 10%;
  width: 100%;
  text-align: center;
}
@media (min-width: 1200px) {
  header section.menu-section div.mobile-overlay .overlay-content {
    justify-content: flex-end;
  }
}
@media (min-width: 1200px) {
  header section.menu-section div.mobile-overlay .overlay-content > div#navbarNavAltMarkup {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: center;
    align-items: center;
  }
}
@media (min-width: 1200px) {
  header section.menu-section div.mobile-overlay .overlay-content {
    display: flex;
  }
}
header section.menu-section div.mobile-overlay .overlay-content .closebtn {
  text-decoration: unset;
  position: fixed;
  top: 10px;
  font-size: 20px;
  right: 10%;
  font-size: 26px;
  z-index: 100;
  color: #ed1010;
}
@media (min-width: 1200px) {
  header section.menu-section div.mobile-overlay .overlay-content .closebtn {
    display: none;
  }
}
header section.menu-section div.mobile-overlay .overlay-content a.nav-link.active {
  color: #ed1010 !important;
}
header section.menu-section div.mobile-overlay .overlay-content a.nav-link {
  color: #fff;
}
header section.menu-section div.mobile-overlay .overlay-content a.nav-link:hover {
  color: #d0d0d0 !important;
}
@media (min-width: 1200px) {
  header section.menu-section div.mobile-overlay .overlay-content a.nav-link {
    margin-right: 25px;
    font-size: 13px;
  }
}
@media (min-width: 1200px) {
  header section.menu-section div.mobile-overlay .overlay-content a.nav-link {
    font-size: 17px;
    margin-right: 45px;
    font-weight: bolder;
  }
}
@media (max-width: 1200px) {
  header section.menu-section div.mobile-overlay .overlay-content a.nav-link {
    color: rgb(0, 0, 0);
  }
}
@media (max-width: 1200px) {
  header section.menu-section div.mobile-overlay .overlay-content a.nav-link:last-of-type {
    margin-bottom: 20px;
  }
}
header section.menu-section div.mobile-overlay .overlay-content a.btn {
  background-color: #ed1010;
  color: black;
}
header section.menu-section div.mobile-overlay .overlay-content a.login-btn {
  background-color: #ed1010;
  border-radius: 10px !important;
  padding: 8px 15px 8px 15px;
  color: #fff;
}
@media (min-width: 1200px) {
  header section.menu-section div.mobile-overlay .overlay-content a.login-btn {
    padding: 8px 17px 6px 13px;
  }
}
@media (min-width: 1200px) {
  header section.menu-section div.mobile-overlay .overlay-content a.login-btn {
    padding: 14px 25px 13px 19px;
  }
}
@media (min-width: 1200px) {
  header section.menu-section div.mobile-overlay {
    position: static;
    display: flex !important;
    flex-direction: row;
    background-color: inherit;
  }
}
header section.menu-section .navbar-social .fa {
  color: rgb(255, 255, 255);
}
@media (min-width: 1200px) {
  header section.menu-section .navbar-social {
    display: none;
  }
}
@media (max-width: 1200px) {
  header section.menu-section .navbar-social {
    display: flex;
    justify-content: center;
  }
}
@media (max-width: 1200px) {
  header .nav-inner {
    width: 100%;
  }
}

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

/* section hero */
section.hero-section {
  background-color: #000000;
  padding: 80px 0;
  color: #fff;
}
section.hero-section div.inner-content h2 {
  font-size: 1.2rem;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  section.hero-section div.inner-content h2 {
    font-size: 1.5rem;
  }
}
@media (min-width: 992px) {
  section.hero-section div.inner-content h2 {
    font-size: 2rem;
  }
}
section.hero-section div.inner-content h2 span.ten-off {
  text-decoration: underline;
  text-decoration-color: #ed1010;
}
section.hero-section div.inner-content p.hero-main-text {
  font-size: 0.8rem;
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: 24px;
}
@media (min-width: 768px) {
  section.hero-section div.inner-content p.hero-main-text {
    font-size: 0.9rem;
  }
}
@media (min-width: 992px) {
  section.hero-section div.inner-content p.hero-main-text {
    font-size: 1rem;
  }
}
section.hero-section div.inner-content a {
  background-color: #ed1010;
  color: rgb(255, 255, 255);
  border-radius: 35px 0 35px 0 !important;
  padding-top: 12px;
  width: 210px;
  height: 50px;
  margin-top: 20px;
}
section.hero-section div.inner-content a:hover {
  color: #ed1010;
  border-color: #ed1010;
  background-color: #fff !important;
  box-shadow: #ffb818 0px 4px 12px;
}
@media (min-width: 991px) {
  section.hero-section div.inner-content a {
    margin-top: 62px;
  }
}
@media (max-width: 480px) {
  section.hero-section div.inner-content a {
    width: 140px;
  }
}
section.hero-section div.inner-content a .order-now-icon-main {
  width: 30px;
  height: 30px;
  stroke: white;
}
section.hero-section div.inner-content a .order-now-icon-main:hover {
  stroke: #ed1010;
}
section.hero-section div.inner-content div.clip {
  -webkit-clip-path: polygon(0 0, 100% 0, 95% 99%, 5% 100%);
          clip-path: polygon(0 0, 100% 0, 95% 99%, 5% 100%);
  border-radius: 30px;
  overflow: hidden;
}
section.hero-section div.inner-content div.clip img {
  background-image: url("../../imgs/hero/Background.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  overflow: hidden;
}
@media (min-width: 992px) {
  section.hero-section div.inner-content div.clip img {
    border-radius: 109px 109px 109px 109px;
    padding: 42px;
  }
}

#slider {
  padding: 20px;
  background-color: #000000;
}
@media (max-width: 576px) {
  #slider .swiper {
    min-height: 220px;
  }
}
@media (max-width: 480px) {
  #slider .swiper {
    min-height: 185px;
  }
}
#slider .swiper img.slide-img {
  position: relative;
  max-width: 70%;
  display: flex;
  justify-content: flex-end;
  margin-left: auto;
  border-radius: 10px;
}
@media (max-width: 576px) {
  #slider .swiper img.slide-img {
    max-width: 100%;
    margin: auto;
  }
}
#slider .swiper div.slider-text {
  position: absolute;
  top: 30%;
  left: 2%;
  display: flex;
  flex-direction: column;
}
@media (max-width: 576px) {
  #slider .swiper div.slider-text {
    top: 70px;
    margin: auto;
    right: 0;
  }
}
@media (max-width: 480px) {
  #slider .swiper div.slider-text {
    top: 50px;
  }
}
#slider .swiper div.slider-text h1 {
  font-weight: bolder;
  color: #f00;
  font-size: 65px;
  -webkit-text-stroke: 3px #fff;
  paint-order: stroke fill;
}
@media (max-width: 1230px) {
  #slider .swiper div.slider-text h1 {
    font-size: 50px;
    max-width: 100%;
  }
}
@media (max-width: 991px) {
  #slider .swiper div.slider-text h1 {
    font-size: 30px;
  }
}
@media (max-width: 768px) {
  #slider .swiper div.slider-text h1 {
    font-size: 25px;
  }
}
@media (max-width: 576px) {
  #slider .swiper div.slider-text h1 {
    font-size: 20px;
    text-align: center;
  }
}
#slider .swiper div.slider-text h3 {
  color: #f00;
  font-size: 32px;
  -webkit-text-stroke: 1px #fdfdfd;
}
@media (max-width: 768px) {
  #slider .swiper div.slider-text h3 {
    font-size: 20px;
    text-align: center;
    font-weight: bolder;
    color: #f00;
    -webkit-text-stroke: 3px #fff;
    paint-order: stroke fill;
  }
}
#slider .swiper div.slider-text h2 {
  font-size: 50px;
  color: #f00;
  -webkit-text-stroke: 1px #fff;
}
@media (max-width: 768px) {
  #slider .swiper div.slider-text h2 {
    font-size: 20px;
    text-align: center;
    font-weight: bolder;
    color: #f00;
    -webkit-text-stroke: 3px #fff;
    paint-order: stroke fill;
  }
}
#slider .swiper div.slider-text a {
  display: flex;
  background-color: #f00;
  background-image: linear-gradient(to bottom, #ea0b0b, #940000);
  color: #fff;
  max-width: -moz-max-content;
  max-width: max-content;
  padding: 12px 35px;
  border-radius: 25px;
  font-size: 16px;
  text-transform: uppercase;
}
@media (max-width: 576px) {
  #slider .swiper div.slider-text a {
    margin: auto;
    text-align: center;
  }
}
@media (max-width: 500px) {
  #slider .swiper div.slider-text a {
    font-size: 12px;
    padding: 8px 20px;
  }
}
#slider .swiper-slide-active .slide-img {
  animation: fade-right 1.5s ease-in-out;
}
@keyframes fade-right {
  0% {
    transform: translateX(150px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
#slider .swiper-slide-active .slider-text {
  animation: fade-left 1.5s ease-in-out;
}
@keyframes fade-left {
  0% {
    transform: translateX(-150px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

.swiper-3d .swiper-slide-shadow-left {
  background-image: none !important;
}
.swiper-3d .swiper-slide-shadow-right {
  background-image: none !important;
}

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

/* special to try */
section.category {
  padding: 120px 0;
  background-color: #F2F2F2;
}
section.category h3 {
  margin-bottom: 52px;
  color: #ed1010;
  text-transform: capitalize;
  font-weight: 800;
  text-align: center;
  font-size: 56px;
}
@media (max-width: 991px) {
  section.category h3 {
    font-size: 40px;
  }
}
@media (max-width: 480px) {
  section.category h3 {
    font-size: 30px;
  }
}
section.category ul.nav-tabs {
  border: none !important;
  margin-bottom: 40px;
}
section.category ul.nav-tabs a.nav-link {
  color: #272042;
  font-size: 12px;
}
@media (min-width: 425px) {
  section.category ul.nav-tabs a.nav-link {
    font-size: 1rem;
  }
}
section.category ul.nav-tabs a.nav-link:hover {
  border: none;
}
section.category ul.nav-tabs a.nav-link.active {
  color: #f7c531;
  border: none !important;
  border-bottom: 1px #f7c531 solid !important;
}
section.category .swiper-container {
  padding: 25px;
}
section.category .swiper-button-next {
  background-image: url(../../imgs/special/slideshow-right-arrow.png);
}
section.category .swiper-button-next::after {
  content: "";
}
section.category .swiper-button-prev {
  transform: rotate(180deg);
  background-image: url(../../imgs/special/slideshow-right-arrow.png);
}
section.category .swiper-button-prev::after {
  content: "";
}
section.category .card {
  background-color: #F2F2F2;
  border: none;
  outline: none;
}
section.category .card .card-img {
  display: flex;
  justify-content: center;
  align-items: center;
}
section.category .card:hover .card-footer a {
  background-color: #ed1010;
  border: 1px solid #ed1010;
  color: #fff;
}
section.category .card .card-title {
  color: #ed1010;
  text-transform: capitalize;
  font-size: 22px;
  font-weight: bolder;
}
section.category .card .card-footer {
  background-color: #f2f2f2;
  border-top: 1px solid #f2f2f2;
  display: flex;
  justify-content: center;
}
section.category .card .card-footer a {
  background-color: #ed1010;
  border: 1px solid #ed1010;
  color: #fff;
}
section.category div.tab-content div.row div.food-card {
  margin-bottom: 25px;
}
@media (min-width: 768px) {
  section.category div.tab-content div.row div.food-card {
    margin-bottom: 0;
  }
}
section.category div.tab-content div.row div.food-card img {
  border-radius: 30px 12px 30px 30px;
}
section.category div.tab-content div.row div.food-card div.food-name {
  margin-top: 21px;
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px;
  letter-spacing: 0em;
  text-align: center;
}
section.category div.tab-content div.row div.food-card div.food-comment {
  margin-top: 10px;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0em;
  text-align: center;
}

.special {
  padding: 80px 50px;
  background-color: #000;
  color: #fff;
}
@media (max-width: 576px) {
  .special {
    padding: 50px 0;
  }
}
.special img {
  border-radius: 10px;
  border: 1px solid #292929;
}
.special h3 {
  margin-bottom: 30px;
}
.special ul {
  padding: 0;
  margin: 0;
}
.special ul li {
  list-style: none;
  padding: 10px;
  border-radius: 15px;
}
.special ul li a {
  color: #fff;
}
.special ul li a:hover {
  text-decoration: none;
}
.special ul li a p {
  color: #fff;
  padding: 5px 0;
  margin-bottom: 0;
  font-size: 11px;
}
.special .category-title {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px dashed #c0c0c0;
}
.special .category-title p {
  margin-bottom: 0;
  font-weight: bolder;
  font-size: 17px;
}
@media (max-width: 480px) {
  .special .category-title p {
    font-size: 13px;
  }
}
.special .category-title span {
  color: #f00;
}

.imgs {
  padding: 80px 0;
  background-color: #F2F2F2;
}

section.about-us {
  padding: 50px 0;
  background-color: #ffffff;
  color: #000000;
}
@media (max-width: 991px) {
  section.about-us {
    padding: 50px 0;
  }
}
section.about-us .section-heading-h2 {
  font-weight: 900;
  font-size: 45px;
  line-height: 48px;
  text-align: center;
  margin-bottom: 20px;
  text-transform: capitalize;
  color: #000;
}
@media (max-width: 991px) {
  section.about-us .section-heading-h2 {
    font-size: 27px;
  }
}
@media (max-width: 480px) {
  section.about-us .section-heading-h2 {
    font-size: 20px;
    line-height: 38px;
  }
}
@media (max-width: 300px) {
  section.about-us .section-heading-h2 {
    font-size: 17px;
  }
}
@media (max-width: 270px) {
  section.about-us .section-heading-h2 {
    font-size: 14px;
  }
}
section.about-us img {
  max-width: 80%;
  margin: 5px;
}
section.about-us .diffrence-header {
  width: 100%;
  padding: 100px 0;
}
@media (max-width: 1200px) {
  section.about-us .diffrence-header {
    padding: 50px 0 0 0;
  }
}
@media (max-width: 480px) {
  section.about-us .diffrence-header {
    padding: 30px 0 0 0;
  }
}
section.about-us .diffrence-header img {
  margin-bottom: 50px;
}
section.about-us .diffrence-header h2 {
  color: #ed1010;
  font-size: 40px;
  text-align: center;
  font-weight: 700;
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  section.about-us .diffrence-header h2 {
    font-size: 34px;
  }
}
@media (max-width: 768px) {
  section.about-us .diffrence-header h2 {
    font-size: 26px;
  }
}
@media (max-width: 480px) {
  section.about-us .diffrence-header h2 {
    font-size: 27px;
  }
}
section.about-us .diffrence-header a {
  background-color: #ed1010;
  color: #fff;
  border-radius: 50px !important;
  text-transform: capitalize;
  padding: 12px 35px;
  margin-top: 20px;
  transition: all 0.5s ease;
  font-size: 17px;
}
section.about-us .diffrence-header a:hover {
  color: #fff;
  border-color: #ffb818;
  background-color: #ffb818;
  box-shadow: #ffb818 0px 4px 12px;
  transform: scale(0.9);
}
@media (max-width: 768px) {
  section.about-us .diffrence-header a {
    padding-top: 20px;
    width: 100%;
    height: 70px;
  }
}

section.peyment-method {
  background-color: #000000;
}
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;
}

/* dwnloap app section */
section.dl-app {
  padding: 80px 0;
  background-color: #000;
}
section.dl-app div.inner-content div.d-flex {
  justify-content: center;
}
section.dl-app div.inner-content a.app-link-dl-container:hover img {
  animation: scale-up-center 0.4s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}
section.dl-app div.inner-content img.dl-app-link {
  margin-bottom: 20px;
  width: 170px;
}
@media (min-width: 991px) {
  section.dl-app div.inner-content img.dl-app-link {
    margin-bottom: 0;
    width: 230px;
  }
}
section.dl-app div.inner-content h3.dl-ur-app-heading {
  font-style: normal;
  font-weight: bold;
  font-size: 46px;
  line-height: 50px;
  margin-bottom: 56px;
  margin-top: 20px;
  font-size: 1.3rem;
  color: #fff;
}
@media (min-width: 768px) {
  section.dl-app div.inner-content h3.dl-ur-app-heading {
    font-size: 1.6rem;
  }
}
@media (min-width: 992px) {
  section.dl-app div.inner-content h3.dl-ur-app-heading {
    font-size: 2rem;
  }
}

/* ----------------------------------------------
 * Generated by Animista on 2021-12-20 14:30:57
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */
/**
 * ----------------------------------------
 * animation scale-up-center
 * ----------------------------------------
 */
@keyframes scale-up-center {
  0% {
    transform: scale(0.5);
  }
  100% {
    transform: scale(1);
  }
}
section.reviews {
  padding: 30px 0 80px 0;
  background-color: #fff;
}
section.reviews h3 {
  margin-bottom: 40px;
  font-weight: 900;
  font-size: 30px;
  color: #000;
}
@media (min-width: 991px) {
  section.reviews h3 {
    font-size: 40px;
    margin-bottom: 70px;
  }
}
@media (max-width: 480px) {
  section.reviews h3 {
    font-size: 25px;
  }
}
section.reviews .comment-section {
  text-align: center;
  border-radius: 20px;
  margin-top: 50px;
}
section.reviews .comment-section .comment-text {
  max-width: 800px;
  text-align: center;
  color: #000;
  font-size: 17px;
  line-height: 25px;
  margin: 0 auto;
}
section.reviews .comment-section .comment-writter-name {
  margin-top: 16px;
  color: #ed1010;
  margin-bottom: 9px;
  color: #000;
  font-size: 25px;
}
section.reviews .comment-section .ratings {
  text-align: center;
  margin: 10px 0;
}
section.reviews img.avatar {
  width: 25px !important;
  height: 25px;
  margin-bottom: 15px;
}
section.reviews .stars {
  width: 130px;
}
section.reviews .comment-writter-avatar img {
  width: 70px !important;
  height: 70px;
  border-radius: 50%;
  margin-bottom: 20px;
}
section.reviews .star-o {
  margin-left: 2px;
}

section.gallery {
  padding: 100px 0;
  background-color: #fff;
  position: relative;
  /* Main CSS */
}
section.gallery h3 {
  color: #ed1010;
  font-size: 40px;
  text-align: center;
  font-weight: 700;
  margin-bottom: 40px;
}
@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 .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 .container .row .col-12 .gallery-card {
  margin-bottom: 20px;
  border-radius: 8px;
  background-repeat: no-repeat;
  background-size: cover;
}
section.gallery .container .row .col-12 .gallery-card #trapezoid {
  border-bottom: 100px solid #ed1010;
  border-left: 50px solid transparent;
  border-right: 50px solid transparent;
  height: 0;
  width: 100px;
  background-color: rgba(7, 5, 64, 0.7411764706);
}
section.gallery .container .row .col-12 .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 .container .row .col-12 .gallery-card .gallery-card-content img {
  width: 200px;
}
section.gallery .container .row .col-12 .gallery-card .gallery-card-content p {
  color: #fdfdfd;
  font-size: 24px;
  line-height: 40px;
}
section.gallery .container .row .col-12 .gallery-card .gallery-card-content h4 {
  color: #fdfdfd;
  font-size: 32px;
}
section.gallery .container .row .col-12 .gallery-card .gallery-card-content .gallery-card-content-btn {
  background-color: #ed1010;
  padding: 10px 20px;
  margin-top: 50px;
  color: #fdfdfd;
  border-radius: 8px;
  width: -moz-fit-content;
  width: fit-content;
  align-items: center;
}
section.gallery .container .row .col-12 .gallery-card .gallery-card-content .gallery-card-content-btn:hover {
  text-decoration: none;
}
section.gallery .container .row .col-12 .card1 {
  background-image: url(./../../imgs/gallery/gogoTakeaway-Pizza.png);
}
section.gallery .container .row .col-12 .card2 {
  background-image: url(./../../imgs/gallery/gogoTakeaway-Fish&Chips.png);
}
section.gallery .container .row .col-12 .card3 {
  background-image: url(./../../imgs/gallery/gogoTakeaway-Kebab.png);
}
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 1.5;
  grid-row: span 1.5;
}

/* footer */
footer {
  background-color: #000;
  color: #ffffff;
  padding: 100px 0 25px 0;
}
footer .logo-container p {
  text-align: center;
}
footer img.shop-logo {
  max-width: 150px;
}
footer .footer-header {
  font-size: 38px;
  text-transform: capitalize;
  font-weight: bolder;
}
@media (max-width: 480px) {
  footer .footer-header {
    font-size: 35px;
  }
}
footer .fa {
  color: #ed1010;
  font-size: 1.25rem;
}
footer .footer-title {
  margin-bottom: 30px;
}
footer .footer-title span {
  font-weight: 500;
  font-size: 22px;
  line-height: 27px;
  color: #ffffff;
}
footer img.dl-app-link {
  margin-bottom: 20px;
  width: 170px;
}
@media (min-width: 768px) {
  footer img.dl-app-link {
    width: 180px;
  }
}
footer h3 {
  font-size: 20px;
  margin-top: 20px;
}
footer ul li {
  list-style: none;
}
footer #openinghour {
  width: 80%;
  margin: auto;
}

.find-us {
  padding: 50px 0 0 0;
  background-color: #fff;
}
.find-us h3 {
  font-size: 52px;
  color: #ffb818;
  text-transform: capitalize;
  font-weight: bolder;
  margin-bottom: 40px;
}

#myBtn {
  display: none;
  position: fixed;
  bottom: 80px;
  right: 17px;
  z-index: 99;
  font-size: 18px;
  border: none;
  outline: none;
  background-color: #fff;
  color: #f00;
  border: 1px solid #f00;
  cursor: pointer;
  padding: 6px 11px 6px 11px;
  border-radius: 50%;
}
#myBtn:hover {
  color: #ed1010;
  border: 1px dashed #ed1010;
  background-color: white;
  box-shadow: #ffb818 0px 7px 29px 0px;
}

section.social-media {
  color: #fff;
  background-color: #000;
}
@media (max-width: 768px) {
  section.social-media {
    display: none;
  }
}
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: #ed1010;
  color: white;
}
::selection {
  background-color: #ed1010;
  color: white;
}

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

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

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

section.copyright {
  background-color: #000;
  color: rgb(255, 255, 255);
}
section.copyright .container {
  padding: 25px 0;
  border-top: 1px solid #fff;
}/*# sourceMappingURL=style2.css.map */