* {
    box-sizing: border-box;
}

.slider_wrap {
    max-width: 1500px;
    margin: 0 auto;
}

.slider {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

/*.slider__item {*/
/*    !*flex-basis: 340px;*!*/
/*    !*padding: 1px;*!*/
/*    !*margin-top: 20px;*!*/
/*}*/

img.slide {
    width: 900px;
    /*width: auto;*/
    /*height: 700px;*/
    /*padding: 5px;*/
    /*position: relative;*/
    /*top: 0;*/
    /*left: 0;*/
    display: flex;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
}

.dots-style {
    text-align: center;
    display: flex;
    justify-content: center;
    list-style: none;
}

.dots-style button {
    background: #d7d3d3;
    border: none;
    border-radius: 50%;
    font-size: 0;
    height: 10px;
    width: 10px;
    margin: 5px;
    outline: none;
}

.dots-style li[class="slick-active"] button {
    background: #8473FF;
}

@media screen and (max-width: 769px) {
    img.slide {
        max-width: 100%;
        /*height: auto;*/
    }
}