/*
  Template Name: Quarter
    Description: Restaurant HTML Template
    Version: 1.0.0
*/
*,
*::after,
*::before {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  outline: none;
}

/* ============================================================
>>> TABLE OF CONTENTS:
===============================================================
# Google fonts
# Normalize
# Typography


============================================================= */

/* -------------------------------------
    # Google fonts
------------------------------------- */
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
/*
 font-family: 'Poppins', sans-serif;
*/

/* ----------------------------------------------------
    # Normalize
---------------------------------------------------- */

:root {
  /*    for color */

  --primary-color: #e2001a;
  --secondary-color: #3a3a3a;
  --white-color: #ffffff;
  --black-color: #000000;
  --yellow-color: #ffd40e;

  /*    box shadow */
  --box-shadow-1: 0 0 5px 0 rgba(0, 0, 0, 0.5);

  /*  font family */
  --main-font: "Poppins", sans-serif;
}

/* -------------------------------------
    # Typography
------------------------------------- */
html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  font-family: var(--main-font);
}

body {
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  font-family: var(--main-font);
  line-height: 1.8;
  margin: 0 auto;
}

ul,
ol {
  padding-left: 0;
  list-style-type: none;
}

h1,
.h1 {
  font-size: 100px;
  line-height: 1.2;
}

h2,
.h2 {
  font-size: 55px;
}

h3,
.h3 {
  font-size: 35px;
}

h4,
.h4 {
  font-size: 25px;
}

h5,
.h5 {
  font-size: 18px;
}

h6,
.h6 {
  font-size: 16px;
}

p {
  margin-bottom: 1.5em;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
}

