@import url("https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap");

html {
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg-color: #ffffff;
  --text-color: #000000;
  --text-color2: #ffffff;
  --second-color: #5a7185;
  --main-color: #eb1811;
  --big-font: 6rem;
  --h2-font: 3rem;
  --p-font: 1.1rem;
}

body {
  background: var(--bg-color);
  color: var(--text-color);
  font-family: "Raleway", sans-serif;
}

a {
  text-decoration: none;
}

section {
  padding: 60px 6%;
}

/*******************************************  navbar section ***************************************/

header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1223;
}

nav {
  padding: 5px 5%;
  display: flex;
  height: 100px;
  max-height: 110px;
  background-color: #000;
  justify-content: space-between;
  align-items: center;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px,
    rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
  z-index: 1;
}
nav .logo {
  display: flex;
  align-items: center;
}
nav .logo img {
  height: 25px;
  width: auto;
  margin-right: 10px;
}

nav ul {
  list-style: none;
  display: flex;
  align-items: center;
}
nav ul li {
  margin-left: 1.5rem;
}
nav ul li a {
  text-decoration: none;
  color: #ffffff;
  font-size: 95%;
  font-weight: 500;
  letter-spacing: 2px;
  padding: 4px 8px;
  border-radius: 4px;
}

nav ul li a:hover {
  background-color: #f5f5f5;
  color: var(--text-color);
  transition: 0.2s ease;
}

nav ul li.active a {
  background-color: #ffffff;
  color: #000000;
  font-weight: bold;
}

.hamburger {
  display: none;
  cursor: pointer;
}

.hamburger .line {
  width: 25px;
  height: 2px;
  background-color: #fafafa;
  display: block;
  margin: 7px auto;
  transition: all 0.3s ease-in-out;
}
.hamburger-active {
  transition: all 0.3s ease-in-out;
  transition-delay: 0.6s;
  transform: rotate(45deg);
}

.hamburger-active .line:nth-child(2) {
  width: 0px;
}

.hamburger-active .line:nth-child(1),
.hamburger-active .line:nth-child(3) {
  transition-delay: 0.3s;
}

.hamburger-active .line:nth-child(1) {
  transform: translateY(12px);
}

.hamburger-active .line:nth-child(3) {
  transform: translateY(-5px) rotate(90deg);
}

