.content-images-slider{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80%;
    height: 400px;
    margin: auto;
    overflow: hidden;
}

.images-slider {
    width: 100%;
    height: 100%;
    object-fit: scale-down;
}

.camera_prev, .camera_next {
    cursor: pointer;
    border-radius: 50%;
    background-color: var(--color-secondary-light);
    height: 40px;
    width: 40px;
    opacity: 1;
}
.camera_next > span {
    background: url(/images/global/camera_skins.png) no-repeat -40px 0;
    display: block;
    height: 40px;
    width: 40px;
}
.camera_prev > span {
    background: url(/images/global/camera_skins.png) no-repeat 0 0;
    display: block;
    height: 40px;
    width: 40px;
}
.slider-dots {
    display: flex;
    justify-content: center;
    width: 100%;
    text-align: center;
    gap: 10px;
    margin-top: 10px;
    height: 20px;
}

.slider-dots span {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin: 0 5px;
    border-radius: 50%;
    background: var(--color-secondary-light);
    opacity: 0.5;
    cursor: pointer;
    transition: 0.3s;
}

.slider-dots span.active {
    opacity: 1;
    transform: scale(1.2);
}