.widget-advantages.template-9{
    position: relative;
    overflow: hidden;
    font-size: clamp(16px, 1.8vw, 20px);
}
.widget-advantages.template-9 .widget-header{
    display: flex;
    align-items: flex-end;
    gap: 20px 40px;
}
.widget-advantages.template-9 .widget-header .widget-title{
    font-size: 3.2em;
    font-weight: 700;
    line-height: 102%;
    color: #000000;
    text-wrap-style: balance;
    text-wrap: balance;
}
.widget-advantages.template-9 .widget-header .widget-title span.special{
    color: var(--main-color);
}
.widget-advantages.template-9 .widget-header .widget-description{
    font-size: 1em;
    font-weight: 500;
    line-height: 130%;
    color: #626262;
    max-width: 518px;
    margin-bottom: 9px;
}
.widget-advantages.template-9 .widget-header + .widget-content{
    margin-top: 46px;
}
.widget-advantages.template-9 .widget-items{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 28px 60px;
}
.widget-advantages.template-9 .widget-item{
    max-width: 530px;
    flex: 0 0 calc(50% - 30px);
}
.widget-advantages.template-9 .widget-item-description{
    font-size: 1em;
    font-weight: 400;
    line-height: 130%;
    color: #000000;
}
.widget-advantages.template-9 .widget-item-description span.special{
    color: var(--main-color);
}
.widget-advantages.template-9 .widget-picture{
    display: flex;
    overflow: hidden;
    margin-top: 36px;
}
.widget-advantages.template-9 .widget-picture img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.widget-advantages.template-9 .widget-button-wrap{
    display: flex;
    justify-content: center;
    margin-top: 34px;
}
.widget-advantages.template-9 .widget-button{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1em;
    font-weight: 500;
    line-height: 1;
    color: var(--main-color);
    text-decoration: none;

    transition: color .2s ease-out;
}
.widget-advantages.template-9 .widget-button:hover,
.widget-advantages.template-9 .widget-button:focus{
    color: var(--dark-main-color);
}
.widget-advantages.template-9 .widget-button svg{
    width: 2.8em;
    height: auto;
    aspect-ratio: 4 / 4;
}
.widget-advantages.template-9 .widget-button svg path,
.widget-advantages.template-9 .widget-button svg circle{
    stroke: var(--main-color);

    transition: stroke .2s ease-out;
}
.widget-advantages.template-9 .widget-button:hover svg path,
.widget-advantages.template-9 .widget-button:hover svg circle,
.widget-advantages.template-9 .widget-button:focus svg path,
.widget-advantages.template-9 .widget-button:focus svg circle{
    stroke: var(--dark-main-color);
}

@media all and (max-width: 1240px) {
    .widget-advantages.template-9 .widget-header{
        flex-wrap: wrap;
    }
    .widget-advantages.template-9 .widget-header .widget-title{
        max-width: 100%;
        flex: 0 0 100%;
        font-size: 48px;
    }
}
@media all and (max-width: 1000px) {
    .widget-advantages.template-9 .widget-header{
        gap: 16px 66px;
    }
    .widget-advantages.template-9 .widget-item{
        max-width: 100%;
        flex: 0 0 100%;
    }
}
@media all and (max-width: 800px) {
    .widget-advantages.template-9{
        font-size: clamp(16px, 2.8vw, 18px);
    }
    .widget-advantages.template-9 .widget-header .widget-title{
        font-size: 2.6em;
    }
}
@media all and (max-width: 600px) {
    .widget-advantages.template-9 .widget-header{
        gap: 14px 66px;
    }
    .widget-advantages.template-9 .widget-header .widget-title{
        font-size: 1.75em;
        line-height: 110%;
    }
    .widget-advantages.template-9 .widget-header + .widget-content{
        margin-top: 16px;
    }
    .widget-advantages.template-9 .widget-items{
        gap: 15px 60px;
    }
    .widget-advantages.template-9 .widget-item-description{
        line-height: 125%;
    }
    .widget-advantages.template-9 .widget-button-wrap{
        margin-top: 26px;
    }
    .widget-advantages.template-9 .widget-button{
        gap: 17px;
    }
    .widget-advantages.template-9 .widget-picture{
        margin-top: 30px;
    }
}