.menubar {
  position: absolute;
  top: 0;
  left: -60%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 60%;
  height: 100vh;
  padding: 20% 0;
  background: rgb(0, 0, 0);
  transition: all 0.5s ease-in;
  z-index: 2;
}
.active {
  left: 0;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.menubar ul {
  padding: 0;
  list-style: none;
}
.menubar ul li {
  margin-bottom: 32px;
}

.menubar ul li a {
  text-decoration: none;
  color: #ffffff;
  font-size: 100%;
  font-weight: 500;
  padding: 5px 10px;
  letter-spacing: 2px;
  border-radius: 5px;
}

.menubar ul li a:hover {
  background-color: #f5f5f5;
  color: var(--text-color);
}
@media screen and (max-width: 790px) {
  .hamburger {
    display: block;
  }
  nav {
    height: 80px;
    max-height: 90px;
  }
  nav ul {
    display: none;
  }

  nav .logo img {
    height: 16px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1312px) {
  nav ul li a {
    font-size: 85%;
    font-weight: 500;
    padding: 4px 6px;
    border-radius: 4px;
  }
}

@media only screen and (min-width: 600px) and (max-width: 992px) {
  nav .logo img {
    height: 19px;
  }

  nav ul li a {
    font-size: 70%;
    font-weight: 500;
    padding: 4px 6px;
    border-radius: 4px;
  }
}

@media (prefers-color-scheme: dark) {
  .hamburger .line {
    background-color: #ffffff;
  }
}

/*********************************  navbar section ****************************************/

/*********************************  home section *********************************/
.home {
  position: relative;
  width: 100%;
  min-height: 70vh;
  background: url(./assets/background/1.webp);
  background-repeat: no-repeat;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

.home::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(246, 246, 246, 0.2);
  z-index: 0;
}

.home-text {
  position: relative;
  z-index: 1;
}

.home-btn {
  display: inline-block;
  font-size: 20px;
  font-weight: 600;
  padding: 18px 38px;
  background-color: #ffffff;
  color: var(--text-color);
  border-radius: 4px;
  transition: ease 0.4s;
  text-decoration: none;
  letter-spacing: 1px;
}

.home-btn:hover {
  opacity: 0.8;
  transform: scale(1.1);
}

@media only screen and (max-width: 600px) {
  .home {
    min-height: 60vh;
  }
}

@media only screen and (min-width: 600px) and (max-width: 992px) {
  .home {
    min-height: 68vh;
  }
}
/*********************************  home section ***************************************/

/*********************************  group orders banner *********************************/

.group-orders {
  padding: 60px 6% 20px 6%;
}

.group-container {
  display: flex;
  justify-content: center;
  padding: 30px 20px;
  color: var(--text-color2);
  background-color: #272727;
  border-radius: 4px;
}

.group-container h3 {
  text-align: center;
}

@media only screen and (max-width: 600px) {
  .group-container h3 {
    line-height: 1.5;
    font-size: 14px;
  }
}

@media only screen and (min-width: 600px) and (max-width: 992px) {
  .group-container h3 {
    line-height: 1.6;
    font-size: 16px;
  }
}

/*********************************  group orders banner *********************************/

/*********************************  location section *********************************/

.select-location-wrapper {
  display: flex;
  justify-content: center;
}

.select-location-title {
  font-size: 34px;
  display: inline-block;
}

.location-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  /* margin: 3% auto 0; */
  margin: 3% 0 0 0;
}
.single-card {
  position: relative;
  width: 280px;
  height: 440px;
  margin: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  transition: box-shadow 0.3s ease;
  overflow: hidden;
  background: #ffffff;
  border-radius: 2px;
  transition: all 0.8s ease-in-out;
}
.single-card:hover {
  transform: translateY(-10px);
}
.img-area {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
}
.img-area img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.img-area:hover img {
  transform: scale(1.1);
}
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background-color: rgba(99, 99, 99, 0.6);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.single-card .overlay {
  opacity: 1;
}
.pickup-btn,
.delivery-btn {
  background-color: #fff;
  color: #333;
  padding: 15px 15px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
  margin-bottom: 10px;
}
.pickup-btn:hover,
.delivery-btn:hover {
  background-color: rgb(0, 0, 0);
  color: #fff;
  border: none;
}
.info {
  padding: 10px;
  text-align: center;
  color: var(--text-color);
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}
.info h3 {
  margin: 15px 0 10px;
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
}
.info .address {
  margin: 0;
  font-size: 12px;
  font-weight: bold;
  color: #5a5a5a;
}

.info .phone a {
  margin: 0;
  font-size: 12px;
  font-weight: bold;
  color: #000000;
}

.info .phone a:hover {
  color: #e12222;
}

.info .email a {
  margin: 0;
  font-size: 12px;
  font-weight: bold;
  color: #000000;
}

.info .email a:hover {
  color: #e12222;
}

.info .timings-wrapper {
  font-size: 12px;
  font-weight: 500;
  color: #5a5a5a;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

@media only screen and (max-width: 600px) {
  .select-location-title {
    font-size: 20px;
  }

  .info h3 {
    font-size: 15px;
  }
}

@media only screen and (min-width: 600px) and (max-width: 992px) {
  .select-location-title {
    font-size: 28px;
  }
}

/*********************************  location section *********************************/

/*********************************  about section *********************************/

.about-container {
  display: flex;
  justify-content: space-between;
  margin: auto;
  padding: 20px 6% 30px 6%;
}

.about-content {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.about-title h1 {
  font-weight: 600;
  font-size: 32px;
}

.about-para p {
  text-align: justify;
  line-height: 1.4;
}

.about-gallery {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  /* min-height: 100vh; */
}

.wrapper {
  max-width: 1280px;
  margin: 0 auto;
  padding: 50px 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 1fr;
  grid-auto-flow: dense;
  grid-gap: 25px;
  width: 100%;
}
.single-box {
  position: relative;
}
.single-box div {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.single-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s;
  user-select: none;
}
.single-box div:hover img {
  transform: rotate(5deg) scale(1.4);
}

@media only screen and (max-width: 600px) {
  .about-para p {
    text-align: justify;
    line-height: 1.4;
    margin: 0 4%;
  }

  .about-gallery {
    padding-left: 12px;
    padding-right: 12px;
  }
  .wrapper {
    grid-template-columns: repeat(
      2,
      1fr
    ); /* Change to 2 columns for mobile view */
  }
}

@media (max-width: 768px) {
  .img-area {
    padding: 0;
  }
  .wrapper {
    max-width: 100%;
    padding: 0;
  }

  .about-title h1 {
    font-size: 24px;
    text-align: center;
    margin: 0 4%;
  }
}

/*********************************  about section *********************************/

/*********************************  newsletter section *********************************/

.newsletter-section {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  gap: 2rem;
  height: auto;
  padding: 2% 6%;
  margin: auto; /*newly added*/
  max-width: 1300px; /*newly added*/
}

.newsletter-img img {
  width: 100%;
  height: auto;
}

.newsletter-form-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  height: auto;
}

.newsletter-heading {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.newsletter-heading p {
  font-weight: 700;
}

.newsletter-heading a {
  color: #dc4242;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 70%;
  align-items: center;
  padding: 18px;
  background-color: rgba(0, 0, 0, 0.05);
  border-radius: 12px;
}

.newsletter-title {
  font-size: 24px;
  font-weight: 600;
}

.newsletter-email-input {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.newsletter-desc {
  text-align: center;
  font-weight: 300;
}

.newsletter-email-input input[type="email"] {
  padding: 8px;
  margin: 5px;
  font-size: 14px;
  letter-spacing: 1px;
  border-radius: 16px;
  border: 1px solid #e7b9b9;
  outline: none;
}

.newsletter-submit-btn a {
  padding: 10px 18px;
  font-size: 12px;
  background-color: #212121;
  color: #fff;
  border-radius: 16px;
  letter-spacing: 1px;
}

.newsletter-submit-btn a:hover {
  opacity: 0.8;
  transition: 0.2s ease;
  font-weight: 600;
}

.newsletter-disclaimer {
  font-size: 12px;
  text-align: center;
  font-weight: 200;
}

@media only screen and (max-width: 600px) {
  .newsletter-section {
    grid-template-columns: 1fr;
    padding: 6% 6%;
  }

  .newsletter-form-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .newsletter-form {
    width: 100%;
    padding: 20px;
  }
}

@media only screen and (min-width: 600px) and (max-width: 1132px) {
  .newsletter-section {
    grid-template-columns: 1fr;
    padding: 5% 6%;
  }

  .newsletter-form-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .newsletter-form {
    width: 90%;
    padding: 22px;
  }

  .newsletter-email-input {
    width: 80%;
  }
}

/*********************************  newsletter section *********************************/

/*********************************  menu heading section *********************************/

.menu-heading {
  padding: 20px 6% 30px 6%;
  margin: auto;
}

.menu-heading-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 35px;
}

.menu-heading-wrapper .menu-title {
  font-size: 40px;
  font-weight: 700;
}

.pdf-btn-wrapper .pdf-btn {
  padding: 13px 26px;
  border-color: rgba(28, 21, 19, 0.86);
  background-color: rgba(28, 21, 19, 0.86);
  border-radius: 300px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #fff;
}

.order-online-wrapper .order-online-btn {
  padding: 13px 26px;
  border-color: #212121;
  background-color: #212121;
  border-radius: 5px;
  font-size: 15px;
  letter-spacing: 1px;
  font-weight: 700;
  color: #fff;
}

.pdf-btn-wrapper .pdf-btn:hover {
  opacity: 0.8;
  transition: 0.2s ease;
}

.order-online-wrapper .order-online-btn:hover {
  opacity: 0.8;
  transition: 0.2s ease;
}

.pdf-btn-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
}

.menu-desc-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 25px;
}

.menu-desc span {
  font-weight: bold;
}

@media only screen and (max-width: 600px) {
  .menu-heading-wrapper .menu-title {
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  .menu-desc {
    line-height: 1.4;
    text-align: justify;
  }
}

/*********************************  menu heading section *********************************/

/***************************************  menu section ************************************/

.menu {
  padding: 2% 6%;
}

.navigation-arrows {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.navigation-arrows .left-arrow,
.navigation-arrows .right-arrow {
  padding: 0.3rem 0.5rem;
  color: var(--main-color);
  border: 1px solid var(--main-color);
  border-radius: 50%;
}

.navigation-arrows .left-arrow:hover,
.navigation-arrows .right-arrow:hover {
  cursor: pointer;
  color: #fff;
  background-color: var(--main-color);
  transition: 0.2s ease;
}

.menu-container {
  gap: 30px;
  margin: 0 auto;
  max-width: 1300px;
  min-height: 600px; /* Set a minimum height to avoid jerky transitions */
  transition: min-height 0.5s ease; /* Smooth transition for height changes */
}
/* .menu-header {
  text-align: center;
}

.menu-header h2 {
  font-family: var(--script);
}

.menu-header p {
  padding: 1.5rem 0;
} */

.menu-buttons {
  display: flex;
  justify-content: flex-start;
  margin: 1.5rem 0;
  overflow-x: auto; /* Allow horizontal scrolling */
  white-space: nowrap;
}

.menu-button {
  font-family: var(--Noto);
  font-size: 1.1rem;
  background: none;
  border: none;
  color: var(--lightgray);
  margin: 0 1rem;
  cursor: pointer;
  flex-shrink: 0;
}

.menu-button::after {
  content: "";
  margin-top: 0.5rem;
  display: block;
  width: 0;
  height: 2px;
  background: red;
  transition: width 0.4s ease-out;
}

.menu-button:hover::after {
  width: 100%;
}

.menu-button:hover {
  opacity: 0.8;
}

.active-button {
  color: red;
  opacity: 0.8;
  font-weight: bold;
}

.active-button:after {
  content: "";
  margin: 0;
  display: block;
  width: 100%;
  height: 2px;
  background: red;
}

.menu-items {
  margin: 0rem 0;
  transition: all 0.5s ease;
}

.menu-item {
  border-radius: 4px;
  overflow: hidden;
  background: var(--lightgray);
  color: var(--text-color);
  margin: 0.7rem 0;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.55);
  animation: appear 2s;
}

@keyframes appear {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.item-details {
  padding: 1rem;
}

@media only screen and (max-width: 600px) {
  .item-details {
    padding: 0rem 0.8rem;
  }
}

.item-price {
  padding: 0.8rem 0;
  font-size: 1.1rem;
  color: rgb(4, 61, 41);
  opacity: 0.8;
}

.item-desc span {
  font-size: 12px;
  font-weight: 400;
}

@media only screen and (min-width: 600px) {
  .menu-item {
    display: grid;
    /* grid-template-columns: 25% auto; */
    align-items: center;
    padding: 1rem;
    column-gap: 1rem;
  }
  .item-details {
    padding: 0;
  }
}

/* @media only screen and (min-width: 768px) {
  .menu-header p {
    width: 75%;
    margin: 0 auto;
  }
} */

@media only screen and (min-width: 992px) {
  /* .menu-header p {
    width: 55%;
  } */

  .menu-items {
    display: grid;
    /* grid-template-columns: repeat(2, 1fr); */
    grid-template-columns: repeat(3, 1fr);
    column-gap: 2rem;
  }
}
@media only screen and (max-width: 600px) {
  .navigation-arrows {
    display: none; /* Hide arrows in mobile view */
  }
  .menu-buttons {
    flex-wrap: wrap; /* Allow buttons to wrap to the next line */
    justify-content: center; /* Center the buttons */
  }
  .menu-button {
    flex: 1 1 auto; /* Allow buttons to grow and shrink */
    margin: 5px; /* Add some margin for spacing */
    font-size: 0.8rem; /* Adjust font size */
    padding: 0px; /* Adjust padding */
  }
}

/******************************************  menu section ****************************************/

/***************************************  dish banner section ************************************/

.dish-banner1 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  gap: 2rem;
  height: auto;
  padding: 0 6%;
  margin: auto; /*newly added*/
  max-width: 1300px; /*newly added*/
}

.dish-banner-img1 img {
  width: 100%;
  height: auto;
}

.dish-banner-text1 h2 {
  color: var(--text-color);
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 25px;
}

.dish-banner-text1 p {
  color: var(--text-color);
  font-weight: 300;
  line-height: 1.5rem;
  letter-spacing: 0.01em;
  color: var(--text-color);
  margin-bottom: 25px;
}

@media only screen and (max-width: 600px) {
  .dish-banner1 {
    grid-template-columns: 1fr;
  }

  .dish-banner-text1 {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .dish-banner-text1 h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
  }

  .dish-banner-text1 p {
    margin-bottom: 15px;
  }
}

@media only screen and (min-width: 600px) and (max-width: 1096px) {
  .dish-banner-text1 h2 {
    color: var(--text-color);
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 25px;
  }
}

.dish-banner2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  gap: 2rem;
  height: auto;
  padding: 2% 6%;
  margin: auto; /*newly added*/
  max-width: 1300px; /*newly added*/
}

.dish-banner-img2 img {
  width: 100%;
  height: auto;
}

.dish-banner-text2 h2 {
  color: var(--text-color);
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 25px;
}

.dish-banner-text2 p {
  color: var(--text-color);
  font-weight: 300;
  line-height: 1.5rem;
  letter-spacing: 0.01em;
  color: var(--text-color);
  margin-bottom: 25px;
}

@media only screen and (max-width: 795px) {
  .dish-banner2 {
    grid-template-columns: 1fr;
    padding: 4% 6%;
  }

  .dish-banner-text2 {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .dish-banner-text2 h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    text-align: center;
  }

  .dish-banner-text2 p {
    margin-bottom: 15px;
  }
}

@media only screen and (min-width: 600px) and (max-width: 1096px) {
  .dish-banner-text2 h2 {
    color: var(--text-color);
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 25px;
  }
}

/***************************************  dish banner section ************************************/

/***************************************  dish gallery section ************************************/

.dish-gallery-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
}

