.section__about {
  position: relative;
}
.section__about::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 1;
}
.section__about::after {
  content: "";
  width: 100%;
  height: 100%;
  max-width: 62%;
  position: absolute;
  top: 0;
  left: 0;
  fill: rgba(0, 0, 0, 0.03);
  backdrop-filter: blur(10px);
  z-index: 1;
  clip-path: polygon(0 0, 100% 0, 70% 100%, 0 100%);
}
.section__about__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.section__about__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.section__about__body {
  padding: 80px 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  position: relative;
  z-index: 2;
  max-width: 55%;
}
.section__about__text span {
  font-size: 20px;
  color: var(--color-primary);
}
.section__about__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 85%;
}
.section__about__item {
  position: relative;
  padding-left: 32px;
  font-weight: 500;
  font-size: 16px;
}
.section__about__item span {
  font-size: 20px;
  color: var(--color-primary);
}
.section__about__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background: url(../img/list_marker.svg) no-repeat center;
}
@media (max-width: 1280px) {
  .section__about__body {
    padding: 60px 0;
  }
}
@media (max-width: 992px) {
  .section__about__body {
    padding: 40px 0;
  }
}
@media (max-width: 640px) {
  .section__about::after {
    content: none;
  }
  .section__about__body {
    max-width: none;
    gap: 16px;
  }
  .section__about__text span {
    font-size: 16px;
  }
  .section__about__list {
    max-width: none;
  }
  .section__about__item {
    font-size: 14px;
  }
  .section__about__item span {
    font-size: 16px;
  }
  .section__about__link {
    width: 100%;
  }
}
