

/* Start:/about_the_university/history/style.css?17777503771979*/
/* === TIMELINE === */
.timeline {
    position: relative;
    padding: 100px 20px;
}

.timeline-line {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 0;
    background: #690f0e;
    transform: translateX(-50%);
    transition: height 1s ease;
}

.timeline-item {
    width: 50%;
    padding: 30px 40px;
    position: relative;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.timeline-item.show {
    opacity: 1;
    transform: translateY(0);
}

.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-item::before {
    content: '';
    position: absolute;
    top: 35px;
    width: 16px;
    height: 16px;
    background: #690f0e;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(105,15,14,0.2);
}

.timeline-item:nth-child(odd)::before {
    right: -8px;
}

.timeline-item:nth-child(even)::before {
    left: -8px;
}

.timeline-item h3 {
    margin: 0 0 10px;
    color: #690f0e;
    font-size: 22px;
}

.timeline-item p {
    margin: 0;
    opacity: 0.85;
}

/* hover эффект */
.timeline-item:hover {
    transform: translateY(-5px) scale(1.01);
}

/* === COUNTERS === */
.counters {
    background: #690f0e;
    color: #fff;
    padding: 100px 20px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 40px;
}

.counter {
    text-align: center;
    opacity: 0;
    transform: translateY(40px);
    transition: 0.8s;
}

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

.counter-number {
    font-size: 46px;
    font-weight: bold;
}

.counter p {
    margin-top: 10px;
    opacity: 0.85;
}

/* === MOBILE === */
@media(max-width: 768px){

.timeline-line {
    left: 20px;
}

.timeline-item {
    width: 100%;
    left: 0 !important;
    padding-left: 50px;
    text-align: left !important;
}

.timeline-item::before {
    left: 12px !important;
}

}

/* End */
/* /about_the_university/history/style.css?17777503771979 */
