.paragraphs {
  padding: 50px 0;
  display: flex;
  flex-direction: column;
  gap: 100px;
}

/* Generic Swiper controls (scoped per slider in PHP). */
.swiper-button-next,
.swiper-button-prev {
  border: 0;
  background: var(--nd-color-accent, #FCDF14);
  color: var(--nd-color-dark, #242323);
  cursor: pointer;
  min-width: 44px;
  min-height: 44px;
  padding: 0;
  pointer-events: auto;
  border-radius: 999px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
}

.swiper-button-next::after,
.swiper-button-prev::after {
  color: var(--nd-color-dark, #242323);
  font-size: 18px;
}

.swiper-button-disabled {
  opacity: 0.35;
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}

.thematic-listing {
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: padding 0.3s ease-in-out;
  width: 100%;
}
.thematic-listing .thematic-listing__text {
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: padding 0.3s ease-in-out;
}
@media (max-width: 1440px) {
  .thematic-listing .thematic-listing__text {
    margin: 0 20px;
  }
}
.thematic-listing .thematic-listing__list {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  transition: padding 0.3s ease-in-out;
}
@media (max-width: 1440px) {
  .thematic-listing .thematic-listing__list {
    margin: 0 20px;
  }
}
@media (max-width: 1200px) {
  .thematic-listing .thematic-listing__list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 900px) {
  .thematic-listing .thematic-listing__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 600px) {
  .thematic-listing .thematic-listing__list {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 425px) {
  .thematic-listing .thematic-listing__list {
    margin: 0 20px;
  }
}
.thematic-listing .thematic-listing__list {
  /** Grid with 4 elements **/
}
.thematic-listing .thematic-listing__list--grid-4 .thematic-listing__item {
  grid-row: auto;
  grid-column: auto;
}
.thematic-listing .thematic-listing__list {
  /** Grid with 3 elements **/
}
.thematic-listing .thematic-listing__list--grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
@media (max-width: 900px) {
  .thematic-listing .thematic-listing__list--grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 600px) {
  .thematic-listing .thematic-listing__list--grid-3 {
    grid-template-columns: 1fr;
  }
}
.thematic-listing .thematic-listing__list {
  /** Grid with 2 elements **/
}
.thematic-listing .thematic-listing__list--grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (max-width: 600px) {
  .thematic-listing .thematic-listing__list--grid-2 {
    grid-template-columns: 1fr;
  }
}
.thematic-listing .thematic-listing__list {
  /** Grid with 1 element **/
}
.thematic-listing .thematic-listing__list--grid-1 {
  grid-template-columns: 1fr;
}
.thematic-listing .thematic-listing__list {
  /** Grid with 5 elements **/
}
.thematic-listing .thematic-listing__list--grid-5 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.thematic-listing .thematic-listing__list--grid-5 .thematic-listing__item--1 {
  grid-row: 1/3;
  grid-column: 1;
}
.thematic-listing .thematic-listing__list--grid-5 .thematic-listing__item--2 {
  grid-row: 1;
  grid-column: 2;
}
.thematic-listing .thematic-listing__list--grid-5 .thematic-listing__item--3 {
  grid-row: 1;
  grid-column: 3;
}
.thematic-listing .thematic-listing__list--grid-5 .thematic-listing__item--4 {
  grid-row: 2;
  grid-column: 2;
}
.thematic-listing .thematic-listing__list--grid-5 .thematic-listing__item--5 {
  grid-row: 2;
  grid-column: 3;
}
@media (max-width: 425px) {
  .thematic-listing .thematic-listing__list--grid-5 {
    grid-template-columns: 1fr;
  }
  .thematic-listing .thematic-listing__list--grid-5 .thematic-listing__item {
    grid-row: auto;
    grid-column: auto;
  }
}
.thematic-listing .thematic-listing__list .thematic-listing__item {
  text-decoration: none;
  border-radius: 20px;
  color: white;
  overflow: hidden;
  position: relative;
  padding: 20px 30px;
  display: flex;
  align-items: end;
}
.thematic-listing .thematic-listing__list .thematic-listing__item:hover .thematic-listing__item-bg {
  transform: scale(1.1);
}
.thematic-listing .thematic-listing__list .thematic-listing__item-bg {
  background-position: center;
  background-size: cover;
  transition: transform 0.3s ease-in-out;
  z-index: 0;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
.thematic-listing .thematic-listing__list .thematic-listing__item::before {
  content: "";
  display: block;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.5));
  width: 100%;
  height: 100%;
  z-index: 1;
  position: absolute;
  top: 0;
  right: 0;
}
@media (max-width: 425px) {
  .thematic-listing .thematic-listing__list .thematic-listing__item::before {
    background: rgba(0, 0, 0, 0.5);
  }
}
.thematic-listing .thematic-listing__list .thematic-listing__item .thematic-listing__item-text {
  position: relative;
  z-index: 1;
  color: white;
  margin-top: 50px;
}
.thematic-listing .thematic-listing__list .thematic-listing__item .thematic-listing__item-text .thematic-listing__item-title {
  font-size: 1.1rem;
  font-weight: normal;
}
.thematic-listing .thematic-listing__list .thematic-listing__item--article:hover .thematic-listing__btn {
  transform: translateY(5px);
}
.thematic-listing .thematic-listing__list .thematic-listing__item--article::before {
  background: rgba(0, 0, 0, 0.5);
}
.thematic-listing .thematic-listing__list .thematic-listing__item--article .thematic-listing__item-text {
  display: grid;
  gap: 10px;
}
.thematic-listing .thematic-listing__list .thematic-listing__item--article .thematic-listing__item-text .thematic-listing__item-title {
  grid-column: 1/3;
  margin: 0;
  max-width: 330px;
}
.thematic-listing .thematic-listing__list .thematic-listing__item--article .thematic-listing__item-text .thematic-listing__article-info {
  grid-column: 1;
  grid-row: 2;
  display: flex;
  gap: 10px;
  align-items: center;
}
@media (max-width: 425px) {
  .thematic-listing .thematic-listing__list .thematic-listing__item--article .thematic-listing__item-text .thematic-listing__article-info {
    flex-direction: column;
    align-items: start;
  }
}
.thematic-listing .thematic-listing__list .thematic-listing__item--article .thematic-listing__item-text .thematic-listing__btn {
  background: var(--nd-color-accent, #FCDF14);
  color: var(--nd-color-black, #000000);
  grid-column: 2;
  grid-row: 2;
  border-radius: 303px;
  padding: 10px 20px;
  font-size: 1rem;
  transition: transform 0.3s ease-in-out;
}

.element-listing {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.element-listing .element-listing__text {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (max-width: 1440px) {
  .element-listing .element-listing__text > * {
    transition: padding 0.3s ease-in-out;
    padding: 0 20px;
  }
}
.element-listing .element-listing__slider {
  width: 100%;
}
@media (max-width: 1440px) {
  .element-listing .element-listing__slider > * {
    transition: padding 0.3s ease-in-out;
    padding: 0 20px;
  }
}
.element-listing .element-listing__slider .element-listing__items {
  display: flex;
  gap: 20px;
  align-items: end;
  transition: padding 0.3s ease-in-out;
}
.element-listing a.element-listing__item div {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.element-listing .element-listing__item {
  text-decoration: none;
  color: var(--nd-color-text, #252525);
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 245px;
}
.element-listing .element-listing__item:hover .element-listing__item-image-layer {
  transform: scale(1.05);
}
.element-listing .element-listing__item .element-listing__item-title {
  font-size: 1.2rem;
  font-weight: 500;
  line-height: normal;
  margin: 0;
}
.element-listing .element-listing__item .element-listing__item-image {
  width: 100%;
  height: 245px;
  border-radius: 30px;
  position: relative;
  overflow: hidden;
}
.element-listing .element-listing__item .element-listing__item-image .element-listing__item-image-layer {
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 20px;
  background-position: center;
  background-size: cover;
  transition: transform 0.3s ease-in-out;
  width: 100%;
  height: 100%;
}
.element-listing .element-listing__hero {
  border-radius: 20px;
  overflow: hidden;
  height: 300px;
  position: relative;
}
@media (max-width: 768px) {
  .element-listing .element-listing__hero {
    border-radius: 0;
  }
}
.element-listing .element-listing__hero:hover .element-listing__item-image {
  transform: scale(1.05);
}
.element-listing .element-listing__hero .element-listing__item-image {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.3s ease-in-out;
}
@media (max-width: 900px) {
  .element-listing .element-listing__hero {
    height: 240px;
  }
}
@media (max-width: 600px) {
  .element-listing .element-listing__hero {
    height: 200px;
  }
}
.element-listing .element-listing__hero img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.nd-process {
  display: flex;
  gap: 50px;
}
@media (max-width: 1440px) {
  .nd-process {
    transition: padding 0.3s ease-in-out;
    flex-direction: column;
  }
}
.nd-process .nd-process__header {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 1440px) {
  .nd-process .nd-process__header .nd-process__intro,
  .nd-process .nd-process__header .title {
    padding: 0 20px;
  }
}
.nd-process .nd-process__header .nd-process__header-image {
  border-radius: 30px;
  position: relative;
  height: 100%;
  width: 500px;
  overflow: hidden;
}
@media (max-width: 425px) {
  .nd-process .nd-process__header .nd-process__header-image {
    max-height: unset;
    border-radius: 0;
  }
}
@media (max-width: 1440px) {
  .nd-process .nd-process__header .nd-process__header-image {
    width: 100%;
    height: 300px;
    border-radius: 0px;
  }
}
.nd-process .nd-process__header .nd-process__header-image:hover .nd-process__header-image-bg {
  filter: grayscale(0);
}
.nd-process .nd-process__header .nd-process__header-image .nd-process__header-image-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  filter: grayscale(1);
  transition: filter 0.3s ease-in-out;
}
@media (max-width: 450px) {
  .nd-process .nd-process__header {
    transition: padding 0.3s ease-in-out;
  }
  .nd-process .nd-process__header .nd-process__header-image {
    width: 100%;
  }
}
.nd-process .nd-process__steps {
  width: 100%;
  position: relative;
}
@media (max-width: 1440px) {
  .nd-process .nd-process__steps {
    max-width: 80%;
    margin: 0 auto;
  }
}
@media (max-width: 1024px) {
  .nd-process .nd-process__steps {
    max-width: 800px;
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .nd-process .nd-process__steps {
    display: flex;
    flex-direction: column;
    gap: 40px;
    transition: padding 0.3s ease-in-out;
    max-width: 700px;
    margin: 0 auto;
  }
}
.nd-process .nd-process__steps .nd-process__line {
  position: absolute;
  z-index: 0;
  max-width: 564px;
  max-height: 564px;
  margin: auto;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1px solid rgb(99, 97, 97);
}
@media (max-width: 450px) {
  .nd-process .nd-process__steps .nd-process__line {
    display: none;
  }
}
@media (max-width: 1440px) {
  .nd-process .nd-process__steps .nd-process__line {
    max-width: 800px;
    max-height: 800px;
  }
}
@media (max-width: 768px) {
  .nd-process .nd-process__steps .nd-process__line {
    display: none;
  }
}
.nd-process .nd-process__steps .nd-process__step {
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 378px;
  background: var(--nd-color-white, #ffffff);
  position: relative;
}
@media (max-width: 425px) {
  .nd-process .nd-process__steps .nd-process__step {
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .nd-process .nd-process__steps .nd-process__step {
    max-width: 450px;
    margin: 0 auto;
  }
}
@media (min-width: 768px) {
  .nd-process .nd-process__steps .nd-process__step--2 {
    margin-left: auto;
  }
}
.nd-process .nd-process__steps .nd-process__step .nd-process__step-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.nd-process .nd-process__steps .nd-process__step .nd-process__step-text .nd-process__step-number {
  font-size: 50px;
  text-transform: uppercase;
  font-weight: bold;
  color: var(--nd-color-primary, #5A9C36);
}
@media (max-width: 425px) {
  .nd-process .nd-process__steps .nd-process__step .nd-process__step-text .nd-process__step-number {
    padding: 0 20px;
  }
}
.nd-process .nd-process__steps .nd-process__step .nd-process__step-text .nd-process__step-title {
  margin: 0;
  font-weight: normal;
}
@media (max-width: 425px) {
  .nd-process .nd-process__steps .nd-process__step .nd-process__step-text .nd-process__step-title {
    padding: 0 20px;
  }
}
@media (max-width: 425px) {
  .nd-process .nd-process__steps .nd-process__step .nd-process__step-text .nd-process__step-presentation {
    padding: 0 20px;
  }
}
.nd-process .nd-process__steps .nd-process__step .nd-process__step-image {
  border-radius: 30px;
  height: auto;
}
@media (max-width: 425px) {
  .nd-process .nd-process__steps .nd-process__step .nd-process__step-image {
    width: 100%;
  }
}

.testimonies {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
@media (max-width: 768px) {
  .testimonies {
    grid-template-columns: 1fr;
  }
}
.testimonies .testimonies__text {
  grid-column: 1/2;
}
@media (max-width: 768px) {
  .testimonies .testimonies__text {
    grid-column: 1;
    grid-row: 1;
  }
}
.testimonies .testimonies__text .testimonies__text-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: calc(var(--nd-max-width, 1440px) / 2);
  justify-content: right;
  align-items: end;
}
@media (max-width: 768px) {
  .testimonies .testimonies__text .testimonies__text-wrapper {
    padding: 0 20px;
    justify-content: left;
  }
}
.testimonies .testimonies__text .testimonies__text-wrapper .testimonies__text-title {
  max-width: 300px;
  text-align: right;
  line-height: 2.5rem;
}
@media (max-width: 768px) {
  .testimonies .testimonies__text .testimonies__text-wrapper .testimonies__text-title {
    max-width: unset;
    text-align: left;
    width: 100%;
  }
}
.testimonies .testimonies__text .testimonies__text-wrapper .testimonies__text-introduction {
  max-width: 400px;
  text-align: right;
}
@media (max-width: 768px) {
  .testimonies .testimonies__text .testimonies__text-wrapper .testimonies__text-introduction {
    max-width: unset;
    text-align: left;
  }
}
.testimonies .testimonies__content {
  grid-column: 2/4;
  width: 100%;
}
@media (max-width: 768px) {
  .testimonies .testimonies__content {
    grid-column: 1;
    grid-row: 2;
  }
  .testimonies .testimonies__content .testimony {
    margin: 0 20px;
    min-height: unset;
  }
}

.nd-social-wrapper {
  background: var(--nd-color-light, #D9D9D9);
}
.nd-social-wrapper:hover .nd-social-cta__photo-image {
  transform: scale(1.05);
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}
.nd-social-wrapper .nd-social-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 50px 0;
  gap: 20px;
}
@media (max-width: 768px) {
  .nd-social-wrapper .nd-social-cta {
    flex-direction: column;
    gap: 50px;
  }
}
.nd-social-wrapper .nd-social-cta .nd-social-cta__text {
  max-width: 620px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 1440px) {
  .nd-social-wrapper .nd-social-cta .nd-social-cta__text {
    padding: 0 20px;
  }
}
@media (max-width: 1024px) {
  .nd-social-wrapper .nd-social-cta .nd-social-cta__text {
    margin: 0 auto;
  }
}
.nd-social-wrapper .nd-social-cta .nd-social-cta__text .nd-social-cta__title {
  font-size: 2rem;
  font-weight: normal;
  margin: 0;
  line-height: 2.5rem;
}
@media (max-width: 1024px) {
  .nd-social-wrapper .nd-social-cta .nd-social-cta__text .nd-social-cta__title {
    padding: 0 20px;
  }
}
@media (max-width: 1024px) {
  .nd-social-wrapper .nd-social-cta .nd-social-cta__text .nd-social-cta__intro {
    padding: 0 20px;
  }
}
.nd-social-wrapper .nd-social-cta .nd-social-cta__text .nd-social-cta__social-links {
  display: flex;
  gap: 20px;
}
@media (max-width: 1024px) {
  .nd-social-wrapper .nd-social-cta .nd-social-cta__text .nd-social-cta__social-links {
    padding: 0 20px;
  }
}
.nd-social-wrapper .nd-social-cta .nd-social-cta__text .nd-social-cta__social-links .nd-social-cta__social-link {
  width: 45px;
  height: 45px;
  background-size: contain;
  background-repeat: no-repeat;
}
.nd-social-wrapper .nd-social-cta .nd-social-cta__text .nd-social-cta__social-links .nd-social-cta__social-link--youtube {
  background-image: url(../images/icons/youtube.svg);
}
.nd-social-wrapper .nd-social-cta .nd-social-cta__text .nd-social-cta__social-links .nd-social-cta__social-link--facebook {
  background-image: url(../images/icons/facebook.svg);
}
.nd-social-wrapper .nd-social-cta .nd-social-cta__text .nd-social-cta__social-links .nd-social-cta__social-link--tiktok {
  background-image: url(../images/icons/tiktok.svg);
}
.nd-social-wrapper .nd-social-cta .nd-social-cta__text .nd-social-cta__social-links .nd-social-cta__social-link--spotify {
  background-image: url(../images/icons/spotify.svg);
}
.nd-social-wrapper .nd-social-cta .nd-social-cta__photo {
  position: relative;
  display: inline-block;
  width: 336px;
  height: 340px;
}
@media (max-width: 320px) {
  .nd-social-wrapper .nd-social-cta .nd-social-cta__photo {
    width: 90%;
  }
}
.nd-social-wrapper .nd-social-cta .nd-social-cta__photo .nd-social-cta__photo-layer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80%;
  z-index: 0;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}
.nd-social-wrapper .nd-social-cta .nd-social-cta__photo .nd-social-cta__photo-image {
  position: absolute;
  z-index: 1;
  bottom: 0;
  transition: transform 0.3s ease-in-out, border-radius 0.3s ease-in-out;
}

.nd-ingredients {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.nd-ingredients .nd-ingredients__text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.nd-ingredients .nd-ingredients__text .nd-ingredients__title {
  max-width: 780px;
}
@media (max-width: 1440px) {
  .nd-ingredients .nd-ingredients__text .nd-ingredients__title {
    padding: 0 20px;
  }
}
.nd-ingredients .nd-ingredients__text .nd-ingredients__intro {
  max-width: 780px;
}
@media (max-width: 1440px) {
  .nd-ingredients .nd-ingredients__text .nd-ingredients__intro {
    padding: 0 20px;
  }
}
.nd-ingredients .nd-ingredients__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.nd-ingredients .nd-ingredients__slider {
  width: 100%;
}
.nd-ingredients .nd-ingredients__list.swiper-wrapper {
  display: flex;
  gap: 0;
}
.nd-ingredients .nd-ingredients__cta {
  padding: 20px;
  display: flex;
  justify-content: center;
}
.nd-ingredients .nd-ingredients__cta a {
  font-size: 1.1rem;
  color: inherit;
  text-transform: uppercase;
  text-decoration: underline;
}

.nd-text-on-image {
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 30px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  .nd-text-on-image {
    border-radius: 0;
  }
}
.nd-text-on-image.with-image::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.247);
  z-index: 0;
}
.nd-text-on-image.with-image .nd-text-on-image__text {
  color: white;
}
.nd-text-on-image .nd-text-on-image__text {
  padding: 0 50px;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
  justify-content: center;
  transition: transform 0.35s ease-in-out;
}
.nd-text-on-image .nd-text-on-image__text .nd-text-on-image__sentence {
  font-size: 1rem;
  text-align: center;
}
.nd-text-on-image:hover .nd-text-on-image__text {
  transform: translateY(-6px);
}
@media (prefers-reduced-motion: reduce) {
  .nd-text-on-image .nd-text-on-image__text {
    transition: none;
  }
  .nd-text-on-image:hover .nd-text-on-image__text {
    transform: none;
  }
}

.nd-list {
  background: var(--nd-color-primary-dark, #488029);
  color: var(--nd-color-white, #ffffff);
  border-radius: 20px;
}
@media (max-width: 768px) {
  .nd-list {
    border-radius: 0;
  }
}
.nd-list .nd-list__wrapper {
  padding: 50px;
}
@media (max-width: 768px) {
  .nd-list .nd-list__wrapper {
    padding: 20px;
  }
}
.nd-list .nd-list__wrapper .nd-list__items {
  display: flex;
  flex-direction: column;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 20px 0 20px;
}
.nd-list .nd-list__wrapper .nd-list__items > li {
  display: flex;
  gap: 12px;
  align-items: center;
}
.nd-list .nd-list__wrapper .nd-list__items > li::before {
  content: "";
  width: 25px;
  height: 25px;
  flex: 0 0 25px;
  margin-top: 0.15em;
  background-image: url(../images/icons/check.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.nd-list .nd-list__wrapper .nd-list__info {
  display: flex;
  gap: 15px;
  align-items: center;
  font-weight: bold;
}
.nd-list .nd-list__wrapper .nd-list__info::before {
  content: "";
  width: 60px;
  height: 60px;
  background-image: url(../images/icons/info.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.nd-faq {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.nd-faq .nd-faq__wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 768px) {
  .nd-faq .nd-faq__wrapper .nd-faq__title,
  .nd-faq .nd-faq__wrapper .nd-faq__items {
    padding: 0 20px;
  }
}
.nd-faq .nd-faq__wrapper .nd-faq__title {
  text-transform: uppercase;
  color: var(--nd-color-primary, #5A9C36);
}
@media (max-width: 1440px) {
  .nd-faq .nd-faq__wrapper .nd-faq__title {
    padding: 0 20px;
  }
}
.nd-faq .nd-faq__wrapper .nd-faq__items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.nd-faq .nd-faq__wrapper .nd-faq__items .nd-faq__item {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 1440px) {
  .nd-faq .nd-faq__wrapper .nd-faq__items .nd-faq__item {
    padding: 0 20px;
  }
}
.nd-faq .nd-faq__wrapper .nd-faq__items .nd-faq__item.active .nd-faq__answer {
  display: block;
}
.nd-faq .nd-faq__wrapper .nd-faq__items .nd-faq__item .nd-faq__question {
  margin: 0;
  font-weight: 400;
  cursor: pointer;
}
.nd-faq .nd-faq__wrapper .nd-faq__items .nd-faq__item .nd-faq__answer {
  font-weight: 300;
  display: none;
}

/*# sourceMappingURL=paragraph_style.css.map */
