.carousel-slider {
    overflow: hidden;
    display: flex;
    justify-content: center;
}

.carousel-slider .slick-track{
    display: flex;
    gap: 20px;
}

.carousel-slider .slide img {
    position: relative;
    width: 100%;
    height: 350px;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 8px;
    z-index: 1;
}

button.slick-prev {display: none !important;}
button.slick-next {
    content: '>';
    display: flex;    
    align-items: center;
    justify-content: center;
    position: absolute;
    top: calc(50% - 60px);
    right: calc(50% - 500px);
    height: 120px;
    width: 120px;
    border-radius: 50%;
    border:0;
    background: rgba(60, 53, 131, 0.8);
    font-size: 30px;
    color: #f9eca3;
    cursor: pointer;
    transition: all 0.2s;
}
