@charset "UTF-8";
.about {
  background: #000;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  margin: 40px 0px;
}
.about__title {
  max-width: 430px;
  color: var(--card);
  margin-bottom: 60px;
}
.about__list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 205px);
  gap: 30px;
  margin-bottom: 40px;
}
.about__reason-title {
  margin-bottom: 15px;
}
.about__reason-descr {
  color: var(--stroke);
}
.about__text {
  max-width: 660px;
  padding-right: 50px;
  overflow: hidden;
}
.about__text p {
  padding-bottom: 15px;
  color: inherit;
}
.about__text ul,
.about__text li {
  list-style: none;
  color: inherit;
}
.about__text * {
  font-family: var(--fontFamily);
  font-size: 16px;
  font-weight: 400;
  line-height: 20.8px;
  text-align: left;
  color: var(--stroke);
}
.about__text li {
  padding-left: 20px;
  position: relative;
}
.about__text li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 40px;
  color: inherit;
}
.about__container {
  position: relative;
  z-index: 1;
}
.about_bg {
  position: absolute;
  z-index: 0;
  max-width: 725px;
  height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(33%, -50%);
}
.about_bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.about__video video {
  width: 100%;
  height: 100%;
}


.about__video {
  position: absolute;
  width: fit-content;
  height: 650px;
  top: 50%;
  left: 50%;
  transform: translate(15%, -50%);
  border-radius: 20px;
  overflow: hidden;
  z-index: 2;
}

.about__img {
  position: absolute;
  width: 430px;
  height: 500px;
  top: 50%;
  left: 50%;
  transform: translate(6%, -52%);
  border-radius: 20px;
  overflow: hidden;
  z-index: 2;
}
.about__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 1320px) {
  .about__img {
    position: static;
    transform: translate(0, 0);
    margin: 0px auto;
    margin-top: 20px;
  }

  .about__video {
    position: static;
    transform: translate(0, 0);
    margin: 0px auto;
    margin-top: 20px;
    height: fit-content;
  }

  .about_bg {
    display: none;
    z-index: 0;
    filter: brightness(0.5);
    transform: translate(0, -50%);
  }
  .about__list {
    justify-content: center;
  }
  .about__title {
    max-width: unset;
    text-align: center;
  }
  .about__text {
    border: none;
    max-width: unset;
    margin-bottom: 20px;
  }
}

@media (max-width: 996px) {
  .about {
    margin: 30px 0px !important;
  }
}

@media (max-width: 769px) {
  .about__title {
    margin-bottom: 20px;
  }
  .about__list {
    margin-bottom: 20px;
    gap: 10px;
  }
}
@media (max-width: 682px) {
  .about__list {
    display: flex;
    flex-direction: column;
  }
}
@media (max-width: 498px) {
  .about__img {
    width: 100%;
    height: auto;
  }
}/*# sourceMappingURL=block.css.map */