.aegis5-wrapper {
    overflow-x: auto;
    background: #111;
    cursor: grab;
}

/* IMAGES */
.aegis5-images {
    display: flex;
}

.img-item {
    flex: 0 0 20%;
}

.img-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

/* TRACK */
.aegis5-track {
    display: flex;
    border-top: 2px solid #444;
    position: relative;
}

/* LINE */
.aegis5-track::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #555;
}

/* ITEM */
.aegis5-item {
    flex: 0 0 20%;
    padding: 20px;
    border-right: 1px solid #333;
    color: #ccc;
    position: relative;
    min-height: 160px;
}

/* DOT */
.aegis5-item::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 20px;
    width: 10px;
    height: 10px;
    background: #bbb;
    border-radius: 50%;
}

/* YEAR */
.year {
    color: #3fa9ff;
    font-size: 16px;
    font-weight: bold;
    display: block;
    margin-bottom: 8px;
}

/* TEXT */
.aegis5-item p {
    font-size: 13px;
    line-height: 1.4;
}

/* HOVER */
.aegis5-item:hover {
    background: #1a1a1a;
    color: #fff;
}
/*custom*/
.aegis5-images {
    display: flex;
    overflow-x: auto !important;
    scrollbar-width: 10% !important;
}

.aegis5-images.img-item img {
   width: 100%;
    height: 220px !important;
    object-fit: cover;
}