@font-face {
  font-family: "Manrope";
  src: url("../assets/fonts/Manrope/Manrope-ExtraLight.woff2");
  font-weight: 200;
}

@font-face {
  font-family: "Manrope";
  src: url("../assets/fonts/Manrope/Manrope-Light.woff2");
  font-weight: 300;
}

@font-face {
  font-family: "Manrope";
  src: url("../assets/fonts/Manrope/Manrope-Regular.woff2");
  font-weight: 400;
}

@font-face {
  font-family: "Manrope";
  src: url("../assets/fonts/Manrope/Manrope-Medium.woff2");
  font-weight: 500;
}

@font-face {
  font-family: "Manrope";
  src: url("../assets/fonts/Manrope/Manrope-SemiBold.woff2");
  font-weight: 600;
}

@font-face {
  font-family: "Manrope";
  src: url("../assets/fonts/Manrope/Manrope-Bold.woff2");
  font-weight: 700;
}

@font-face {
  font-family: "Manrope";
  src: url("../assets/fonts/Manrope/Manrope-ExtraBold.woff2");
  font-weight: 800;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0;
}

._r-container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.block__wrap {
  margin: 0 auto;
}

.block__wrap .title {
  font-size: 64px;
  font-weight: 700;
  line-height: 1;
  font-family: var(--font-family-primary);
}

.block__wrap .title--green {
  color: var(--green);
}

.block__wrap .bage {
  padding: 10px 15px;
  border-radius: 100px;
  background-color: var(--grey);
  font-size: 14px;
  font-weight: 500;
}

:root {
  --black: #000000;
  --black-main: #131313;
  --white: #fff;
  --green: #5bc55d;
  --grey-bg: #F0F7FF;
  --grey: #EAEAEA;
  --green-dark: #1ea961;
  --grey-stroke: #7f8d9d1a;
  --font-family-primary: "Manrope", sans-serif;
  --font-size-primary: 16px;
  --title-fs: 64px;
  --subtitle-fs: 24px;
  --title-mb: 40px
  --subtitle-mb: 24px;
  --section-indent: 100px 0;
  --transition-primary: 0.3s ease-in-out;
  --transition-secondary: 0.5s ease-in-out;
}

.production-block {
  font-family: var(--font-family-primary);
  font-size: 16px;
  color: var(--black-main);
  line-height: 1.2;
}

.production-block .title {
  margin: 0 auto 90px;
  max-width: 820px;
  text-align: center;
}

.production-block .block__wrap .production-block-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.production-block .block__wrap .production-block-item {
  position: relative;
  border-radius: 20px;
  background: var(--white);
  box-shadow: 40px 40px 60px 0 rgba(0, 0, 0, 0.05);
  border: 1px solid var(--white);
  overflow: hidden;
}

.production-block .block__wrap .production-block-item:nth-child(1) {
  height: 600px;
  grid-row: span 2;
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: contain;
}

.production-block .block__wrap .production-block-item:nth-child(1)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, #5cc55d 0%, #5cc55d 100%), lightgray 50%/cover no-repeat;
  mix-blend-mode: hue;
}

.production-block .block__wrap .production-block-item:nth-child(1) .production-block-item__title {
  text-align: center;
  font-size: 28px;
}

.production-block .block__wrap .production-block-item:nth-child(1) .production-block-item__info {
  position: absolute;
  top: 52px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 17px;
  width: 250px;
}

.production-block .block__wrap .production-block-item:nth-child(2) {
  height: 190px;
}

.production-block .block__wrap .production-block-item:nth-child(2) .production-block-item__info {
  position: absolute;
  top: 50%;
  left: 40px;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
}

.production-block .block__wrap .production-block-item:nth-child(2) .production-block-item__title {
  max-width: 215px;
  font-size: 22px;
  font-weight: 700;
}

.production-block .block__wrap .production-block-item:nth-child(2) .production-block-item__img-wrap {
  position: relative;
  background-color: var(--white);
  border: 1px solid var(--white);
}

.production-block .block__wrap .production-block-item:nth-child(2) .production-block-item__img-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, #5cc55d 0%, #5cc55d 100%), lightgray 50%/cover no-repeat;
  mix-blend-mode: hue;
}

.production-block .block__wrap .production-block-item:nth-child(3) {
  grid-row: 2;
  grid-column: 2;
  height: 385px;
}

