.home-slider-section {
    width: 100%;
    background: #f6f7fb;
}

.home-slider,
.home-slider .owl-stage-outer,
.home-slider-item {
    width: 100%;
}

.home-slider-link {
    display: block;
}

.home-slider picture,
.home-slider img {
    display: block;
    width: 100%;
}

.home-slider picture {
    aspect-ratio: 1900 / 600;
    overflow: hidden;
}

.home-slider-img {
    height: 100%;
    object-fit: cover;
}

.home-slider .owl-nav button.owl-prev,
.home-slider .owl-nav button.owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(0, 0, 0, .45);
    color: #fff;
    font-size: 28px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    z-index: 5;
    opacity: .92;
    transition: background .2s ease, opacity .2s ease;
}

.home-slider .owl-nav button.owl-prev:hover,
.home-slider .owl-nav button.owl-next:hover {
    background: rgba(0, 0, 0, .68);
    opacity: 1;
}

.home-slider .owl-nav.disabled,
.home-slider .owl-dots.disabled {
    display: none;
}

.home-slider .owl-nav button.owl-prev {
    left: 16px;
}

.home-slider .owl-nav button.owl-next {
    right: 16px;
}

.home-slider .owl-dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    z-index: 6;
}

.home-slider .owl-dot {
    border: 0;
    background: transparent;
    padding: 4px;
}

.home-slider .owl-dot span {
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .68);
    box-shadow: 0 0 0 1px rgba(0, 0, 0, .18);
}

.home-slider .owl-dot.active span {
    background: #fff;
    box-shadow: 0 0 0 2px rgba(0, 0, 0, .24);
}

.home-slider .visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.home-slider .animated,
.home-slider .owl-animated-in,
.home-slider .owl-animated-out {
    animation-duration: 450ms;
    animation-fill-mode: both;
}

.home-slider .owl-animated-out {
    z-index: 1;
}

.home-slider .owl-animated-in {
    z-index: 2;
}

.home-slider .fadeOut {
    animation-name: homeSliderFadeOut;
}

.home-slider .fadeIn {
    animation-name: homeSliderFadeIn;
}

@keyframes homeSliderFadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

@keyframes homeSliderFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@media (max-width: 767px) {
    .home-slider picture {
        aspect-ratio: 4 / 3;
    }

    .home-slider .owl-nav button.owl-prev,
    .home-slider .owl-nav button.owl-next {
        width: 36px;
        height: 36px;
        font-size: 24px;
    }

    .home-slider .owl-nav button.owl-prev {
        left: 10px;
    }

    .home-slider .owl-nav button.owl-next {
        right: 10px;
    }
}