.dish-gallery-title h2 {
  font-size: 37px;
  font-weight: 600;
  line-height: 1.5rem;
}

.dish-gallery-title p {
  font-weight: 300;
}

.grid-gallery {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 20px 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-auto-rows: 250px;
  grid-auto-flow: dense;
  grid-gap: 20px;
}

.grid-gallery .grid-item {
  position: relative;
  background-color: #efefef;
  overflow: hidden;
}

.grid-gallery .grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.grid-gallery .grid-item:hover img {
  transform: scale(1.1);
}

.grid-gallery .grid-item a {
  cursor: zoom-in;
}

.grid-gallery .grid-item:nth-child(3n - 2) {
  grid-column: span 2;
  grid-row: span 2;
}

@media only screen and (max-width: 600px) {
  .grid-gallery {
    padding-bottom: 0 6%;
  }
}

@media (max-width: 768px) {
  .grid-gallery {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-auto-rows: 250px;
  }

  .grid-gallery .grid-item:nth-child(3n - 2) {
    grid-column: unset;
    grid-row: unset;
  }

  .dish-gallery-title {
    margin: 0 6%;
  }

  .dish-gallery-title h2 {
    font-size: 1.3rem;
  }
}

.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.9);
}

.modal-content {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
}

.close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
}

.close:hover,
.close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}

/***************************************  dish gallery section ************************************/

/*************************************** page divider section ************************************/

.divider-container hr {
  margin: auto;
  height: 0;
  border: 0;
  border-top: 1px solid #d5d5d5;
  width: 92%;
}

/***************************************  page divider section ************************************/

/***************************************  local partners section ************************************/

.local-partners {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  gap: 2rem;
  height: auto;
  padding: 0 6%;
  margin: auto;
  max-width: 1300px;
}

.local-partner-img img {
  width: 100%;
  height: auto;
}

.local-partners-text {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.local-partners-text h2 {
  color: var(--text-color);
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 25px;
}

.local-partners-text p {
  color: var(--text-color);
  font-weight: 300;
  line-height: 1.5rem;
  letter-spacing: 0.01em;
  margin-bottom: 25px;
}

.local-partners ul {
  list-style-type: none;
}

.local-partners ul li a {
  text-decoration: none;
  font-weight: bold;
  color: rgba(233, 18, 7, 0.96);
}

.local-partners-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

@media only screen and (max-width: 600px) {
  .local-partners {
    grid-template-columns: 1fr;
  }

  .local-partners-text {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .local-partners-text h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
  }

  .local-partners-text p {
    margin-bottom: 15px;
    text-align: justify;
  }
}

@media only screen and (min-width: 600px) and (max-width: 992px) {
  .local-partners {
    grid-template-columns: 1fr;
  }

  .local-partners-text {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

/***************************************  local partners section ************************************/

/***************************************  menu banner section ************************************/

.menu-banner-section {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  gap: 2rem;
  height: auto;
  padding: 30px 6% 20px 6%;
  margin: auto; /*newly added*/
  max-width: 1300px; /*newly added*/
}

.menu-image img {
  width: 100%;
  height: auto;
}

@media only screen and (max-width: 600px) {
  .menu-banner-section {
    grid-template-columns: 1fr;
    padding: 50px 6% 10px 6%;
  }
}

/****************************************  menu banner section ***************************************/

/***************************************  catering events section ************************************/

.catering-events {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  margin: 0 auto;
  height: auto;
  max-width: 1300px; /*newly added*/
}

.catering-title {
  font-weight: 800;
  font-size: 42px;
}

.catering-banner-img img {
  width: 100%;
}

.catering-text-wrapper {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.catering-text {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.catering-text p {
  text-align: justify;
}

.catering-banner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  height: auto;
}

.catering-banner-img img {
  width: 100%;
  height: auto;
}

@media only screen and (max-width: 600px) {
  .catering-banner {
    grid-template-columns: 1fr;
  }

  .catering-title {
    font-weight: 700;
    font-size: 24px;
  }
}

/***************************************  catering events section ************************************/

/*****************************************  school lunch section *************************************/

.school-lunch {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  gap: 2rem;
  height: auto;
  padding: 0 6%;
  margin: 3% auto;
  max-width: 1300px;
}

.school-lunch-img img {
  width: 100%;
  height: auto;
}

.school-lunch-text {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.school-lunch-text h2 {
  color: var(--text-color);
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 25px;
}

.school-lunch-text p {
  font-weight: 600;
  line-height: 1.5rem;
  letter-spacing: 0.01em;
  color: var(--text-color);
  margin-bottom: 25px;
}

.school-lunch-text span a {
  color: red;
}

@media only screen and (max-width: 600px) {
  .school-lunch {
    grid-template-columns: 1fr;
  }

  .school-lunch-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 6%;
  }
  .school-lunch-text h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
  }

  .school-lunch-text p {
    margin-bottom: 15px;
    text-align: justify;
  }

  .school-lunch-img {
    display: flex;
    justify-content: center;
  }

  .school-lunch-img img {
    width: 90%;
  }
}

@media only screen and (min-width: 600px) and (max-width: 992px) {
  .school-lunch {
    grid-template-columns: 1fr;
  }

  .school-lunch-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 4%;
  }

  .school-lunch-text h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }

  .school-lunch-text p {
    margin-bottom: 10px;
    text-align: justify;
  }
}

/*****************************************  school lunch section ***************************************/

/*****************************************  catering event feedback *************************************/
.customer-feedback-container {
  margin: 1% 4.5% 0 4.5%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  height: auto;
}

.customer-feedback-img img {
  width: 100%;
}

.customer-feedback-wrapper {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.customer-feedback {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.feedback-desc {
  text-align: justify;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
}

.customer-name {
  font-weight: 600;
}

.feedback-date {
  margin-left: 10px;
}

@media only screen and (max-width: 600px) {
  .customer-feedback-container {
    margin: 2% 4.5% 0 4.5%;
  }
}

/*****************************************  catering event feedback *************************************/

/******************************************** feedback gallery ***************************************/
.feedback-gallery {
  margin: 0 4.5%;
  height: auto;
}

.feedback-grid-gallery {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-auto-rows: 250px;
  grid-auto-flow: dense;
  grid-gap: 20px;
  height: auto;
}

.feedback-grid-gallery .feedback-grid-item {
  position: relative;
  background-color: #efefef;
  overflow: hidden;
}

.feedback-grid-gallery .feedback-grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.feedback-grid-gallery .feedback-grid-item:hover img {
  transform: scale(1.1);
}

.feedback-grid-gallery .feedback-grid-item a {
  cursor: zoom-in;
}

@media only screen and (max-width: 600px) {
  .feedback-gallery {
    padding: 2% 6% 5% 6%;
    margin-bottom: 12%;
  }
}

/******************************************** feedback gallery ***************************************/

/*******************************************  pre footer section ***************************************/

.pre-footer {
  background: #000;
  padding: 30px 0px;
  font-family: "Play", sans-serif;
  text-align: center;
}

.pre-footer .row {
  width: 100%;
  margin: 1% 0%;
  padding: 0.6% 0%;
  color: gray;
  font-size: 0.8em;
}

.pre-footer .row a {
  text-decoration: none;
  color: gray;
  transition: 0.5s;
}

.pre-footer .row a:hover {
  color: #fff;
}

.pre-footer .row ul {
  width: 100%;
}

.pre-footer .row ul li {
  display: inline-block;
  margin: 0px 30px;
}

.pre-footer .row a i {
  font-size: 2em;
  margin: 0% 1%;
}

@media (max-width: 720px) {
  .pre-footer {
    padding: 5%;
  }
  .pre-footer .row a i {
    margin: 0% 3%;
  }
}

@media only screen and (max-width: 600px) {
  .pre-footer .row a i {
    font-size: 1.5em;
    margin: 0% 2%;
  }
}

/*****************************************  pre footer section *************************************/

/*****************************************  footer section *************************************/

.footer {
  background-color: #171717;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: auto;
}

.footer-text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.footer-text-wrapper .copyright-title {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  color: #fff;
  text-transform: uppercase;
}

.footer-text-wrapper .copyright-title:hover {
  color: #c1c1c1;
  transition: 0.2s ease;
}

.copyright-wrapper {
  color: rgba(255, 255, 255, 0.4);
}
.copyright-text {
  margin-right: 2px;
}

.copyright-wrapper .iorders-link {
  margin-left: 2px;
}

.copyright-wrapper .iorders-link a:hover {
  color: #a89d4a;
  transform: 0.3s ease;
}

.copyright-wrapper span a {
  color: #8c875a;
}

@media only screen and (max-width: 600px) {
  .copyright-title {
    font-size: 11px;
  }
  .copyright-wrapper span {
    font-size: 11px;
  }
}
/*****************************************  footer section *************************************/

/*****************************************  franchise page *************************************/

/*****************************************  franchise info section *************************************/

.franchise-info {
  margin: 10% 0 4% 0;
  background: url(./assets/background/1.webp) center/cover no-repeat;
  position: relative;
  padding: 60px 6%;
}

/* Add overlay to ensure text remains readable */
.franchise-info::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6); /* Dark overlay for better text visibility */
  z-index: 1;
}

.franchise-cards {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  gap: 1rem;
  justify-content: center;
  position: relative;
  z-index: 2; /* Place cards above the overlay */
}

.franchise-cards .card {
  background-color: rgb(0, 0, 0);
  color: white;
  padding: 1rem;
  font-size: 36px;
  font-weight: 800;
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1 / 1;
  width: 280px;
  text-decoration: none;
}

.franchise-cards .card:hover {
  background-color: rgb(47, 47, 47);
  color: white;
  transition: 0.2s ease-in-out;
}

@media (min-width: 600px) {
  .franchise-cards {
    grid-template-columns: repeat(3, auto);
  }
}

@media (min-width: 960px) {
  .franchise-cards {
    grid-template-columns: repeat(3, auto);
  }
}

@media only screen and (min-width: 600px) and (max-width: 960px) {
  .franchise-cards {
    grid-template-columns: repeat(2, auto);
    text-align: justify;
  }
}

/*****************************************  franchise info section *************************************/

/*****************************************  brand section *************************************/

.brand {
  padding: 0 6% 20px 6%;
  display: flex;
  justify-content: center;
}

.brand-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.brand-title {
  font-size: 32px;
  font-weight: 700;
}

.brand-desc span {
  font-weight: 700;
}

.brand-desc p {
  line-height: 1.4rem;
  text-align: justify;
  font-weight: 300;
}

.brand-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-self: flex-start;
}

