/*О Phomi*/
.aboutPanel{
    display: flex;
    flex-direction: row;
    margin: 1rem 0;
    padding: 30px;
    background-color: #fff;
}
.aboutPanel .content{
    display: flex;
    justify-content: stretch;
    gap: 30px;
    width: 100%;
}
.aboutPanel .content .carousel{
    height: 100%;
    min-height: 400px;
    max-height: 700px;
    max-width: 600px;
    flex-basis: 0;
    flex-grow: 2;
    background-color: #1d1c21;
    overflow: hidden;
}
.aboutPanel.type2 .content .carousel{
    flex-grow: 1;
    max-height: 350px;
}
.aboutPanel .content .carousel .carousel-inner,
.aboutPanel .content .carousel .carousel-inner .carousel-item{
    height: 100%;
    width: 100%;
}
.aboutPanel .content .carousel .carousel-inner .carousel-item img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.aboutPanel .content .description{
    display: flex;
    flex-direction: column;
    flex-grow: 3;
    flex-basis: 0;
    border-radius: 5px;
}
.aboutPanel.type2 .content .description{
    flex-grow: 1;
}
.aboutPanel .content .description .caption{
    margin-bottom: 20px;
    background-color: var(--main-color);
    padding: 15px;
    text-align: center;
    color: #fff;
}
.aboutPanel .content .description .caption h4{
    margin-bottom: 0;
    font-size: 32px;
    color: #f96031;
}
.aboutPanel .content .description .caption span{
    font-size: 16px;
    font-weight: 600;
}



.aboutPanel2{
    display: flex;
    max-width: 1400px;
    gap: 15px;
    margin: 15px auto;
    padding: 15px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 5px 25px 0px;
}
.aboutPanel2 > .about-img{
    display: flex;
    flex-direction: column;
    gap: 15px;
    flex-grow: 1;
    flex-basis: 0;
}
.aboutPanel2 > .about-img > img{
    min-height: 300px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    border-radius: 5px;
}
.aboutPanel2 > .about-content{
    display: flex;
    flex-direction: column;
    flex-grow: 2;
    flex-basis: 0;
    gap: 15px;
}
.aboutPanel2 > .about-content > .caption{
    background-color: #333;
    padding: 15px;
    text-align: center;
    color: #fff;
    border-radius: 5px;
}
.aboutPanel2 > .about-content > .caption h4{
    margin-bottom: 0;
    font-size: 32px;
}
.aboutPanel2 > .about-content > .caption span{
    font-size: 16px;
}
.aboutPanel2 > .about-content > .text{
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 15px;
}
.aboutPanel2 > .about-content > .text p{
    text-indent: .5rem;
    margin-bottom: 0;
    margin-bottom: 0;
}
.aboutPanel2 > .about-content > .advantages{
    gap: 15px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-top: auto;
}
.aboutPanel2 > .about-content > .advantages .item{
    border-radius: 5px;
    padding: 15px;
    overflow: hidden;
    border: 1px solid #eee;
}
.aboutPanel2 > .about-content > .advantages .item > .caption{
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 10px;
    font-weight: 600;
}
.aboutPanel2 > .about-content > .advantages .item > .caption i{
    font-size: 22px;
    color: var(--main-color)
}
.aboutPanel2 > .about-content > .advantages .item > p{
    line-height: 1.3;
    margin-bottom: 0;
    font-size: 14px;
}
/*.aboutPanel .content .description h4{
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    background-color: #333;
    padding: .5rem;
    border-radius: 5px;
    margin-bottom: 1rem;
    color: #fff;
}
.aboutPanel.type2 .content .description h4{
    font-size: 28px;
    color: #333;
    background-color: inherit;
    padding: 0 0 .5rem 0;
    border-bottom: 3px solid #fecc00;
    border-radius: 0;
}*/
.aboutPanel .content .description p{
    text-indent: 1rem;
    font-size: 18px;
    font-weight: 300;
}
/*Монтаж*/
.installation{
    display: flex;
    max-width: 1400px;
    gap: 15px;
    margin: 15px auto;
    padding: 15px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 5px 25px 0px;
}
.installation > .video{
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-grow: 1;
    flex-basis: 0;
    max-width: 600px;
    border-radius: 5px;
    overflow: hidden;
}
.installation > .video > h4{
    text-align: center;
    background-color: #333333;
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 0;
    padding: 15px 10px;
    z-index: 1;
}
.installation > .video > .videoBlock{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
    background-color: #fbfbfb;
    position: relative;
}
.installation > .video > .videoBlock img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}
.installation > .video > .videoBlock > .blur-fon{
    display: none;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    bottom: 0;
    z-index: 0;
    -webkit-filter: blur(5px);
    filter: blur(25px);
}
.installation > .content{
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    flex-grow: 2;
    flex-basis: 0;
}
.installation > .content > h4{
    text-align: center;
    background-color: #333333;
    margin-bottom: 0;
    color: #fff;
    padding: 15px 10px;
    font-size: 20px;
    flex-grow: 1;
    width: 100%;
    border-radius: 5px;
}
.installation > .content > p{
    margin-bottom: 0;
}
.installation > .content > .stages{
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: calc(60% - 15px);
}
.installation > .content > .stages ol{
    padding-left: 20px;
    margin-bottom: 0;
}
.installation > .content > .instructions{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 10px;
    width: 40%;
}
.installation > .content > .instructions > div{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    text-align: center;
}
.installation > .content > .instructions > div i{
    font-size: 52px;
    color: #333333;
}
.installation > .content > .instructions > .btn{
    max-width: 300px;
    width: 100%;
}
.installation > .content > .btn > i{
    font-size: 32px;
    margin-right: 10px;
}

