/* 1. Прозрачный хедер поверх первого блока */
#rec1472795711 {
  position: absolute !important;
  top: 0;
  left: 0;
  width: 100%;
  background: transparent !important;
  box-shadow: none !important;
  z-index: 9999 !important; /* Поверх всех блоков */
  pointer-events: auto !important;
}

/* Внутренности хедера — тоже прозрачные */
#rec1472795711 .t-container,
#rec1472795711 .t396__artboard,
#rec1472795711 .t-menu__wrapper {
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
}

/* 2. Первый блок — оставляем position relative, но z-index убираем */
.t-records .t-rec:first-child {
  position: relative !important;
  z-index: auto !important; /* Был 1 — теперь auto, фон Zero Block будет виден */
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* 3. Zero Block — чтобы фон был выше всех внутренних элементов блока */
.t396__artboard {
  position: relative;
  z-index: 1; /* Фон блока будет виден */
}