/* 
<----All Pages Header Section Start------->
<----All Pages Header Section Start------->
<----All Pages Header Section Start------->
<----All Pages Header Section Start------->
 */
/* CSS */
/* Header Section  */
/* Header Section  */
/* Header Section  */
header {
  position: relative;
}

nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  background: var(--white-color);
}

/* fixed nav */
.fixed-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.fixed-nav .links a {
  color: var(--nav-fixed-color);
}

.fixed-nav .links a:hover {
  color: var(--nav-hover);
}

.fixed-nav .links a.active {
  color: var(--nav-active);
  border-bottom: 2px solid #000;
}

.fixed-nav .logo a {
  color: var(--black-color) !important;
}

.fixed-nav .logo a span {
  color: #ff0000 !important;
}

.fixed-nav .addTo-cart {
  color: var(--main-color) !important;
}

.fixed-nav .product-length {
  color: var(--nav-color) !important;
  background: var(--black-color) !important;
}

/* navbar section  */
.header .nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header .logo a {
  font-size: 42px;
  color: var(--black-color);
  font-weight: 600;
}

.header .logo a span {
  color: #ff0000;
}


.header .logo img {
  width: 150px;
}



/* nav toggle or click mobile menu  */
.header .nav-toggle {
  font-size: 2rem;
  color: var(--nav-link-color);
  background: transparent;
  border-color: transparent;
  transition: all 0.3s linear;
  cursor: pointer;
}

.header .nav-toggle:hover {
  color: var(--nav-hover);
}

/* navbar link menu  */
.links a {
  color: var(--nav-fixed-color);
  font-size: 18px;
  text-transform: capitalize;
  display: block;
  padding: 0.5rem 1rem;
  transition: all 0.3s linear;
  font-weight: 600;
  text-transform: uppercase;
}

.links a:hover {
  color: var(--nav-hover);
}

.links a.active {
  color: var(--nav-hover);
}

.links {
  height: 0;
  overflow: hidden;
  transition: all 0.3s linear;
}

/* show links call app.js  */
.show-links {
  height: 250px;
}

/* Add styles for the cart */
.header .shopping-cart {
  display: none;
  position: absolute;
  right: 3%;
  background: var(--white-color);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  z-index: 8;
  border: 1px solid var(--main-color);
  margin-top: 20px;
}

.header .cart .addTo-cart {
  position: relative;
  color: var(--nav-active);
  font-size: 22px;
  width: 22px;
  height: 22px;
}

.header .product-length {
  width: 15px;
  height: 15px;
  line-height: 15px;
  text-align: center;
  font-size: 12px;
  color: var(--white-color);
  font-weight: 600;
  background: var(--black-color);
  border-radius: 50%;
  display: inline-block;
  position: absolute;
  right: -7px;
  top: 0;
}

.header .show-cart {
  display: inline-block;
}

.header .shopping-cart {
  padding: 5px 0;
}

.header .cart-item .cartItem-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  padding: 7px 15px;
}

.header .cart-item .cartItem-container {
  border-bottom: 1px solid var(--main-color);
}

.header .cart-item .cartItem-container .cart-photo {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border: 2px solid var(--main-color);
  border-radius: 50%;
}

.header .cart-item .cartItem-container .cart-name {
  font-size: 16px;
  color: var(--title-color-2);
  font-weight: 600;
}

.header .cart-item .cartItem-container .cart-price {
  font-size: 14px;
  color: var(--title-color-3);
  display: block;
}

.header .cart-item .cartItem-container .quantity {
  font-size: 14px;
  color: var(--title-color-2);
  font-weight: 600;
}

.header .cart-item .cartItem-container .remove-btn {
  font-size: 20px;
  color: var(--main-color);
  border: none;
  cursor: pointer;
}

.header .shopping-cart .addProduct .msg {
  padding: 10px 15px;
  font-size: 18px;
  color: var(--main-color);
  text-align: center;
  font-weight: 600;
}

.header .shopping-cart .totalCartPrice {
  padding: 10px 15px;
  font-size: 18px;
  color: var(--main-color);
  text-align: center;
  font-weight: 600;
}

.header .shopping-cart .checkoutBtn {
  color: var(--white-color);
  font-size: 16px;
  background: var(--black-color);
  text-align: center;
  padding: 7px 0;
  transition: all 0.3s ease-in-out;
  border-radius: var(--border-radius);
  cursor: pointer;
}

.header .shopping-cart .checkoutBtn:hover {
  background: var(--main-color);
  color: var(--white-color);
}

/* Navbar Responsive  */
@media screen and (min-width: 992px) {
  nav {
    background: transparent;
  }

  .nav-center {
    width: 100%;
    max-width: 90%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
  }

  .nav-header {
    padding: 0;
  }

  .header .logo a {
    color: var(--nav-color);
  }

  .nav-toggle {
    display: none;
  }

  .links {
    height: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 100px;
  }

  .links .link-items {
    display: flex;
  }

  .links a {
    color: var(--nav-color);
    padding: 0;
    margin: 0 0.8rem;
    font-size: 15px;
  }

  .links a:hover {
    color: var(--nav-des-hover);
    padding: 0;
    background: transparent;
  }

  .links a.active {
    color: var(--nav-des-active);
    border-bottom: 2px solid #fff;
  }

  .header .cart .addTo-cart {
    color: var(--nav-color);
  }

  .header .product-length {
    color: var(--nav-color);
    background: var(--main-color);
  }

  .header .cart .addTo-cart:hover {
    color: var(--nav-des-hover);
  }

  .header .cart .addTo-cart:hover .product-length {
    color: var(--black-color);
    background: var(--white-color);
  }
}

@media screen and (max-width: 1105px) {
  .nav-center {
    max-width: 100%;
  }
}

@media screen and (max-width: 992px) {
  .fixed-nav .links a.active {
    border-bottom: none;
  }

  .header .nav-header {
    padding: 1rem;
  }

  .header .shopping-cart {
    left: 0;
  }
}

/* Banner Section */
/* Banner Section */
/* Banner Section */
.banner {
  background: url(../images/home-banner.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
}

.banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 3;
}

.banner .banner-container {
  position: relative;
  text-align: center;
  z-index: 3;
}

.banner .banner-container h1 {
  font-size: 90px;
  color: var(--title-color-1);
  text-transform: capitalize;
}

.banner .banner-container h1 span {
  color: var(--title-color-3);
}

.banner .banner-container p {
  color: var(--paragraph-color-1);
  font-size: 20px;
  width: 100%;
  max-width: 650px;
  margin: auto;
  padding: 1rem;
}