a {
  text-decoration: none;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

a,
a:hover,
a:focus,
a:active {
  text-decoration: none;
  outline: none;
  color: inherit;
}

/*  ================= Open header section ====================  */

.header-wrapper .navbar {
  padding: 20px 0;
}

.header-wrapper .navbar.scrollNav {
  background-color: var(--black-color);
  box-shadow: 4px 1px 15px rgba(255, 255, 255, 0.5);
  transition: all 0.5s ease;
}

.header-wrapper .navbar.scrollNav .navbar-brand img {
  max-width: 180px;
  transition: all 0.6s ease;
}

.header-wrapper .navbar-nav .nav-link {
  position: relative;
  margin-right: 20px;
  margin-left: 20px;
  font-weight: 500;
  color: var(--white-color);
  text-transform: uppercase;
  text-align: center;
  transition: all 0.5s;
}

.header-wrapper .navbar-nav .nav-link i {
  font-size: 10px;
}

.header-wrapper .navbar-nav .nav-item .dropdown-menu .dropdown-item {
  text-transform: uppercase;
}

.header-wrapper .navbar-nav .dropdown-item.active,
.header-wrapper .navbar-nav .dropdown-item:active {
  background-color: var(--black-color);
}

.header-wrapper .navbar-nav .nav-link:hover,
.header-wrapper .navbar-nav .nav-link.active {
  color: var(--primary-color);
}

.header-wrapper .navbar-nav .nav-link::after {
  content: "";
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  position: absolute;
  bottom: 0;
  left: 0;
  transition: all 0.5s;
}

.header-wrapper .navbar-nav .nav-link:hover::after,
.header-wrapper .navbar-nav .nav-link.active::after {
  width: 100%;
}

.header-wrapper .offcanvas-header .btn-close {
  background-image: none;
  position: absolute;
  right: 30px;
}

.header-wrapper .offcanvas-header .btn-close i {
  color: var(--white-color);
  font-size: 25px;
}

.header-wrapper .navbar-dark .navbar-toggler {
  border: 0;
}

.header-wrapper .navbar-dark .navbar-toggler:focus {
  box-shadow: unset;
}

/*  ================= Close header section ====================  */

/*  ================= Open Hero  section ====================  */

.hero-wrapper .carousel-item {
  height: 100vh;
  background-size: cover;
  background-position: center;
  isolation: isolate;
}

.hero-wrapper .carousel-item::after {
  content: "";
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: -1;
}
.hero-wrapper .carousel-caption {
  top: 50%;
  transform: translateY(-50%);
}
.hero-wrapper .carousel-caption h2 {
  text-transform: uppercase;
}

.hero-wrapper .carousel-caption h1 {
  font-size: 80px;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-wrapper .btn-group .banner-btn {
  background-color: var(--primary-color);
  color: var(--white-color);
  border-radius: 10px;
  padding: 10px 45px;
  margin: 25px;
  transition: all 0.5s linear;
}

.hero-wrapper .btn-group .banner-btn:nth-child(2) {
  background-color: transparent;
  border: 2px solid var(--white-color);
}

.hero-wrapper .btn-group .banner-btn:hover {
  opacity: 0.9;
}

/*  ================= Close Hero  section ====================  */

/*  ================= Open Social icon with fixed section ====================  */

.socilaFixed {
  width: 100%;
}

.socilaFixed ul {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  list-style-type: none;
  z-index: 100;
}

.socilaFixed ul li {
  background-color: var(--white-color);
  padding: 15px 30px 15px 15px;
  margin-bottom: 35px;
  box-shadow: 1px 2px 5px rgba(0, 0, 0, 0.5);

  border-radius: 10px 0 0 10px;
  -webkit-transform: translateX(113px);
  transform: translateX(113px);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.socilaFixed ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
}

.socilaFixed ul li a p {
  margin-bottom: 0;
  visibility: hidden;
  opacity: 0;
}

.socilaFixed ul li:hover {
  transform: translateX(0);
}

.socilaFixed ul li:hover a p {
  visibility: visible;
  opacity: 1;
  transition: all 0.5s ease-in;
}

.socilaFixed ul li img {
  margin-right: 20px;
  max-width: 22px;
}

/*  ================= Close Social icon with fixed section ====================  */

/*  ================= Open Most popular Dishes section ====================  */
.popularDishes-wrapper {
  margin-top: -150px;
  position: relative;
}

.popularDishes-wrapper .popularDishes-title {
  background-color: var(--primary-color);
  background-image: url("../images/banner-scroll-heading-bg.png");
  background-blend-mode: screen;
  background-repeat: no-repeat;
  object-fit: cover;
  border-radius: 8px;
  padding: 20px;
  height: 250px;
}

.popularDishes-wrapper .popularDishes-title h4 {
  color: var(--white-color);
  text-transform: uppercase;
  text-align: center;
  font-weight: 700;
  line-height: 40px;
}

.popularDishes-wrapper .popularDishes-title p {
  color: var(--white-color);
  text-align: center;
}

.popularDishes-wrapper .popular_dishes .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  border-radius: 8px;
  position: relative;
  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
  height: 250px;
  background-size: cover;
  background-repeat: no-repeat;
  isolation: isolate;
}

.popularDishes-wrapper .popular_dishes .swiper-slide::after {
  content: "";
  height: 100%;
  width: 100%;
  background: linear-gradient(to top, rgba(58, 58, 58, 1), transparent);
  position: absolute;
  bottom: 0;
  z-index: -1;
}

.popularDishes-wrapper .popular_dishes .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-position: center;
}

.popularDishes-wrapper .popular_dishes .swiper-slide .swiper-slide-content h4 {
  color: var(--white-color);
}

.popularDishes-wrapper .popular_dishes .swiper-slide .swiper-slide-content p {
  color: var(--white-color);
}

.swiper-nav {
  position: relative;
}

.swiper-nav .swiper-button-prev {
  left: unset;
  right: 66px;
}

.swiper-nav .swiper-button-next::after,
.swiper-nav .swiper-button-prev::after {
  content: "";
}

.swiper-nav .swiper-button-next,
.swiper-nav .swiper-button-prev {
  background-color: var(--secondary-color);
  color: var(--white-color);
  height: 35px;
  width: 35px;
  top: unset;
  bottom: -55px;
}

/*  ================= Close Most popular Dishes section ====================  */

/*  ================= Open Welcome  section ==================== */

.welcome-wrapper {
  margin-top: 140px;
  position: relative;
}

