.carousel-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    object-position: center;
}

.custom-swiper-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    width: 100%;
}

.fly-margin {
    margin-bottom: 100px;
}

.nav-below-scroll {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.custom-scrollbar {
    width: 80%;
    height: 2px;
    background: rgba(0, 0, 0, 0.1);
    z-index: 10;
    overflow: hidden;
    position: relative;
}

.custom-scrollbar-drag {
    position: absolute;
    height: 2px;
    background: var(--base-color);
    top: 0;
    left: 0;
    cursor: grab;
    transition: transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1), width 0.3s ease;
    border-radius: 1px;
    box-shadow: 0 0 3px rgba(var(--base-color-rgb), 0.3);
}

.custom-scrollbar-drag:hover {
    background: var(--base-color-hover, var(--base-color));
    height: 3px;
    top: -0.5px;
}

.custom-scrollbar-drag:active {
    cursor: grabbing;
    background: var(--base-color-active, var(--base-color));
    height: 3px;
    top: -0.5px;
}

.d-start-767 {
    display: none;
}

@media (max-width: 1000px) {
    .fly-margin {
        margin-bottom: 150px;
    }
}

@media (max-width: 767px) {
    .custom-swiper-controls {
        flex-direction: column;
        margin-top: 170px;
    }

    .custom-scrollbar {
        width: 80%;
        margin-bottom: 20px;
    }

    .d-start-767 {
        display: block;
        margin-top: 20px !important;
        width: 80%;
        margin: auto;
        margin-bottom: 20px;
    }

    .sm-h-370px {
        height: 370px !important;
    }

    .fly-margin {
        margin-bottom: 250px;
    }
}

@media (max-width: 400px) {
    .fly-margin {
        margin-bottom: 250px;
    }
}