.banner .banner-container .button-container {
  padding-top: 1rem;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.banner .banner-container .button-container a {
  font-size: 20px;
  color: var(--button-color);
  border: 1px solid var(--border-color-1);
  width: 250px;
  display: block;
  text-align: center;
  text-transform: uppercase;
  padding: 10px 0;
  border-radius: var(--border-radius);
  transition: all 0.3s ease-in-out;
}

.banner .banner-container .button-container a:hover {
  background: var(--button-bg-color);
}

/*Banner Section Responsive */
@media screen and (max-width: 767px) {
  .banner .banner-container h1 {
    font-size: 50px;
  }

  .banner .banner-container p {
    font-size: 18px;
  }

  .banner .banner-container .button-container a {
    font-size: 18px;
  }
}

@media screen and (max-width: 400px) {
  .banner .banner-container h1 {
    font-size: 40px;
  }
}

/* 
<----All Pages Header Section End------->
<----All Pages Header Section End------->
<----All Pages Header Section End------->
<----All Pages Header Section End------->
 */

/* 
 <---------Home Page Start--------->
 <---------Home Page Start--------->
 <---------Home Page Start--------->
 <---------Home Page Start--------->
  */

/* About Section */
/* About Section */
/* About Section */
.about {
  background: var(--bg-1);
  padding: 60px 0;
}

.about .about-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 20px;
  row-gap: 20px;
  padding-top: 30px;
  align-items: center;
}

.about .about-container .about-item h4 {
  font-size: 45px;
  color: var(--title-color-2);
  font-weight: 500;
}

.about .about-container .about-item h4 span {
  color: var(--title-color-3);
}

.about .about-container .about-item p {
  font-size: 25px;
  color: var(--paragraph-color-2);
  font-weight: 400;
  padding: 10px 0;
  font-style: italic;
}

.about .about-container .about-item .photo {
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  border: 2px solid transparent;
  border-radius: var(--border-radius);
}

.about .about-container .about-item .photo img {
  width: 100%;
  border-radius: var(--border-radius);
  transition: all 0.3s ease-in-out;
}

.about .about-container .about-item .photo img:hover {
  transform: scale(1.05);
}

/*About Section Responsive */
@media screen and (max-width: 767px) {
  .about .about-container {
    grid-template-columns: 1fr;
  }

  .about .about-container .about-item h4 {
    font-size: 30px;
  }

  .about .about-container .about-item p {
    font-size: 18px;
  }
}

@media screen and (max-width: 400px) {
  .about .about-container .about-item h4 {
    font-size: 25px;
  }
}

/* Foods Section  */
/* Foods Section  */
/* Foods Section  */
.foods {
  background: var(--bg-2);
  padding: 60px 0;
}

.foods .foods-container .food {
  margin-top: 50px;
  text-align: center;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.foods .foods-container .food:after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: all 0.5s ease 0s;
  border-radius: var(--border-radius);
}

.foods .foods-container .food:hover:after {
  opacity: 1;
}

.foods .foods-container .food img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--border-radius);
}

.foods .foods-container .food .food-content {
  width: 100%;
  background: rgba(206, 20, 56, 0.8);
  padding: 10px 0;
  color: var(--white-color);
  position: absolute;
  bottom: -100%;
  left: 0;
  z-index: 1;
  transition: all 0.5s ease 0s;
  border-radius: 0 0 15px 15px;
}

.foods .foods-container .food:hover .food-content {
  bottom: 0;
}

.foods .foods-container .food h3 {
  font-size: 20px;
  font-weight: 600;
  padding: 10px 0;
  text-transform: uppercase;
  color: var(--title-color-1);
}

.foods .foods-container .food p {
  font-size: 16px;
  font-weight: 500;
  color: var(--paragraph-color-1);
}

