.thumbnail_slider {
    margin: -115px auto 0;
}

.splide__track:first-of-type {
    width: 100%;
}

.splide__track:last-of-type {
    margin-top: 20px;
}

.splide__slide {
    display: flex;
    justify-content: center;
    align-items: center;
    aspect-ratio: 1 !important;
    box-sizing: border-box;
    overflow: hidden;
    transition: .1s;
    margin: 0;
}

.splide__slide img {
    width: 100%;
    height: 100%;
    margin: auto;
    display: block;
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
}

.custom-arrow {
    height: 46px;
    width: 46px;
    top: unset;
}

.custom-prev,
.custom-next {
    border-radius: 0;
    background-color: var(--black);
    color: var(--gold);
    opacity: 1 !important;
    bottom: 2px;
    transform: translateY(0);
}

.custom-prev {
    left: 2px;
}

.custom-next {
    right: 2px;
}

.custom-prev svg,
.custom-next svg {
    fill: var(--gold);
}

@media (max-width: 1500px) {
    .thumbnail_slider {
        margin: -50px auto 0;
    }

    .splide__track:first-of-type .splide__slide {
        aspect-ratio: 0.6 !important;
    }
}

@media (max-width: 950px) {
    .thumbnail_slider {
        margin: 0 auto 0;
    }
}