.hero.hero-slider-outer {
    padding-bottom: 0px;
    padding-top: 40px;
}
.hero__image_slider {
    max-height: 600px;
    max-width: 50%;
    width: 100%;
    overflow: hidden;
}
.hero__slider_image {
    border-radius: 80px 40px 40px 40px;
    corner-shape: bevel round round round;
    background: black;
    height: 100%;
    width: 100%;
    filter: url(#round);
    overflow: hidden;
}
.hero__slider_image img {
    width: 100%;
    height: 100%;
}
.slider-desktop {
    display: block;
}
.slider-mobile {
    display: none;
}
.hero__inner.hero__inner_flex {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 60px;
}
.hero__image_slider .owl-stage {
    display: flex;
}
.hero__image_slider .owl-nav {
    display: none;
}
.hero__image_slider .owl-dots {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-top: 20px;
    gap: 10px;
    height: 15px;
}
.hero__image_slider .owl-dots .owl-dot {
    border-radius: 50%;
    height: 10px;
    width: 10px;
    padding: 0;
    background: #aaa;
}
.owl-dot.active span {
    background: #FF00AB;
    width: 12px;
    height: 12px;
    display: block;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}
@media (max-width: 1279px) {
    .slider-desktop {
        display: none;
    }
    .slider-mobile {
        display: block;
    }
    .hero__inner.hero__inner_flex {
        display: flex;
        flex-direction: column;
    }
    .hero__image_slider {
        max-height: 600px;
        max-width: 600px;
        width: 100%;
        overflow: hidden;
    }
    .hero.hero-slider-outer:before {
        bottom: -500px;
    }
}
@media (max-width: 1024px) {
    .hero.hero-slider-outer:before {
        bottom: -20px;
    }
}