.foods .foods-container .food .food-photos {
  width: 100%;
  list-style: none;
  padding: 0;
  margin: 0;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.foods .foods-container .food .food-photos li {
  display: inline-block;
  margin-right: 7px;
  position: relative;
  transform: translateY(-100px);
  transition: all 0.5s ease 0s;
}

.foods .foods-container .food:hover .food-photos li:nth-child(odd) {
  transition-delay: 0.5s;
}

.foods .foods-container .food:hover .food-photos li:nth-child(even) {
  transition-delay: 0.8s;
}

.foods .foods-container .food .food-photos li:before {
  content: "";
  position: absolute;
  width: 1px;
  height: 50px;
  background: var(--white-color);
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.foods .foods-container .food:hover .food-photos li {
  transform: translateY(0);
}

.foods .foods-container .food .food-photos li img {
  display: block;
  width: 40px;
  height: 40px;
  border: 2px solid var(--white-color);
  margin-top: 50px;
  border-radius: 50%;
  opacity: 1;
  transition: all 0.3s ease 0s;
}


/* 
 <---------Home Page End--------->
 <---------Home Page End--------->
 <---------Home Page End--------->
 <---------Home Page End--------->
  */

/* 
 <---------Menu Page Start--------->
 <---------Menu Page Start--------->
 <---------Menu Page Start--------->
  */
/* Banner Section */
/* Banner Section */
/* Banner Section */
.banner.menu-banner {
  background: url(../images/menu-banner.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

/* Product Section */
/* Product Section */
/* Product Section */
.product {
  padding-top: 60px;
}

.product .product-container {
  background: url(../images/product-banner.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding: 60px 10px;
  position: relative;
  margin-top: 30px;
}

.product .product-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 3;
}

/* Menu Container  */
.menu-container {
  position: relative;
  z-index: 4;
  padding: 10px 0;
}

.menu-container .menu-item {
  margin-top: 20px;
}

.menu-container .menu-item .menu-info {
  background: var(--bg-1);
  box-shadow: var(--box-shadow);
  padding: 15px;
  width: 100%;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: var(--border-radius);
  transition: all 0.3s ease-in-out;
  border-bottom: 5px solid var(--white-color);
}

.menu-container .menu-item .menu-info:hover {
  opacity: 1;
  border-bottom-color: var(--main-color);
}

.menu-container .menu-item .menu-info img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50px;
  border: 3px solid var(--main-color);
  transition: all 0.3s ease-in-out;
}

.menu-container .menu-info:hover img {
  transform: scale(1.05);
}

.menu-container .menu-item .menu-info .product-name {
  font-size: 16px;
  font-weight: 600;
  color: var(--main-color);
}

.menu-container .menu-item .menu-info .price {
  padding-top: 15px;
  color: var(--black-color);
  font-size: 22px;
  font-weight: 600;
}

.menu-container .menu-item .menu-info .star {
  padding-top: 7px;
}

.menu-container .menu-item .menu-info .star i {
  color: var(--black-color);
  font-size: 18px;
}

/* Opening Hours */
/* Opening Hours */
/* Opening Hours */
.opening-hours.menuPage {
  background: var(--bg-2);
}

/* 
 <---------Menu Page End--------->
 <---------Menu Page End--------->
 <---------Menu Page End--------->
  */

/* 
<---------Cart Page Start---------->
<---------Cart Page Start---------->
<---------Cart Page Start---------->
 */
/* Header Section  */
/* Header Section  */
/* Header Section  */

@media screen and (min-width: 992px) {
  .orderPage-header .logo a {
    color: var(--black-color);
  }

  .orderPage-header .links a {
    color: var(--black-color);
  }

  .orderPage-header .links a:hover {
    color: var(--nav-hover);
  }

  .orderPage-header .links a.active {
    color: var(--nav-active);
    border-bottom: 1px solid var(--nav-active);
  }

  .orderPage-header .cart .addTo-cart {
    color: var(--black-color);
  }
}

/* order Section */
/* order Section */
/* order Section */
.order-container {
  background: var(--bg-2);
  padding: 60px 10px;
  margin-top: 5.1rem;
}

.order-container .order-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 40px;
  row-gap: 40px;
  justify-content: center;
  align-items: center;
}

.order-container .order-items .photo {
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: var(--border-radius);
  transition: all 0.3s ease-in-out;
}

.order-container .order-items .photo img {
  width: 100%;
  border-radius: 15px;
  transition: all 0.3s ease-in-out;
}

.order-container .order-items .photo img:hover {
  transform: scale(1.05);
}

.order-container .order-items .order-details .order-name {
  font-size: 25px;
  color: var(--title-color-3);
}

.order-container .order-items .order-details .product-description {
  font-size: 18px;
  color: var(--paragraph-color-2);
  padding: 1rem 0;
}

.order-container .order-items .order-details .order-price {
  font-size: 20px;
  padding: 1rem 0;
  color: var(--main-color);
  font-weight: 600;
}

.order-container .order-items .order-details .quantity {
  display: flex;
  gap: 5px;
}

.order-container .order-items .order-details .quantity button {
  padding: 0 10px;
  color: var(--black-color);
  font-size: 18px;
  background: var(--white-color);
  border-radius: 15px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

.order-container .order-items .order-details .quantity button:hover {
  background: var(--main-color);
  color: var(--white-color);
}

.order-container .order-items .order-details .quantity input {
  width: 90px;
  text-align: center;
  font-size: 18px;
  color: var(--black-color);
  border-radius: 15px;
}

.order-container .order-items .order-details .button-container {
  padding-top: 2rem;
}

.order-container .order-items .order-details .button-container button {
  padding: 0 20px;
  color: var(--black-color);
  font-size: 25px;
  background: var(--white-color);
  border-radius: 15px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

.order-container .order-items .order-details .button-container button:hover {
  background: var(--button-bg-color);
  color: var(--white-color);
}

/* Add this CSS for the popup message styling */
.order-container .popup-message {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 0;
  background-color: #f1f1f1;
  padding: 10px;
  border: 1px solid var(--main-color);
  border-radius: 5px;
  z-index: 1;
  font-size: 20px;
  color: var(--black-color);
  font-weight: 600;
}

.order-container .popup-message button {
  margin-left: 10px;
  cursor: pointer;
  font-size: 20px;
  font-weight: 600;
  padding: 0 2rem;
  border: none;
  color: var(--main-color);
}

/*Order Section Responsive  */
@media screen and (max-width: 767px) {
  .order-container .order-items {
    grid-template-columns: 1fr;
  }
}

/* 
<---------Cart Page End---------->
<---------Cart Page End---------->
<---------Cart Page End---------->
*/

/* 
<---------Cart Page Start---------->
<---------Cart Page Start---------->
<---------Cart Page Start---------->
*/

/* Checkout Section */
/* Checkout Section */
/* Checkout Section */
.checkout {
  background: var(--bg-2);
  padding: 60px 10px;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.checkout .backMenu {
  padding: 3rem 10px;
}

.checkout .backMenu a {
  position: fixed;
  left: 0;
  top: 0;
  font-size: 30px;
  display: block;
  background: var(--white-color);
  width: 60px;
  border-radius: 0 50% 0 50%;
  text-align: center;
  box-shadow: var(--box-shadow);
}

.checkout .checkout-container {
  width: 100%;
  max-width: 600px;
  margin: auto;
  background: var(--bg-1);
  box-shadow: var(--box-shadow);
  border-radius: var(--border-radius);
  padding: 20px 0;
}

/* Cart */
.checkout .checkout-container .cart .cartItem-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 0.5rem 15px;
  border-bottom: 2px dashed var(--border-color-2);
}

.checkout .checkout-container .cart .cartItem-container .cart-photo {
  width: 100px;
  height: 100px;
  border: 2px solid var(--border-color-2);
  border-radius: 50%;
  object-fit: cover;
}

.checkout .checkout-container .cart .cartItem-container .cart-name {
  font-size: 25px;
  color: var(--title-color-3);
}

.checkout .checkout-container .cart .cartItem-container .quantity {
  padding: 10px 0;
  font-size: 18px;
  font-weight: 400;
  color: var(--title-color-2);
}

.checkout .checkout-container .cart .cartItem-container .price {
  font-size: 18px;
  font-weight: 700;
  color: var(--title-color-4);
}

.checkout .checkout-container .cart .cartItem-container .remove-btn {
  font-size: 25px;
  color: var(--main-color);
  border: none;
  background: none;
}

.checkout .checkout-container .cart .msg {
  font-size: 20px;
  color: var(--title-color-3);
  padding: 10px 15px;
  font-weight: 600;
  text-align: center;
}

.checkout .checkout-container .cart .delivery-charge {
  font-size: 20px;
  color: var(--title-color-3);
  padding: 10px 15px;
  font-weight: 600;
  text-align: center;
}

.checkout .checkout-container .cart .totalCartPrice {
  font-size: 20px;
  color: var(--title-color-4);
  padding-bottom: 10px;
  padding-left: 15px;
  padding-right: 15px;
  font-weight: 600;
  border-bottom: 2px dashed var(--border-color-2);
  text-align: center;
}

/* Order Form */
.checkout .checkout-container .order-form {
  padding: 30px 15px;
}

.checkout .checkout-container .order-form .title h1 {
  font-size: 20px;
  color: var(--title-color-3);
  padding: 20px 0;
  font-weight: 600;
  text-align: center;
}

.checkout .checkout-container .order-form .input-field {
  padding: 5px 0;
}

.checkout .checkout-container .order-form .input-field input {
  width: 100%;
  border: none;
  border: 1px solid var(--border-color-2);
  padding: 10px;
  font-size: 17px;
  color: var(--title-color-2);
  border-radius: var(--border-radius);
}

.checkout .checkout-container .order-form .input-field input:focus {
  outline: none;
  border: 2px solid var(--border-color-2);
}

.checkout .checkout-container .order-form .radio-field {
  padding: 10px 0;
}

.checkout .checkout-container .order-form .radio-field .radio-input {
  display: none;
}

.checkout .checkout-container .order-form .radio-field .radio-label {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 5px;
  font-size: 17px;
  cursor: pointer;
}

.checkout .checkout-container .order-form .radio-field .radio-button {
  height: 17px;
  width: 17px;
  border: 5px solid var(--border-color-2);
  border-radius: 50%;
  display: inline-block;
  position: relative;
  transform: translateY(-2px);
}

.checkout .checkout-container .order-form .radio-field .radio-button::after {
  content: "";
  display: block;
  height: 17px;
  width: 17px;
  position: absolute;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transition: opacity 0.1s;
  transform: translate(-50%, -50%);
  background-color: var(--main-color);
  opacity: 0;
}

.checkout .checkout-container .order-form .radio-field .radio-input:checked+.radio-label .radio-button:after {
  opacity: 1;
}

.checkout .checkout-container .req-message {
  display: none;
  color: #ff0000;
  font-size: 14px;
  font-weight: 600;
  padding: 5px 10px;
}

.checkout .checkout-container .placeOrder-message {
  /* display: none; */
  width: 100%;
  max-width: 350px;
  box-shadow: var(--box-shadow);
  background: var(--white-color);
  padding: 20px;
  font-size: 20px;
  color: var(--main-color);
  text-align: center;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.checkout .checkout-container .placeOrder-message button {
  width: 40px;
}

.checkout .checkout-container #onlinePaymentButtons {
  display: none;
}

.checkout .checkout-container #onlinePaymentButtons .paymentButton {
  background: none;
  border: none;
}

.checkout .checkout-container #onlinePaymentButtons .paymentButton img {
  width: 80px;
  height: 40px;
  cursor: pointer;
}

/* Payments Form */
.checkout .checkout-container .payments-form {
  display: none;
}

.checkout .checkout-container .payments-form .title h1 {
  font-size: 20px;
  color: var(--title-color-3);
  padding: 20px 0;
  font-weight: 600;
  text-align: center;
}

.payments-form .form-container {
  background: var(--card-bg);
  width: 100%;
  max-width: 400px;
  margin: auto;
  padding: 15px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  transition: all 0.3s ease-in-out;
}

.payments-form .form-container:hover {
  box-shadow: var(--hover-box-shadow);
  cursor: pointer;
}

.payments-form .form-container .card-photo {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.payments-form .form-container .card-photo img {
  width: 100px;
}

.payments-form .form-container .input-item {
  padding: 5px 0;
}

.payments-form .form-container .input-item label {
  font-size: 14px;
  color: var(--title-color-4);
  font-weight: 700;

}

.payments-form .form-container .input-item input::placeholder {
  color: var(--main-color);
}

.payments-form .form-container .input-item input:focus {
  outline: none;
  box-shadow: none;
  border-bottom: 2px solid var(--border-color-2);
}

.payments-form .form-container .input-item input {
  width: 100%;
  background: none;
  border: none;
  padding: 0.4rem 0;
  font-size: 15px;
  border-bottom: 1px solid var(--border-color-2);
}

.payments-form .form-container .input-item.expiry-cvv {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.payments-form .form-container .input-item.expiry-cvv input {
  width: 55px;
}

.payments-form .button-container {
  padding-top: 1rem;
  text-align: center;
}

.payments-form .button-container button {
  padding: 7px;
  width: 250px !important;
  font-size: 15px;
  background: var(--black-color) !important;
  color: var(--button-color);
  font-weight: 600;
  border: none;
  border-radius: var(--border-radius);
  cursor: pointer;
}

.order-form .button-container {
  padding-top: 3rem;
  text-align: center;
}

.order-form .button-container button {
  padding: 7px;
  font-size: 15px;
  background: var(--button-bg-color);
  color: var(--button-color);
  font-weight: 600;
  border: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  width: 100%;
}

/* Checkout Section Responsive */
@media screen and (max-width: 550px) {
  .checkout .checkout-container .cart .cartItem-container .cart-photo {
    width: 60px;
    height: 60px;
  }

  .checkout .checkout-container .cart .cartItem-container .cart-name {
    font-size: 18px;
  }

  .checkout .checkout-container .cart .cartItem-container .quantity {
    font-size: 15px;
  }

  .checkout .checkout-container .cart .cartItem-container .price {
    font-size: 15px;
  }

  .checkout .checkout-container .cart .delivery-charge {
    font-size: 18px;
  }

  .checkout .checkout-container .cart .totalCartPrice {
    font-size: 18px;
  }

}

@media screen and (max-width: 400px) {
  .checkout .checkout-container .cart .cartItem-container .cart-photo {
    width: 40px;
    height: 40px;
  }

  .checkout .checkout-container .cart .cartItem-container .cart-name {
    font-size: 14px;
  }

  .checkout .checkout-container .cart .cartItem-container .quantity {
    font-size: 14px;
  }

  .checkout .checkout-container .cart .cartItem-container .price {
    font-size: 14px;
  }

  .checkout .checkout-container .cart .delivery-charge {
    font-size: 16px;
  }

  .checkout .checkout-container .cart .totalCartPrice {
    font-size: 16px;
  }

}

/* 
<---------Cart Page End---------->
<---------Cart Page End---------->
<---------Cart Page End---------->
*/

/* 
 <---------Chef Page Start--------->
 <---------Chef Page Start--------->
 <---------Chef Page Start--------->
  */

/* Banner Section */
.banner.chef-banner {
  background: url(../images/chef-banner.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

/* About kitchen Section */
/* About kitchen Section */
/* About kitchen Section */
.about-kitchen {
  background: var(--bg-1);
  padding: 60px 0;
}

.about-kitchen .kitchen-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  column-gap: 30px;
  row-gap: 30px;
}

.about-kitchen .kitchen-container .kitchen-item h2 {
  font-size: 25px;
  font-weight: 600;
  color: var(--title-color-2);
  padding: 10px 0;
}

.about-kitchen .kitchen-container .kitchen-item h2 span {
  color: var(--title-color-3);
}

.about-kitchen .kitchen-container .kitchen-item p {
  font-size: 18px;
  color: var(--paragraph-color-2);
  padding: 10px 0;
  font-weight: 400;
}

.about-kitchen .kitchen-container .kitchen-item .button-container {
  padding-top: 1rem;
}

.about-kitchen .kitchen-container .kitchen-item .button-container a {
  font-size: 20px;
  color: var(--content-button-color);
  border: 1px solid var(--border-color-2);
  width: 200px;
  display: block;
  text-align: center;
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: var(--border-radius);
  transition: all 0.3s ease-in-out;
}

.about-kitchen .kitchen-container .kitchen-item .button-container a:hover {
  color: var(--button-color);
  background: var(--button-bg-color);
}

.about-kitchen .kitchen-container .kitchen-item .photo {
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: var(--border-radius);
  transition: all 0.3s ease-in-out;
}

.about-kitchen .kitchen-container .kitchen-item .photo img {
  width: 100%;
  border-radius: var(--border-radius);
  transition: all 0.3s ease-in-out;
}

.about-kitchen .kitchen-container .kitchen-item .photo img:hover {
  transform: scale(1.05);
}

/*About Kitchen Section Responsive */
@media screen and (max-width: 767px) {
  .about-kitchen .kitchen-container {
    grid-template-columns: 1fr;
  }

  .about-kitchen .kitchen-container .kitchen-item {
    text-align: center;
  }

  .about-kitchen .kitchen-container .kitchen-item .button-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
}

/* Chef Section */
/* Chef Section */
/* Chef Section */
.chef {
  background: var(--bg-2);
  padding: 60px 0;
}

.chef .chef-container {
  padding-top: 30px;
}

.chef .chef-container .chef-info {
  text-align: center;
  position: relative;
  overflow: hidden;
  color: #fff;
}

.chef .chef-container .chef-info::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: all 0.5s ease 0s;
  border-radius: var(--border-radius);
}

.chef .chef-container .chef-info:hover:before {
  opacity: 1;
}

.chef .chef-container .chef-info:after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  left: 170%;
  top: 0;
  transform: skewX(45deg);
  transition: all 1s ease 0s;
  background-color: var(--main-color);
  z-index: 1;
}

.chef .chef-container .chef-info:hover:after {
  left: -170%;
  top: 0;
}

.chef .chef-container .chef-info img {
  width: 100%;
  border-radius: var(--border-radius);
  height: 450px;
  object-fit: cover;
}

.chef .chef-container .chef-info .chef-detail {
  position: absolute;
  bottom: -100%;
  left: 0;
  width: 100%;
  transition: all 0.5s ease 0s;
}

.chef .chef-container .chef-info:hover .chef-detail {
  bottom: 30%;
}

.chef .chef-container .chef-info .chef-name {
  font-size: 35px;
  color: var(--title-color-1);
  font-weight: 600;
  padding: 5px 0;
}

.chef .chef-container .chef-info .position-name {
  font-size: 20px;
  font-weight: 600;
  color: var(--title-color-3);
}

.chef .chef-container .chef-info .social-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  padding-top: 20px;
}

.chef .chef-container .chef-info .social-icon a {
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  border-radius: 50%;
  font-size: 18px;
  background: var(--white-color);
  color: var(--main-color);
  display: block;
  transition: all 0.3s ease-in-out;
}

.chef .chef-container .chef-info .social-icon svg {
  width: 18px;
  height: 18px;
  margin-top: 5px;
}

.chef .chef-container .chef-info .social-icon path {
  fill: var(--main-color);
}

.chef .chef-container .chef-info .social-icon a:hover {
  background: var(--main-color);
  color: var(--white-color);
}

.chef .chef-container .chef-info .social-icon a:hover path {
  fill: var(--white-color);
}

.chef .chef-container .chef-info .button-container {
  padding-top: 1rem;
  text-align: center;
}

.chef .chef-container .chef-info .button-container button {
  font-size: 18px;
  font-weight: 600;
  color: var(--content-color);
  border: 1px solid var(--border-color-1);
  width: 150px;
  text-transform: uppercase;
  background: transparent;
  padding: 10px 0;
  border-radius: var(--border-radius);
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

.chef .chef-container .chef-info .button-container button:hover {
  color: var(--button-color);
  background: var(--button-bg-color);
}

.chef .chef-container .chef-info .chef-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(18, 34, 84, 0.9);
  border-radius: 0 0 15px 15px;
  padding: 10px 0;
}

.chef .chef-container .chef-info:hover .chef-bottom {
  display: none;
}

.chef .chef-container .chef-bottom h1 {
  font-size: 25px;
  color: var(--title-color-1);
  font-weight: 600;
}

.chef .chef-container .chef-bottom p {
  font-size: 16px;
  color: var(--title-color-3);
  padding: 5px 0;
  font-weight: 600;
}

/*Chef Section Responsive */
@media screen and (max-width: 620px) {
  .chef .chef-container .chef-info img {
    height: 550px;
  }
}

/* 
 <---------Chef Page End--------->
 <---------Chef Page End--------->
 <---------Chef Page End--------->
  */

/* 
 <---------AboutChef Page Start--------->
 <---------AboutChef Page Start--------->
 <---------AboutChef Page Start--------->
  */
/* Banner Section */
/* Banner Section */
/* Banner Section */
.banner.aboutChef-banner {
  background: url(../images/aboutChef-banner.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  min-height: 80vh;
}

/* About chef Section */
/* About chef Section */
/* About chef Section */
.about-chef {
  background: var(--bg-1);
  padding: 60px 0;
}

.aboutChef-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 20px;
  row-gap: 20px;
  align-items: center;
}

.aboutChef-container .photo {
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  border: 2px solid transparent;
  border-radius: var(--border-radius);
}

.aboutChef-container .photo img {
  width: 100%;
  vertical-align: middle;
  transition: all 0.3s ease-in-out;
  border-radius: var(--border-radius);
}

.aboutChef-container .photo img:hover {
  transform: scale(1.05);
}

.aboutChef-container .chef-details h1 {
  font-size: 30px;
  font-weight: 900;
  color: var(--title-color-4);
}

.aboutChef-container .chef-details h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--title-color-3);
}

