.container-slyder {
    max-width: 100%;
    overflow: hidden;
}

.inner-slyder {
    display: flex;
    transition: all ease 0.3s
}

.block-slyder {
    padding: 5px;
    min-width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.comment {
    font-size: 22px;
    font-style: italic;
}

.avatar-author {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
}

.img-avatar {
    margin-right: 10px;
}

.img-avatar img {
    width: 100px;
    height: 100px;
    border-radius: 50% !important;
}

.controls-slyder {
    display: flex;
    justify-content: center;
}

.controls-slyder>div.cntrSlyder {
    margin-right: 10px;
}

.cntrSlyder {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #b1c0c6;
    cursor: pointer;
}

.activeCntr {
    background-color: #0170b9;
}

@media screen and (min-width: 768px) {

    .container-slyder {
        max-width: 70%;
        margin: auto;
    }

}