.production-block .block__wrap .production-block-item:nth-child(3) .production-block-item__wrap {
  position: absolute;
  top: 41px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.production-block .block__wrap .production-block-item:nth-child(3) .production-block-item__info {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 10px;
}

.production-block .block__wrap .production-block-item:nth-child(3) .production-block-item__title {
  text-align: center;
  font-size: 24px;
}

.production-block .block__wrap .production-block-item:nth-child(3) .production-block-item__img {
  max-width: 340px;
}

.production-block .block__wrap .production-block-item:nth-child(4) {
  height: 600px;
  grid-row: span 2;
  background-repeat: no-repeat;
  background-position: 0px 320px;
  background-size: contain;
}

.production-block .block__wrap .production-block-item:nth-child(4) .production-block-item__info {
  position: absolute;
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
  max-width: 175px;
}

.production-block .block__wrap .production-block-item:nth-child(4) .production-block-item__icon {
  width: 50px;
}

.production-block .block__wrap .production-block-item:nth-child(4) .production-block-item__title {
  font-size: 28px;
}

.production-block .block__wrap .production-block-item:nth-child(5) .production-block-item__info {
  position: absolute;
  top: 47px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  text-align: center;
  max-width: 233px;
}

.production-block .block__wrap .production-block-item:nth-child(5) .production-block-item__title {
  font-size: 24px;
}

.production-block .block__wrap .production-block-item:nth-child(5) .production-block-item__img {
  height: 270px;
}

.production-block .block__wrap .production-block-item:nth-child(6) {
  grid-column: span 2;
  height: 370px;
  padding: 47px 40px 40px;
  background-position: right bottom;
  background-repeat: no-repeat;
  background-size: contain;
}

.production-block .block__wrap .production-block-item:nth-child(6) .production-block-item__wrap {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  max-width: 233px;
}

.production-block .block__wrap .production-block-item:nth-child(6) .production-block-item__info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 29px;
}

.production-block .block__wrap .production-block-item:nth-child(6) .production-block-item__icon {
  width: 25px;
}

.production-block .block__wrap .production-block-item:nth-child(6) .production-block-item__title {
  font-size: 24px;
  font-weight: 700;
}

.production-block .block__wrap .production-block-item__title {
  font-weight: 700;
}

.profit {
  font-family: var(--font-family-primary);
  font-size: 16px;
  color: var(--black-main);
  line-height: 1.2;
}

.profit .block__wrap .profit-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  text-align: center;
  margin-bottom: 60px;
}

.profit .block__wrap .profit__desc {
  max-width: 600px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
}

.profit .block__wrap .profit-table {
  margin-bottom: 40px;
  border-radius: 30px;
  background: var(--white);
  box-shadow: 40px 40px 60px 0 rgba(0, 0, 0, 0.05), 10px 10px 20px 0 rgba(255, 255, 255, 0.25) inset;
}

.profit .block__wrap .profit-table__header {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-radius: 30px 30px 0 0;
  background: linear-gradient(312deg, #1ea961 0%, #8fdd59 97.05%), #f0f7ff;
}

.profit .block__wrap .profit-table__header-title {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 40px 0 40px 60px;
  color: var(--white);
  font-size: 23px;
  font-weight: 700;
}

.profit .block__wrap .profit-table__header-title:not(:last-child) {
  border-right: 1px solid var(--grey-stroke);
}

.profit .block__wrap .profit-table__body {
  border-radius: 0 0 30px 30px;
  border: 1px solid var(--grey-stroke);
  border-top: none;
}

.profit .block__wrap .profit-table__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.profit .block__wrap .profit-table__row:not(:last-child) {
  border-bottom: 1px solid var(--grey-stroke);
}

.profit .block__wrap .profit-table__data {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 25px 0 25px 60px;
  font-weight: 700;
}

.profit .block__wrap .profit-table__data:not(:last-child) {
  border-right: 1px solid var(--grey-stroke);
}

.profit .block__wrap .profit-table__data:nth-child(2) {
  color: var(--green);
}

.profit .block__wrap .profit-table__data:last-child {
  font-weight: 400;
}

.profit .block__wrap .profit-advantages {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  padding: 20px;
  border-radius: 30px;
  background-color: var(--grey-bg);
  height: 430px;
}

.profit .block__wrap .profit-advantages-purchase {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px 50px 37px;
  background-color: var(--white);
  border-radius: 30px;
}

.profit .block__wrap .profit-advantages-purchase__header {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.profit .block__wrap .profit-advantages-purchase__title {
  font-weight: 700;
}

.profit .block__wrap .profit-advantages-purchase__desc {
  max-width: 220px;
  font-weight: 700;
}

.profit .block__wrap .profit-advantages-purchase__value {
  font-size: 56px;
  font-weight: 700;
}

.profit .block__wrap .profit-advantages-value {
  position: relative;
  background-size: cover;
  background-position: center;
  border-radius: 30px;
  overflow: hidden;
}

.profit .block__wrap .profit-advantages-value__circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background-color: var(--white);
  text-align: center;
}

.profit .block__wrap .profit-advantages-value__title {
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  max-width: 100px;
}

.profit .block__wrap .profit-advantages-value__value {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.1;
}

.profit .title {
  max-width: 930px;
}

.unique-products {
  font-family: var(--font-family-primary);
  font-size: 16px;
  color: var(--black-main);
  line-height: 1.2;
}

.unique-products .block__wrap .unique-products__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  font-size: 64px;
  text-align: center;
  margin-bottom: 62px;
}

