/* Основные стили */
.container-slyder {
    position: relative;
    overflow: hidden;
    width: 80%;
    height: 500px;
    margin: auto;
}

.inner-slyder {
    display: flex;
    transition: transform 0.5s ease-in-out;
    -webkit-transition: transform 0.5s ease-in-out;
    -moz-transition: transform 0.5s ease-in-out;
    -ms-transition: transform 0.5s ease-in-out;
    -o-transition: transform 0.5s ease-in-out;
}

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

.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;
}

.slider-indicators {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 5px;
}

.slider-indicators div {
    width: 10px;
    height: 10px;
    background: gray;
    border-radius: 50%;
    cursor: pointer;
}

.slider-indicators .active {
    background: black;
}

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

    .container-slyder {
        height: 300px;
    }
}