:root {
  --text-S: "Source Serif 4", serif;
  --text-P: "Poppins", sans-serif;
  --clr-R: #940a11;
  --clr-W: #faf9f6;
  --clr-B: #010101;
  --clr-LB: #333333;
  --clr-DR: #2e0305;
  --clr-G: #bababa;
  --clr-LG: #535353;
  --clr-LLB: #212121;
  --clr-LR: #c40e17;
  --clr-LP: #fff5f6;
  --clr-MG: #757575;
  --clr-BR: #ef1923;
  --clr-WW: #ffffff;
  --clr-primary: var(--clr-R);
  --clr-secondary: var(--clr-W);
  --clr-accent-primary: var(--clr-B);
  --clr-accent-secondary: var(--clr-LB);
  --clr-accent-tertiary: var(--clr-LR);
  --font-famliy-primary: var(--text-P);
  --font-famliy-secondar: var(--text-S);
}
*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  background-color: var(--clr-secondary);
  font-family: var(--font-famliy-primary);
}
section {
  min-width: 100%;
  min-height: 100vh;
}
.heading-b {
  color: var(--clr-accent-primary);
  font-family: var(--font-famliy-primary);
  text-transform: uppercase;
  font-style: normal;
}
.heading-r {
  color: var(--clr-accent-tertiary);
  font-family: var(--font-famliy-secondar);
  text-transform: lowercase;
  font-style: italic;
}
.p-1 {
  color: var(--clr-accent-secondary);
  font-family: var(--font-famliy-primary);
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0.0375rem;
}
.header {
  display: block;
  width: 100%;
  height: 100%;
  background: none;
  position: absolute;
  z-index: 1;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 100%;
  max-height: 100%;
  margin: 1.5rem 4rem;
  background: transparent;
}
.nav-r-img {
  width: 5.75rem;
  height: 4.4375rem;
}
.nav-l {
  display: flex;
  align-items: center;
  justify-content: center;
  list-style: none;
  gap: 1rem;
  margin: 0 auto;
  padding: 1rem 2rem;
  border-radius: 2rem;
  border: 1px solid var(--clr-G);
  background: rgba(24, 22, 23, 0.2);
  backdrop-filter: blur(60px);
  text-transform: capitalize;
}
.nav-link {
  color: var(--clr-LG);
  font-family: var(--font-famliy-secondar);
  font-size: 1rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  padding: 0.25rem 0.5rem;
  text-decoration: none;
  letter-spacing: 0.05rem;
}
.nav-link:hover {
  color: var(--clr-accent-tertiary);
  outline: 0;
  outline-offset: 0;
}

.nav-link.active {
  color: var(--clr-accent-tertiary);
  outline: 0;
  outline-offset: 0;
}

.nav-link:focus {
  color: var(--clr-accent-tertiary);
  outline: 0;
  outline-offset: 0;
}
.hero {
  position: relative;
}
.slider {
  width: 100%;
  height: 100vh;
  margin: auto;
  position: relative;
  overflow: hidden;
}
.slider .list {
  display: flex;
  width: 400%;
  height: 100%;
  transition: transform 1s ease;
  will-change: transform;
  transform: translate3d(0, 0, 0);
}
.img-crsl {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  object-position: center;
}
.img-crsl-3 {
  object-position: top;
}

.slider .buttons {
  position: absolute;
  top: 45%;
  left: 5%;
  width: 90%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1;
}

.slider .buttons button {
  background: none;
  border: none;
  cursor: pointer;
}

.slider .dots {
  position: absolute;
  bottom: 10px;
  left: 0;
  color: var(--clr-WW);
  width: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  z-index: 1;
  cursor: pointer;
}

.slider .dots li {
  list-style: none;
  width: 1.25rem;
  height: 0.25rem;
  background-color: var(--clr-G);
  margin: 10px;
  border-radius: 1rem;
  transition: 0.5s;
}

.slider .dots li.active {
  width: 3rem;
  background-color: var(--clr-accent-tertiary);
}