.sub-heading {
  border-radius: 6px;
  color: var(--primary-color);
  font-size: 16px;
  margin-bottom: 0;
  font-weight: 500;
}

.heading {
  font-size: 35px;
  color: var(--black-color);
  font-weight: 800;
  text-transform: uppercase;
}

.welcome-wrapper .welcome-fruit {
  position: absolute;
  right: 0;
  bottom: 0;
}

.welcome-wrapper .welcome-left {
  background-image: url("../images/welcome-images.jpg");
  min-height: 450px;
  max-height: 500px;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  margin-bottom: 80px;
  position: relative;
  overflow: hidden;
}

.welcome-wrapper .welcome-left::before {
  content: "";
  width: 220px;
  height: 220px;
  background-color: var(--primary-color);
  position: absolute;
  left: -10px;
  top: -10px;
  z-index: -1;
}

.welcome-wrapper .welcome-right {
  padding-left: 50px;
  margin-bottom: 30px;
}

.welcome-wrapper .welcome-right p {
  margin-top: 30px;
}

.welcome-wrapper .welcome-right .welcome-btn a {
  background-color: var(--primary-color);
  color: var(--white-color);
  border-radius: 10px;
  padding: 10px 45px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.5s linear;
}

.welcome-wrapper .welcome-right .welcome-btn a:hover {
  opacity: 0.9;
}

.welcome-wrapper .welcome-left .welcome-info .welcome-experience {
  background-color: var(--secondary-color);
  color: var(--white-color);
  padding: 55px;
  border-radius: 50%;
  text-align: center;
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  top: 50%;
  opacity: 0;
  visibility: hidden;
}

.welcome-wrapper .welcome-left .welcome-info .welcome-experience.show {
  opacity: 1;
  visibility: visible;
}

.welcome-wrapper .welcome-left .welcome-info .welcome-arrow {
  background-color: var(--primary-color);
  height: 100px;
  width: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: -19px;
  right: -24px;
  color: var(--white-color);
  cursor: pointer;
}

/*  ================= Close Welcome  section ==================== */

