/* Logos */
.logos-container {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 2px;
}

.logos-container img {
  height: 35px;
  width: auto;
}

/* Header Info */
.header-info {
  display: flex;
  flex-direction: column;
  align-items: center;
}

h1.sitename {
  font-size: 2em;
  color: #fff;
  margin-bottom: 10px;
}

/* Timeline Styles */
.timeline {
  position: relative;
  margin: 40px 0;
  padding-left: 40px;
  border-left: 3px solid #0d6efd;
}

.timeline-item {
  margin-bottom: 40px;
  position: relative;
}

.timeline-marker {
  position: absolute;
  left: -11px;
  top: 0;
  width: 20px;
  height: 20px;
  background: #0d6efd;
  border-radius: 50%;
}

.timeline-content {
  padding-left: 20px;
}

.timeline-content h3 {
  margin-top: 0;
  font-size: 1.3rem;
  color: #0d6efd;
}

/* Progress Bar Animation */
.progress {
  opacity: 0;
  transform: translateY(-30px);
  transition: all 0.8s ease-out;
}

.progress.show {
  opacity: 1;
  transform: translateY(0);
}

.progress-bar-wrap {
  background: #e0e0e0;
  border-radius: 10px;
  height: 20px;
  margin-top: 5px;
}

.progress-bar {
  height: 100%;
  width: 0;
  border-radius: 10px;
  background-color: #4CAF50;
  transition: width 3s cubic-bezier(0.65, 0, 0.35, 1);
}

.skill i.val {
  float: right;
  font-weight: bold;
  color: #333;
}

/* Map Container for responsiveness */
.map-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 400px; /* фиксированная высота для десктопа */
  border: 1px solid #ccc; /* простая рамка */
}

.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Мобильная адаптивность */
@media (max-width: 768px) {
  .map-container {
    height: 0;
    padding-bottom: 56.25%; /* соотношение 16:9 */
    border: 1px solid #ccc;
  }
}