.brand-list-wrapper {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand-list ul li {
  list-style-type: none;
  font-weight: 300;
}

.brand-list p {
  font-weight: 400;
}

.brand-list p span {
  font-weight: 700;
}

.brand-list-wrapper span {
  font-weight: 700;
}

.brand-desc-end {
  line-height: 1.4rem;
  text-align: justify;
  font-weight: 300;
}

.brand-banner-wrapper img {
  width: 100%;
}

@media only screen and (max-width: 600px) {
  .brand-title {
    font-size: 22px;
    font-weight: 700;
  }
}
/*****************************************  brand section *************************************/

/************************************  franchise about section *********************************/

.franchise-about {
  display: flex;
  justify-content: center;
  padding: 0 6%;
}

.franchise-about-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}

.franchise-about-title {
  font-size: 32px;
  font-weight: 700;
}

.franchise-about-desc {
  line-height: 1.4;
}

.franchise-about-banner-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.personality-traits-wrapper {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.personality-traits-desc p {
  font-weight: 700;
}

.personality-traits-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-left: 4%;
}

.personality-traits-list li {
  list-style-type: circle;
}

.franchise-image-wrapper img {
  width: 100%;
}

@media only screen and (max-width: 600px) {
  .franchise-about-title {
    font-size: 22px;
    font-weight: 700;
  }
  .franchise-about-banner-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .personality-traits-desc p {
    line-height: 1.2;
    text-align: justify;
  }

  .personality-traits-item {
    line-height: 1.2;
  }

  .franchise-about-desc p {
    text-align: justify;
    line-height: 1.2;
  }

  .franchise-image-wrapper img {
    width: 100%;
    margin: auto;
  }
}

@media only screen and (min-width: 600px) and (max-width: 992px) {
  .franchise-about-title {
    font-size: 27px;
    font-weight: 700;
  }
  .franchise-about-banner-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }

  .franchise-about-desc p {
    text-align: justify;
  }

  .personality-traits-desc p {
    text-align: justify;
  }

  .franchise-image-wrapper {
    display: none;
  }
}

@media only screen and (min-width: 600px) and (max-width: 1146px) {
  .personality-traits-wrapper {
    width: 60%;
  }
}

/************************************  franchise about section *********************************/

/************************************ relevant skills section *********************************/

.relevant-skills {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  gap: 2rem;
  height: auto;
  padding: 3% 6%;
  margin: auto 0;
  max-width: 1300px;
}

.relevant-skills-img img {
  width: 100%;
  height: auto;
}