.unique-products .block__wrap .unique-products__stages {
  font-size: 24px;
  font-weight: 700;
}

.unique-products .block__wrap .unique-products-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.unique-products .block__wrap .unique-products-item {
  padding: 10px 10px 36px;
  border-radius: 20px;
  background-color: var(--white);
  box-shadow: 40px 40px 60px 0 rgba(0, 0, 0, 0.05);
}

.unique-products .block__wrap .unique-products-item__img-wrap {
  display: flex;
  justify-content: center;
  height: 200px;
  overflow: hidden;
  margin-bottom: 20px;
  border-radius: 14px;
  background: linear-gradient(312deg, #1ea961 0%, #8fdd59 97.05%), #f3f3f3;
}

.unique-products .block__wrap .unique-products-item__img {
  max-width: 100%;
}

.unique-products .block__wrap .unique-products-item__info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  max-width: 220px;
  padding-left: 20px;
}

.unique-products .block__wrap .unique-products-item__title {
  font-size: 20px;
  font-weight: 700;
}

.unique-products .block__wrap .unique-products-item__descr {
  font-size: 15px;
}

.unique-products .title {
  max-width: 900px;
}

.certificates {
  font-family: var(--font-family-primary);
  font-size: 16px;
  color: var(--black-main);
  line-height: 1.2;
}

.certificates .bage {
  padding: 10px 15px;
  border-radius: 100px;
  background-color: var(--grey);
  font-size: 14px;
  font-weight: 500;
}

.certificates__wrap {
  position: relative;
  min-height: 841px;
  padding: 80px 40px 40px;
  margin: 60px 0;
  border-radius: 30px;
  background: linear-gradient(47deg, #1ea961 18.65%, #8fdd59 99.4%), #d9d9d9;
}

.certificates__img {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 100%;
}

.certificates__content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.certificates-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
  max-width: 550px;
}

.certificates-info__descr {
  display: flex;
  align-items: flex-start;
  gap: 19px;
}

.certificates-info__descr-text {
  color: var(--white);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
}

.certificates-info__note {
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
}

.certificates .bage {
  background-color: var(--white);
  color: var(--green);
}

.certificates .title {
  color: var(--white);
}

.certificates-swiper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  height: 720px;
  width: 480px;
}

.certificates-swiper .swiper {
  width: 100%;
}

.certificates-swiper-controls {
  display: flex;
  gap: 16px;
}

.certificates-swiper button {
  background: transparent;
  cursor: pointer;
}

.certificates-swiper__img {
  max-width: 100%;
  max-height: 100%;
}
.order-production {
  position: relative;
  margin: 0 auto;
  max-width: 1440px;
  height: 800px;
  overflow: hidden;
  background-color: var(--white);
  font-family: var(--font-family-primary);
  font-size: 16px;
  color: var(--black-main);
  line-height: 1.2;
}

