.timeline-section{
    background-color: #fff;
    padding-top: 0rem;
}
.card-timlines-wrapper {
    display: flex;
    overflow: auto;
    margin: 25px 0;
    padding: 50px 0;
}
.card-timelines-row {
    width: 260px;
    margin-inline: 12px;
    max-width: 260px;
    min-width: 255px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.card-timeline-col {
    background: white;
    padding: 15px;
    border-radius: 6px;
    box-shadow: 0 0px 15px rgba(6, 22, 58, .2);
}
img.timeline-img {
    width: 100%;
    margin-bottom: 15px;
    height: 225px;
    object-fit: contain;
}
h4.timeline-title {
    font-size: 16px;
    font-weight: 700;
    color: #0a7daa;
    min-height: 30px;
    margin-bottom: 15px;
}
p.timeline-content {
    color: #000000;
    margin-bottom: 15px;
    font-size: 14px;
}
button.timeline-btn {
    background: #ededed;
    color: #0a7db8;
    border-radius: 3px;
    font-size: 12px;
    font-weight: 500;
    padding: 6px 8px;
    letter-spacing: 0;
}
button.timeline-btn:hover {
    background: #0a7db8;
    color: #fff;
}
h3.timeline-year {
    padding: 15px 10px 0;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    color: #cb154e;
    min-height: 60px;
}
/* --------- scrolling -------------- */
.card-timlines-wrapper::-webkit-scrollbar-track {
  border-radius: 0px;
  background-color: #e3e3e5;
  cursor: pointer;
}
.card-timlines-wrapper::-webkit-scrollbar {
  width: 8px;
  height: 8px;
  background-color: #e3e3e5;
  cursor: crosshair;
}
.card-timlines-wrapper::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: #e3e3e5;
  border: 5px solid #34314b;
}

@media screen and (min-device-width:320px) and (max-device-width:480px){
    .card-timelines-row {
        margin-inline: 50px !important;
        min-width: 265px !important;
    }
    
}