.parallax {
  min-width: 100%;
  min-height: 100vh;
  position: relative;
  background-image: url("./Assests/parallax-img.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.parallax::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.5;
  background: var(--clr-primary);
  mix-blend-mode: overlay;
}
.parallax-head {
  color: var(--clr-WW);
  font-size: 3rem;
  font-weight: 600;
  line-height: normal;
}

.parallax-card {
  display: flex;
  min-width: 25%;
  min-height: 100%;
  padding: 1.5rem;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  border-radius: 2rem;
  border: 1px solid var(--clr-MG);
  background: rgba(24, 22, 23, 0.2);
  backdrop-filter: blur(25px);
}
.card-dtls {
  color: var(--clr-WW);
  text-align: center;
  font-size: 2.5rem;
  font-style: normal;
  font-weight: 600;
  line-height: 2.5rem;
  letter-spacing: 0.125rem;
}
.card-txt {
  display: block;
  text-align: center;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.5rem; /* 133.333% */
  letter-spacing: 0.05625rem;
  text-transform: capitalize;
  white-space: nowrap;
}
.parallax-card-grp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}
.parallax-txt {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.crtf {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 3.5rem;
}
.crtf-head {
  position: relative;
}
.heading-crtf {
  text-align: center;
  font-size: 3rem;
  font-weight: 600;
  line-height: normal;
}
.trns-img {
  position: absolute;
  top: 44%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
.crtf-grp {
  width: 80%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  transition: transform 0.5s ease;
}
.crtf-doc {
  max-width: 18%;
  max-height: 100%;
  object-fit: cover;
}
.crtf-wrapper {
  position: relative;
  max-width: 100%;
  max-height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.heading-aboutus {
  text-align: center;
  font-weight: 600;
  line-height: 120%;
  font-size: 3rem;
}
.aboutus {
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(
    to right,
    var(--clr-LP) 65%,
    var(--clr-primary) 45%
  );
  position: relative;
}
.aboutus-txt {
  width: 50%;
  height: 100%;
  margin-left: 4rem;
  margin-right: 6rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: self-start;
}
.aboutus-img {
  width: 50%;
  margin-right: 7.5rem;
}
.aboutus-img-1 {
  width: 100%;
  height: 100%;
}
.aboutus-head {
  position: relative;
  z-index: 1;
}
.aboutus-p {
  margin-bottom: 1.5rem;
}
.btn-link {
  text-decoration: none;
}
.btn {
  position: relative;
  border-radius: 0.5rem;
  background: var(--clr-primary);
  box-shadow: 0px 49px 14px 0px rgba(34, 2, 2, 0),
    0px 31px 12px 0px rgba(34, 2, 2, 0.04),
    0px 18px 11px 0px rgba(34, 2, 2, 0.13), 0px 8px 8px 0px rgba(34, 2, 2, 0.21),
    0px 2px 4px 0px rgba(34, 2, 2, 0.25);
  padding: 1rem 2.5rem;
  border: none;
  color: var(--clr-WW);
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: 130%;
  letter-spacing: 0.03rem;
  overflow: hidden;
  text-decoration: none;
  transition: all 0.2s linear 0s;
  cursor: pointer;
}
.btn:before {
  content: "\f054";
  font-family: FontAwesome;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0px;
  height: 100%;
  width: 20%;
  background-color: rgba(24, 22, 23, 0.4);
  border-radius: 0 50% 50% 0;
  transform: scale(0, 1);
  transform-origin: left center;
  transition: all 200ms ease-out;
}
.btn:hover {
  background: var(--clr-accent-tertiary);
}
.btn:hover:before {
  transform: scale(1, 1);
  text-indent: 0;
}

.products {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 3.5rem;
  padding: 7.5rem 4rem;
  background: var(--clr-WW);
}
.products-head {
  position: relative;
  z-index: 1;
}
.products-body {
  min-width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 2.5rem;
}
.products-category {
  width: 15.625rem;
  height: 9.7815rem;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  gap: 3.28rem;
  cursor: pointer;
  text-decoration: none;
}
.product-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: all 300ms ease-in-out;
}
.product-name {
  color: var(--clr-LLB);
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: 130%;
  text-transform: capitalize;
}
.category-name {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.arw {
  transition: all 300ms ease-in-out;
}
.products-category:hover .arw {
  transform: rotate(-45deg);
  stroke-width: 2px;
  transition: all 300ms ease-in-out;
}
.products-category:hover .product-img {
  transform: scale(1.1);
  transition: all 300ms ease-in-out;
}

.heading-pakaging {
  font-size: 3rem;
  font-weight: 600;
  line-height: normal;
}
.pakaging {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 3.5rem;
  padding: 7.5rem 4rem;
}
.pkg-img {
  max-width: 50%;
}
.pkg-p {
  text-align: center;
}

.footer {
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8rem;
  padding: 6.5rem 4rem 1rem 4rem;
  background: linear-gradient(
    180deg,
    var(--clr-primary) 0%,
    var(--clr-DR) 123.6%
  );
}
.footer-grp {
  width: 100%;
  height: 40%;
  display: flex;
  align-items: flex-start;
  justify-content: space-around;
  gap: 2rem;
}
.footer-name {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
}
.footer-first {
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.last-plate {
  color: var(--clr-G);
  text-align: center;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.0225rem;
}
.heading-3 {
  font-family: var(--font-famliy-secondar);
  color: var(--clr-WW);
  font-size: 7.5rem;
  font-weight: 700;
  line-height: 100%;
  text-transform: uppercase;
  white-space: nowrap;
  text-align: center;
  transform-origin: center;
  transform: scaleY(1.4);
}
.footer-img {
  width: 9rem;
  height: 7.15138rem;
  aspect-ratio: 144/114.42;
}
.footer-since {
  color: var(--clr-WW);
  text-align: center;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 500;
  line-height: 120%; /* 1.35rem */
  letter-spacing: 0.03375rem;
}
.footer-p {
  color: var(--clr-WW);
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.02625rem;
}
.footer-btn {
  display: flex;
  width: 10.375rem;
  padding: 0.75rem 1rem;
  justify-content: space-around;
  background: transparent;
  color: var(--clr-WW);
  border-radius: 0.5rem;
  border: 1px solid var(--clr-WW);
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}
.ftr-2 {
  color: var(--clr-G);
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 500;
  line-height: 120%; /* 1.05rem */
  letter-spacing: 0.02625rem;
  text-decoration: none;
  width: 100%;
  transition: all 300ms ease-in-out;
}
.foot-2 {
  display: flex;
  flex-direction: column;
  align-items: self-start;
  justify-content: center;
  gap: 1rem;
  max-width: 100%;
}
.ftr-2:hover {
  color: var(--clr-WW);
}
.foot-1 {
  display: flex;
  flex-direction: column;
  align-items: self-start;
  justify-content: center;
  gap: 2rem;
  max-width: 32%;
}
.location {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  text-decoration: none;
}
.location-marker {
  width: 1.5rem;
  height: 1.5rem;
  aspect-ratio: 1/1;
}
.location-name {
  color: var(--clr-WW);
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.02625rem;
}
.location-dscrp {
  color: var(--clr-G);
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.015rem;
  white-space: normal;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.location-name-grp {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.125rem;
  flex: 1 0 0;
}
.foot-3 {
  display: flex;
  flex-direction: column;
  align-items: self-start;
  justify-content: center;
  gap: 1rem;
  max-width: 23%;
}
.foot-4 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  max-width: 25%;
}
.foor-4-img {
  width: 100%;
}

.header-2 {
  position: relative;
}

.divider {
  display: flex;
  align-items: center;
  color: var(--clr-MG);
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.03rem;
  text-transform: capitalize;
  padding: 3rem 4rem;
}
.divider-link {
  text-decoration: none;
  cursor: pointer;
  color: var(--clr-accent-primary);
  margin-right: 0.25rem;
}
.divider-link-2 {
  text-decoration: none;
  cursor: pointer;
  color: var(--clr-MG);
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.03rem;
  text-transform: capitalize;
}

.a1-team {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3.5rem;
  padding: 7.5rem 4rem;
}
.heading-a1-team {
  font-size: 3rem;
  font-weight: 600;
  line-height: normal;
}
.qlty-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 19.375rem;
  height: 100%;
  padding: 1.5rem;
  border-radius: 1rem;
  background: var(--clr-WW);
  box-shadow: 0px 18px 18px 0px rgba(0, 0, 0, 0.05);
  gap: 1.125rem;
}
.qlty-card-heading {
  color: var(--clr-LLB);
  font-size: 1.375rem;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
}
.qlty-p {
  color: var(--clr-accent-secondary);
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 1.4rem */
  letter-spacing: 0.03rem;
}
.qlty-card-head {
  display: flex;
  flex-direction: column;
  align-items: self-start;
  gap: 1.125rem;
}
.qlty-card-grp {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}
.a1-team-sub-head {
  color: var(--clr-accent-secondary);
  text-align: center;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-align: center;
  margin-top: -2.75rem;
}

/* Style for the aside-form */
.aside-form {
  position: fixed;
  top: 0;
  right: -40%; /* Initially hidden off-screen */
  width: 40%; /* Define the width of the form */
  height: 100%;
  background-color: white;
  transition: right 0.3s ease-in-out; /* Transition to move the form */
  z-index: 999; /* Make sure the form is above other content */
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.2); /* Optional shadow for better visibility */
}

/* The class added when the form is open */
.aside-form.open {
  right: 0; /* Move the form into view */
}

/* Overlay behind the form */
.aside-form-overlay {
  opacity: 0; /* Initially invisible */
  visibility: hidden; /* Initially hidden */
  z-index: 998; /* Should be behind the aside-form */
}

/* When the overlay is active, make it visible */
.aside-form.open + .aside-form-overlay {
  opacity: 1;
  visibility: visible; /* Make it visible when the form is open */
  transition: opacity 0.3s ease, visibility 0s 0s; /* Fade in animation */
}

/* Close button (cross) styling */
.close-btn {
  cursor: pointer;
  width: 40px; /* Set fixed size */
  height: 40px; /* Set fixed size */
  transition: transform 0.2s; /* Optional: Add smooth scale effect */
}

/* Optional hover effect for the close button */
.close-btn:hover {
  transform: scale(1.2); /* Slightly enlarge on hover */
}

/* Optional: You can also add a simple fade-in animation to the form */
@keyframes slideIn {
  0% {
    right: -40%;
  }
  100% {
    right: 0;
  }
}

@keyframes slideOut {
  0% {
    right: 0;
  }
  100% {
    right: -40%;
  }
}

.aside-form.open {
  animation: slideIn 0.3s forwards; /* Slide in when opening */
}

/* Add slide-out animation when the form is closed */
.aside-form.closing {
  animation: slideOut 0.3s forwards; /* Slide out when closing */
}
.contact-btn {
  cursor: pointer;
}

.form {
  min-width: 100%;
  display: flex;
  width: 100%;
  padding: 2rem;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 2rem;
}
.form-head {
  min-width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.form-body {
  min-width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
}
.form-heading {
  color: var(--clr-accent-primary);
  font-family: var(--font-famliy-secondar);
  font-size: 2rem;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: 0.06rem;
  text-transform: capitalize;
}
.input-field {
  min-width: 100%;
}
.input-field input {
  min-width: 100%;
  display: flex;
  padding: 1.125rem 1rem;
  align-items: center;
  gap: 0.5rem;
  align-self: stretch;
  color: var(--clr-MG);
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 1.05rem */
  letter-spacing: 0.02625rem;
  text-transform: capitalize;
  border-radius: 0.25rem;
  border: none;
  background: #dedede;
}
.msg-fld {
  min-height: 7.3125rem;
}

.form-btn {
  min-width: 100%;
  display: flex;
  padding: 1rem 1.5rem;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  align-self: stretch;
  border-radius: 0.5rem;
  background: #999;
  box-shadow: 0px 49px 14px 0px rgba(34, 2, 2, 0),
    0px 31px 12px 0px rgba(34, 2, 2, 0.04),
    0px 18px 11px 0px rgba(34, 2, 2, 0.13), 0px 8px 8px 0px rgba(34, 2, 2, 0.21),
    0px 2px 4px 0px rgba(34, 2, 2, 0.25);
  color: var(--clr-MG);
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: 130%;
  letter-spacing: 0.03rem;
  border: none;
  margin-top: 0.5rem;
  cursor: not-allowed;
}
.form-btn:enabled {
  cursor: pointer;
}
.input-field input:focus,
.input-field input:valid {
  border: 1px solid #364daa;
  outline: none;
  color: #364daa;
}
.input-field input.filled {
  border-color: #364daa; /* Change the border color when the field is correctly filled */
}
.close-btn {
  cursor: pointer;
}

.map {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
}
.world-map {
  width: 100%;
  height: 100vh;
  margin: 1.5rem 0rem 7.63rem 0rem;
}
.map-container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.map-container svg {
  max-width: 100%;
  max-height: 100%;
}
.hover {
  fill: #f9a4a9;
  stroke: var(--clr-primary);
  transition: all 100ms ease-in;
}
.hover:hover {
  fill: #f2454e;
}

#popup {
  color: #fff;
  font-size: 0.9rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.03375rem;
  text-transform: capitalize;
  display: inline-flex;
  padding: 0.5rem 0.75rem;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  border-radius: 0.25rem;
  background: var(--clr-primary);
  pointer-events: none;
  display: none;
  position: absolute;
  z-index: 999;
  transition: all 100ms ease-in;
}

.scroll {
  display: flex;
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent,
    #fff 20%,
    #fff 80%,
    transparent
  );
  mask-image: linear-gradient(
    90deg,
    transparent,
    #fff 20%,
    #fff 80%,
    transparent
  );
  will-change: transform;
}

.scroll .scroll-inner {
  white-space: nowrap;
  animation: scroll var(--time) linear infinite;
  animation-delay: calc(var(--time) * -1);
  will-change: transform;
}

.scroll .scroll-inner:nth-child(2) {
  animation: scroll2 var(--time) linear infinite;
  animation-delay: calc(var(--time) / -2);
}

@keyframes scroll {
  0% {
    transform: translateX(100%);
  }

  100% {
    transform: translateX(-100%);
  }
}

@keyframes scroll2 {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-200%);
  }
}
.flag {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0.25rem;
  margin: 0 1rem;
}
.flag-name {
  color: var(--clr-accent-secondary);
  text-align: center;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.03375rem;
  text-transform: capitalize;
}