.aboutChef-container .chef-details p {
  font-size: 18px;
  color: var(--paragraph-color-2);
  padding: 10px 0;
}

.aboutChef-container .chef-details .button-container {
  padding-top: 1rem;
}

.aboutChef-container .chef-details .button-container a {
  font-size: 20px;
  color: var(--content-button-color);
  border: 1px solid var(--border-color-2);
  width: 150px;
  display: block;
  text-align: center;
  text-transform: uppercase;
  padding: 10px 0;
  border-radius: var(--border-radius);
  transition: all 0.3s ease-in-out;
}

.aboutChef-container .chef-details .button-container a:hover {
  color: var(--button-color);
  background: var(--button-bg-color);
}

.about-chef .social-links {
  position: fixed;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 9;
}

.about-chef .social-links a {
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  border-radius: 50%;
  font-size: 20px;
  background: var(--black-color);
  color: var(--white-color);
  display: block;
  transition: all 0.3s ease-in-out;
  margin-top: 5px;
}

.about-chef .social-links svg {
  width: 18px;
  height: 18px;
  margin-top: 5px;
}

.about-chef .social-links path {
  fill: var(--white-color);
}

.about-chef .social-links a:hover {
  background: var(--main-color);
  color: var(--white-color);
}

.about-chef .social-links a:hover path {
  fill: var(--white-color);
}

