.slider-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.slider {
    width: 100%;
    display: flex;
}

.slider .card {
    display: flex;
    flex-direction: column;
    justify-content: center; 
    align-items: center; 
    text-align: center; 
}

.slider .card img {
    width: 100%;
    height: auto;
    border-radius: 15px;
}
.slick-prev,
.slick-next {
    display: none !important; 
}

.custom-prev,
.custom-next {
    background-color: black;
    border: none;
    font-size: 24px;
    color: #fff; 
    z-index: 1;
    cursor: pointer;
    position: absolute;
    top: 46%;
    transform: translateY(-50%);
}

.custom-prev {
    left: 0;
}

.custom-next {
right: 2px; 
}


@media (min-width: 576px) {
.slider .card {
    margin-right: 15px; 
}
.custom-next{
    right: 14px;
}
}