.installation > .content > p,
.installation > .content > .stages,
.installation > .content > .instructions{
    border-radius: 5px;
    padding: 15px 30px;
    border: 1px solid #eee;
}
/*Превью каталога*/
.catalog-preview{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    max-width: 1400px;
    margin: 15px auto;
    padding: 15px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 5px 25px 0px;
}
.catalog-preview > .item{
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 5px 15px 0px;
    border-radius: 6px;
    overflow-x: hidden;
}
.catalog-preview > .item > .img-wrapper{
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 300px;
}
.catalog-preview > .item > .img-wrapper img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.catalog-preview > .item > .img-wrapper::after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75);
    transition: all .3s ease-in-out;
    opacity: 0;
}
.catalog-preview > .item > .img-wrapper span{
    position: absolute;
    width: 100%;
    max-width: 200px;
    color: #ffffff;
    border: 1px solid #fff;
    border-radius: 5px;
    padding: 6px 12px;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all .3s ease-in-out;
    opacity: 0;
    z-index: 1;
}
.catalog-preview > .item:hover > .img-wrapper::after,
.catalog-preview > .item:hover > .img-wrapper span{
    opacity: 1;
}
.catalog-preview > .item > .info{
    padding: 10px 15px;
    line-height: 1.4;
}
.catalog-preview > .item > .info > .collection{
    font-size: 20px;
}
.catalog-preview > .item > .info > .cost{
    font-size: 20px;
    font-weight: 600;
}
.catalog-preview > .item > .info > .products_num{
    font-size: 14px;
}
.catalog-link{
    grid-column: 1 / -1;
    margin: 0 auto;
    width: 100%;
}
/*Превью каталога2*/
.catalog__layout.index{
    max-width: 1400px;
}
/*фото*/
.photo-link{
    grid-column: 1 / -1;
    margin: 10px auto 0 auto;
    width: 100%;
}
/*Видео*/
.swiper-video-carousel{
    max-width: 1400px;
    margin: 15px auto;
    gap: 5px;
    padding: 15px !important;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 5px 25px 0px;
}
.swiper-video-carousel .swiper-slide > .item-video{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 250px;
    background-color: #ddd;
    box-shadow: 0px 0 5px 1px rgba(0, 0, 0, 0.3);
    border-radius: 5px;
    position: relative;
    overflow: hidden;
}
.swiper-video-carousel .swiper-slide > .item-video.videoBlock{
    padding: 0;
}
.swiper-video-carousel .swiper-slide > .item-video img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.swiper-video-carousel .swiper-slide > .item-video .caption{
    position: absolute;
    display: flex;
    flex-direction: column;
    gap: .25rem;
    background-color: #0000009e;
    width: 100%;
    padding: .5rem 1rem;
    box-shadow: 0px 0px 15px 2px rgba(0, 0, 0, 0.2);
    text-align: center;
    color: #ffffff;
}
.swiper-video-carousel .swiper-slide > .item-video .title{
    font-size: 18px;
    font-weight: bold;
    line-height: 1.2;
}
.swiper-video-carousel .swiper-slide > .item-video .subtitle{
    font-size: 16px;
    font-weight: 300;
    line-height: 1.2;
}
.swiper-video-carousel .swiper-slide > .item-video .source{
    font-size: 12px;
    color: #ddd;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: .25rem;
}
.swiper-video-carousel .swiper-slide > .item-video .source.youtube i{
    color: #ff0000;
    font-size: 18px;
}
.swiper-video-carousel > .swiper-custom-panel > .swiper-pagination {
    display: flex;
    position: relative;
    justify-content: center;
    bottom: inherit;
    margin-top: 15px;
}
.swiper-video-carousel > .swiper-custom-panel > .swiper-pagination > .swiper-pagination-bullet {
    display: block;
    height: 10px;
    width: 30px;
    background-color: #ddd;
    opacity: 1;
    border-radius: 5px;
}
.swiper-video-carousel > .swiper-custom-panel > .swiper-pagination > .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: var(--main-color);
}
/*ЧАВО*/
.questions-group{
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 1400px;
    margin: 30px auto;
}
.questions-group > .question-panel{
    box-shadow: 0px 5px 5px 1px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    overflow: hidden;
}
.questions-group > .question-panel .question-header{
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    background-color: #fff;
    user-select: none;
}
.questions-group > .question-panel .question-header span{
    margin: .5rem .5rem .5rem 1.5rem;
    font-size: 18px;
    font-weight: 600;
    color: #000;
}
.questions-group > .question-panel .question-header .icon{
    min-width: 60px;
    min-height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    align-self: stretch;
    color: #fff;
    font-size: 1.5rem;
    margin-left: auto;
    transition: all .3s ease-in-out;
}
.questions-group > .question-panel .question-header.collapsed .icon{
    background-color: #333333;
}
.questions-group > .question-panel .question-header .icon,
.questions-group > .question-panel .question-header:hover .icon{
    background-color: var(--main-color);
}
.questions-group > .question-panel .question-body{
    background-color: #f8f8f8;
}
.questions-group > .question-panel .question-body > *:last-child{
    margin-bottom: 0;
}
.questions-group > .question-panel .question-body p{
    padding: 20px 30px;
    font-size: 16px;
    text-indent: 1rem;
    line-height: 1.5;
}
.grid-photo:nth-child(n+21){
    display: none;
}
@media (max-width: 1200px) {
    .scope_application > .item > .caption{
        font-size: 18px;
    }
    .grid-photo:nth-child(n+17){
        display: none;
    }
}
@media (max-width: 992px) {
    .aboutPanel2{
        flex-direction: column;
    }
    .aboutPanel2 > .about-img{
        flex-direction: row;
    }
    .aboutPanel2 > .about-img > img{
        width: calc(50% - 8px);
    }
    .aboutPanel{
        padding: 15px;
    }
    .aboutPanel .content{
        flex-direction: column;
        gap: 15px;
    }
    .aboutPanel .content .carousel{
        max-width: inherit;
    }
    .installation{
        flex-direction: column;
    }
    .installation > .content{
        order: 0;
    }
    .installation > .content > p, .installation > .content > ol{
        padding: 15px;
    }
    .installation > .content > .btn{
        max-width: 450px;
        margin: auto auto 15px;
    }
    .installation > .video{
        max-width: inherit;
        flex-basis: inherit;
        position: relative;
        order: 1;
    }
    .installation > .video > .videoBlock{
        height: 300px;
        order: 1;
    }
    .catalog-preview{
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
        margin: 15px auto;
        max-width: 1400px;
    }
}
@media (max-width: 768px) {
    .scope_application{
        gap: 5px;
        flex-wrap: wrap;
    }
    .scope_application > .item > img{
        height: 300px;
    }
    .advantages {
        grid-template-columns: repeat(1, 1fr);
    }
    .installation > .content{
        flex-direction: column;
        flex-wrap: nowrap;
        flex-grow: inherit;
        flex-basis: inherit;
    }
    .installation > .content > p, .installation > .content > .stages,
    .installation > .content > .instructions{
        width: inherit;
        padding: 15px;
    }
    .swiper-video-carousel .swiper-slide > .item-video{
        height: 200px;
    }
    .questions-group{
        gap: 15px;
    }
    .catalog-preview {
        grid-template-columns: repeat(2, 1fr);
    }
    .catalog-preview > .item > .img-wrapper{
        height: 300px;
    }
    .grid-photo:nth-child(n+16){
        display: none;
    }
}
@media (max-width: 576px) {
    .aboutPanel2 > .about-content > .advantages{
        grid-template-columns: repeat(1, 1fr);
    }
    .aboutPanel2 > .about-img{
        flex-direction: column;
    }
    .aboutPanel2 > .about-img > img{
        width: 100%;
    }
    .aboutPanel .content .carousel{
        min-height: 300px;
    }
    .catalog-preview {
        grid-template-columns: repeat(1, 1fr);
    }
    .catalog-preview > .item > .info > .collection,
    .catalog-preview > .item > .info > .cost{
        font-size: 18px;
    }
    .swiper-video-carousel .swiper-slide > .item-video{
        height: 250px;
    }
    .questions-group > .question-panel .question-header span{
        font-size: 16px;
        margin: 20px;
    }
    .questions-group > .question-panel .question-header .icon{
        min-height: 50px;
        min-width: 50px;
    }
    .questions-group > .question-panel .question-body > p{
        padding: 10px 15px;
    }
    .grid-photo:nth-child(n+15){
        display: none;
    }
}
@media (max-width: 400px) {
    .swiper-video-carousel .swiper-slide > .item-video{
        height: 200px;
    }
}