.relevant-skills-text {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.relevant-skills-text h2 {
  color: var(--text-color);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 25px;
}

.relevant-skills-text p {
  color: var(--text-color);
  font-weight: 300;
  line-height: 1.5rem;
  letter-spacing: 0.01em;
  margin-bottom: 25px;
}

.relevant-skills-list {
  list-style-type: circle;
  margin-left: 20px;
}

.relevant-skills-list li {
  font-weight: 300;
}

.relevant-skills-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

@media only screen and (max-width: 600px) {
  .relevant-skills {
    grid-template-columns: 1fr;
  }

  .relevant-skills-text {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .relevant-skills-text h2 {
    font-size: 1.2rem;
    margin-bottom: 15px;
  }

  .relevant-skills-text p {
    margin-bottom: 15px;
    text-align: justify;
  }
}

@media only screen and (min-width: 600px) and (max-width: 992px) {
  .relevant-skills {
    grid-template-columns: 1fr;
    padding: 6% 6%;
  }

  .relevant-skills-text {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

/************************************  relevant skills section *********************************/

/************************************  fast facts section *********************************/

.fast-facts {
  display: flex;
  justify-content: center;
}

.fast-facts-title {
  font-size: 24px;
}

.fast-facts-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.fast-facts-desc p {
  text-align: justify;
}

.fast-facts-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fast-facts-list li {
  list-style-type: none;
  font-weight: 700;
}

@media only screen and (max-width: 600px) {
  .fast-facts-title {
    font-size: 16px;
  }
}

/************************************  fast facts section *********************************/

/************************************  join lovepizza *********************************/

.join-lovepizza {
  display: flex;
  justify-content: center;
}

.join-lovepizza-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.join-lovepizza-title {
  font-size: 24px;
}

.join-lovepizza-desc {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.join-lovepizza-desc p {
  line-height: 1.4;
  text-align: justify;
}

.join-lovepizza-list-item {
  margin-left: 12px;
}

@media only screen and (max-width: 600px) {
  .join-lovepizza-title {
    font-size: 16px;
  }
}
/************************************  join lovepizza *********************************/

/************************************  the process section *********************************/

.the-process {
  display: flex;
  justify-content: center;
}

.the-process-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.the-process-title {
  font-size: 24px;
}

.the-process-desc p {
  text-align: justify;
  line-height: 1.3;
}

.the-process-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.process-list-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.process-list-item p {
  line-height: 1.3;
  text-align: justify;
  font-weight: 300;
}

@media only screen and (max-width: 600px) {
  .the-process-title {
    font-size: 16px;
  }

  .process-list-title {
    font-size: 16px;
  }
}
/************************************  the process section *********************************/

/************************************  frequently asked questions section *********************************/

.frequently-asked {
  display: flex;
  justify-content: center;
  height: auto;
}

.frequently-asked-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
  height: auto;
}

.frequently-asked-title h1 {
  font-size: 32px;
}

.frequently-asked-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.frequently-asked-list-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.frequently-asked-list-item .question {
  font-weight: 700;
}

.frequently-asked-list-item .question span {
  font-weight: 400;
}

.frequently-asked-list-item .answer {
  text-align: justify;
  line-height: 1.4;
  font-weight: 300;
}

.frequently-asked-list-item .answer a {
  color: #eb1811;
  font-weight: 400;
}

@media only screen and (max-width: 600px) {
  .frequently-asked-title h1 {
    font-size: 20px;
  }
}

/************************************  frequently asked questions section *********************************/

/************************************  franchise button *********************************/
.franchise-button {
  display: flex;
  justify-content: center;
}

.franchise-button-wrapper {
  font-weight: 700;
  letter-spacing: 2px;
  color: #fff;
  background-color: #212121;
  padding: 22px 24px;
}

.franchise-button-wrapper:hover {
  opacity: 0.8;
  transition: 0.2s ease;
}
/************************************  franchise button *********************************/

/************************************  franchise heading section *********************************/

.franchise-heading {
  display: flex;
  justify-content: center;
  margin: 8% 0 0 0;
  padding: 3% 6% 2% 6%;
  height: auto;
}

.franchise-heading-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
  margin: 0 14%;
  height: auto;
}

.franchise-heading-title h3 {
  font-size: 28px;
  font-weight: 700;
}

.franchise-heading-title h3 span {
  font-weight: 800;
}

.franchise-heading-desc {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.franchise-heading-desc p {
  font-weight: 300;
  line-height: 1.4;
  text-align: center;
}

@media only screen and (max-width: 600px) {
  .franchise-heading {
    margin: 21% 0 0 0;
  }
  .franchise-heading-title h3 {
    font-size: 18px;
  }
}

@media only screen and (min-width: 600px) and (max-width: 992px) {
  .franchise-heading-title h3 {
    font-size: 21px;
  }
  .franchise-heading {
    margin: 14% 0 0 0;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1016px) {
  .franchise-heading {
    margin: 10% 0 0 0;
  }
}

@media only screen and (max-width: 418px) {
  .franchise-heading-title h3 {
    font-size: 16px;
  }
  .franchise-heading {
    margin: 26% 0 0 0;
  }
}
/************************************  franchise heading section *********************************/

/************************************  franchise application form  *********************************/
.franchise-form-wrapper {
  background-color: #f8f9fa;
  display: flex;
  justify-content: center;
  align-items: center;
  height: auto;
  margin: 0;
}

.form-container {
  background-color: #ffffff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  max-width: 600px;
  width: 100%;
}

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ced4da;
  border-radius: 5px;
}

.form-group input[type="radio"] {
  width: auto;
  margin-right: 10px;
}

.form-group div {
  display: flex;
  align-items: center;
}

.form-group div label {
  margin-left: 5px;
}

.form-button-wrapper {
  text-align: center;
}

.form-submit-button {
  background-color: #212121;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
}

.application-btn {
  padding: 12px 32px;
  border-radius: 20px;
}

.form-submit-button:hover {
  background-color: #414141;
  transition: 0.2s ease-in;
}

@media (max-width: 600px) {
  .form-container {
    padding: 15px;
  }

  .form-group label,
  .form-group div {
    font-size: 14px;
  }

  .form-submit-button {
    padding: 12px 26px;
    font-size: 16px;
  }

  .franchise-heading-wrapper {
    margin: 0 6%;
  }
}

/************************************  franchise application form *********************************/

/************************************  faq page *********************************/

/************************************  crust section *********************************/

.crust-section {
  display: flex;
  justify-content: flex-start;
  margin: 6% 0 0 0;
}

.crust-wrapper {
  display: flex;
  gap: 40px;
}

.crust-title h2 {
  font-size: 32px;
  font-weight: 900;
}

.crust-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 75%;
}

.crust-list-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.crust-list-item .question {
  font-weight: 700;
}

.crust-list-item .answer {
  text-align: justify;
  line-height: 1.3;
  font-weight: 400;
}

.crust-list-item .answer a {
  color: #e12222;
  font-weight: 400;
}

@media only screen and (max-width: 600px) {
  .crust-wrapper {
    flex-direction: column;
    align-items: center;
    margin: 6% 0 0 0;
  }

  .crust-title h2 {
    font-size: 24px;
    font-weight: 700;
  }
}

@media only screen and (min-width: 600px) and (max-width: 992px) {
  .crust-wrapper {
    flex-direction: column;
    align-items: center;
    margin: 6% 0 0 0;
  }

  .crust-title h2 {
    font-size: 28px;
    font-weight: 700;
  }
}

/************************************   crust section *********************************/

/************************************  cheese section *********************************/
/* 
.cheese-section {
  display: flex;
  justify-content: flex-start;
}

.cheese-wrapper {
  display: flex;
  gap: 40px;
}

.cheese-title h1 {
  font-size: 32px;
  font-weight: 900;
}

.cheese-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 75%;
}

.cheese-list-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cheese-list-item .question {
  font-weight: 700;
}

.cheese-list-item .answer {
  text-align: justify;
  line-height: 1.3;
  font-weight: 400;
}

@media only screen and (max-width: 600px) {
  .cheese-section {
    padding-top: 10px;
    padding-bottom: 0;
  }
  .cheese-wrapper {
    flex-direction: column;
    align-items: center;
    margin: 6% 0 0 0;
  }

  .cheese-title h1 {
    font-size: 24px;
    font-weight: 700;
  }
}

@media only screen and (min-width: 600px) and (max-width: 992px) {
  .cheese-wrapper {
    flex-direction: column;
    align-items: center;
    margin: 2% 0 0 0;
  }

  .cheese-section {
    display: flex;
    justify-content: center;
  }
  .cheese-title h1 {
    font-size: 28px;
    font-weight: 700;
  }
} */

/************************************   cheese section *********************************/

/************************************  general section *********************************/

.general-section {
  display: flex;
  justify-content: flex-start;
}

.general-wrapper {
  display: flex;
  gap: 40px;
}

.general-title h2 {
  font-size: 32px;
  font-weight: 900;
}

.general-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 75%;
}

.general-list-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.general-list-item .question {
  font-weight: 700;
}

.general-list-item .answer {
  text-align: justify;
  line-height: 1.3;
  font-weight: 400;
}

.general-list-item .answer a {
  color: #e12222;
  font-weight: 400;
}

@media only screen and (max-width: 600px) {
  .general-section {
    padding-bottom: 20%;
  }
  .general-wrapper {
    flex-direction: column;
    align-items: center;
    margin: 6% 0 0 0;
  }

  .general-title h2 {
    font-size: 24px;
    font-weight: 700;
  }
}

@media only screen and (min-width: 600px) and (max-width: 992px) {
  .general-wrapper {
    flex-direction: column;
    align-items: center;
    margin: 2% 0 0 0;
  }

  .general-section {
    display: flex;
    justify-content: center;
  }

  .general-title h2 {
    font-size: 28px;
    font-weight: 700;
  }
}
/************************************  general section *********************************/

/************************************  faq page *********************************/

/************************************  privacy policy page *********************************/

.privacy-policy-section {
  display: flex;
  justify-content: center;
  margin: 8% 0 6% 0;
}

.policy-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.policy-wrapper p {
  text-align: justify;
  line-height: 1.3;
}

.privacy-policy-banner img {
  width: 100%;
}

.footer-privacy {
  height: 100%;
  padding: 160px 0;
}

@media only screen and (max-width: 600px) {
  .privacy-policy-section {
    margin: 13% 0 6% 0;
  }

  .policy-wrapper p {
    text-align: justify;
    line-height: 1.3;
    font-size: 14px;
  }
}

/************************************  privacy policy page *********************************/

/*****************************************  franchise page *************************************/
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 20px;
}

.info-box {
  background-color: #eeeeee;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.info-box h3 {
  margin-top: 0;
}

.info-box p {
  margin: 5px 0;
}

@media only screen and (max-width: 600px) {
  .dish-banner1 {
    grid-template-columns: 1fr;
  }

  .dish-banner-img1 iframe {
    width: 100%;
  }

  .dish-banner-text1 {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .dish-banner-text1 h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
  }

  .dish-banner-text1 p {
    margin-bottom: 15px;
  }
  .info-grid {
    grid-template-columns: 1fr; /* Single column layout for mobile */
  }
}

.location-link {
  margin-left: 2px;
  color: rgb(255, 255, 255);
}

.location-link:hover {
  color: #a89d4a;
  transform: 0.3s ease;
}
.locations-list {
  list-style-type: none;
  display: flex;
  gap: 10px; /* Optional: Add some space between the items */
}
.locations-list li::after {
  content: "|"; /* Separator character */
  margin-left: 10px; /* Space between item and separator */
}

.locations-list li:last-child::after {
  content: ""; /* Remove separator after the last item */
}

@media only screen and (max-width: 600px) {
  .locations-list {
    flex-direction: column; /* Stack items vertically on mobile */
    gap: 5px; /* Optional: Adjust the space between the items for mobile */
    align-items: center; /* Center items on mobile */
  }
  .locations-list li::after {
    content: ""; /* Remove separator character */
  }
  .locations-list li:last-child::after {
    content: ""; /* Ensure no separator after the last item */
  }
}

/*-- -------------------------- -->
<---           Hero             -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #brand-ambassador-hero {
    /* Centers button */
    text-align: left;
    /* 200px - 300px - leaving extra space for the navigation */
    padding: clamp(12.5rem, 31.95vw, 18.75rem) 1rem 0;
    /* 130px - 200px */
    padding-bottom: clamp(8.125rem, 16.5vw, 12.5rem);
    position: relative;
    z-index: 1;
  }
  #brand-ambassador-hero .cs-background {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -2;
  }
  #brand-ambassador-hero .cs-background:before {
    /* Overlay */
    content: "";
    width: 100%;
    height: 100%;
    background: #1a1a1a;
    opacity: 0.84;
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    z-index: 1;
    /* prevents the cursor from interacting with it */
    pointer-events: none;
  }
  #brand-ambassador-hero .cs-background img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    /* makes the top of the image start at the top of the parent */
    object-position: top;
  }
  #brand-ambassador-hero .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
  }
  #brand-ambassador-hero .cs-content {
    /* set text align to left if content needs to be left aligned */
    text-align: center;
    width: 100%;
    max-width: 39.375rem;
    display: flex;
    flex-direction: column;
    /* centers content horizontally, set to flex-start to left align */
    align-items: center;
  }
  #brand-ambassador-hero .cs-title {
    /* 39px - 61px */
    font-size: clamp(2.4375rem, 6.4vw, 3.8125rem);
    font-weight: 700;
    line-height: 1.2em;
    text-align: inherit;
    max-width: 51.8125rem;
    margin: 0 auto 1rem 0;
    color: #fff;
    position: relative;
  }
  #brand-ambassador-hero .cs-text {
    /* 16px - 20px */
    font-size: clamp(1rem, 1.95vw, 1.25rem);
    line-height: 1.5em;
    text-align: inherit;
    width: 100%;
    /* 464px - 622px */
    max-width: clamp(29rem, 60vw, 38.785rem);
    margin: 0 0 2.5rem 0;
    color: #fff;
  }
  #brand-ambassador-hero .cs-button-solid {
    font-size: 1rem;
    /* 46px - 56px */
    line-height: clamp(2.875rem, 5.5vw, 3.5rem);
    text-decoration: none;
    font-weight: 700;
    margin: 0;
    color: #fff;
    padding: 0 1.5rem;
    background-color: var(--primary);
    display: inline-block;
    position: relative;
    z-index: 1;
  }
  #brand-ambassador-hero .cs-button-solid:before {
    content: "";
    position: absolute;
    display: block;
    height: 100%;
    width: 0%;
    background: #000;
    opacity: 1;
    top: 0;
    left: 0;
    z-index: -1;
    transition: width 0.3s;
  }
  #brand-ambassador-hero .cs-button-solid:hover:before {
    width: 100%;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #brand-ambassador-hero .cs-content {
    text-align: left;
    align-items: flex-start;
  }
  #brand-ambassador-hero .cs-background:before {
    background: linear-gradient(
      to right,
      rgba(0, 0, 0, 0.94) 0%,
      rgba(0, 0, 0, 0.94) 2%,
      rgba(0, 0, 0, 0) 100%
    );
    opacity: 1;
  }
}

