.mySlider {
    position: relative;
    width: 100%;
    padding: 10px;
    margin: 0 auto;
    background-color: #fff;
    box-sizing: border-box;
    border-radius: 5px;
    max-width: 1150px;
}

.slides-wrapper {
    /*   width: 500px;
    height: 280px; */
    padding-top: calc((7/15) * 100%);
    background: #fff;
    position: relative;
    overflow: hidden;
    border-radius: 5px;
}

.slido {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    cursor: pointer;
    transform: translate(100%, 0);
}

.slido.active {
    transform: translate(0, 0);
}

.slido img {
    object-fit: cover;
    width: 100%;
}

.slide-indicators {
    position: absolute;
    text-align: center;
    bottom: 2%;
    right: 0;
    left: 0;
    margin: 10px 0;
}

.slide-indicators button {
    width: 10px;
    height: 4px;
    padding: 0;
    background: rgba(212, 212, 212, 0.5);
    border: none;
    border-radius: 5px;
    margin: 0 4px;
    cursor: pointer;
    outline: none;
    position: relative;
    transition: all 0.3s;
}

.slide-indicators button::after {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: block;
}

.slide-indicators button.active {
    background: #fff;
}

.prev-button,
.next-button {
    position: absolute;
    top: 0;
    left: 0;
    width: 20%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    padding: 0;
    border-radius: 0 100% 100% 0;
    display: none;
    cursor: pointer;
    outline: none;
}

.next-button {
    left: auto;
    right: 0;
    border-radius: 100% 0 0 100%;
}

.slides-wrapper:hover~.prev-button,
.prev-button:hover,
.slides-wrapper:hover~.next-button,
.next-button:hover {
    display: block;
}

.prev-button:active,
.next-button:active {
    background: rgba(255, 255, 255, 0.3);
}

@media screen and (max-width: 1184px) {
     
    #sideMenu {
        width: 190px;
    }
    .sub {
        left: 191px;
    }
    .sub-w {
        width: 712px;
    }
}

@media screen and (max-width: 768px) {
    .slides-wrapper {
        border-radius: 0px;
    }
    .mySlider {
        margin-right: 10px;
        margin-left: 10px;
        box-shadow: none;
    }
}