/* Intro slideshow overlay */
#intro-slideshow {
  position: fixed;
  inset: 0;
  z-index: 9999;              /* вище за #wrapper (у тебе wrapper z-index: 3) */
  background: #000;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 900ms ease, visibility 0s linear 900ms;
}

#intro-slideshow .slide {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;

  opacity: 0;
  transform: scale(1.02);
  transition: opacity 900ms ease, transform 1400ms ease;
}

#intro-slideshow .slide.is-active {
  opacity: 1;
  transform: scale(1);
}

#intro-slideshow.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

body.is-intro #wrapper {
  opacity: 0;
}

body.is-intro #wrapper {
  transition: opacity 600ms ease;
}

body.is-intro-done #wrapper {
  opacity: 1;
}

.logo-big {
  background: url("../../images/logo_horizontal.png") no-repeat center center;
  background-size: contain;
  width: 100%;
  height: 110px;
  margin-bottom: 20px;
}

.list-with-vertical-gaps li {
  margin-bottom: 20px;
}
