div hr {
    border: none !important;
    height: 1px !important;
    background-color: #ccc;
    margin: 5px auto !important;
}

p {
    margin-bottom: 0 !important;
}

.scroll-container {
    display: flex;
    overflow-x: auto;
    white-space: nowrap;
    scroll-behavior: smooth;
    padding: 10px;
    border: 1px solid #eee;
    border-top: none;
    height: 600px;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 10px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.scroll-container::-webkit-scrollbar {
    display: none;
}

.scroll-item {
    min-width: 400px;
    height: 462px;
    margin-right: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    scroll-snap-align: start;
}

.history-text {
    text-align: center;
    padding-top: 70px;
    position: relative;
}

.history-line {
    width: 100%;
    height: 1px;
    background-color: #eee;
    margin: 30px 0;
    z-index: 10;
    position: absolute;
    top: 330px;
}

.dot {
    color: #0c73b2;
    position: absolute;
    top: 22px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 11;
}

.history-logo {
    width: 30px;
    position: absolute;
    top: 19px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 11;
}

.scroll-image {
    padding: 0 40px;
    z-index: -1;
}

.scroll-image-logo {
    padding: 0 70px;
    margin-bottom: 42px;
    z-index: -1;
}

.scroll-navigation {
    position: absolute;
    top: 342px;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    z-index: 20;
    pointer-events: none;
}

.scroll-btn {
    position: absolute;
    background: #0c73b2;
    color: white;
    border: none;
    padding: 10px 13px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    pointer-events: auto;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.scroll-btn#scrollLeftBtn {
    left: 15px;
}

.scroll-btn#scrollRightBtn {
    right: 15px;
}

.scroll-container-wrapper {
    position: relative;
}

@media only screen and (max-width: 991px) {
    .scroll-container {
        height: 550px;
    }

    .history-line {
        top: 280px;
    }

    .scroll-navigation {
        top: 292px;
    }
}