#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 9999;
}

/* Два белых дива */
.bar {
  width: 100%;
  height: 50vh;
  background-color: #111;
}

.pre-text {
	font-family: Cormorant Infant;
	color: white;
	font-size: 8vw;
	position: absolute;
	left: 50%;
	top: 38%;
	transform: translateX(-50%);
}

/* Полоска, которая будет заполняться */
.loading-bar {
  position: absolute;
  bottom: 40%; /* Расположение полоски */
  left: 50%;
  transform: translateX(-50%);
  width: 30%; /* Фиксированная длина полоски */
  height: 2px;
  background-color: #333; /* Фон полоски */
  overflow: hidden;
}

.loading-bar-fill {
  width: 0; /* Начальная ширина заполнения */
  height: 100%;
  background-color: #fff; /* Цвет заполнения */
}

#ihlqztuxs_0 {
    will-change: transform;
}