#header-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  opacity: 0;
  transition: opacity 1s ease;
}

#logo-line {
  height: 2px;
  width: 0;
  background-color: #000;
  transition: width 1s ease;
}

.line-wrapper {
  position: relative;
  width: 100%;
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80px;
  opacity: 0;
  transition: opacity 1s ease;
}

.line {
  position: absolute;
  top: 50%;
  left: 0;
  height: 2px;
  width: 100%;
  background-color: #000;
  z-index: 1;
}

.logo-center {
  width: 80px;
  background-color: var(--bg-color); /* фон, чтобы скрыть часть линии */
  border-radius: 50%;
  padding: 5px;
  z-index: 2;
}