.order-production__wrap {
  position: relative;
  z-index: 2;
  padding-top: 107px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.order-production__title {
  max-width: 788px;
  margin-bottom: 40px;
  text-align: center;
  font-size: 64px;
  font-weight: 700;
}

.order-production__title--green {
  color: var(--green);
}

.order-production-table {
  max-width: 900px;
  margin-bottom: 84px;
  border-radius: 16px;
  filter: drop-shadow(45px 55px 150px rgba(33, 54, 31, 0.25));
}

.order-production-table__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  border-radius: 16px 16px 0 0;
  background: linear-gradient(271deg, #1ea961 -1.87%, #8fdd59 100%);
}

.order-production-table__title {
  color: var(--white);
  text-align: center;
  font-size: 30px;
  font-weight: 500;
}

.order-production-table__note {
  color: var(--white);
  text-align: center;
  font-size: 24px;
  font-weight: 400;
}

.order-production-table__body {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 24px 30px;
  border-radius: 0 0 16px 16px;
  border: 1px solid var(--grey-stroke);
  background: var(--white);
}

.order-production-table__data {
  font-size: 36px;
  font-weight: 400;
}

.order-production-table__data--green {
  color: var(--green);
  font-weight: 700;
}

.order-production__date {
  margin-bottom: 47px;
  font-size: 64px;
  font-weight: 700;
  text-align: center;
}

.order-production__date--green {
  color: var(--green-dark);
  font-weight: 800;
}

.order-production__btn {
  padding: 16px 34px;
  color: var(--white);
  font-family: var(--font-family-primary);
  font-size: 60px;
  font-weight: 700;
  border-radius: 16px;
  background: var(--green-dark);
}

.order-production__img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.order-production__img:nth-child(2) {
  width: 380px;
  transform: translate(-20%, -30%);
  rotate: -25deg;
}

.order-production__img:nth-child(3) {
  bottom: 0;
  top: unset;
  width: 550px;
  transform: translate(-35%, 30%);
}

.order-production__img:nth-child(4) {
  top: 15%;
  right: -15%;
  left: unset;
  width: 570px;
}
@media screen and (max-width: 1199px) {
  .certificates__content {
    flex-direction: column;
  }
  .order-production {
    max-width: 768px;
    height: auto;
  }

  .order-production__wrap {
    padding: 160px 0 95px;
  }

  .order-production__title {
    max-width: 700px;
    font-size: 55px;
  }

  .order-production-table {
    max-width: 540px;
    margin-bottom: 71px;
  }

  .order-production-table__title {
    font-size: 18px;
  }

  .order-production-table__note {
    font-size: 16px;
  }

  .order-production-table__body {
    padding: 20px 30px;
  }

  .order-production-table__data {
    font-size: 22px;
  }

  .order-production__date {
    font-size: 48px;
    max-width: 600px;
  }

  .order-production__btn {
    font-size: 42px;
  }

  .order-production__img:nth-child(2) {
    width: 288px;
  }

  .order-production__img:nth-child(3) {
    width: 461px;
  }

  .order-production__img:nth-child(4) {
    width: 350px;
  }

    .growth-guides__wrap {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .growth-guides-item:first-child .growth-guides-item__header {
    padding: 22px;
  }

  .growth-guides-item:first-child .growth-guides-item__title {
    max-width: 520px;
    font-size: 28px;
  }

  .growth-guides-item:first-child .growth-guides-item__main {
    padding: 25px;
  }

  .growth-guides-item:first-child .growth-guides-item__descr {
    max-width: 490px;
    font-size: 22px;
    margin-bottom: 20px;
  }

  .growth-guides-item:first-child .growth-guides-item__note {
    font-size: 16px;
  }

  .growth-guides-item:first-child .growth-guides-item__img {
    width: 148px;
    height: 148px;
    right: 24px;
  }

  .growth-guides-item:nth-child(2) {
    padding: 80px 35px;
    height: 450px;
  }

  .growth-guides-item:nth-child(2) .growth-guides-item__title {
    max-width: 378px;
  }

  .growth-guides-item:nth-child(2) .growth-guides-item__descr {
    font-size: 26px;
  }

  .growth-guides-item:nth-child(2) .growth-guides-item__img {
    width: 168px;
    height: 168px;
    font-size: 26px;
  }

  .growth-guides-item:last-child {
    padding: 30px 38px;
    height: 450px;
  }
}

@media screen and (max-width: 1023px) {
  .block__wrap .title {
    font-size: 56px;
  }

  .production-block .block__wrap .production-block-list {
    display: flex;
    flex-direction: column;
    max-width: 640px;
    margin: 0 auto;
  }

  .production-block .block__wrap .production-block-item:nth-child(1) {
    height: 1052px;
  }

  .production-block .block__wrap .production-block-item:nth-child(1) .production-block-item__title {
    font-size: 48px;
  }

  .production-block .block__wrap .production-block-item:nth-child(1) .production-block-item__info {
    width: 410px;
  }

  .production-block .block__wrap .production-block-item:nth-child(2) {
    height: 338px;
  }

  .production-block .block__wrap .production-block-item:nth-child(2) .production-block-item__info {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    gap: 40px;
  }

  .production-block .block__wrap .production-block-item:nth-child(2) .production-block-item__title {
    font-size: 36px;
    max-width: 300px;
  }

  .production-block .block__wrap .production-block-item:nth-child(3) {
    height: 700px;
  }

  .production-block .block__wrap .production-block-item:nth-child(3) .production-block-item__wrap {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .production-block .block__wrap .production-block-item:nth-child(3) .production-block-item__title {
    font-size: 42px;
    max-width: 300px;
  }

  .production-block .block__wrap .production-block-item:nth-child(3) .production-block-item__img {
    max-width: max-content;
  }

  .production-block .block__wrap .production-block-item:nth-child(4) {
    height: 1050px;
    background-position: 0 560px;
  }

  .production-block .block__wrap .production-block-item:nth-child(4) .production-block-item__info {
    gap: 32px;
    max-width: 290px;
  }

  .production-block .block__wrap .production-block-item:nth-child(4) .production-block-item__icon {
    width: 80px;
  }

  .production-block .block__wrap .production-block-item:nth-child(4) .production-block-item__title {
    font-size: 48px;
  }

  .production-block .block__wrap .production-block-item:nth-child(4) .production-block-item__text {
    font-size: 32px;
  }

  .production-block .block__wrap .production-block-item:nth-child(5) {
    height: 640px;
  }

  .production-block .block__wrap .production-block-item:nth-child(5) .production-block-item__info {
    max-width: 410px;
    top: 90px;
  }

  .production-block .block__wrap .production-block-item:nth-child(5) .production-block-item__title {
    font-size: 42px;
  }

  .production-block .block__wrap .production-block-item:nth-child(5) .production-block-item__img {
    height: 450px;
  }

  .production-block .block__wrap .production-block-item:nth-child(6) {
    height: 1022px;
    background-size: initial;
    background-position: center bottom;
  }

  .production-block .block__wrap .production-block-item:nth-child(6) .production-block-item__wrap {
    height: auto;
    gap: 36px;
    max-width: 400px;
  }

  .production-block .block__wrap .production-block-item:nth-child(6) .production-block-item__info {
    gap: 36px;
  }

  .production-block .block__wrap .production-block-item:nth-child(6) .production-block-item__icon {
    width: 45px;
  }

  .production-block .block__wrap .production-block-item:nth-child(6) .production-block-item__title {
    font-size: 42px;
  }

  .profit .block__wrap .profit-header {
    gap: 20px;
  }

  .profit .block__wrap .profit-table__header {
    grid-template-columns: repeat(10, 1fr);
  }

  .profit .block__wrap .profit-table__header-title {
    padding: 40px 0 40px 30px;
    grid-column: span 4;
  }

  .profit .block__wrap .profit-table__header-title:nth-child(2) {
    grid-column: span 2;
  }

  .profit .block__wrap .profit-table__row {
    grid-template-columns: repeat(10, 1fr);
  }

  .profit .block__wrap .profit-table__data {
    padding: 25px 0 25px 30px;
    grid-column: span 4;
  }

  .profit .block__wrap .profit-table__data:nth-child(2) {
    grid-column: span 2;
  }

  .profit .block__wrap .profit-advantages {
    display: flex;
    flex-direction: column;
    height: auto;
  }

  .profit .block__wrap .profit-advantages-purchase {
    min-height: 390px;
  }

  .profit .block__wrap .profit-advantages-purchase__title {
    font-size: 20px;
  }

  .profit .block__wrap .profit-advantages-purchase__desc {
    font-size: 20px;
    max-width: 400px;
  }

  .profit .block__wrap .profit-advantages-purchase__value {
    font-size: 66px;
  }

  .profit .block__wrap .profit-advantages-value {
    height: 390px;
  }

  .profit .block__wrap .profit-advantages-value__circle {
    width: 230px;
    height: 230px;
  }

  .profit .block__wrap .profit-advantages-value__title {
    font-size: 14px;
  }

  .profit .block__wrap .profit-advantages-value__value {
    font-size: 36px;
  }

  .unique-products .block__wrap .unique-products-list {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .unique-products .block__wrap .unique-products-item {
    max-width: 620px;
    min-height: 670px;
    padding: 18px 18px 36px;
  }

  .unique-products .block__wrap .unique-products-item__img-wrap {
    height: 350px;
    margin-bottom: 34px;
  }

  .unique-products .block__wrap .unique-products-item__info {
    gap: 18px;
    max-width: 380px;
  }

  .unique-products .block__wrap .unique-products-item__title {
    font-size: 34px;
  }

  .unique-products .block__wrap .unique-products-item__descr {
    font-size: 26px;
  }

  .certificates-info {
    align-items: center;
  }

  .certificates-info__descr {
    max-width: 500px;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .certificates-info__descr-icon {
    width: 60px;
  }

  .certificates-info__note {
    font-weight: 400;
    text-align: center;
  }

  .certificates .title {
    text-align: center;
  }
}

@media screen and (max-width: 767px) {
  .block__wrap .title {
    font-size: 32px;
  }

  .production-block .block__wrap .production-block-item:nth-child(1) {
    height: 585px;
  }

  .production-block .block__wrap .production-block-item:nth-child(1) .production-block-item__title {
    font-size: 28px;
  }

  .production-block .block__wrap .production-block-item:nth-child(1) .production-block-item__info {
    width: 260px;
  }

  .production-block .block__wrap .production-block-item:nth-child(2) {
    height: 190px;
  }

  .production-block .block__wrap .production-block-item:nth-child(2) .production-block-item__info {
    gap: 0px;
  }

  .production-block .block__wrap .production-block-item:nth-child(2) .production-block-item__title {
    font-size: 22px;
  }

  .production-block .block__wrap .production-block-item:nth-child(2) .production-block-item__img-wrap {
    width: 150px;
    flex-shrink: 0;
  }

  .production-block .block__wrap .production-block-item:nth-child(2) .production-block-item__img-wrap .production-block-item__img {
    width: 100%;
  }

  .production-block .block__wrap .production-block-item:nth-child(3) {
    height: 395px;
  }

  .production-block .block__wrap .production-block-item:nth-child(3) .production-block-item__wrap {
    top: 44px;
    transform: translate(-50%, 0%);
  }

  .production-block .block__wrap .production-block-item:nth-child(3) .production-block-item__title {
    font-size: 24px;
    max-width: 260px;
  }

  .production-block .block__wrap .production-block-item:nth-child(3) .production-block-item__img {
    max-width: 340px;
  }

  .production-block .block__wrap .production-block-item:nth-child(4) {
    height: 590px;
    background-position: 0px 340px;
  }

  .production-block .block__wrap .production-block-item:nth-child(4) .production-block-item__info {
    gap: 18px;
  }

  .production-block .block__wrap .production-block-item:nth-child(4) .production-block-item__icon {
    width: 50px;
  }

  .production-block .block__wrap .production-block-item:nth-child(4) .production-block-item__title {
    font-size: 28px;
  }

  .production-block .block__wrap .production-block-item:nth-child(4) .production-block-item__text {
    font-size: 18px;
  }

  .production-block .block__wrap .production-block-item:nth-child(5) {
    height: 360px;
  }

  .production-block .block__wrap .production-block-item:nth-child(5) .production-block-item__info {
    max-width: 320px;
    top: 47px;
  }

  .production-block .block__wrap .production-block-item:nth-child(5) .production-block-item__title {
    font-size: 24px;
  }

  .production-block .block__wrap .production-block-item:nth-child(5) .production-block-item__img {
    height: 250px;
  }

  .production-block .block__wrap .production-block-item:nth-child(6) {
    height: 575px;
    padding: 40px 30px;
    background-size: 385px;
  }

  .production-block .block__wrap .production-block-item:nth-child(6) .production-block-item__wrap {
    gap: 20px;
  }

  .production-block .block__wrap .production-block-item:nth-child(6) .production-block-item__info {
    gap: 20px;
  }

  .production-block .block__wrap .production-block-item:nth-child(6) .production-block-item__icon {
    width: 25px;
  }

  .production-block .block__wrap .production-block-item:nth-child(6) .production-block-item__title {
    font-size: 24px;
  }

  .profit .block__wrap .profit-header {
    margin-bottom: 40px;
  }

  .profit .block__wrap .profit__desc {
    font-size: 20px;
  }

  .profit .block__wrap .profit-table__header {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .profit .block__wrap .profit-table__header-title {
    padding: 20px 0 20px 8px;
    font-size: 14px;
    grid-column: span 2;
  }

  .profit .block__wrap .profit-table__header-title:first-child {
    padding: 20px 0 20px 20px;
  }

  .profit .block__wrap .profit-table__header-title:nth-child(2) {
    grid-column: span 1;
  }

  .profit .block__wrap .profit-table__header-title:last-child {
    grid-column: span 1;
  }

  .profit .block__wrap .profit-table__row {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .profit .block__wrap .profit-table__data {
    grid-column: span 2;
    padding: 20px 0px 20px 8px;
    font-size: 12px;
    gap: 10px;
  }

  .profit .block__wrap .profit-table__data:first-child {
    padding: 20px 0 20px 20px;
  }

  .profit .block__wrap .profit-table__data:nth-child(2) {
    grid-column: span 1;
  }

  .profit .block__wrap .profit-table__data:last-child {
    grid-column: span 1;
  }

  .profit .block__wrap .profit-advantages-purchase {
    padding: 40px 30px;
  }

  .profit .block__wrap .profit-advantages-purchase__title {
    font-size: 16px;
  }

  .profit .block__wrap .profit-advantages-purchase__desc {
    font-size: 16px;
  }

  .profit .block__wrap .profit-advantages-purchase__value {
    font-size: 48px;
  }

  .profit .block__wrap .profit-advantages-value__circle {
    width: 190px;
    height: 190px;
  }

  .profit .block__wrap .profit-advantages-value__value {
    font-size: 30px;
  }

  .unique-products .block__wrap .unique-products__header {
    margin-bottom: 30px;
    gap: 20px;
  }

  .unique-products .block__wrap .unique-products__stages {
    font-size: 20px;
  }

  .unique-products .block__wrap .unique-products-item {
    min-height: 390px;
    padding: 10px 10px 36px;
  }

  .unique-products .block__wrap .unique-products-item__img-wrap {
    height: 200px;
    margin-bottom: 20px;
  }

  .unique-products .block__wrap .unique-products-item__info {
    gap: 10px;
  }

  .unique-products .block__wrap .unique-products-item__title {
    font-size: 20px;
  }

  .unique-products .block__wrap .unique-products-item__descr {
    font-size: 15px;
    max-width: 230px;
  }

  .certificates__wrap {
    padding: 30px;
  }

  .certificates-info {
    gap: 20px;
  }

  .certificates-info__descr-icon {
    width: 32px;
  }

  .certificates-info__descr-text {
    font-size: 16px;
  }

  .certificates-info__note {
    font-size: 14px;
  }

  .certificates-swiper {
    width: 300px;
    height: 510px;
  }
  .order-production {
    max-width: 100%;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .order-production__wrap {
    padding: 20px 0;
  }

  .order-production__title {
    max-width: 380px;
    font-size: 30px;
    margin-bottom: 36px;
  }

  .order-production-table {
    max-width: 300px;
    margin-bottom: 36px;
  }

  .order-production-table__header {
    padding: 5px 16px;
    gap: 6px;
  }

  .order-production-table__title {
    font-size: 12px;
  }

  .order-production-table__note {
    font-size: 11px;
  }

  .order-production-table__body {
    padding: 10px 15px 15px;
    gap: 16px;
  }

  .order-production-table__data {
    font-size: 12px;
  }

  .order-production__date {
    font-size: 24px;
    max-width: 280px;
  }

  .order-production__btn {
    font-size: 20px;
    padding: 5px 8px;
    border-radius: 6px;
  }

  .order-production__img:nth-child(2) {
    width: 220px;
  }

  .order-production__img:nth-child(3) {
    width: 280px;
  }

  .order-production__img:nth-child(4) {
    width: 210px;
  }

    .growth-guides__wrap {
    gap: 20px;
  }

  .growth-guides-item {
    border-radius: 16px;
  }

  .growth-guides-item:first-child .growth-guides-item__header {
    padding: 10px;
  }

  .growth-guides-item:first-child .growth-guides-item__title {
    max-width: 300px;
    font-size: 16px;
  }

  .growth-guides-item:first-child .growth-guides-item__main {
    padding: 20px 24px;
  }

  .growth-guides-item:first-child .growth-guides-item__descr {
    max-width: 220px;
    font-size: 10px;
    -webkit-text-fill-color: unset;
    color: var(--black-main);
  }

  .growth-guides-item:first-child .growth-guides-item__note {
    text-align: center;
    font-size: 15px;
    background: linear-gradient(90deg, #8fdd59 0%, #1ea961 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .growth-guides-item:first-child .growth-guides-item__img {
    top: 35%;
    width: 65px;
    height: 65px;
  }

  .growth-guides-item:nth-child(2) {
    padding: 38px 28px;
    height: 255px;
  }

  .growth-guides-item:nth-child(2) .growth-guides-item__title {
    font-size: 26px;
    margin-bottom: 28px;
    max-width: 210px;
  }

  .growth-guides-item:nth-child(2) .growth-guides-item__descr {
    font-size: 16px;
    max-width: 200px;
  }

  .growth-guides-item:nth-child(2) .growth-guides-item__img {
    width: 100px;
    height: 100px;
  }

  .growth-guides-item:last-child {
    padding: 16px 24px;
    gap: 16px;
    height: 255px;
  }

  .growth-guides-item:last-child .growth-guides-item__descr {
    padding: 16px 10px;
    gap: 16px;
  }

  .growth-guides-item:last-child .growth-guides-item__title {
    font-size: 24px;
  }

  .growth-guides-item:last-child .growth-guides-item__info {
    font-size: 12px;
  }

  .growth-guides-item:last-child .growth-guides-item__link {
    width: 255px;
    padding: 8px;
    font-size: 24px;
  }
}
.block__wrap p {
      margin: 0
}

.growth-guides__wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px 40px;
}

.growth-guides-item {
  border-radius: 30px;
  box-shadow: 40px 40px 60px 40px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.growth-guides-item:first-child {
  grid-column: span 2;
}

.growth-guides-item:first-child .growth-guides-item__header {
  display: flex;
  justify-content: center;
  padding: 34px;
  background: linear-gradient(90deg, #8fdd59 0%, #1ea961 100%);
}

.growth-guides-item:first-child .growth-guides-item__title {
  max-width: 890px;
  color: var(--white);
  text-align: center;
  font-family: var(--font-family-primary);
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.growth-guides-item:first-child .growth-guides-item__main {
  position: relative;
  padding: 48px 32px;
  background-color: var(--white);
}

.growth-guides-item:first-child .growth-guides-item__descr {
  max-width: 855px;
  margin-bottom: 55px;
  font-family: var(--font-family-primary);
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  background: linear-gradient(91deg, #8fdd59 -0.75%, #1ea961 76.8%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.growth-guides-item:first-child .growth-guides-item__note {
  font-family: var(--font-family-primary);
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.growth-guides-item:first-child .growth-guides-item__img {
  width: 170px;
  height: 170px;
  position: absolute;
  top: 50%;
  right: 32px;
  transform: translateY(-50%);
}

.growth-guides-item:nth-child(2) {
  background: var(--white);
  padding: 35px;
  position: relative;
}

.growth-guides-item:nth-child(2) .growth-guides-item__title {
  margin-bottom: 42px;
  font-family: var(--font-family-primary);
  font-size: 46px;
  font-style: normal;
  font-weight: 700;
  line-height: 125%;
  letter-spacing: -1.38px;
  background: linear-gradient(90deg, #1ea961 0%, #8fdd59 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.growth-guides-item:nth-child(2) .growth-guides-item__descr {
  max-width: 320px;
  font-family: var(--font-family-primary);
  font-size: 28px;
  font-style: normal;
  font-weight: 600;
  line-height: 135%;
  letter-spacing: -0.84px;
}

.growth-guides-item:nth-child(2) .growth-guides-item__img {
  position: absolute;
  top: 50%;
  right: 35px;
  transform: translateY(-50%);
  width: 200px;
  height: 200px;
}

.growth-guides-item:last-child {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
  padding: 25px 35px;
  background-size: cover;
  background-position: center;
  text-align: center;
}

.growth-guides-item:last-child .growth-guides-item__descr {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
  padding: 40px 20px;
  background-color: var(--white);
  border-radius: 20px;
}

.growth-guides-item:last-child .growth-guides-item__title {
  font-family: var(--font-family-primary);
  font-size: 38px;
  font-style: normal;
  font-weight: 700;
  line-height: 125%;
  letter-spacing: -1.14px;
}

.growth-guides-item:last-child .growth-guides-item__info {
  max-width: 400px;
  font-family: var(--font-family-primary);
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 125%;
  letter-spacing: -0.48px;
}

.growth-guides-item:last-child .growth-guides-item__link {
  display: flex;
  padding: 12px;
  justify-content: center;
  align-items: center;
  width: 385px;
  border-radius: 20px;
  background: linear-gradient(90deg, #ff5000 0.29%, #ffc100 99.71%);
  color: var(--white);
  font-family: var(--font-family-primary);
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 125%;
  letter-spacing: -1.08px;
  text-decoration: none;
}