.masala-spice {
  display: flex;
  padding: 3rem 4rem;
  justify-content: center;
  align-items: center;
  align-content: center;
  flex-wrap: wrap;
  margin-bottom: 9.77rem;
  background-color: var(--clr-WW);
}
.masala-grid {
  max-width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  justify-content: center;
  gap: 3rem;
}
.masala-grid img {
  width: 19.42263rem;
  height: 32.01538rem;
  flex-shrink: 0;
}
.masala-grid img:nth-child(25) {
  grid-column: 2;
}

.spiec-powder {
  padding: 1.5rem 4rem;
}

.spice-1 {
  display: inline-flex;
  padding: 0.25rem 0.75rem;
  justify-content: center;
  align-items: center;
  border-radius: 0.25rem;
  background: var(--clr-primary);
  white-space: nowrap;
  margin-bottom: 1.5rem;
}
.spice-head {
  color: var(--clr-WW);
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.spice-2 {
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.type-card {
  display: flex;
  padding: 2rem 1.5rem;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
  border-radius: 0.5rem;
  background: var(--clr-WW);
  box-shadow: 0px 222px 62px 0px rgba(0, 0, 0, 0),
    0px 142px 57px 0px rgba(0, 0, 0, 0.01),
    0px 80px 48px 0px rgba(0, 0, 0, 0.03), 0px 36px 36px 0px rgba(0, 0, 0, 0.04),
    0px 9px 20px 0px rgba(0, 0, 0, 0.05);
}
.card-head {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 120%;
  white-space: nowrap;
}
.type-name {
  color: var(--clr-accent-secondary);
  font-family: var(--Font-family-Body, Poppins);
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  text-transform: capitalize;
  white-space: nowrap;
}
.type-card-head {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}
.type-img {
  width: 2.5rem;
  height: 2.45969rem;
  aspect-ratio: 40/39.35;
}
.type-img-2 {
  width: 3.875rem;
  height: 2.32563rem;
  aspect-ratio: 62/37.21;
}
.type-img-3 {
  width: 3.5rem;
  height: 2.73363rem;
  aspect-ratio: 56/43.74;
}
.type-card-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  align-self: stretch;
  counter-reset: list-counter;
}
.type-card-body .type-name {
  list-style-type: none;
  counter-increment: list-counter;
}
.type-card-body .type-name::before {
  content: counter(list-counter) ".";
  margin-right: 0.5rem;
}

.private-label {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  margin-bottom: 11.53rem;
}
.private-label-head-1 {
  color: var(--clr-accent-primary);
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
  text-transform: capitalize;
  white-space: nowrap;
}
.private-label-head-2 {
  color: var(--clr-accent-primary);
  font-size: 3rem;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  text-transform: capitalize;
  white-space: nowrap;
}
.private-label-head-3 {
  color: var(--clr-primary);
  font-family: var(--font-famliy-secondar);
  font-size: 1.25rem;
  font-style: italic;
  font-weight: 600;
  line-height: 100%;
  text-transform: capitalize;
  white-space: nowrap;
}
.private-label-img {
  max-width: 100%;
  height: 100vh;
}
.private-label-head {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 0.5rem;
  align-self: stretch;
}

.w-g {
  padding: 3rem 4rem;
  background: var(--clr-WW);
}
.w-g-grid {
  max-width: 100%;
  max-height: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  justify-content: center;
  gap: 2.5rem 4rem;
}
.w-g-category {
  width: 100%;
  height: 21.875rem;
  flex: 1 0 0;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  gap: 2.75rem;
  cursor: pointer;
  text-decoration: none;
}
.w-g-img {
  width: 12.48194rem;
  height: 11.5rem;
  flex-shrink: 0;
  aspect-ratio: 199.71/184;
  transition: all 300ms ease-in-out;
}
.w-g-category:hover .arw {
  transform: rotate(-45deg);
  stroke-width: 2px;
  transition: all 300ms ease-in-out;
}
.w-g-category:hover .w-g-img {
  transform: scale(1.1);
  transition: all 300ms ease-in-out;
}

.c-c-h-1 {
  color: var(--clr-accent-secondary);
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 1.225rem */
  letter-spacing: 0.02625rem;
  text-transform: capitalize;
  white-space: nowrap;
}
.c-c-h-2 {
  color: var(--clr-accent-primary);
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: 140%; /* 1.4rem */
  letter-spacing: 0.03rem;
  text-transform: capitalize;
  white-space: nowrap;
}
.cart-card {
  display: inline-flex;
  width: 13.25rem;
  padding: 0.75rem 1rem;
  align-items: flex-start;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 1rem;
  border: 0.5px solid var(--clr-MG);
  background: var(--clr-WW);
}
.cart-card-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0.25rem;
}
.c-c-img {
  width: 100%;
}
.cart-body-mid {
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}
.c-b-h {
  color: var(--clr-accent-primary);
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 1.8rem */
  letter-spacing: 0.045rem;
  text-transform: uppercase;
}
.c-b-p {
  color: var(--clr-accent-secondary);
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 1.5rem */
  letter-spacing: 0.03rem;
}
.cart-body-head {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 1rem;
}
.cart-body {
  max-width: 60%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3.5rem;
}
.cart-img {
  max-width: 40%;
  display: flex;
  height: 31.25rem;
  padding: 2.9375rem 3.54169rem 2.9375rem 3.47919rem;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}