/*-- -------------------------- -->
<---       Side By Side         -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #brand-section-what {
    padding: var(--sectionPadding);
    overflow: hidden;
    position: relative;
    z-index: 1;
  }
  #brand-section-what .cs-container {
    width: 100%;
    max-width: 80em;
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: stretch;
    align-items: center;
  }
  #brand-section-what .cs-content {
    text-align: left;
    width: auto;
    max-width: 46.125rem;
    margin: 0 1rem;
    margin-top: -5rem;
    /* 24px - 60px top and bottom */
    /* 24px - 60px left and right */
    padding: clamp(1.5rem, 5vw, 3.75rem);
    background-color: #f9f9f8;
    /* prevents padding from affecting width and height */
    box-sizing: border-box;
    /* clips the pseudo element */
    overflow: hidden;
    display: flex;
    flex-direction: column;
    /* centers content horizontally, set to flex-start to left align */
    align-items: flex-start;
    position: relative;
    z-index: 10;
  }
  #brand-section-what .cs-text {
    margin-bottom: 1rem;
  }
  #brand-section-what .cs-text:last-of-type {
    margin-bottom: 2rem;
  }
  #brand-section-what .cs-button-transparent {
    font-size: 1rem;
    /* 46px - 56px */
    line-height: clamp(2.875rem, 5.5vw, 3.5rem);
    text-decoration: none;
    font-weight: 700;
    text-align: center;
    margin: 0;
    color: var(--headerColor);
    border: 1px solid var(--headerColor);
    min-width: 11.25rem;
    padding: 0 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    position: relative;
    z-index: 1;
    /* prevents padding from adding to the width */
    box-sizing: border-box;
    transition: color 0.3s;
  }
  #brand-section-what .cs-button-transparent:before {
    content: "";
    position: absolute;
    height: 100%;
    width: 0%;
    background: #000;
    opacity: 1;
    top: 0;
    left: 0;
    z-index: -1;
    transition: width 0.3s;
  }
  #brand-section-what .cs-button-transparent:hover {
    color: var(--bodyTextColorWhite);
  }
  #brand-section-what .cs-button-transparent:hover:before {
    width: 100%;
  }
  #brand-section-what .cs-button-transparent:hover .cs-button-icon {
    filter: grayscale(1) brightness(1000%);
  }
  #brand-section-what .cs-button-transparent .cs-button-icon {
    width: 1.25rem;
    height: auto;
    display: block;
  }
  #brand-section-what .cs-button-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 1rem;
  }
  #brand-section-what .cs-button-play {
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    /* 46px - 56px */
    height: clamp(2.875rem, 5.5vw, 3.5rem);
    color: var(--headerColor);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.625rem;
    position: relative;
    z-index: 1;
  }
  #brand-section-what .cs-wrapper {
    /* 46px - 56px */
    width: clamp(2.875rem, 5.5vw, 3.5rem);
    height: clamp(2.875rem, 5.5vw, 3.5rem);
    background-color: var(--primary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    order: -1;
  }
  #brand-section-what .cs-button-icon {
    width: 0.875rem;
    height: auto;
    display: block;
  }
  #brand-section-what .cs-picture {
    width: 100%;
    height: 23.75rem;
    /* clips the img corners */
    overflow: hidden;
    display: block;
    /* sends it to the top */
    order: -1;
    position: relative;
  }
  #brand-section-what .cs-picture img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
  #brand-section-what .cs-floater {
    /* chnages on tablet */
    width: 12.5rem;
    height: auto;
    position: absolute;
    bottom: -1.25rem;
    right: -2.5rem;
    z-index: 10;
    transform: rotate(90deg);
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #brand-section-what .cs-container {
    position: relative;
    align-items: flex-end;
    justify-content: center;
  }
  #brand-section-what .cs-content {
    width: 68%;
    margin: 0;
  }
  #brand-section-what .cs-button-play {
    padding-right: 1.5rem;
  }
  #brand-section-what .cs-button-play:before {
    content: "";
    /* 46px - 56px */
    width: clamp(2.875rem, 5.5vw, 3.5rem);
    height: clamp(2.875rem, 5.5vw, 3.5rem);
    background: var(--primary);
    border-radius: 3.75rem;
    opacity: 1;
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    z-index: -2;
    transition: width 0.3s;
  }
  #brand-section-what .cs-button-play:hover {
    color: var(--bodyTextColorWhite);
  }
  #brand-section-what .cs-button-play:hover:before {
    width: 100%;
  }
  #brand-section-what .cs-picture {
    /* 404px - 742px */
    width: clamp(25.25rem, 53vw, 46.375rem);
    height: auto;
    position: absolute;
    left: 0;
    bottom: 0;
    top: 3.75rem;
  }
  #brand-section-what .cs-floater {
    width: 30%;
    max-width: 18.875rem;
    bottom: 0;
    right: 0;
    transform: none;
  }
}
/* Large Desktop - 1300px */
@media only screen and (min-width: 81.25rem) {
  #brand-section-what .cs-content {
    margin-bottom: 10.625rem;
  }
}

