#custom-slider-container {
    max-width: 800px;
    margin: auto;
    position: relative;
}

.splide__slide img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

#custom-slider-container img {
    border: none;
    border-radius: 0;
    box-shadow: none;
    height: 615px;
    max-width: 100%;
    object-fit: cover;
}

.custom-slider-navigation {
    display: flex;
    align-items: center;
    margin-top: 15px;
    background: #f8f8f8;
    border-radius: 5px;
    text-align: center;
    justify-content: center;
    gap: 25px;
}

.custom-slider-navigation svg {
    width: 25px;
    height: auto;
}

.custom-slider-prev, .custom-slider-next {
    cursor: pointer;
    transition: transform 0.2sease;
    display: flex;
}

.custom-slider-prev:hover,
.custom-slider-next:hover {
    transform: scale(1.2);
}

.custom-slider-counter {
    font-family: "proxima-nova", Sans-serif;
    font-size: 25px;
    font-weight: 400;
    color: #161922;
}

span.custom-slider-current {
    font-size: 30px;
}