.Ptimelinecontainer{
    width: 80%; 
    overflow: hidden;
}
.timelinecontainer{
    position: relative;
    width: auto;
    display: grid; grid-template-rows: 1fr; grid-template-columns: 1fr;
    transition: all 0.5s ease;
}
.timeline{
    width: 100%; height: 2px;
    background-color: #e0e0e0;
    grid-row: 1; grid-column: 1;
    margin-top: 9px;
    position:relative;
}
.StepContainer {
    width: auto; height: auto;
    grid-row: 1; grid-column: 1;
    display: flex; flex-direction: row; position: relative;
    z-index: 2;
}
.Step {
    width: 160px; height: auto;
    display: flex; flex-direction: column;
    position: relative;
    cursor: pointer;
}
.Step h2{
    font-size: 16px; font-weight: 700;
    color: #e0e0e0;
}
.Step.actived h2{
    color: #2c3e50;
}
.StepPoint {
    width: 20px; height: 20px;
    border-radius: 50%; border: 2px solid #e0e0e0;
    background-color: #f0f0f0;
    margin-bottom: 10px;
    transition: all 0.3s ease;
    position: relative;
}
.StepPoint.actived {
    border: #2c3e50;
    background-color: #2c3e50;
}
.timelinebtnContainer{
    width: 20%;
}
.timelinebtn{
    width: 40px; height: 40px;
    border-radius: 50%; border: 0.1rem solid #e0e0e0;
    background-color: white;
    margin-left: 10px;
}

.timelinebtn svg{
    width: 20px;height: 20px;
}



@media screen and (max-width:992px) {
    .timelinebtnContainer{
        display: none;
    }  
    .StepContainer{
        width: auto;
    }
    .Ptimelinecontainer{
        width: 100%; 
    }
}


.timelineContentGrid{
    display: grid; grid-template-rows: 1fr; grid-template-columns: 1fr;
}
.timelineContent{
    position: relative;
    height: 100%;
    grid-row: 1; grid-column: 1;
    display: flex; justify-content: center;
    opacity: 0; visibility: hidden;
    transition: all 0.5s ease;
}
.timelineContent.selected{
    opacity: 1; visibility: visible;
}
.timelineContent img ,.timelineContent video{
    width: 100%; height: 100%;
    object-fit: cover;
}
.timelineTextContainer{
    flex-direction: column;
    display: flex; justify-content: center;
}
.timelineTextContainer h3{
    font-size: 35px; font-weight: 900;
}
.timelineTextContainer p{
    font-size: 20px; font-weight: 500;
}
@media screen and (max-width:992px) {
    #ContextLarge{
        display: none;
    }
    .timelineContent{
        height: auto;
    }
    .timelineTextContainer{
        justify-content: flex-start;
    }
    .timelineContent img, .timelineContent video{
        width: 100%; height: auto;
        aspect-ratio: 16/9;
    }
    .timelineTextContainer h3{
        font-size: 30px;
    }
    .timelineTextContainer p{
        font-size: 18px; font-weight: 400;
    }
}