/*-- -------------------------- -->
<---        Side By Side        -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #brand-section-apply {
    padding: var(--sectionPadding);
    position: relative;
    z-index: 1;
  }
  #brand-section-apply .cs-container {
    width: 100%;
    /* changes to 1280px at tablet */
    max-width: 36.5rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 48px - 64px */
    gap: clamp(2.5rem, 6vw, 4rem);
  }
  #brand-section-apply .cs-picture {
    width: 100%;
    height: clamp(25rem, 80vw, 47rem);
    display: block;
    position: relative;
  }
  #brand-section-apply .cs-picture img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
  #brand-section-apply .cs-content {
    /* set text align to left if content needs to be left aligned */
    text-align: left;
    width: 100%;
    max-width: 39.375rem;
    display: flex;
    flex-direction: column;
    /* centers content horizontally, set to flex-start to left align */
    align-items: flex-start;
    justify-content: center;
  }
  #brand-section-apply .cs-title {
    /* 26 characters wide including spaces */
    max-width: 26ch;
    margin: 0;
  }
  #brand-section-apply .cs-card-group {
    width: 100%;
    /* 550px - 630px */
    max-width: clamp(34.375rem, 50vw, 39.375rem);
    padding: 0;
    /* 24px - 40px */
    margin: clamp(1.5rem, 4vw, 2.5rem) 0 clamp(1.75rem, 4vw, 2.5rem) 0;
    display: grid;
    align-items: center;
    gap: clamp(1rem, 4vw, 2.5rem);
    background-color: #f7f7f7;
    padding: 1rem;
    border-radius: 1rem;
  }
  #brand-section-apply .cs-item {
    list-style: none;
    /* prevents padding from affecting height and width */
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
  #brand-section-apply .wrapper {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 0.625rem;
  }
  #brand-section-apply .cs-item-number {
    font-size: 1.25rem;
    line-height: 1.2em;
    font-weight: 700;
    margin: 0;
    color: var(--primary);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0.5rem;
  }
  #brand-section-apply .cs-h3 {
    font-size: 1.25rem;
    line-height: 1.2em;
    font-weight: 700;
    margin: 0;
    color: var(--headerColor);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0.5rem;
  }
  #brand-section-apply .cs-item-text {
    font-size: 0.875rem;
    line-height: 1.5em;
    margin: 0;
    color: var(--bodyTextColor);
  }
  #brand-section-apply .cs-button-solid {
    font-size: 1rem;
    line-height: 3.5em;
    text-decoration: none;
    font-weight: 700;
    overflow: hidden;
    width: auto;
    margin: 0;
    color: #fff;
    padding: 0 3rem;
    background-color: var(--primary);
    display: inline-block;
    position: relative;
    z-index: 1;
    transition: color 0.3s;
  }
  #brand-section-apply .cs-button-solid:before {
    content: "";
    position: absolute;
    display: block;
    height: 100%;
    width: 0%;
    background: #1a1a1a;
    opacity: 1;
    top: 0;
    left: 0;
    z-index: -1;
    transition: width 0.3s;
  }
  #brand-section-apply .cs-button-solid:hover {
    color: var(--bg-color);
  }
  #brand-section-apply .cs-button-solid:hover:before {
    width: 100%;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #brand-section-apply .cs-container {
    max-width: 80rem;
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
  }
  #brand-section-apply .cs-content {
    width: 50%;
    max-width: 39.375rem;
    /* prevents flexbox from squishing it */
    flex: none;
  }
  #brand-section-apply .cs-card-group {
    grid-template-columns: repeat(12, 1fr);
  }
  #brand-section-apply .cs-item {
    grid-column: span 6;
  }
  #brand-section-apply .cs-picture {
    height: auto;
    min-height: 32.8125rem;
  }
}
/* Small Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #brand-section-apply .cs-content {
    padding: 5.25rem 0;
    align-self: center;
  }
}

.zf_lB_Dimmer_999997{ 
  position: fixed;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  background: rgb(0, 0, 0);
  opacity: 0.8;
  z-index: 10000000;
}

.zf_lB_Container_999997{
position: fixed;
background-color: white;
margin: 0;
margin-right: 0px;
padding: 0;
height: 3272px;
width:  70%;
top: 50%;
left: 50%;
margin-right: -50%;
transform: translate(-50%, -50%);
border: 7px solid none;
max-height: calc(100% - 60px);
z-index: 999999;
}

p{
margin-bottom: 10px;
}

.zf_lB_Wrapper_999997{
position: fixed;
  top: 50%;
  left: 50%;
  margin-left: 0;
  margin-top: -180px;
  z-index: 10000001;
}

.zf_main_id_999997{
height: calc(100% - 0px);
display: flex;
overflow-y: auto;
overflow-x: hidden;
}

.zf_lb_closeform_999997 {
  position: absolute;
  right: -20px;
  background: #2f2e2e;
  padding: 0;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  top: -15px;
  cursor: pointer;
  border: 2px solid #d9d9d9;
}
.zf_lb_closeform_999997:before, .zf_lb_closeform_999997:after {
  position: absolute;
  left: 16px;
  content: ' ';
  height: 19px;
  width: 2px;
  top: 7px;
  background-color: #f7f7f7;
}

.zf_lb_closeform_999997:before {
transform: rotate(45deg);
}
.zf_lb_closeform_999997:after {
transform: rotate(-45deg);
} 

.fadeIn {
-webkit-animation-name: fadeIn;
animation-name: fadeIn;
-webkit-animation-duration: 1s;
animation-duration: 1s;
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
display: block !important;
}
@-webkit-keyframes fadeIn {
0% {opacity: 0;}
100% {opacity: 1;}
}
@keyframes fadeIn {
0% {opacity: 0;}
100% {opacity: 1;}
} 


@media screen and (min-device-width: 10px) and (max-device-width: 380px) {  
 .zf_lB_Container_999997 {
width: 270px !important;
} 
}

@media screen and (min-device-width: 360px) and (max-device-width: 480px) {  
 .zf_lB_Container_999997 {
width: 350px !important;
} 
}

@media screen and (min-device-width: 440px) and (max-device-width: 500px) {  
 .zf_lB_Container_999997 {
width: 380px !important;
} 
}

@media only screen  and (min-width:500px) and (max-width:600px)  {  
 .zf_lB_Container_999997 {
width: 450px;
}
}

@media only screen  and (min-width:601px) and (max-width:700px)  {  
 .zf_lB_Container_999997 {
width: 540px;
}
}

@media only screen  and (min-width:700px) and (max-width:800px)  { 
.zf_lB_Container_999997 {
width: 650px;
}
}

@media screen and (min-device-width: 801px) and (max-device-width: 1268px) {  
 .zf_lB_Container_999997 {
width: 750px !important;
} 
}


.zf_lB_Dimmer_335913{ 
  position: fixed;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  background: rgb(0, 0, 0);
  opacity: 0.8;
  z-index: 10000000;
}

.zf_lB_Container_335913{
position: fixed;
background-color: white;
margin: 0;
margin-right: 0px;
padding: 0;
height: 1071px;
width:  70%;
top: 50%;
left: 50%;
margin-right: -50%;
transform: translate(-50%, -50%);
border: 7px solid none;
max-height: calc(100% - 60px);
z-index: 999999;
}

p{
margin-bottom: 10px;
}

.zf_lB_Wrapper_335913{
position: fixed;
  top: 50%;
  left: 50%;
  margin-left: 0;
  margin-top: -180px;
  z-index: 10000001;
}

.zf_main_id_335913{
height: calc(100% - 0px);
display: flex;
overflow-y: auto;
overflow-x: hidden;
}

.zf_lb_closeform_335913 {
  position: absolute;
  right: -20px;
  background: #2f2e2e;
  padding: 0;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  top: -15px;
  cursor: pointer;
  border: 2px solid #d9d9d9;
}
.zf_lb_closeform_335913:before, .zf_lb_closeform_335913:after {
  position: absolute;
  left: 16px;
  content: ' ';
  height: 19px;
  width: 2px;
  top: 7px;
  background-color: #f7f7f7;
}

.zf_lb_closeform_335913:before {
transform: rotate(45deg);
}
.zf_lb_closeform_335913:after {
transform: rotate(-45deg);
} 

.fadeIn {
-webkit-animation-name: fadeIn;
animation-name: fadeIn;
-webkit-animation-duration: 1s;
animation-duration: 1s;
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
display: block !important;
}
@-webkit-keyframes fadeIn {
0% {opacity: 0;}
100% {opacity: 1;}
}
@keyframes fadeIn {
0% {opacity: 0;}
100% {opacity: 1;}
} 


@media screen and (min-device-width: 10px) and (max-device-width: 380px) {  
 .zf_lB_Container_335913 {
width: 270px !important;
} 
}

@media screen and (min-device-width: 360px) and (max-device-width: 480px) {  
 .zf_lB_Container_335913 {
width: 350px !important;
} 
}

@media screen and (min-device-width: 440px) and (max-device-width: 500px) {  
 .zf_lB_Container_335913 {
width: 380px !important;
} 
}

@media only screen  and (min-width:500px) and (max-width:600px)  {  
 .zf_lB_Container_335913 {
width: 450px;
}
}

@media only screen  and (min-width:601px) and (max-width:700px)  {  
 .zf_lB_Container_335913 {
width: 540px;
}
}

@media only screen  and (min-width:700px) and (max-width:800px)  { 
.zf_lB_Container_335913 {
width: 650px;
}
}

@media screen and (min-device-width: 801px) and (max-device-width: 1268px) {  
 .zf_lB_Container_335913 {
width: 750px !important;
} 
}

/*  CSS for popup */
.popup-container {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 9999;
  animation: fadeIn 0.3s ease-in-out;
}

