* {
    padding: 0;
    border: 0;
    margin: 0;
}

body {
    background: #1e1b31;
}

.slider_main-block {
    position: relative;
    width: 800px;
    height: 330px;
    display: flex;
    flex-direction: column;
}

.slider_block-flex {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 0 6px 0px #000000;
}

.slider_block-sliders {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    user-select: none;
    display: flex;
    transition: 1s;
}

.slider_block-elements {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}

.slider_block-navigator {
    width: 100%;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider_block-element_button {
    width: 110px;
    height: 36px;
    background-color: #75C47A;
    border-radius: 3px;
    color: #3C3939;
    box-shadow: 0px 0px 10px 0px black;
    font-size: 22px;
    font-family: cursive;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    user-select: none;
    position: absolute;
    bottom: 25px;
    left: 655px;
}

.arrow:hover {
    background-color: rgb(158 158 158);
}

.arrow:active {
    transition: 0.1s;
    background-color: rgba(255, 255, 255, 0.80)
}

.arrow_left {
    position: absolute;
    bottom: 130px;
    left: 8px;
}

.arrow_right {
    position: absolute;
    bottom: 130px;
    right: 8px;
}

.arrow {
    width: 40px;
    height: 40px;
    background-color: rgb(158 158 158 / 70%);
    border-radius: 100%;
    cursor: pointer;
    transition: 0.4s;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slider_main-block_elements {
    width: 100%;
    height: 100%;
}

.arrow-img {
    width: 30px;
    
}

.arrow-img_left {
    transform: rotate(180deg);
    margin-right: 4px;
}

.arrow-img_right {
    margin-left: 4px;
}

.slider_block-navigator-flex {
    display: flex;
    width: max-content;
    height: max-content;
}

.slider_navigator-element {
    width: 14px;
    height: 14px;
    background-color: #CDCDCD;
    border-radius: 100%;
    margin: 0 3px;
    cursor: pointer;
}

.slider_img {
    transition: 1s;
}

.slider_navigator-element.active-el {
    background-color: #AEAEAE;
}