/*кнопки в родительском разделе Сервис*/
.buttons-box{
    padding: 60px 0 40px 0;
}
.buttons-box_wrap{
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 40px;
    max-width: 60vw;
    margin: 0 auto;
}
.buttons-box a.GA-PS-btn {
    box-sizing: border-box;
    width: 100%;
    padding-bottom: 20px;
    padding-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(1.125rem, 0.9733rem + 0.6472vw, 1.75rem);
    font-weight: bold;
}
@media (max-width: 700px) {
    .buttons-box_wrap {
        flex-wrap: wrap;
    }
    .buttons-box a.GA-PS-btn {
        padding-bottom: 12px;
        padding-top: 12px;
    }
    .buttons-box_wrap {
        gap: 30px;
        max-width: 100%;
    }
}
/*бренды в Дополнительном оборудовании*/
.brands-page {
    padding: 40px 0 60px;
}
.brands__list {
    padding: 0;
    margin: 0;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    column-gap: 30px;
    row-gap: 50px;
}

.brands__link {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    row-gap: 17px;
    font-weight: 400;
    font-size: 20px;
    line-height: 105%;
    letter-spacing: 0.01em;
    text-align: center;
    color: #ffffff;
}

.brands__link span {
    color: #E7E7E7;
    transition: color .3s ease-in-out;
}

.brands__img {
    width: 101px;
    height: 101px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brands__img img{
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    width: 100%;
    height: 100%;
}

.brands-text {
    margin-top: 70px;
    padding: 50px 50px 30px;
    border: 1px solid #696969;
}

.brands-text__title {
    margin: 0;
    margin-bottom: 40px;
    font-weight: 400;
    font-size: 26px;
    line-height: 120%;
}

.brands-text p {
    max-width: 1350px;
    margin: 0;
    margin-bottom: 20px;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: #E7E7E7;
}
.brands-page h2 {
    margin-bottom: 50px;
}
.brands-container {
    margin-top: 70px;
}
@media (max-width: 900px) {
    .brands-page {
        padding: 20px 0 0;
    }
    .brands-container {
        margin-top: 50px;
    }
    .brands__list {
        grid-template-columns: repeat(3, 1fr);
        margin-bottom: 67px;
    }

    .brands__link {
        font-size: 18px;
    }

    .brands-text {
        padding: 30px;
    }

    .brands-text p {
        font-size: 14px;
    }

}

@media (max-width: 500px) {
    .brands__list {
        grid-template-columns: repeat(2, 1fr);
    }

    .brands-text {
        padding: 20px;
    }
}
/*блок с видео в Дополнительном оборудовании*/
.reels {
    padding-bottom: 50px;
}
.reels .section-title {
    letter-spacing: -0.08em;
    font-weight: 400;
    margin: 30px auto 0;
    font-size: 56px;
    letter-spacing: -0.034em;
}
.selection__head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 68px;
}
.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;

    height: 100%;
}
.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{
    overflow: hidden;
    border-radius: 20px;

    height: 100%;
    width: auto;
    object-fit: cover;
}
.reels__wrapper .swiper-wrapper {
    align-items: stretch;
}
.swiper-slide.reelsItem{
    height: auto;
}
@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) {
    .reels .section-title {
        font-size: 32px;
    }
    body .selection__head {
        margin-bottom: 24px;
    }
}
