.ingredients-section {
  position: relative;
  width: 100%;
  height: 635px;
  overflow: hidden;
  max-width: 1920px;
  margin: auto;
}
.ingredients-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 250, 246, 0.7);
  z-index: 1;
}

.ingredients-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.dekstop-media-wrapper,
.mobile-media-wrapper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.mobile-media-wrapper {
  display: none;
}

.ingredients-media img,
.ingredients-media video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}

.ingredients-section-content {
  position: relative;
  padding-top: 50px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
  z-index: 2;
}

.ingredients-section-content .body1 {
  max-width: 491px;
}

.ingredients-title-description-wrapper {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
/* responsive */
@media (max-width: 768px) {

  /* .ingredients-title-description-wrapper .h2 {
    text-align: center;
    flex: 1 0 0;
  } */

  .ingredients-section {
    /* height: 100vh; */
    height: calc(100vh - 114px);
    display: flex;
  }
  .dekstop-media-wrapper {
    display: none;    
  }
  .mobile-media-wrapper {
    display: block;
  }
  .ingredients-section-content {
    padding-bottom: 34px;
    justify-content: end;
    height: 100%;
    max-height: calc(100dvh - 114px);
  }
  .ingredients-media img,
  .ingredients-media video {
    height: calc(100% + 114px);
  }

  .ingredients-section-content .body1 {
    width: 100%;
  }
}
