﻿.timeline-wrapper{
    position:relative;
    max-width:88%;
    margin:0 auto;
}
.timeline{
    display:flex;
    gap:30px;
    overflow-x:auto;
    scroll-behavior:smooth;
    padding:30px 10px;
    scrollbar-width:none;
}
.timeline::before{
    content:'';
    position:absolute;
    top:63px;
    left:0;
    right:0;
    height:4px;
    background:#dcdcdc;
    z-index:1;
}

.timeline::-webkit-scrollbar{
    display:none;
}

.timeline-item{
    position:relative;
    min-width:250px;
    text-align:center;
    z-index:2;
}

.timeline-dot{
    width:22px;
    height:22px;
    background:#336106;
    border:4px solid #fff;
    border-radius:50%;
    margin:24px auto 14px auto;
    box-shadow:0 0 0 4px #33610633;
}

.timeline-year{
    font-size:20px;
    font-weight:600;
    color:#336106;
    margin-bottom:15px;
}

.timeline-content{
    background:#fff;
    padding:25px;
    border-radius:12px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.3s;
}

.timeline-content:hover{
    transform:translateY(-5px);
    box-shadow:0 20px 40px rgba(0,0,0,.12);
}
.timeline-nav{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:50px;
    height:50px;
    border:none;
    border-radius:50%;
    background:#336106;
    color:#fff;
    font-size:22px;
    cursor:pointer;
    z-index:10;
    box-shadow:0 5px 20px rgba(0,0,0,.15);
}

.timeline-nav:hover{
    background:#264b04;
}

.timeline-nav.prev{
    left:-25px;
}

.timeline-nav.next{
    right:-25px;
}
@media(max-width:768px){

    .timeline{
        justify-content:flex-start;
        gap:30px;
        padding-bottom:20px;
    }

    .timeline-item{
        min-width:280px;
    }

}
button, .button {padding:0px;}
/*.timeline-content{
    background:rgba(255,255,255,.95);
    backdrop-filter:blur(10px);
}*/
.textleft p{
    color:#444444;
    line-height:18px;
    margin-bottom:12px;
    font-weight: 300;
    font-size:12px;
}
.textleft b, .textleft strong{
	font-weight:500;
}