.banner__section video {
  width: 100%;
  height: 100%;
}

.noodle-varieties__section {
  padding: 80px 0 110px;
}

.noodle-varieties__section .section-wrap {
  max-width: 607px;
  margin-bottom: 0;
  margin-top: clamp(30px, 3vw, 60px);
}

.noddle-wrapper {
  display: flex;
  align-items: start;
  gap: 20px;
  padding-top: 110px;
  overflow-x: auto;
  white-space: nowrap;
  scrollbar-width: none;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

.noodle-container {
  background: #598856;
  position: relative;
  border-radius: 174px 174px 0 0;
  height: 441px;
  width: 308px;
  min-width: 308px;
}

.noodle-container::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, #598856 0%, #18a90f 100%);
  opacity: 0;
  transition: opacity 0.9s ease;
}

.noodle-container:nth-child(2) {
  background: #49b0d7;
}

.noodle-container:nth-child(2)::after {
  background: linear-gradient(180deg, #98cce0 0%, #0e9ad0 100%);
}

.noodle-container:nth-child(3) {
  background: #dc4844;
}

.noodle-container:nth-child(3)::after {
  background: linear-gradient(180deg, #dc4844 0%, #be0501 100%);
}

.noodle-container:nth-child(4) {
  background: #d15d8a;
}

.noodle-container:nth-child(4)::after {
  background: linear-gradient(180deg, #d15d8a 0%, #ac0638 100%);
}

.noodle-container:nth-child(5) {
  background: #e1c47e;
}

.noodle-container:nth-child(5)::after {
  background: linear-gradient(180deg, #e1c47e 0%, #c38e0d 100%);
}

.noodle-container:hover::after {
  opacity: 1;
}

.noodle-container .featured-image {
  position: relative;
  height: 395px;
  z-index: 1;
}

.noodle-container .featured-image>div {
  position: absolute;
  left: 0;
  right: 0;
  top: -20px;
  margin: 0 auto;
  text-align: center;
  z-index: 1;
  transition: top 0.9s ease;
}

.noodle-container .featured-image>div.image-one {
  will-change: clip-path, top;
  transform: translateZ(0);
  backface-visibility: hidden;
  transition:
    clip-path 1.1s cubic-bezier(0.4, 0, 0.2, 1),
    top 0.9s ease;
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.noodle-container .featured-image>div.image-two {
  z-index: 0;
  top: -15px;
}

.noodle-container .entry-content {
  text-align: center;
  z-index: 1;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 25px;
  visibility: hidden;
  opacity: 0;
  transition:
    opacity 0.9s ease 0.1s,
    visibility 0s linear 0.5s;
}

.noodle-container:hover .featured-image>div.image-one {
  top: -40px;
  clip-path: polygon(0% 18%, 100% 18%, 100% 100%, 0% 100%);
}

.noodle-container:hover .featured-image>div.image-two {
  top: -110px;
}

.noodle-container:hover .entry-content {
  visibility: visible;
  opacity: 1;
  transition:
    opacity 0.9s ease 0.1s,
    visibility 0s linear 0s;
}

.noodle-container span {
  font-size: clamp(22px, 2vw, 24px);
  color: var(--light);
  font-weight: 500;
  display: block;
}

.noodle-container p {
  font-size: 14px;
  color: var(--light);
}

.who-we-are__section {
  background-color: #fcf1d8;
  position: relative;
  overflow: hidden;
}

.who-we-are__section::before {
  content: "";
  background-image: url(../img/who-we-are-bg.png);
  background-repeat: repeat;
  width: 50%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.who-we-are__section::after {
  content: url(../img/vector-1.svg);
  position: absolute;
  bottom: -4px;
  right: 0;
}

.who-we-are-wrapper {
  display: flex;
  align-items: center;
  gap: clamp(30px, 8vw, 100px);
  padding: 60px 0;
}

.who-we-are-wrapper>div {
  flex: 1;
  position: relative;
  z-index: 1;
}

.who-we-are-wrapper .entry-container {
  padding: 60px 0 60px clamp(30px, 3vw, 60px);
  position: relative;
}

.who-we-are-wrapper .entry-container::before {
  content: url(../img/vector-2.svg);
  position: absolute;
  top: -100px;
  right: 100px;
}

.who-we-are-wrapper .entry-container>* {
  position: relative;
  z-index: 1;
}

.who-we-are-wrapper .btn {
  margin-top: clamp(20px, 2vw, 30px);
}

.delicious-way__section {
  position: relative;
}

.delicious-way__section::before {
  content: "";
  background-image: url(../img/delicious-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.delicious-way__section .wrapper {
  position: relative;
}

.delicious-way__section .wrapper::before {
  content: url(../img/vector-3.svg);
  position: absolute;
  top: 35px;
  right: 10%;
}

.delicious-way__section>div,
.delicious-way__section>div>div {
  position: relative;
}

.delicious-way__section .section-wrap {
  max-width: 499px;
}

.delicious-way__section .section-wrap h2 {
  color: #743b1a;
}

.delicious-way__section .section-wrap p {
  color: #512e1b;
}

.delicious-way__wrapper {
  display: flex;
  align-items: start;
  gap: 20px;
  padding-top: 110px;
  overflow-x: auto;
  white-space: nowrap;
  scrollbar-width: none;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

.delicious-way__wrapper>div {
  width: 308px;
  min-width: 308px;
}

.delicious-way {
  border: 1px solid #e88f3080;
  background: #ffffff78;
  backdrop-filter: blur(14.399999618530273px);
  border-radius: 36px;
  text-align: center;
}

.delicious-way .featured-image {
  margin: -100px auto 0;
  text-align: center;
  overflow: hidden;
  border: 8px solid var(--light);
  width: 211px;
  height: 211px;
  min-width: 211px;
  border-radius: 50%;
}

.delicious-way .featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 8px solid var(--light);
  transition: var(--transition);
  transform: scale(1.1);
}

.delicious-way:hover .featured-image img {
  transform: scale(1.3) rotate(-30deg);
}

.delicious-way .entry-content {
  padding: 35px 20px;
}

.delicious-way .entry-content h3 {
  color: #513121;
  margin: 0 0 8px;
}

.delicious-way .entry-content p {
  white-space: break-spaces;
  color: #644736;
  font-size: 14px;
}

.delicious-way .time {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  border-top: 2px dashed #e5d9c9;
  margin-top: 25px;
  padding-top: 30px;
}

.delicious-way .time>div {
  display: flex;
  align-items: center;
  gap: 7px;
}

.delicious-way .time .icon {
  width: 26px;
  height: 26px;
  min-width: 26px;
  border-radius: 50%;
  background-color: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
}

.delicious-way .time span {
  color: #33914b;
  font-weight: 500;
}

.health-essentials__section .section-wrap {
  max-width: 525px;
}

.healthy-essential-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(445px, 1fr));
  gap: 25px;
}

.healthy-essential {
  background-color: #f9f2ec;
  padding: 15px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.healthy-essential .entry-content {
  padding-left: 15px;
}

.healthy-essential img {
  height: 310px;
  max-width: 238px;
  border-radius: 18px;
  object-fit: cover;
}

.healthy-essential h3 {
  margin: 0 0 10px;
}

.healthy-essential p {
  font-size: 14px;
}

.healthy-essential .secondary-btn {
  margin-top: clamp(20px, 3vw, 25px);
}

.why-choose__section {
  display: flex;
}

.why-choose__section>div {
  flex: 1;
  width: 50%;
}

.why-choose__section .featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why-choose__section .entry-container {
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: auto;
  gap: 50px;
  padding: 80px 20px 80px clamp(20px, 5vw, 80px);
  position: relative;
}

.why-choose__section .entry-container::before {
  content: "";
  width: 100%;
  height: 100%;
  inset: 0;
  position: absolute;
  background-color: #fff0;
  backdrop-filter: blur(8.634px);
}

.why-choose__section .entry-container>div {
  position: relative;
}

.why-choose__section .entry-content {
  max-width: 448px;
}

.why-choose__section .entry-content h2 {
  font-size: clamp(26px, 3vw, 32px);
  color: var(--light);
  margin: 0 0 8px;
}

.why-choose__section .entry-content p {
  color: #f1efec;
}

.why-choose-wrapper {
  width: 100%;
  max-width: 615px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(197px, 1fr));
  gap: 12px;
}

.why-choose-wrapper>div {
  background: #ffffff3d;
  backdrop-filter: blur(20px);
  border-radius: 18px;
  padding: 15px;
  text-align: center;
}

.why-choose-wrapper>div img {
  max-width: 37px;
  max-height: 37px;
  margin-bottom: 10px;
}

.why-choose-wrapper>div p {
  font-weight: 500;
  color: var(--light);
}

.how-cook__section {
  background-image: url(../img/cook-bg.png);
  background-size: cover;
  background-position: bottom;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
}

.how-cook-content {
  position: relative;
  margin-bottom: 60px;
  padding: 0 20px;
}

.how-cook-content::before {
  content: "";
  background-image: url(../img/cook-vector.svg);
  background-repeat: repeat-x;
  background-size: contain;
  width: 100%;
  height: 31px;
  position: absolute;
  top: 8px;
  left: 0;
}

.how-cook-content .section-wrap {
  max-width: 386px;
  position: relative;
}

.how-cook-content .section-title {
  background-color: #f9f2ec;
  width: fit-content;
  margin: 0 auto 8px;
  padding: 0 32px;
}

.cooking-container {
  display: flex;
  gap: clamp(30px, 4vw, 80px);
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  align-items: center;
  justify-content: center;
}

.steps-panel {
  width: 299px;
  flex-shrink: 0;
}

.step-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  cursor: pointer;
  position: relative;
}

.step-item:not(:last-child) {
  margin-bottom: 15px;
}

.step-item.active:not(:last-child) {
  margin-bottom: 25px;
}

.step-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  width: 24px;
}

.step-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-dot svg.ring {
  position: absolute;
  inset: 0;
  width: 20px;
  height: 20px;
  transform: rotate(-90deg);
}

.ring-bg {
  fill: none;
  stroke: #e0d9cf;
  stroke-width: 2.5;
}

.ring-progress {
  fill: none;
  stroke: #33914b;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-dasharray: 75.4;
  stroke-dashoffset: 75.4;
  transition: stroke-dashoffset 0.1s linear;
}

.dot-inner {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fdf6ee;
  border: 2px solid #c7c2bd;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.3s,
    border-color 0.3s;
  position: relative;
  z-index: 1;
}

.dot-inner svg {
  display: none;
}

.step-item.active .dot-inner {
  border-color: #33914b;
}

.step-item.done .dot-inner {
  background: #33914b;
  border-color: #33914b;
}

.step-item.done .dot-inner svg {
  display: block;
}

.step-connector {
  width: 2px;
  flex: 1;
  min-height: 24px;
  background: #c7c2bd;
  position: relative;
  overflow: hidden;
}

.step-item.active .step-connector {
  min-height: 70px;
}

.step-connector-fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background: #33914b;
  transition: height 0.1s linear;
  transition:
    height 0.1s linear,
    width 0.1s linear;
}

.step-label {
  font-size: 14px;
  font-weight: 700;
  color: #33914b;
  text-transform: uppercase;
  font-family: var(--secondary-font);
}

.step-title {
  font-family: var(--secondary-font);
  font-size: 18px;
  color: #e57e11;
  margin-top: 5px;
}

.step-desc {
  font-size: 14px;
  color: #3e3d3b;
  line-height: 1.55;
  margin-top: 10px;
  max-height: 0;
  overflow: hidden;
}

.step-item.active .step-desc {
  max-height: 100%;
}

.video-panel {
  flex: 1;
}

.video-wrapper {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  background: #111;
  border: 10px solid #bed5bc;
  cursor: pointer;
}

.video-wrapper video {
  width: 100%;
  height: 100%;
  aspect-ratio: 12/8;
  object-fit: cover;
  display: block;
}

.play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #00000033;
}

.play-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}

.play-circle {
  width: 47px;
  height: 47px;
  border-radius: 50%;
  background: #cacaca7d;
  backdrop-filter: blur(30px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog__section .section-wrap {
  max-width: 482px;
}

.blog-wrapper,
.blog-image {
  display: flex;
  gap: 20px;
}

.blog-video {
  width: 55%;
}

.blog-right {
  width: 55%;
  display: flex;
  flex-direction: column;
}

.blog-wrapper img {
  width: 100%;
  object-fit: cover;
  height: 100%;
}

.blog-wrapper .featured-image {
  overflow: hidden;
  border-radius: 20px;
  height: 100%;
  width: 100%;
}

.blog-wrapper .featured-image>a {
  position: relative;
  display: block;
  height: 100%;
}

.blog-wrapper .featured-image>a::after {
  content: "";
  position: absolute;
  bottom: -3px;
  height: 50%;
  width: 100%;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  -webkit-mask-image: linear-gradient(to top,
      rgba(0, 0, 0, 1) 40%,
      rgba(0, 0, 0, 0));
  mask-image: linear-gradient(to top, rgba(0, 0, 0, 1) 40%, rgba(0, 0, 0, 0));
}

.blog-wrapper .featured-image h3 {
  color: var(--light);
}

.blog-wrapper .featured-image .entry-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 26px;
  z-index: 1;
}

.blog-right>div:not(:last-child) {
  margin-bottom: 20px;
}

.blog-no-image a {
  display: block;
  background-color: #f9f2ec;
  border-radius: 20px;
  padding: 25px 35px;
}

.blog-right h3 {
  font-size: clamp(16px, 2vw, 18px);
}

.blog-image {
  height: 100%;
}

.blog-no-image a {
  display: flex;
  align-items: center;
  gap: 40px;
  justify-content: space-between;
}

.blog-no-image h3 {
  color: #33914b;
  margin: 0 0 4px;
}

.blog-no-image p {
  font-size: 14px;
}

.blog-no-image .icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: 50%;
  background-color: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
}

.review__section {
  background-color: #f2c67f;
}

.review__section .section-wrap {
  max-width: 463px;
  margin-bottom: clamp(35px, 4vw, 55px);
}

.review-slider .slick-track {
  padding: 0 0 10px;
}

.review-container {
  position: relative;
  padding: 55px 45px;
  border-radius: 21px;
}

.review-container:nth-child(3n + 1) {
  background: linear-gradient(264.02deg, #e3ffe0 4.66%, #d4ffd2 95.12%);
  box-shadow: 5px 5px 0px 0px #084d1680;
}

.review-container:nth-child(3n + 2) {
  background: linear-gradient(264.02deg, #ffe8e8 4.15%, #ffc8c7 94.82%);
  box-shadow: 5px 5px 0px 0px #d1252280;
}

.review-container:nth-child(3n) {
  background: linear-gradient(264.02deg, #d8f3ff 3.42%, #c5edff 93.88%);
  box-shadow: 5px 5px 0px 0px #9dcde380;
}

.review-container::after {
  content: url(../img/review-vector.svg);
  position: absolute;
  right: -6px;
  top: 0;
}

.review-container .featured-image {
  position: absolute;
  right: -6px;
  top: 0;
  z-index: 1;
}

.review-container img {
  width: 54px;
  min-width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.87px solid #ffffff;
}

.review-container .entry-container>div:not(:last-child) {
  margin-bottom: 25px;
}

.review-container h3 {
  font-size: 18px;
  font-weight: 500;
  color: #4E3321;
  margin: 0 0 5px;
}

.rating i {
  color: #E57E10;
  font-size: 15px
}

.review-arrows {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 25px;
}

.review-arrows button {
  border: unset;
  background: var(--light);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.review-arrows button:hover {
  background-color: #33914B;
}

.review-arrows button svg path {
  transition: var(--transition);
}

.review-arrows button:hover svg path {
  stroke: var(--light);
}

.faqs__section {
  background-color: #fff7ed;
}

.faqs__section .wrapper-medium {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 35px;
}

.faqs__section .section-wrap {
  max-width: 540px;
  margin: 0;
}

.faqs__section .section-wrap div {
  margin-top: 30px;
}

.faqs__section .section-wrap span {
  font-weight: 700;
  color: #654839;
  display: block;
  margin-bottom: 15px;
}

.faqs__section .faqs-wrapper {
  max-width: 652px;
  width: 100%;
}

.faqs-wrapper .uk-accordion {
  margin: 0;
}

.faqs-wrapper .uk-accordion>li {
  border-radius: 12px;
  box-shadow: 0px 1px 2px 0px #684a0333;
  background-color: var(--light);
  padding: 15px;
  margin: 0;
}

.faqs-wrapper .uk-accordion>li:not(:last-child) {
  margin-bottom: 8px;
}

.faqs-wrapper .uk-accordion-title {
  font-size: 18px;
  font-weight: 700;
  color: #513324;
}

.faqs-wrapper .uk-accordion-content {
  margin-top: 15px;
}

@media (max-width: 1400px) {
  .noodle-varieties__section {
    padding: 45px 0 70px;
  }

  .noodle-container {
    height: 410px;
    width: 290px;
    min-width: 290px;
  }

  .noodle-container .featured-image>div img {
    height: 360px;
  }

  .noodle-container .featured-image>div.image-two img {
    height: 310px;
  }
}

@media (max-width: 1200px) {
  .noodle-varieties__section {
    padding: 100px 0 60px;
  }

  .noddle-wrapper {
    padding-top: 40px;
  }

  .noodle-container .featured-image>div {
    position: unset;
    margin-top: -40px;
  }

  .noodle-container .featured-image>div.image-one {
    clip-path: unset !important;
  }

  .noodle-container .featured-image>div.image-two {
    display: none;
  }

  .noodle-container .entry-content {
    visibility: visible;
    opacity: 1;
  }

  .delicious-way__section .wrapper::before {
    content: unset;
  }

  .why-choose__section .entry-container {
    padding: clamp(50px, 4vw, 80px) 20px;
    gap: 35px;
  }

  .why-choose__section .featured-image {
    display: none;
  }

  .why-choose__section .entry-content {
    margin: 0 auto;
    text-align: center;
  }

  .why-choose-wrapper {
    margin: 0 auto;
  }
}

@media (max-width: 989px) {
  .noodle-varieties__section {
    padding: 55px 0 45px;
  }

  .noodle-container {
    height: 375px;
    width: 275px;
    min-width: 275px;
  }

  .noodle-container .featured-image>div img {
    height: 330px;
  }

  .blog-wrapper,
  .faqs__section .wrapper-medium {
    flex-direction: column;
  }

  .blog-wrapper>div {
    width: 100%;
  }

  .blog-wrapper img {
    height: 420px;
  }

  .faqs__section .section-wrap {
    text-align: center;
    margin: 0 auto;
  }

  .faqs__section .section-wrap .btn {
    margin: 0 auto;
  }

  .faqs__section .faqs-wrapper {
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .noodle-container {
    height: 312px;
    width: 235px;
    min-width: 235px;
  }

  .noodle-container .featured-image>div img {
    height: 270px;
  }

  .who-we-are__section .wrapper-medium {
    padding: 0;
  }

  .who-we-are-wrapper {
    flex-direction: column;
    padding: 60px 0 0;
  }

  .who-we-are__section::before {
    width: 100%;
    height: 100%;
  }

  .who-we-are-wrapper>div {
    padding: 0 20px;
  }

  .who-we-are-wrapper .entry-container {
    padding: 40px 20px;
    background-color: #fcf1d8;
  }

  .who-we-are-wrapper .entry-container::before {
    content: unset;
  }

  .who-we-are__section::after {
    z-index: 1;
  }

  .who-we-are-wrapper .entry-container>* {
    position: relative;
  }

  .cooking-container {
    flex-direction: column;
  }

  .steps-panel {
    width: 100%;
    display: flex;
    align-items: flex-start;
    gap: 0;
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-width: none;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
  }

  .steps-panel::-webkit-scrollbar {
    display: none;
  }

  .step-item {
    margin: 0 !important;
    min-width: 220px;
    max-width: 220px;
    flex-direction: column;
    flex-shrink: 0;
  }

  .step-desc {
    white-space: break-spaces;
    max-height: 100px !important;
  }

  .step-left {
    flex-direction: row;
    width: 100%;
    align-items: center;
  }

  .step-connector {
    width: 100%;
    min-width: 60px;
    height: 2px !important;
    min-height: 2px !important;
    flex: 1;
  }

  .step-connector-fill {
    height: 100% !important;
    width: 0%;
    transition: width 0.1s linear;
  }

  .step-item:last-child .step-connector {
    display: none;
  }

  .step-item:not(:last-child) .step-text {
    padding-right: 15px;
  }

  .blog-wrapper img {
    height: 320px;
  }

  .blog-wrapper .featured-image .entry-content {
    padding: 20px;
  }
}

@media (max-width: 567px) {
  .healthy-essential-wrapper {
    grid-template-columns: repeat(auto-fill, minmax(295px, 1fr));
  }
}

@media (max-width: 500px) {
  .healthy-essential {
    flex-direction: column-reverse;
  }

  .healthy-essential .featured-image,
  .healthy-essential .featured-image img {
    width: 100%;
    max-width: 100%;
    height: auto;
  }

  .healthy-essential .entry-content {
    padding: 0 15px;
  }

  .blog-image {
    flex-direction: column;
  }

  .blog-wrapper h3 {
    font-size: 18px !important;
  }

  .blog-no-image a {
    padding: 20px;
  }

  .blog-no-image .icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
  }
}