.main-heading {
  font-size: 32px;
  padding-block: 20px;
  color: #022c05;
}

.heading-with-desc {
  padding-bottom: 0 !important;
}

.items-section {
  display: flex;
  gap: 15px;
  align-items: center;
  justify-content: center;
  padding-block: 40px;
  flex-wrap: wrap;
}

.items-section li {
  background-color: #022c05;
  padding: 10px 20px;
  border-radius: 8px;
  transition: 0.3s ease;
  cursor: pointer;
  color: #fff;
}
.items-section li:hover,
.items-section > .active {
  background-color: #099913;
}

.menu-area {
  padding-bottom: 40px;
  border-bottom: 1px dashed #b9bdba;
  margin-bottom: 80px;
}

.menu-title {
  font-size: 24px;
  font-weight: 600;
  color: #099913;
}

.mt-10 {
  margin-top: 60px;
}

.item-description {
  font-size: 14px;
}

.item-price,
.item-heading {
  font-size: 16px;
  font-weight: 600;
  font-family: "Mukta", sans-serif;
}

.item-price-varient {
  margin-inline: 5px;
}

.item-price-varient p {
  line-height: 1.2;
  font-weight: 600;
  font-size: 18px;
}
.varient {
  font-size: 12px !important;
  color: green;
}

.menu-area img {
  position: sticky;
  top: 120px;
}

.menu-img img {
  width: 100%;
  object-fit: cover;
  max-width: 350px;
  min-height: 400px;
  border-radius: 10px;
}

.items {
  border-bottom: 1px solid #dfe4e0;
  padding-block: 10px;
  height: 100%;
}

.items2:last-child {
  border-bottom: none;
}

.items2 {
  border-bottom: 1px solid #dfe4e0;
  padding-block: 15px;
}

/* .section {
  display: none;
} */

.section {
  margin-bottom: 28px;
  display: none;
  animation: fadeIn 0.4s ease-in-out;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section.active {
  display: block;
}
