.slider-images .container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: relative;
}

.slider-images .line-horizontal {
    height: 80px;
    width: 100%;
    background-color: var(--yellow);
    position: absolute;
    top: 40px;
}

@media screen and (min-width: 1025px) {
    .slider-images .line-horizontal {
        height: 160px;
        top: 26%;
    }
}

.slider-images .card-image {
    height: 253px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 8px;
}

@media screen and (min-width: 1025px) {
    .slider-images .card-image {
        height: 483px;
    }
}

.slider-images .card-image img {
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
}

.slider-images .owl-item img {
    height: 140px;
    transition: height 0.3s ease;
}

@media screen and (min-width: 1025px) {
    .slider-images .owl-item img {
        height: 220px;
    }
}

.slider-images .owl-item.center img {
    height: 220px;
}

@media screen and (min-width: 1025px) {
    .slider-images .owl-item.center img {
        height: 483px;
    }
}

.slider-images--nav {
    margin: 0 16px;
    display: flex;
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
}

.slider-images--nav .slider-nav {
    border-top: 1px solid var(--grey);
}