.hero_slider_widget .swiper-slide {
    display: flex;
    flex-direction: column;
    justify-content: center;
	aspect-ratio: 16 / 9;
}
.hero_slider_widget .swiper-slide-content {
    width: 100%;
    max-width: 700px;
}
.hero_nav_wrapper {
    display: flex;
    flex-direction: row;
    width: auto;
    position: absolute;
    bottom: 64px;
    left: 7.5vw;
}
.hero_pagination {
    width: auto;
    padding: 0 40px;
    z-index: 10;
    min-height: var(--swiper-navigation-size);
    display: flex;
    flex-direction: row;
    align-items: center;
}
.hero_nav {
    position: absolute;
    top: 50%;
    transform: translateX(-50%);
    width: calc(var(--swiper-navigation-size) / 44 * 27);
    height: var(--swiper-navigation-size);
    margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--e-global-color-accent);
}
.hero_slider_widget_prev {
    left: 15px;
    right: auto;
}
.hero_slider_widget_next {
    right: -10px;
    left: auto;
}
.swiper-button-disabled {
    opacity: .7;
    cursor: not-allowed;
}
.hero_pagination .swiper-pagination-bullet {
    border-bottom: 2px solid transparent;
    transition: background-color .3s ease-in-out;
    background-color: #cbd3dc;
    width: 40px;
    height: 2px;
    border-radius: 0;
    opacity: 1;
}
.hero_pagination .swiper-pagination-bullet-active {
    background-color: var(--e-global-color-accent);
}
@media(max-width: 767px) {
	.hero_pagination .swiper-pagination-bullet {
		width: 15px;
	}
	.hero_nav_wrapper {
		bottom: 0;
	}
}