.slide {
    padding: 0;
}

.slide__nav {
    z-index: 2;
    position: absolute;
    top: 15px;
    display: flex;
    align-items: center;
    gap: 100px;
    width: 100%;
    max-width: 945px;
    left: 50%;
    transform: translateX(-50%);
    height: 48px;
}

.slide__container {
    background-color: white;
}

.slide__new--ratings {
    margin-left: 45px;
    height: 100%;
    background: whitesmoke;
    border-radius: 10px;
    opacity: .85;
    color: rgb(32, 33, 36);
    align-items: center;
    justify-content: center;
    display: inline-flex;
    padding: 10px;


}

.slide__new--ratings ion-icon {
    margin: 0 5px;
}

.slide__dots--slide {
    color: white;
}

.slide__dots--slide .active {
    color: black;
}

.slide__list-wrapper {
    position: relative;
    overflow: hidden;
    overflow-x: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.slide__list-wrapper button {
    position: absolute;
    top: 50%;
    height: 100%;
    width: 100px;
    transform: translateY(-50%);
   
}




.left_btn {
    left: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8), transparent);
}

/* .slide__list-wrapper .left_btn::after {
    content: '';
    right:0;
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.5), transparent);
    pointer-events: none; 
} */
.slide__list-wrapper button ion-icon{
    font-size: 45px;
    color: white;
}

.slide__list-wrapper button:hover ion-icon{
transition: ease-in-out .2s;
transform: scale(1.15);
}
.right_btn {
    right: 0;
    background: linear-gradient(to left, rgba(0, 0, 0, 0.8), transparent);
}


.slide__list {
    display: flex;
    height: 530px;
    width: max-content;
}

.slide__list--items {
    width: 100vw;
    height: 100%;
    /*pointer-events: none;*/
    position: absolute;
}

.slide__list--items img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image covers the container */
    object-position: center; /* Centers the image in the container */
}

@media screen and (max-width: 1024px) {
    .slide__button {
        display: none;
    }
}

@media screen and (max-width: 768px) {

    .slide__list {
        height: 270px;
    }
}