/*aboutChef Section Responsive */
@media screen and (max-width: 992px) {
  .aboutChef-container {
    padding-left: 35px;
  }
}

@media screen and (max-width: 767px) {
  .aboutChef-container {
    grid-template-columns: 1fr;
  }
}

/* Work Section */
/* Work Section */
/* Work Section */
.work-section {
  background: var(--bg-2);
  padding: 60px 0;
}

.work-section .work-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 20px;
  row-gap: 20px;
  padding-top: 30px;
}

.work-section .work-container img {
  width: 100%;
  border-radius: var(--border-radius);
  transition: all 0.3s ease-in-out;
  cursor: cell;
}

.work-section .work-container img:hover {
  transform: scale(1.05);
  box-shadow: var(--hover-box-shadow);
}

.work-section .work-introduction {
  padding-top: 50px;
}

.work-section .work-introduction h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--title-color-2);
  padding: 10px 0;
}

.work-section .work-introduction h3 span {
  color: var(--title-color-3);
}

.work-section .work-introduction .work-detail {
  font-size: 18px;
  color: var(--paragraph-color-2);
}

/*Work Section Responsive */
@media screen and (max-width: 992px) {
  .work-section {
    padding-left: 35px;
  }
}

@media screen and (max-width: 767px) {
  .work-section .work-container {
    grid-template-columns: 1fr;
  }
}

/* Footer Section */
/* Footer Section */
/* Footer Section */
.footer.aboutChef-footer {
  position: relative;
  z-index: 10;
}

/* 
 <---------AboutChef Page End--------->
 <---------AboutChef Page End--------->
 <---------AboutChef Page End--------->
  */

/* 
 <---------Blog Page Start--------->
 <---------Blog Page Start--------->
 <---------Blog Page Start--------->
  */
