.widget-advantages.template-12{
    position: relative;
    overflow: hidden;
    font-size: clamp(16px, 1.8vw, 20px);
}
.widget-advantages.template-12 .widget-header{
    display: flex;
    flex-direction: column;
    gap: 1.8em;
}
.widget-advantages.template-12 .widget-header .widget-title{
    font-size: 3.2em;
    font-weight: 700;
    line-height: 103%;
    color: #000000;
}
.widget-advantages.template-12 .widget-header .widget-title span{
    color: var(--main-color);
}
.widget-advantages.template-12 .widget-header .widget-description{
    font-size: 1em;
    font-weight: 500;
    line-height: 130%;
    color: #626262;
}
.widget-advantages.template-12 .widget-header + .widget-content{
    margin-top: 2.5em;
}

.widget-advantages.template-12 .widget-items{
    display: flex;
    gap: 30px;
    overflow: visible;
    margin: 0;
}
.widget-advantages.template-12 .widget-item{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 3.6em;
    position: relative;
    background-color: var(--special-background, #FAFBFE);
    border-radius: 4px;
    overflow: hidden;
    padding: 2.5em 2em;
    opacity: 0;
    height: auto;
    text-decoration: none;
    pointer-events: none;
    user-select: none;

    transition: opacity .2s ease-out;
}
.widget-advantages.template-12 .widget-item.swiper-slide-active,
.widget-advantages.template-12 .widget-item.swiper-slide-active + .widget-item{
    opacity: 1;
    pointer-events: all;
}
.widget-advantages.template-12 .widget-item-name{
    display: inline-block;
    font-size: 1.4em;
    font-weight: 700;
    line-height: 128%;
    color: #000000;
}
.widget-advantages.template-12 .widget-item-picture{
    position: relative;
    user-select: none;
    border-radius: 4px;
    overflow: hidden;
    aspect-ratio: 16 / 10.519;
}
.widget-advantages.template-12 .widget-item-picture img{
    width: 100%;
    height: 100%;
    object-position: center;
    object-fit: cover;
    pointer-events: none;
}
.widget-advantages.template-12 .widget-item-button{
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1em;
    font-weight: 500;
    line-height: 1;
    color: var(--main-color, #000000);
    white-space: nowrap;
}
.widget-advantages.template-12 .widget-item-button svg{
    width: 1.1em;
    height: auto;
    transform: translateY(1px);
}
.widget-advantages.template-12 .widget-item-button svg path{
    fill: var(--main-color, #000000);
}
.widget-advantages.template-12 .widget-item-name ~ .widget-item-button{
    margin-top: 1.2em;
}

.widget-advantages.template-12 .widget-pagination{
    display: none;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 1.5em;
}
.widget-advantages.template-12 .widget-pagination .swiper-pagination-bullet{
    display: block;
    width: 10px;
    height: 10px;
    margin: 0;
    padding: 0;
    opacity: 1;
    border-radius: 50%;
    background-color: #D8D8D8;

    transition: background-color .2s ease-out;
}
.widget-advantages.template-12 .widget-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active{
    background-color: #252525;
}
.widget-advantages.template-12 .widget-navigation{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 4px;
    margin-top: 16px;
}
.widget-advantages.template-12 .widget-nav{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #FAFBFE;
    cursor: pointer;
    user-select: none;

    transition: background-color .2s ease-out;
}
.widget-advantages.template-12 .widget-nav:hover{
    background-color: #F7F7F9;
}
.widget-advantages.template-12 .widget-nav svg{
    width: 10px;
    height: auto;
}
.widget-advantages.template-12 .widget-nav svg path{
    transition: stroke .2s ease-out;
}
.widget-advantages.template-12 .widget-nav:hover svg path{
    stroke: #252525;
}
.widget-advantages.template-12 .widget-nav.swiper-button-disabled{
    pointer-events: none;
    cursor: default;
    background-color: transparent;
}

@media all and (max-width: 1000px) {
    .widget-advantages.template-12 .widget-items{
        gap: 30px 20px;
    }
    .widget-advantages.template-12 .widget-pagination{
        display: flex;
    }
    .widget-advantages.template-12 .widget-navigation{
        display: none;
    }
}
@media all and (max-width: 800px) {
    .widget-advantages.template-12{
        font-size: clamp(16px, 2.8vw, 18px);
    }
    .widget-advantages.template-12 .widget-header{
        gap: 1.4em;
    }
    .widget-advantages.template-12 .widget-header .widget-title{
        font-size: 2.6em;
    }
    .widget-advantages.template-12 .widget-item{
        padding: 2em 1.5em;
        gap: 1.8em;
    }
    .widget-advantages.template-12 .widget-item-name{
        font-size: 1.25em;
    }
    .widget-advantages.template-12 .widget-item-name ~ .widget-item-button{
        margin-top: .75em;
    }
}
@media all and (max-width: 600px) {
    .widget-advantages.template-12 .widget-header .widget-title{
        font-size: 1.75em;
        line-height: 111%;
    }
    .widget-advantages.template-12 .widget-header + .widget-content{
        margin-top: 2em;
    }
    .widget-advantages.template-12 .widget-items{
        max-width: 340px;
        gap: 20px;
    }
    .widget-advantages.template-12 .widget-pagination {
        gap: 4px;
        margin-top: 20px;
    }
    .widget-advantages.template-12 .widget-pagination .swiper-pagination-bullet{
        width: 6px;
        height: 6px;
    }
}