.full-width-slider {
    width: 100%;
    margin: 0;
    padding: 0;
}

.full-width-slider .slide {
    outline: none;
}

.full-width-slider picture,
.full-width-slider img {
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: cover;
}

@media (max-width: 480px) {
    .full-width-slider picture,
    .full-width-slider img {
        max-height: 60vh;
        width: 100%;
        height: auto;
    }
}

.full-width-slider {
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease;
    -webkit-transition: opacity 1s ease;
}

.full-width-slider.slick-initialized {
    visibility: visible;
    opacity: 1;
}
.slick-prev,
.slick-next {
    font-size: 0 !important;
    line-height: 0 !important;
    color: transparent !important;
}