/* Banner Section */
/* Banner Section */
/* Banner Section */
.banner.blog-banner {
  background: url(../images/blog-banner.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.banner.blog-banner::before {
  background: rgba(0, 0, 0, 0.7);
}

/* Blog Section */
/* Blog Section */
/* Blog Section */
.blog {
  background: var(--bg-2);
  padding: 60px 0;
}

.blog .blog-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 20px;
  row-gap: 20px;
}

.blog .blog-container .blog-item {
  box-shadow: var(--box-shadow);
  border-radius: 0 0 15px 15px;
}

.blog .blog-container .blog-item .photo {
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: var(--border-radius);
  transition: all 0.3s ease-in-out;
}

.blog .blog-container .blog-item .photo img {
  width: 100%;
  border-radius: 15px 15px 0 0;
  transition: all 0.3s ease-in-out;
}

.blog .blog-container .blog-item .photo img:hover {
  transform: scale(1.05);
}

.blog .blog-container .blog-item .blog-detail {
  padding: 15px;
}

.blog .blog-container .blog-item .blog-name {
  font-size: 20px;
  color: var(--title-color-4);
  font-weight: 900;
}

.blog .blog-container .blog-item .category-name {
  font-size: 18px;
  color: var(--title-color-3);
  padding: 5px 0;
}

.blog .blog-container .blog-item .button-container {
  padding-top: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.blog .blog-container .blog-item .star i {
  color: var(--review-color);
  font-size: 18px;
}

.blog .blog-container .blog-item .button-container button {
  font-size: 17px;
  font-weight: 600;
  background: none;
  color: var(--content-button-color);
  border: 1px solid var(--border-color-2);
  display: block;
  text-align: center;
  text-transform: uppercase;
  padding: 5px 20px;
  border-radius: var(--border-radius);
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

.blog .blog-container .blog-item .button-container button:hover {
  color: var(--button-color);
  background: var(--button-bg-color);
}

/*Blog Section Responsive */
@media screen and (max-width: 992px) {
  .blog .blog-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 767px) {
  .blog .blog-container {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 335px) {
  .blog .blog-container .blog-item .button-container .star i {
    font-size: 15px;
  }

  .blog .blog-container .blog-item .button-container button {
    font-size: 15px;
  }
}

/* 
 <---------Blog Page End--------->
 <---------Blog Page End--------->
 <---------Blog Page End--------->
  */

/* 
 <---------Blog Info Page Start--------->
 <---------Blog Info Page Start--------->
 <---------Blog Info Page Start--------->
  */
/* Banner Section */
/* Banner Section */
/* Banner Section */
.banner.blogInfo-banner {
  background: url(../images/blogInfo-banner.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

/* Blog Info Section */
/* Blog Info Section */
/* Blog Info Section */
.blog-info {
  background: var(--bg-1);
  padding: 60px 0;
}

.blog-info #blog-name {
  color: var(--title-color-3);
}

.blog-info .blogInfo-container .blog-details {
  text-align: center;
}

.blog-info .blogInfo-container .blog-details h3 {
  font-size: 25px;
  font-weight: 600;
  color: var(--title-color-3);
  display: inline-block;
  padding: 5px 0;
  border-bottom: 2px dashed var(--title-color-3);
}

.blog-info .blogInfo-container .blog-details h3 span {
  color: var(--title-color-2);
}

.blog-info .blogInfo-container .blog-details p {
  font-size: 18px;
  color: var(--title-color-3);
  display: inline-block;
  padding: 5px 0;
  margin-top: 10px;
  font-weight: 600;
  border-bottom: 2px dashed var(--title-color-3);
}

.blog-info .blogInfo-container .blog-details p span {
  color: var(--title-color-2);
}

.blog-info .blogInfo-container .photo {
  margin-top: 30px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: var(--border-radius);
  transition: all 0.3s ease-in-out;
}

.blog-info .blogInfo-container .photo img {
  width: 100%;
  border-radius: var(--border-radius);
  transition: all 0.3s ease-in-out;
}

.blog-info .blogInfo-container .photo img:hover {
  transform: scale(1.05);
}

.blog-info .blogInfo-details {
  margin-top: 30px;
}

.blog-info .blogInfo-details h3 {
  font-size: 25px;
  font-weight: 600;
  color: var(--title-color-2);
  margin-bottom: 00px;
}

.blog-info .blogInfo-details h3 span {
  color: var(--title-color-3);
}

.blog-info .blogInfo-details #blog-description {
  font-size: 18px;
  font-weight: 400;
  color: var(--paragraph-color-2);
  padding-top: 10px;
}

/* Best Dining Section */
/* Best Dining Section */
/* Best Dining Section */
.best-dining {
  background: var(--bg-2);
  padding: 60px 0;
}

.best-dining .dining-container {
  padding-top: 30px;
}

.best-dining .dining-container .dining-item {
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  border: 1px solid transparent;
  border-radius: var(--border-radius);
}

.best-dining .dining-container .dining-item img {
  width: 100%;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border-radius: var(--border-radius);
}

.best-dining .dining-container .dining-item img:hover {
  transform: scale(1.05);
}

.best-dining .modalImage-section {
  position: relative;
}

.best-dining .modal {
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.25s linear;
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9999;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.9);
  -webkit-backdrop-filter: blur(7px);
  backdrop-filter: blur(7px);
}

.best-dining .modal-container {
  width: 100%;
  max-width: 700px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.best-dining .modal-content {
  display: block;
  width: 100%;
  border-radius: 5px;
}

.best-dining .close {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  padding: 0px 0px 6px 0px;
  top: 35px;
  right: 35px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  border: none;
  cursor: pointer;
  transition: transform 0.3s;
}

.best-dining .close {
  background: none;
  border: none;
}

.best-dining .close:hover {
  transform: scale(0.9);
}

.best-dining #caption {
  margin: auto;
  display: block;
  width: 100%;
  text-align: center;
  color: #ccc;
  padding: 10px;
  opacity: 0;
  font-size: 14px;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s;
}

/* 
 <---------Blog Info Page End--------->
 <---------Blog Info Page End--------->
 <---------Blog Info Page End--------->
  */




/* 
 <---------Contact Page Start--------->
 <---------Contact Page Start--------->
 <---------Contact Page Start--------->
  */
/* Banner Section */
/* Banner Section */
/* Banner Section */
.banner.contact-banner {
  background: url(../images/contact-banner.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}



/* Contact Section */
/* Contact Section */
/* Contact Section */
.contact {
  background: var(--bg-2);
  padding: 60px 0;
}

.contact-container {
  padding-top: 30px;
}

/* Contact Item */
.contact-container .contact-item .contact-form .input-fill {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 20px;
  row-gap: 20px;
}

.contact-container .contact-item .contact-form .input-fill input {
  width: 100%;
  background: var(--input-field-bg);
  border: none;
  color: var(--input-field-color);
  font-size: 16px;
  font-weight: 400;
  padding: 0 15px;
  height: 54px;
  line-height: 54px;
  outline: none;
  border-radius: var(--border-radius);
}

.contact-container .contact-item .contact-form .input-fill input::placeholder {
  color: var(--input-field-color);
}

.contact-container .contact-item .contact-form .input-fill textarea {
  width: 100%;
  background: var(--input-field-bg);
  border: none;
  color: var(--input-field-color);
  font-size: 16px;
  font-weight: 400;
  padding: 0 15px;
  height: 54px;
  line-height: 54px;
  outline: none;
  border-radius: var(--border-radius);
}

.contact-container .contact-item .contact-form .input-fill textarea::placeholder {
  color: var(--input-field-color);
}

.contact-container .contact-item .contact-form .input-fill .req-message {
  display: none;
  color: var(--input-req-color);
  font-size: 16px;
  font-weight: 500;
}

.contact-container .contact-item .contact-form .button-container {
  padding-top: 20px;
}

.contact-container .contact-item .contact-form .button-container button {
  background: var(--black-color);
  border: none;
  width: 250px;
  padding: 10px 0;
  font-size: 18px;
  color: var(--white-color);
  font-weight: 600;
  cursor: pointer;
  border-radius: var(--border-radius);
  transition: all 0.3s ease-in-out;
}

.contact-container .contact-item .contact-form .button-container button:hover {
  background: var(--main-color);
}

.contact-container .contact-item .contactSubmit-message {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--white-color);
  width: 100%;
  max-width: 500px;
  padding: 20px;
  display: none;
}

.contact-container .contact-item .contactSubmit-message {
  font-size: 18px;
  color: var(--title-color-2);
  font-weight: 500;
  text-align: center;
}

.contact-container .contact-item .contactSubmit-message .button-container {
  padding-top: 1rem;
}

.contact-container .contact-item .contactSubmit-message .button-container button {
  background: var(--black-color);
  padding: 7px 10px;
  border: none;
  outline: none;
  color: var(--white-color);
  transition: all 0.3s ease-in-out;
  font-size: 17px;
  font-weight: 500;
  border-radius: 5px;
}

.contact-container .contact-item .contactSubmit-message .button-container button:hover {
  background: var(--button-bg-color);
  cursor: pointer;
}

/* Contact Section Responsive */
@media screen and (max-width: 767px) {
  .contact-container .contact-item .contact-form .input-fill {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 767px) {}

/* 
 <---------Contact Page End--------->
 <---------Contact Page End--------->
 <---------Contact Page End--------->
  */




/* 
 <---------Booking Page Start--------->
 <---------Booking Page Start--------->
 <---------Booking Page Start--------->
*/

/* Banner Section */
/* Banner Section */
/* Banner Section */
.banner.booking-banner {
  background: url(../images/booking-banner.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}


/* Booking Section */
/* Booking Section */
/* Booking Section */
.booking {
  background: var(--bg-2);
  padding: 60px 0;
}

.booking-container {
  padding-top: 30px;
}

/* Booking Form */
.booking-container .booking-item .booking-form .input-fill {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 20px;
  row-gap: 20px;
}

.booking-container .booking-item .booking-form .input-fill label {
  color: var(--input-field-color);
  font-size: 18px;
  padding: 0 15px;
  font-weight: 600;
}

.booking-container .booking-item .booking-form .input-fill label span {
  color: #ff0000;
}

.booking-container .booking-item .booking-form .input-fill input {
  width: 100%;
  background: var(--input-field-bg);
  border: none;
  color: var(--input-field-color);
  font-size: 16px;
  font-weight: 400;
  padding: 0 15px;
  height: 54px;
  line-height: 54px;
  outline: none;
  border-radius: var(--border-radius);
  margin-top: 5px;
}

.booking-container .booking-item .booking-form .input-fill input::placeholder {
  color: var(--input-field-color);
}

.booking-container .booking-item .booking-form .input-fill textarea {
  width: 100%;
  background: var(--input-field-bg);
  border: none;
  color: var(--input-field-color);
  font-size: 16px;
  font-weight: 400;
  padding: 0 15px;
  height: 54px;
  line-height: 54px;
  outline: none;
  border-radius: var(--border-radius);
}

.booking-container .booking-item .booking-form .input-fill textarea::placeholder {
  color: var(--input-field-color);
}

.booking-container .booking-item .booking-form .input-fill .req-message {
  display: none;
  color: var(--input-req-color);
  font-size: 16px;
  padding: 0 15px;
  font-weight: 500;
  margin-top: 10px;
}

.booking-container .booking-item .booking-form .button-container {
  padding-top: 20px;
}

.booking-container .booking-item .booking-form .button-container button {
  background: var(--black-color);
  border: none;
  width: 250px;
  padding: 10px 0;
  font-size: 18px;
  color: var(--white-color);
  font-weight: 600;
  cursor: pointer;
  border-radius: var(--border-radius);
  transition: all 0.3s ease-in-out;
}

.booking-container .booking-item .booking-form .button-container button:hover {
  background: var(--main-color);
}

.booking-container .booking-item .bookingSubmit-message {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--white-color);
  width: 100%;
  max-width: 500px;
  padding: 20px;
  display: none;
}

.booking-container .booking-item .bookingSubmit-message {
  font-size: 18px;
  color: var(--title-color-2);
  font-weight: 500;
  text-align: center;
}

.booking-container .booking-item .bookingSubmit-message .button-container {
  padding-top: 1rem;
}

.booking-container .booking-item .bookingSubmit-message .button-container button {
  background: var(--black-color);
  padding: 7px 10px;
  border: none;
  outline: none;
  color: var(--white-color);
  transition: all 0.3s ease-in-out;
  font-size: 17px;
  font-weight: 500;
  border-radius: 5px;
}

.booking-container .booking-item .bookingSubmit-message .button-container button:hover {
  background: var(--button-bg-color);
  cursor: pointer;
}

/* booking Section Responsive */
@media screen and (max-width: 767px) {
  .booking-container .booking-item .booking-form .input-fill {
    grid-template-columns: 1fr;
  }
}

/* Section Responsive */
@media screen and (max-width: 767px) {}

/* 
 <---------Booking Page End--------->
 <---------Booking Page End--------->
 <---------Booking Page End--------->
  */




/* 
 <--------- Page Start--------->
  */
/* Section Responsive */
@media screen and (max-width: 767px) {}

/* 
 <--------- Page End--------->
  */

/* 
 <--------- Page Start--------->
  */
/* Section Responsive */
@media screen and (max-width: 767px) {}

/* 
 <--------- Page End--------->
  */

/* 
 <--------- All Page Opening Hours Section Start--------->
 <--------- All Page Opening Hours Section Start--------->
 <--------- All Page Opening Hours Section Start--------->
 <--------- All Page Opening Hours Section Start--------->
  */
/* Opening Hours Section */
/* Opening Hours Section */
/* Opening Hours Section */
.opening-hours {
  padding: 60px 0;
  background: var(--linear-gradient-1);
}

.opening-hours .hours-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  column-gap: 20px;
  row-gap: 20px;
}

.opening-hours .hours-container .section-item h1 {
  font-size: 40px;
  padding: 20px 0;
  color: var(--title-color-2);
}

.opening-hours .hours-container .section-item h1 span {
  color: var(--main-color);
}

.opening-hours .hours-container .section-item p {
  font-size: 17px;
  color: var(--paragraph-color-2);
}

.opening-hours .hours-container .section-item .opening-time {
  padding-top: 1rem;
}

.opening-hours .hours-container .section-item .opening-time h4 {
  color: var(--title-color-2);
  display: inline-block;
  font-size: 20px;
  font-weight: 600;
  padding: 10px 0;
}

.opening-hours .hours-container .section-item .opening-time h4:first-child {
  border-bottom: 1px solid var(--border-color-2);
}

.opening-hours .hours-container .section-item .button-container {
  padding-top: 1rem;
}

.opening-hours .hours-container .section-item .button-container a {
  font-size: 20px;
  color: var(--content-button-color);
  border: 1px solid var(--border-color-2);
  width: 150px;
  display: block;
  text-align: center;
  text-transform: uppercase;
  padding: 10px 0;
  border-radius: var(--border-radius);
  transition: all 0.3s ease-in-out;
}

.opening-hours .hours-container .section-item a:hover {
  color: var(--button-color);
  background: var(--button-bg-color);
}

.opening-hours .hours-container .section-item .photo {
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  border: 2px solid transparent;
  border-radius: var(--border-radius);
}

.opening-hours .hours-container .section-item img {
  width: 100%;
  border-radius: var(--border-radius);
  transition: all 0.3s ease-in-out;
}

.opening-hours .hours-container .section-item img:hover {
  transform: scale(1.05);
}

/*Opening Hours Section Responsive */
@media screen and (max-width: 767px) {
  .opening-hours .hours-container {
    grid-template-columns: 1fr;
  }

  .opening-hours .hours-container .section-item {
    text-align: center;
  }

  .opening-hours .hours-container .section-item .button-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
  }
}

@media screen and (max-width: 335px) {
  .opening-hours .hours-container .section-item h1 {
    font-size: 30px;
  }
}


/* 
 <--------- All Page Opening Hours Section End--------->
 <--------- All Page Opening Hours Section End--------->
 <--------- All Page Opening Hours Section End--------->
 <--------- All Page Opening Hours Section End--------->
  */

/* 
 <--------- Page Start--------->
  */
/* Section Responsive */
@media screen and (max-width: 767px) {}

/* 
 <--------- Page End--------->
  */
/* 

 <---------All Page Client Review Section Page Start--------->
 <---------All Page Client Review Section Page Start--------->
 <---------All Page Client Review Section Page Start--------->
  */
/* Client Review Section */
/* Client Review Section */
/* Client Review Section */
.client-review {
  background: var(--bg-3);
  padding: 60px 0;
}

.client-review .review-container {
  padding-top: 30px;
}

.client-review .review-container .review-item {
  min-height: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 20px 15px;
  transition: all 0.3s ease-in-out;
  background: var(--white-color);
  box-shadow: var(--box-shadow);
  border-radius: var(--border-radius);
  border-bottom: 7px solid var(--main-color);
  cursor: cell;
}

.client-review .review-container .review-item .star i {
  font-size: 18px;
  color: var(--review-color);
}

.client-review .review-container .review-item p {
  padding: 10px 0;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
}


/* 
 <---------All Page Client Review Section Page End--------->
 <---------All Page Client Review Section Page End--------->
 <---------All Page Client Review Section Page End--------->
  */

/* 
 <---------All Page Footer Section Start--------->
 <---------All Page Footer Section Start--------->
 <---------All Page Footer Section Start--------->
  */
.map iframe {
  width: 100%;
  height: 100vh;
}

.footer {
  margin-top: -5px;
}

.footer .footer-container .footer-top {
  padding: 2rem 0;
  background: var(--footer-top);
}

.footer .footer-container .footer-top .link-items {
  display: grid;
  grid-template-columns: 40% 60%;
  column-gap: 20px;
  row-gap: 20px;
}

.footer .footer-container .footer-top .photo img {
  width: 100%;
  max-width: 220px;
  height: auto;
  transition: all 0.3s ease-in-out;
}

.footer .footer-container .footer-top .gmail a {
  font-size: 25px;
  color: var(--footer-color);
  font-weight: 600;
  transition: all 0.3s ease-in-out;
}

.footer .footer-container .footer-top .gmail a:hover {
  color: var(--nav-hover);
}

.footer .footer-container .footer-top .gmail p {
  font-size: 17px;
  color: var(--paragraph-color-1);
  padding: 10px 0;
}

.footer .footer-container .footer-top .gmail .phone a {
  font-size: 17px;
  color: var(--paragraph-color-1);
  padding: 10px 0;
  transition: all 0.3s ease-in-out;
}

.footer .footer-container .footer-top .gmail .phone a:hover {
  color: var(--nav-hover);
}

.footer .footer-container .footer-top .footer-links {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
}

.footer .footer-container .footer-top .footer-links a {
  font-size: 18px;
  color: var(--footer-color);
  font-weight: 600;
  text-transform: uppercase;
  transition: all 0.3s ease-in-out;
}

.footer .footer-container .footer-top .footer-links a:hover {
  color: var(--nav-hover);
}

.footer .footer-container .copyright {
  background: var(--footer-bottom);
  padding: 3rem 10px;
  text-align: center;
}

.footer .footer-container .copyright p {
  font-size: 16px;
  color: var(--footer-color);
}

/*Footer Section Responsive */
@media screen and (max-width: 1024px) {
  .footer .footer-container .footer-top .gmail a {
    font-size: 15px;
  }

  .footer .footer-container .footer-top .footer-links a {
    font-size: 15px;
  }

  .footer .footer-container .footer-top .gmail p {
    font-size: 15px;
  }

  .footer .footer-container .footer-top .gmail .phone a {
    font-size: 15px;
  }
}

@media screen and (max-width: 992px) {
  .footer .footer-container .footer-top .gmail {
    text-align: center;
  }

  .footer .footer-container .footer-top .link-items {
    grid-template-columns: 1fr;
  }

  .footer .footer-container .footer-top .footer-links {
    justify-content: center;
  }

  .footer .footer-container .footer-top .photo {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }

  .footer .footer-container .footer-top .gmail {
    padding-top: 20px;
  }
}

@media screen and (max-width: 340px) {
  .footer .footer-container .footer-top .footer-links {
    flex-wrap: wrap;
  }

  .footer .footer-container .footer-top .footer-links a {
    font-size: 14px;
  }
}

@media screen and (max-width: 300px) {
  .footer .footer-container .footer-top .gmail a {
    font-size: 12px;
  }

  .footer .footer-container .footer-top .footer-links a {
    font-size: 12px;
  }
}

.top-link {
  font-size: 1.25rem;
  position: fixed;
  bottom: 0;
  right: 0;
  background: var(--main-color);
  width: 2rem;
  height: 1.5rem;
  display: grid;
  place-items: center;
  border-radius: 0.5rem;
  color: var(--white-color);
  visibility: hidden;
  z-index: -100;
}

.show-link {
  visibility: visible;
  z-index: 100;
}

/* 
 <---------All Page Footer Section End--------->
 <---------All Page Footer Section End--------->
 <---------All Page Footer Section End--------->
  */