.video-section {
    padding: 60px 0;
    width: 100%;
}

.section-title {
    font-weight: 400;
    font-size: 36px;
    line-height: 1.27;
    text-align: center;
    margin-bottom: 60px;
}

.video-section__row {
    width: 100%;
    display: flex;
    gap: 20px;
}

.video-section__col {
    flex: 1;
}

.video-item {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}

.video-item__img {
    width: 100%;
    position: relative;
    display: flex;
}

.video-item__img img {
    width: 100%;
    height: auto;
}

.video-item__ttl {
    font-size: 24px;
    line-height: 1.6;
    margin-bottom: 0;
}

.video-item__dsc {
    font-weight: 300;
    font-size: 16px;
    line-height: 2;
}

.video-item__btn {
    background: #79B928;
    padding: 16px 24px;
    font-weight: 600;
    font-size: 19px;
    line-height: 1.48;
    color: #fff;
    transition: .3s ease-in-out;
}

.video-item__btn:hover {
    background: #65a01b;
    color: #fff;
}


.slider-section {
    padding: 0;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000;
}

.slider-section .container {
    width: 100%;
}

.audio-slider {
    max-width: 100%;
}

.audio-slide {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    text-align: center;
    gap: 15px;
    padding: 160px 0;
}

.audio-slide__text {
    font-weight: 300;
    font-size: 20px;
    line-height: 1.6;
    text-align: center;
    color: #ffffff;
    max-width: 820px;
    margin: 0 auto;
}

.slider-buttons {
    width: 100%;
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    z-index: 3;
    padding: 0;
}

.slider-btn {
    background: none;
    border: none;
    cursor: pointer;
}

.slider-btn--prev svg {
    transform: rotate(180deg);
}

.swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
    bottom: 30px;
}

.audio-slider .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    margin: 0 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
}

.audio-slider .swiper-pagination-bullet.swiper-pagination-bullet-active {
    transform: scale(1.6);
    background: rgba(255, 255, 255, 1);
}

.large-video-section {
    padding: 60px 0 0;
}


.large-video-section__bg {
    width: 100%;
    display: flex;
}

.large-video-section video {
    width: 100%;
}

.large-video-section__bottom {
    background: #000;
    padding: 60px 0;
}

.features-list {
    display: flex;
    gap: 20px;
}

.features-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    color: #fff;
}

.features-item__img {

}

.features-item__ttl {
    min-height: 64px;
    margin-bottom: 0;
    font-weight: 400;
    font-size: 22px;
    line-height: 1.45;
}

.features-item__text {
    font-weight: 400;
    font-size: 15px;
    line-height: 1.6;
}

.product-section {
    padding: 60px 0;
}

.comment-section {
    padding: 60px 0;
    background: #FBFBFB;
}

.comment-section .container {
    max-width: 880px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    text-align: center;
}


.comment-section__icon {

}

.comment-section__text {
    font-weight: 300;
    font-size: 20px;
    line-height: 1.6;
    padding-bottom: 15px;
    position: relative;
}

.comment-section__text:after {
    content: '';
    width: 100px;
    height: 1px;
    background: #999999;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.comment-section__position {
    font-weight: 400;
    font-size: 15px;
    line-height: 1.6;

}

.comment-section__name {
    font-weight: 300;
    font-size: 13px;
    line-height: 16px;
}

.faq-section {
    padding: 60px 0;
}

.faq-section__ttl {
    text-align: left;
}

.faq-block {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.faq-block__item {

}

.faq-block__head {
    background: #FBFBFB;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: .3s ease-in-out;
    cursor: pointer;
    font-weight: 400;
    font-size: 24px;
    line-height: 1.6;

}

.faq-block__head span {
    flex: 1;
}
.faq-block__head svg {
    transition: .3s ease-in-out;
    stroke: #1C1C1C;
}

.faq-block__content {
    padding: 30px 15px;
    border-width: 0 1px 1px 1px;
    border-style: solid;
    border-color: #E8E8E8;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.9;
    display: none;
}

.faq-block__item.--opened .faq-block__head {
    color: #fff;
    background: #79B928;
}

.faq-block__item.--opened .faq-block__content {
    display: block;
}

.faq-block__item.--opened .faq-block__head svg {
    stroke: #fff;
    transform: rotate(180deg);
}

.faq-text-block p {
    font-weight: 300;
    font-size: 13px;
    line-height: 16px;
    margin-bottom: 10px;
}


.home-top2-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.video-popup-btn {
    padding: 18px 24px;
    border: none;
    background: #E8E8E8;
    display: flex;
    align-items: center;
    font-weight: 600;
    font-size: 19px;
    line-height: 28px;
    position: absolute;
    left: 10px;
    bottom: 10px;
    z-index: 2;
    cursor: pointer;
}

.video-popup-btn svg {
    margin-right: 10px;
}

.video-popup {
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 5;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: .3s ease-in-out;
    background: rgba(0,0,0,.6);
}

.video-popup.--opened {
    opacity: 1;
    visibility: visible;
}

.video-popup__inner {
    width: 1000px;
    max-width: 95%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-popup__inner video {
    width: 100%;
    height: auto;
}
.slider-btn {
    padding: 0;
    border: none;
}

@media screen and (max-width: 1023px) {
    .section-title {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .video-section {
        padding: 30px 0;
    }

    .video-section__row {
        flex-direction: column;
    }

    .features-list {
        flex-direction: column;
    }

    .audio-slide {
        padding: 50px 60px;
    }

    .slider-btn {
        width: 45px;
        height: 45px;
    }

    .slider-btn svg {
        width: 100%;
        height: 100%;
    }

    .slider-section {
        min-height: auto;
    }

    .home-top2-bg {
        display: flex!important;
    }

    .home-top2 {
        padding-bottom: 30px!important;
    }

    .audio-slider  .swiper-wrapper{
        align-items: center;
    }

    .swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
        bottom: 10px;
    }

    .large-video-section {
        padding-top: 30px;
    }

    .faq-block__head {
        font-size: 20px;
    }
}

.home-top2-bg:before {
 /*    content: '';
 width: 100%;
 height: 100%;
 background: rgba(0,0,0,.5);
 display: block;
 position: absolute;
 top: 0;
 left: 0;
 z-index: 2; */
}