.logo-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 60vh;
  position: relative;
  margin: 0 0 70px 0;
}

.rotating-logo {
  width: 200px;
  height: 200px;
  animation: sawRotate 3s ease-in-out forwards;
}

@keyframes sawRotate {
  0% {
    transform: translateZ(-1000px) rotate(0deg) scale(0.1);
    opacity: 0;
  }
  50% {
    transform: translateZ(0) rotate(0deg) scale(1.05);
    opacity: 1;
  }
  100% {
    transform: translateZ(0) rotate(0deg) scale(1);
    opacity: 1;
  }
}

.logo-text {
  font-size: 3.8rem;
  font-weight: 700;
  color: #000000;
  letter-spacing: 4px;
  margin-top: 40px;
  opacity: 0;
  animation: fadeInUp 1s ease-in-out 2s forwards;
  text-transform: uppercase;
  font-family: Goldman;
  font-style: italic;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Адаптивность */
@media (max-width: 768px) {
  .logo-section {
    height: 50vh;
    margin: 0 0 60px 0;
  }

  .rotating-logo {
    width: 130px;
    height: 130px;
  }

  .logo-text {
    font-size: 2.8rem;
  }

}

@media (max-width: 480px) {
  .logo-section {
    height: 45vh;
    margin: 0 0 50px 0;
  }

  .rotating-logo {
    width: 110px;
    height: 110px;
  }

  .logo-text {
    font-size: 2.2rem;
    letter-spacing: 3px;
  }
}
.el-image-last {
  left: 35vw; top: -550px; z-index: 0;
}