.servicesList__itemText a{
    color:var(--colorBlack);
}

/*
.section__content ol{
    margin-bottom: 2rem;
}
.section__content ul li{
  background-color: var(--colorPrimary);
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  top: .65em;
  width: 2rem;
}

.section__content ol{
    margin-bottom: 2rem;
    counter-reset: list 0;
}
.section__content ol li{
  color: var(--colorPrimary);
  content: counter(list,decimal-leading-zero) ".";
  counter-increment: list;
  margin-right: 12px;
}
*/

.videoBanner {
  position: relative;
  max-width: 1920px;   
  margin-left: auto;
  margin-right: auto;
}

.videoBanner__galleryControl {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.videoBanner__galleryControl video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  margin: 0;
  border: 0;
  display: block;
}

@supports not (aspect-ratio: 16 / 9) {
  .videoBanner__galleryControl {
    height: 0;
    padding-top: 56.25%; /* 1080 / 1920 * 100% = 56.25% */
  }

  .videoBanner__galleryControl video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
  }
}

.videoBanner__videoControl {
  position: absolute;
  inset: 0;               /* растягиваем на весь баннер */
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;   /* чтобы клики шли по видео/ссылке */
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
  marginBottom: 20px;
  --marginBottom: 20px;
}