/*  ================= Open Services  section ==================== */
.services-wrapper {
  background-image: linear-gradient(
      rgba(58, 58, 58, 0.7),
      rgba(58, 58, 58, 0.7)
    ),
    url("../images/services-bg.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
}

.services-wrapper .services-box {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  margin-top: 30px;
  margin-bottom: 30px;
}

.services-wrapper .services-box .services-icon {
  background-color: var(--primary-color);
  height: 100px;
  width: 100px;
  border-radius: 50%;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.services-wrapper .services-box .services-icon img {
  max-width: 70px;
}

.services-wrapper .services-box h4 {
  color: var(--white-color);
  padding-top: 20px;
}

.services-wrapper .services-box p {
  color: var(--white-color);
}

/*  ================= Close Services  section ==================== */

/*  ================= Open CHOOSE YOUR FOOD  section ==================== */

.food-wrapper {
  margin-top: 85px;
}

.food-wrapper .food__heading {
  text-align: center;
}

.food-wrapper .food__sideImage {
  position: absolute;
}

.food-wrapper .food__sideImage img {
  max-width: 250px;
}

.food-wrapper .foodTab__btn {
  margin: 35px 10px;
  text-transform: uppercase;
  padding: 10px 35px;
}

.food-wrapper .food-box {
  border-radius: 10px;
  background-color: var(--white-color);
  overflow: hidden;
  margin-bottom: 30px;
}

.food-wrapper .food-box .food-top-info img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.food-wrapper .food-box .food-top-info .food-name {
  margin-top: -23px;
  text-align: center;
  z-index: 10;
}
.food-wrapper .food-box .food-top-info .food-name h4 {
  color: var(--white-color);
  background-color: var(--primary-color);
  border-radius: 10px;
  display: inline-block;
  padding: 5px 25px;
}

.food-wrapper .food-box .food-content {
  padding: 15px;
  text-align: center;
}

/*  ================= Close CHOOSE YOUR FOOD  section ==================== */

/* ================= Open BOOK A TABLE  section ==================== */

.bookTable-wrapper {
  margin-top: 85px;
}

.bookTable-wrapper .bookTable__image {
  background-image: url("../images/booktable-img.png");
  min-height: 600px;
  max-height: 700px;
  width: 100%;
  background-size: cover;
  background-position: center;
  border-radius: 10px 0 0 10px;
}

.bookTable-wrapper .bookTable__form {
  background-color: var(--white-color);
  -webkit-box-shadow: 0px -1px 6px 0px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px -1px 6px 0px rgba(0, 0, 0, 0.75);
  box-shadow: 0px -1px 6px 0px rgba(0, 0, 0, 0.75);
  border-radius: 10px;
  padding: 40px 30px;
}

.bookTable-wrapper .bookTable__form .bookTable__heading {
  text-align: center;
  margin-bottom: 30px;
}

.bookTable-wrapper .bookTable__form i {
  background-color: var(--secondary-color);
  height: 100%;
  width: 30px;
  color: var(--white-color);
  display: flex;
  justify-content: center;
  align-items: center;
}
.bookTable-wrapper .bookTable__form .bookTable__formBtn {
  display: flex;
  justify-content: center;
  align-items: center;
}
.bookTable-wrapper .bookTable__form .bookTable__formBtn a {
  background-color: var(--primary-color);
  padding: 10px;
  color: var(--white-color);
  text-align: center;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 10px;
  width: 100%;
}

/* ================= Close  BOOK A TABLE  section ==================== */

/* ================= Our Client slider Open  section ==================== */

.clients {
  margin-top: 85px;
}

.clients .swiper-slide img {
  width: 100%;
  height: 50px;
  object-fit: contain;
}
/* ================= Our Client slider Close  section ==================== */

/* ================= Our Client slider Open  section ==================== */

.blog {
  margin-top: 85px;
}
.blog .food__heading {
  text-align: center;
}

.blog__box {
  overflow: hidden;
  box-shadow: 2px 4px 17px -6px rgba(0, 0, 0, 0.84);
  -webkit-box-shadow: 2px 4px 17px -6px rgba(0, 0, 0, 0.84);
  -moz-box-shadow: 2px 4px 17px -6px rgba(0, 0, 0, 0.84);
}

.blog .blog__box .blog__image {
  width: 100%;
  max-height: 280px;
  min-height: 280px;
  overflow: hidden;
}

.blog .blog__box .blog__image img {
  width: 100%;
  max-height: 280px;
  min-height: 280px;
  object-fit: cover;
}

.blog .blog__box:hover img {
  transform: scale(1.5) rotate(8deg);
  transition: all 2s ease-in-out;
}

.blog__box .blog__descraption {
  padding: 15px;
}

.blog__box .blog__descraption h3 {
  font-size: 22px;
  font-weight: bold;
  padding-bottom: 10px;
}

.blog__box .blog__descraption a {
  font-weight: bold;
}

/* ================= Our Client slider Close  section ==================== */

/* ================= CTA Open section ====================  */

.cta {
  margin-top: 85px;
  background-image: url("../images/cta-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  min-height: 50vh;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(58, 58, 58, 0.7);
  z-index: -1;
}

.cta .food__heading .sub-heading,
.cta .food__heading .heading {
  color: var(--white-color);
}
.cta .cta__detail {
  color: var(--white-color);
  font-size: 20px;
}
/* ================= CTA Close section ====================  */

/* ================= our testimonials section ==================== */

.testimonial {
  margin-top: 85px;
}

.tesimonial__warp {
  margin-top: 40px;
}

.testo__image {
  text-align: center;
}

.testimonial .tesimonial__image .testoImage {
  width: 100%;
  min-height: 600px;
  max-height: 600px;
  object-fit: cover;
}
.testo__image img {
  width: 120px;
  height: 120px;
  border-radius: 100%;
  object-fit: cover;
  border: 4px solid var(--black-color);
}

.tesimonial__box .rating ul {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

.tesimonial__box .rating ul li i {
  color: var(--yellow-color);
  font-size: 18px;
}

.tesimonial__box .testo_dec {
  text-align: center;
}

.tesimonial__box .testo_dec .testo__info h5 {
  font-weight: bold;
}

.tesimonial__box .testo_dec .testo__info h6 {
  color: var(--primary-color);
}

.testimonial .swiper-button-prev::after,
.testimonial .swiper-rtl .swiper-button-next::after {
  content: "";
}

.testimonial .swiper-button-next::after,
.testimonial .swiper-rtl .swiper-button-prev::after {
  content: "";
}

.testimonial .swiper-button-next,
.testimonial .swiper-button-prev {
  top: 35%;
  color: var(--white-color);
  background-color: var(--black-color);
  padding: 2px 20px;
}

/* ================= our testimonials section ==================== */

/* ================= Footer section ==================== */

.footer {
  position: relative;
  margin-top: 100px;
  background: url("../images/footer-bg.png");
  background-size: cover;
  background-position: center center;
  min-height: 400px;
  isolation: isolate;
  display: flex;
  align-items: center;
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(58, 58, 58, 0.8);
  height: 100%;
  width: 100%;
  z-index: -1;
}

.footer .openingHour {
  background-color: var(--secondary-color);
  min-height: 380px;
  margin-top: -60px;
  outline: 3px solid var(--white-color);
  outline-offset: -20px;
  padding: 45px;
}

.footer .openingHour h4 {
  font-size: 25px;
  color: var(--white-color);
  font-weight: bold;
  text-transform: uppercase;
  padding-bottom: 15px;
}

.footer .openingHour .days p {
  color: var(--white-color);
}

.footer .openingHour .hours p {
  color: var(--primary-color);
  font-weight: bold;
}

.footer .openingHour .reseravtion p {
  margin-bottom: 0;
  color: var(--white-color);
}

.footer .openingHour .reseravtion a {
  color: var(--primary-color);
  font-weight: bold;
}

.footerMenu h3 {
  position: relative;
  font-size: 25px;
  color: var(--white-color);
  font-weight: bold;
  text-transform: uppercase;
  padding-bottom: 15px;
}
.footerMenu h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: var(--primary-color);
  width: calc(100% - 40px);
  height: 4px;
}
.footerMenu ul li a {
  color: var(--white-color);
  font-size: 20px;
  line-height: 2;
  position: relative;
  transition: all 0.5s ease-in-out;
}

.footerMenu ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  background-color: var(--primary-color);
  width: 0;
  height: 2px;
  transition: all 0.5s ease-in-out;
}

.footerMenu ul li a:hover::after {
  width: 100%;
}

.footerMenu ul li a:hover {
  color: var(--primary-color);
}

.contactInfo h3 {
  position: relative;
  font-size: 25px;
  color: var(--white-color);
  font-weight: bold;
  text-transform: uppercase;
  padding-bottom: 15px;
}
.contactInfo h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: var(--primary-color);
  width: calc(100% - 85%);
  height: 4px;
}
.contactInfo ul {
  margin-top: 25px;
}
.contactInfo ul li {
  color: var(--white-color);
  line-height: 3;
}

.contactInfo ul li i {
  margin-right: 10px;
}
.contactInfo ul li a {
  transition: all 0.5s ease-in-out;
}
.contactInfo ul li a:hover {
  color: var(--primary-color);
}

/* ================= Footer section ==================== */
/* ================= Footer Bar section ==================== */
.footerBar {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
}

.footerBar .copyright p {
  color: var(--black-color);
  margin-bottom: 0;
}

.footerBar .socialLink {
  display: flex;
  justify-content: center;
  align-items: center;
}
.footerBar .socialLink p {
  margin-bottom: 0;
}
.footerBar .socialLink ul {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 15px;
  margin-bottom: 0;
}

.footerBar .socialLink ul li {
  margin-right: 20px;
}

.footerBar .socialLink ul li a {
  transition: all 0.5s ease-in-out;
  border: 1px solid var(--black-color);
  height: 30px;
  width: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footerBar .socialLink ul li:hover a {
  color: var(--primary-color);
  border-color: var(--primary-color);
}

/* ================= Footer Bar section ==================== */
