.slider_section {
    width: 100%;
    /* border-radius: 12px; */
    overflow: hidden;
    touch-action: pan-y;
    max-width: 1800px;
}


.slider_outside_div {
    width: 100%;
    height: fit-content;
    position: relative;
    margin: 0 auto;
    touch-action: pan-y;
}

.slider_inner_div {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    overflow: auto;

    /* Hide the scroll bar in slider*/
    /* IE and Edge */
    -ms-overflow-style: none;
    /* Firefox */
    scrollbar-width: none;

    scroll-behavior: smooth;

    touch-action: pan-y;
}

.slider_inner_div::-webkit-scrollbar {
    display: none;
}

.slide {
    display: block;
    transition: transform 0.5s;
    flex: 0 0 auto;
    /* height: 400px; */
    height: auto;
    width: 100%;
}

.slide_image {
    height: 100%;
    width: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}




/* Slider Btns */
.slider_btn {
    position: absolute;
    top: calc(50% - 15px);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: none;
    outline: none;
    background-color: rgba(0, 0, 0, 0.1);
    color: #FFFFFF;
    cursor: pointer;
}

.slider_btn:hover {
    background-color: rgba(0, 0, 0, 1);
}

.slider_prev_btn {
    left: 0;
    margin-left: 8px;
}

.slider_next_btn {
    right: 0;
    margin-right: 8px;
}


/* Slider Frame Indicator Dots */

.dots_container {
    width: 100%;
    position: absolute;
    bottom: 10px;
    display: flex;
    justify-content: center;
    margin: 0 auto;
    border-radius: 5px;
}

.dot {
    cursor: pointer;
    background-color: rgba(255, 255, 255, 0.4);
    width: 10px;
    height: 6px;
    border-radius: 3px;
    margin: 5px;
    transition: background-color 0.2s, width 0.2s;
}

.dot.active {
    background-color: #FFFFFF;
    width: 18px;
}

@media screen and (max-width: 1300px) {
    .slider_section {
        /* margin-top: 10px; */
        border-radius: 0;
    }

}

@media screen and (max-width: 650px) {

    .slide {
        /* height: 350px; */
        height: auto;
    }
}

@media screen and (max-width: 450px) {

    .slide {
        /* height: 300px; */
        height: auto;
    }

}