.popup-content {
  position: relative;
  max-width: 600px;
  width: 90%;
  margin: 150px auto;
  background-color: rgba(255, 255, 255, 0.185);
  padding: 10px;
  border-radius: 15px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
  transform: translateY(-50px);
  opacity: 0;
  animation: slideIn 0.5s ease-out forwards;
}

.popup-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
}

.close-popup {
  position: absolute;
  top: -15px;
  right: -15px;
  width: 35px;
  height: 35px;
  background-color: #535353;
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.close-popup:hover {
  background-color: #313131;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideIn {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .popup-content {
    width: 85%;
    margin: 150px auto;
  }
}
.btn.order-floats {
  display: block;
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #090909;
  color: white;
  font-size: 16px;
  text-align: center;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease;
}

.btn.order-floats:hover {
  background-color: #535353;
}

/*-- -------------------------- -->
<---       Side By Side         -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #sbs-2218 {
    padding: var(--sectionPadding);
    background-color: #FDFAF8;
    overflow: hidden;
    position: relative;
    z-index: 1;
  }
  #sbs-2218 .cs-container {
    width: 100%;
    /* changes to 1280px at desktop */
    max-width: 36.5rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 48px - 64px */
    gap: clamp(3rem, 6vw, 4rem);
  }
  #sbs-2218 .cs-content {
    /* set text align to left if content needs to be left aligned */
    text-align: left;
    width: 100%;
    max-width: 36.625rem;
    display: flex;
    flex-direction: column;
    /* centers content horizontally, set to flex-start to left align */
    align-items: flex-start;
  }
  #sbs-2218 .cs-text {
    margin-bottom: 1.5rem;
  }
  #sbs-2218 .cs-list {
    margin: 0 0 2rem 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* 24px - 32px */
    gap: clamp(1.5rem, 3vw, 2rem);
  }
  #sbs-2218 .cs-li {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 1.5rem;
  }
  #sbs-2218 .cs-icon-wrapper {
    /* 60px - 80px */
    width: clamp(3.75rem, 7vw, 5rem);
    height: clamp(3.75rem, 7vw, 5rem);
    border: 1px solid #bababa;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: none;
  }
  #sbs-2218 .cs-icon {
    width: 2rem;
    height: auto;
    display: block;
  }
  #sbs-2218 .cs-h3 {
    /* 20px - 25px */
    font-size: clamp(1.25rem, 2.5vw, 1.5625rem);
    font-weight: 700;
    line-height: 1.2em;
    text-align: left;
    margin: 0 0 0.75rem 0;
    color: var(--headerColor);
  }
  #sbs-2218 .cs-li-text {
    /* 14px - 16px */
    font-size: clamp(0.875rem, 1.8vw, 1rem);
    line-height: 1.5em;
    text-align: left;
    margin: 0;
    color: var(--bodyTextColor);
  }
  #sbs-2218 .cs-image-group {
    /* scales the whole group based on the view width size and stop when that vales equals .74em, resets at desktop */
    font-size: min(2.32vw, .74em);
    width: 39.375em;
    height: 40.9375em;
    display: block;
    position: relative;
    z-index: 1;
  }
  #sbs-2218 .cs-image-group::before {
    content: "";
    width: 22.375em;
    height: auto;
    background: var(--secondary);
    opacity: 0.2;
    display: block;
    position: absolute;
    top: 9em;
    bottom: 11.125em;
    left: 5.5em;
  }
  #sbs-2218 .cs-picture {
    position: absolute;
  }
  #sbs-2218 .cs-picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
  }
  #sbs-2218 .cs-picture1 {
    width: 19.0625em;
    height: auto;
    border: 4px solid #FFFFFF;
    top: 0;
    bottom: 0.5625em;
    left: 0;
  }
  #sbs-2218 .cs-picture2 {
    width: 20.8125em;
    height: auto;
    border: 4px solid #FFFFFF;
    top:12.9375em;
    right: 0;
    bottom: 0;
  }
  #sbs-2218 .cs-picture3 {
    width: 19.625em;
    height: 12.6875em;
    top: 0.25em;
    right: 0.6875em;
  }
 
  #sbs-2218 .cs-button-solid {
    font-size: 1rem;
    font-weight: 700;
    /* 46px - 56px */
    line-height: clamp(2.875rem, 5.5vw, 3.5rem);
    text-align: center;
    text-decoration: none;
    min-width: 9.375rem;
    margin: 0;
    /* prevents padding from adding to the width */
    box-sizing: border-box;
    padding: 0 1.5rem;
    background-color: var(--primary);
    color: #fff;
    display: inline-block;
    position: relative;
    z-index: 1;
  }
  #sbs-2218 .cs-button-solid:before {
    content: "";
    width: 0%;
    height: 100%;
    background: #000;
    opacity: 1;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transition: width 0.3s;
  }
  #sbs-2218 .cs-button-solid:hover:before {
    width: 100%;
  }
}
/* Small Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #sbs-2218 .cs-container {
    max-width: 80rem;
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
  }
  #sbs-2218 .cs-content {
    width: 47%;
    align-self: center;
  }
  #sbs-2218 .cs-li {
    align-items: center;
  }
  #sbs-2218 .cs-image-group {
    font-size: min(1.2vw, 1em);
    height: auto;
    flex: none;
  }
}
