#about-block {
  padding: 40px 0;
}

#about-block .about__title {
  margin-bottom: 94px;
}

#about-block .about__content {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 60px;
  position: relative;
}

#about-block .about__content::before {
  content: "";
  max-width: 635px;
  max-height: 694px;
  width: 100%;
  height: 100%;
  position: absolute;
  left: -75px;
  top: -50px;
  background: var(--primary);
  background-size: cover;
  border-radius: 20px;
}

#about-block .about__img {
  position: relative;
  z-index: 10;
  max-width: 810px;
  max-height: 700px;
  overflow: hidden;
  width: 40%;
  border-radius: 10px;
  overflow: hidden;
}

#about-block .about__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

#about-block .about__text {
  position: relative;
  z-index: 10;
  max-height: 500px;
  overflow-y: auto;
  width: 60%;
  padding-right: 60px;
  color: var(--maintext);
}

#about-block .about__text p,
#about-block .about__text h2,
#about-block .about__text h3,
#about-block .about__text h4,
#about-block .about__text h5,
#about-block .about__text h6 {
  font-family: "Avenir Next Cyr";
  font-size: clamp(18px, 0 * 100vw + 18px, 18px);
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  color: inherit;
}

#about-block .about__text ul,
#about-block .about__text ol {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 15px;
}

#about-block .about__text ul li,
#about-block .about__text ol li {
  margin: 0;
  margin: 0;
  list-style-position: outside;
  margin-left: 20px;
  padding-left: 10px;
  font-family: "Avenir Next Cyr";
  font-size: clamp(18px, 0 * 100vw + 18px, 18px);
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  color: var(--maintext);
}

#about-block .about__text ul li::marker,
#about-block .about__text ol li::marker {
  font-family: "Avenir Next Cyr";
  font-size: clamp(18px, 0 * 100vw + 18px, 18px);
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  color: var(--maintext);
}

@media only screen and (max-width: 1400px) {
  #about-block .about__content::before {
    max-width: 700px;
    max-height: 300px;
  }
}

@media only screen and (max-width: 1000px) {
  #about-block .about__content {
    flex-direction: column;
  }

  #about-block .about__img {
    width: 100%;
    max-width: 1000px;
    max-height: unset;
  }

  #about-block .about__text {
    width: 100%;
  }
  #about-block {
    padding: 30px 0 !important;
  }
}

@media only screen and (max-width: 767px) {
  #about-block .about__content::before {
    display: none;
  }

  #about-block .about__title {
    margin-bottom: 20px;
  }

  #about-block .about__content {
    gap: 20px;
  }

  #about-block .about__text {
    padding-right: 30px;
  }
}

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