.about-block {
  padding: 80px 0;
  background-color: #83aa511a;
}

.about-block .about_farm {
  display: grid;
  grid-template-columns: 5fr 5fr;
}

.about-block .farm_left {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.about-block .about_farm .farm_left img {
  object-fit: contain;
  max-width: 570px;
  width: 100%;
  height: auto;
  border-radius: 25px;
}

.about-block .about_farm .farm_right {
  display: flex;
  flex-direction: column;
  padding-left: 50px;
  justify-content: center;
}

.about__title {
  text-align: left;
  font-family: 'PT Serif';
  font-weight: 700;
  font-size: 48px;
  line-height: 117%;
  color: #373B32;
  margin-bottom: 40px;
}

.about-block .about_farm .farm_right .farm_descr {
  max-width: 550px;
  max-height: 450px;
  overflow-y: auto;
  width: 100%;
  margin-bottom: 40px;
  font-family: 'Inter';
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #373B32;
}

.about-block .about_farm .farm_right .farm_number {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 50px;
}

.about-block .about_farm .farm_right .farm_count {
  display: flex;
  flex-direction: column;
}

.about-block .about_farm .farm_right .farm_count:nth-child(1) {
  width: 130px;
}

.about-block .about_farm .farm_right .farm_count .about_number {
  font-family: 'PT Serif';
  font-weight: 700;
  font-size: 54px;
  line-height: 119%;
  color: #83aa51;
  margin-bottom: 5px;
}

.about-block .about_farm .farm_right .farm_count .about_text {
  font-family: 'Inter';
  font-weight: 700;
  font-size: 16px;
  line-height: 150%;
  color: #373B32;
}

@media screen and (max-width: 992px) {
  .about-block .about_farm {
    flex-direction: column;
    display: flex;
  }

  .about-block .about_farm .farm_left img {
    margin-bottom: 15px;
  }

  .about-block .about_farm .farm_right {
    align-items: center;
    padding: 0 15px;
  } 

  .about-block .about_farm .farm_right .farm_number {
    column-gap: 40px;
  }
}

@media screen and (max-width: 460px) {
  .about-block .about_farm .farm_right .farm_number {
    column-gap: 0px;
    margin-bottom: 25px;
  }

  .about-block .about_farm .farm_right .farm_count .about_number {
    font-size: 42px;
    max-width: 100%;
  }

  .about-block .about_farm .farm_right .farm_count .about_text {
    font-size: 13px;
  }

  .about-block .about_farm .farm_right .farm_number {
    display: block;
  }

  .about__title {
    font-size: 36px;
  }
}