.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero .logo {
    width: 20%;
    margin-bottom: 20px;
}

.hero video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero .hero-bg {
    display: none;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media (max-width: 768px) {
    .hero video {
        display: none;
    }
    .hero {
        background: url('../images/iremel1.jpg') no-repeat center center;
        background-size: cover;
    }

    .hero .logo {
        width: 40%;
    }
}
.hero .container {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
}
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}
.segment-card img {
    height: 200px;
    object-fit: cover;
}
.info-section {
    background-color: #f9f9f9;
    padding: 50px 0;
}

#hashtag {
    background-color: #f9f9f9;
}

footer {
    background: #f8f9fa;
    padding: 20px 0;
    text-align: center;
}

/* Vertical Steps Style */
.steps-vertical {
    max-width: 500px;
    margin: 2rem auto;
    padding: 0;
}

.step-vertical {
    display: flex;
    position: relative;
    padding: 1rem 0;
}

.step-vertical:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 25px;
    top: 60px;
    bottom: 0;
    width: 2px;
    background: #e9ecef;
}

.step-vertical-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    border: 2px solid #dee2e6;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-size: 20px;
    color: #6c757d;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.step-vertical-content {
    padding-top: 0.5rem;
}

.step-vertical.active .step-vertical-icon {
    background: #4361ee;
    border-color: #4361ee;
    color: white;
    box-shadow: 0 0 0 5px rgba(67, 97, 238, 0.2);
}

.step-vertical.complete .step-vertical-icon {
    background: #2ecc71;
    border-color: #2ecc71;
    color: white;
}


.card {
    margin-bottom: 20px;
}
.avatar-img {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: 50%;
}
.avatar-initials {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: white;
    font-size: 16px;
    flex-shrink: 0;
    margin-right: 1rem;
}

.avatar-img,
.avatar-initials {
  margin-right: 1rem; /* эквивалент mr-3 */
}