.cart-img img {
  width: 27.54169rem;
  height: 25.375rem;

  flex-shrink: 0;
  aspect-ratio: 440.67/406;
}
.cart {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
  padding: 3rem 4rem;
  background: var(--clr-WW);
  margin-bottom: 17.28rem;
}
.hero-m {
  display: none;
}
.nav-wrapper {
  display: none;
}
.header-m {
  display: none;
}

@media (max-width: 1024px) {
  .nav-link {
    font-size: 1.375rem;
  }
  .parallax-head {
    font-size: 3rem;
  }
}
@media (max-width: 640px), (max-width: 1024px) {
  section {
    min-height: 100%;
    min-width: 100%;
  }
  .nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 100%;
    max-height: 100%;
    margin: 1.5rem 4rem;
    background: transparent;
  }
  .nav-m {
    width: 100%;
    padding: 1.75rem 0.5rem;
    border-radius: 4rem;
    gap: 0.3rem;
  }
  .nav-wrapper {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0rem 1rem;
    margin-bottom: 1rem;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 10;
  }
  .nav-link {
    font-size: 0.75rem;
    padding: 1.75rem 0.5rem;
    white-space: nowrap;
  }
  .nav-r-img {
    width: 4rem;
    height: 3.17838rem;
    flex-shrink: 0;
  }
  .hero-m {
    position: relative;
    display: block;
  }
  .slider {
    position: relative;
    width: 100%;
    height: 100%;
  }
  .img-crsl {
    width: 100%;
    height: 100%;
  }
  .header {
    display: none;
  }
  .header-m {
    width: 100%;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    z-index: 2;
  }
  .header-2 {
    position: relative;
  }
  .contact-m {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    border-radius: 0.25rem;
    padding: 0.75rem 1rem;
    border: none;
    background: none;
  }
  .slider .buttons {
    position: absolute;
    top: 5%;
    left: 2%;
    z-index: 1;
    width: 95%;
    height: 100%;
  }
  button {
    height: 100%;
  }
  .button-img {
    width: 2.25rem;
    height: 2.25rem;
  }

  .parallax {
    max-width: 100%;
    max-height: 100%;
    background-image: url("./Assests/parallax-img-m.png");
    padding: 4rem 2rem;
  }
  .parallax-head {
    font-size: 1.75rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .parallax-card {
    width: 10.1875rem;
    height: 11.5625rem;
    padding: 2.5rem;
    gap: 1rem;
  }

  .parallax-card img {
    width: 60%;
  }
  .card-dtls {
    font-size: 1.5rem;
    line-height: 120%;
    margin-bottom: 0.5rem;
  }
  .card-txt {
    font-size: 0.875rem;
    white-space: wrap;
    line-height: 120%; /* 1.05rem */
    letter-spacing: 0.02625rem;
    text-transform: capitalize;
  }
  .parallax-card-grp {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
  }
  .parallax-txt {
    gap: 2.5rem;
  }

  .crtf {
    max-width: 100%;
    max-height: 100%;
    padding: 4rem 1rem;
    gap: 2.5rem;
  }
  .crtf-head {
    position: relative;
  }
  .heading-crtf {
    font-size: 1.75rem;
    line-height: 120%;
  }
  .trns-img {
    width: 5.313rem;
  }
  .crtf-grp {
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
  }
  .crtf-doc {
    min-width: 100%;
    min-height: 100%;
    object-fit: contain;
  }
  .crtf-wrapper {
    max-width: 100%;
    max-height: 100%;
    padding: 0.75rem 1rem;
  }
  .hero {
    display: none;
  }

  .heading-aboutus {
    font-size: 1.75rem;
  }
  .aboutus {
    max-width: 100%;
    max-height: 100%;
    padding: 4rem 1rem;
    flex-direction: column;
    background: linear-gradient(
      to bottom,
      var(--clr-LP) 75.3%,
      var(--clr-primary) 24.7%
    );
    position: relative;
  }

  .aboutus-2 {
    background: linear-gradient(
      to bottom,
      var(--clr-LP) 85%,
      var(--clr-primary) 15%
    );
  }
  .aboutus-txt {
    width: 100%;
    height: 100%;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 2rem;
  }
  .aboutus-img {
    width: 100%;
    margin-right: 0;
  }
  .aboutus-img-1 {
    width: 100%;
    height: 100%;
  }
  .aboutus-p {
    font-size: 1rem;
    margin-bottom: 1rem;
  }
  .btn-link {
    text-decoration: none;
    width: 100%;
  }
  .btn {
    width: 100%;
  }

  .products {
    max-width: 100%;
    max-height: 100%;
    padding: 4rem 1rem;
    flex-direction: column;
  }
  .products-body {
    min-width: 100%;
    flex-direction: column;
    gap: 4rem;
  }
  .products-category {
    width: 80%;
    height: 80%;
    gap: 2rem;
  }
  .product-img {
    max-width: 100%;
    max-height: 100%;
  }
  .product-img-3 {
    width: 50%;
    height: 50%;
    flex-shrink: 0;
  }

  .heading-pakaging {
    text-align: center;
    font-size: 1.75rem;
    line-height: 120%; /* 2.1rem */
  }
  .pakaging {
    max-width: 100%;
    max-height: 100%;
    padding: 4rem 1rem;
    gap: 2.5rem;
  }
  .pkg-img {
    max-width: 100%;
  }
  .pkg-p {
    text-align: center;
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: 0.02625rem;
  }

  .footer {
    max-width: 100%;
    max-height: 100%;
    padding: 2rem;
    gap: 5rem;
  }
  .footer-grp {
    width: 100%;
    flex-direction: column;
    gap: 3rem;
  }
  .footer-first {
    flex-direction: column;
  }
  .last-plate {
    margin-bottom: 6rem;
  }
  .heading-3 {
    font-size: 2rem;
  }
  .footer-since {
    font-size: 1rem;
  }
  .foot-2 {
    max-width: 100%;
  }
  .foot-1 {
    gap: 1rem;
    max-width: 100%;
  }
  .foot-3 {
    gap: 1.5rem;
    max-width: 100%;
  }
  .foot-4 {
    max-width: 100%;
    gap: 1.5rem;
  }
  .foor-4-img {
    width: 120%;
    height: 120%;
  }
  .footer-img {
    width: 40%;
    height: auto;
  }

  .aside-form {
    width: 100%;
    right: -100%;
  }
  @keyframes slideIn {
    0% {
      right: -100%;
    }
    100% {
      right: 0;
    }
  }
  @keyframes slideOut {
    0% {
      right: 0;
    }
    100% {
      right: -100%;
    }
  }

  .form {
    padding: 2rem 1rem;
  }

  .divider {
    align-items: flex-start;
    padding: 1rem;
  }
  .divider-link {
    white-space: nowrap;
  }

  .a1-team {
    max-width: 100%;
    max-height: 100%;
    padding: 4rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
  }
  .heading-a1-team {
    font-size: 1.75rem;
    line-height: 120%;
  }
  .qlty-card-grp {
    width: 100%;
    grid-template-columns: repeat(1, 1fr);
    gap: 2.5rem;
  }
  .qlty-card {
    width: 100%;
    height: 100%;
  }
  .a1-team-sub-head {
    font-size: 1rem;
    line-height: 140%;
    margin-top: -1.75rem;
  }

  .map {
    max-width: 100%;
    max-height: 100%;
    padding: 0rem 1rem;
  }
  .world-map {
    width: 100%;
    height: 100%;
  }
  .map-container {
    width: 100%;
    height: 100%;
    display: block;
  }
  .flag-name {
    font-size: 1rem;
  }

  .w-g {
    max-width: 100%;
    max-height: 100%;
    padding: 4rem 1rem;
    margin-bottom: 6rem;
  }
  .w-g-grid {
    max-width: 100%;
    max-height: 100%;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem 1.5rem;
  }
  .w-g-category {
    max-width: 100%;
    height: auto;
    gap: 1.5rem;
  }
  .w-g-img {
    width: 80%;
    height: 80%;
  }
  .product-name-c {
    font-size: 0.75rem;
  }

  .cart-card {
    width: 100%;
    justify-content: flex-start;
  }

  .cart-body-mid {
    flex-direction: column;
    gap: 1rem;
  }
  .cart-body-head {
    max-width: 100%;
    gap: 0.8rem;
  }
  .cart-body {
    max-width: 100%;
    gap: 3rem;
  }
  .cart-img {
    max-width: 100%;
    height: auto;
    padding: 0;
  }
  .cart-img img {
    width: 18.75rem;
    height: 18.1875rem;
    aspect-ratio: 100/97;
  }
  .cart {
    max-width: 100%;
    max-height: 100%;
    padding: 2.5rem 1rem 4rem 1rem;
    flex-direction: column;
    gap: 2.5rem;
    margin-bottom: 6rem;
  }
  .cart-body-bottom {
    max-width: 100%;
  }

  .spiec-powder {
    max-width: 100%;
    max-height: 100%;
    padding: 1rem 1rem 4rem 1rem;
  }
  .spice-2 {
    width: 100%;
    flex-direction: column;
    gap: 1.5rem;
  }
  .type-card {
    min-width: 100%;
  }

  .private-label {
    max-width: 100%;
    max-height: 100%;
    padding: 0rem 1rem 4rem 1rem;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 0;
  }
  .private-label-head-1 {
    font-size: 0.875rem;
  }
  .private-label-head-2 {
    font-size: 2rem;
  }
  .private-label-head-3 {
    font-size: 1.15rem;
  }
  .private-label-img {
    max-width: 100%;
    height: 100%;
  }

  .masala-spice {
    max-width: 100%;
    max-height: 100%;
    padding: 2rem 1rem 4rem 1rem;
    margin-bottom: 6rem;
  }
  .masala-grid {
    max-width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
  }
  .masala-grid img {
    width: 100%;
    height: 100%;
    flex-shrink: 0;
  }
  .masala-grid img:nth-child(25) {
    grid-column: 1;
  }
}
