.reels {
    padding-bottom: 50px;
}
.reels .section-title {
    letter-spacing: -0.08em;
    font-weight: 400;
    margin: 30px auto 0;
}
.reels .swiper-button-next.swiper-button-disabled {
    display: none;
}
.reels .slider-button-square::after{
    content: none;
}
.reelsItem{
    display: flex;
    flex-direction: column;
    position: relative;
    border-radius: 20px;
    background: #1c1c1c;
}
.reelsItem__video{
    position: relative;
    display: flex;
}
.reelsItem__content{
    color: #f1f1f1;
    font-weight: 400;
    padding: 12px;
    padding-bottom: 18px;
}
.reelsItem__title{
    color: #ffffff;
    font-size: 1.2em;
    overflow: hidden;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    white-space: pre-wrap;
    word-break: break-word;
}
.reelsItem__play, .reelsItem__stop{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    border-radius: 20px;
}
.reelsItem__play{
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.52);
    z-index: 2;
}
.reelsItem__play svg {
    height: auto;
    width: 25%;
}
.reelsItem__stop{
    z-index: 1;
    width: 100%;
    height: 85%;
    margin: auto;
}
.reelsItem.video-play .reelsItem__play{
    display: none;
}
.reelsItem video{
    width: 100%;
    overflow: hidden;
    border-radius: 20px;
}
@media (min-width: 1200px) {
    .reels{
        padding-top: 50px;
    }
}
@media (max-width: 1000px) {
    .reels .container{
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
        padding: 0;
    }
}
@media (max-width: 900px) {
    body .main-page .reels .section-title {
        font-size: 32px;
    }
}