.widget-products.template-1{
    position: relative;
    overflow: hidden;
}
.widget-products.template-1 .widget-header{}
.widget-products.template-1 .widget-header .widget-title{
    font-size: 64px;
    font-weight: 700;
    line-height: 118%;
    color: #000000;
    text-wrap-style: balance;
    text-wrap: balance;
}
.widget-products.template-1 .widget-header .widget-title span.special{
    color: var(--main-color);
}
.widget-products.template-1 .widget-header .widget-description{
    font-size: 20px;
    font-weight: 500;
    line-height: 130%;
    color: #626262;
    max-width: 518px;
    margin-top: 30px;
}
.widget-products.template-1 .widget-header + .widget-content{
    margin-top: 159px;
}
.widget-products.template-1 .widget-items{
    display: flex;
    flex-wrap: wrap;
    gap: 110px 30px;
}
.widget-products.template-1 .widget-item{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    max-width: calc(33.3333% - 20px);
    flex: 0 0 calc(33.3333% - 20px);
    background-color: var(--special-background, #FAFBFE);
    border-radius: 4px;
    padding: 20px;
    text-decoration: none;
}
.widget-products.template-1 .widget-item-wrapper{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.widget-products.template-1 .widget-item-icon{
    position: relative;
    display: flex;
    margin-top: -87px;
    filter: drop-shadow(4px 7px 28px rgba(27, 30, 37, .08));
}
.widget-products.template-1 .widget-item-icon:before{
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, -6px) perspective(20px) rotateX(-22deg);
    z-index: -1;
    width: calc(100% + 20px);
    height: 3px;
    background-color: #0000009a;
    filter: blur(8px);
}
.widget-products.template-1 .widget-item-name{
    font-size: 20px;
    font-weight: 700;
    line-height: 128%;
    color: #000000;
    text-align: center;

    transition: color .2s ease-out;
}
.widget-products.template-1 .widget-item-icon + .widget-item-name{
    margin-top: 24px;
}
.widget-products.template-1 .widget-item-icon svg{
    height: auto;
}
.widget-products.template-1 .widget-item-description{
    font-size: 16px;
    font-weight: 400;
    line-height: 128%;
    color: #626262;
    margin-top: 12px;
    text-align: center;
}
.widget-products.template-1 .widget-item-price{
    color: #000;
    font-size: 24px;
    font-weight: 600;
    line-height: 128%;
    margin-top: clamp(12px, 3vw, 18px);
}
@media all and (max-width: 1600px) {
    .widget-products.template-1 .widget-header .widget-title{
        font-size: 60px;
    }
}
@media all and (max-width: 1240px) {
    .widget-products.template-1 .widget-header{
        flex-wrap: wrap;
    }
    .widget-products.template-1 .widget-header .widget-title{
        max-width: 100%;
        flex: 0 0 100%;
        font-size: 48px;
    }
    .widget-products.template-1 .widget-item{
        max-width: calc(33.3333% - 20px);
        flex: 0 0 calc(33.3333% - 20px);
    }
}
@media all and (max-width: 1000px) {
    .widget-products.template-1 .widget-header{
        gap: 16px 66px;
    }
    .widget-products.template-1 .widget-header .widget-title {
        font-size: 36px;
    }
    .widget-products.template-1 .widget-header + .widget-content {
        margin-top: 46px;
    }
    .widget-products.template-1 .widget-items{
        gap: 30px;
    }
    .widget-products.template-1 .widget-item{
        max-width: calc(50% - 15px);
        flex: 0 0 calc(50% - 15px);
    }
    .widget-products.template-1 .widget-item-icon{
        margin-top: 0;
    }
}
@media all and (max-width: 600px) {
    .widget-products.template-1 .widget-header{
        gap: 14px 66px;
    }
    .widget-products.template-1 .widget-header .widget-title{
        font-size: 28px;
        line-height: 111%;
    }
    .widget-products.template-1 .widget-header .widget-description{
        font-size: 18px;
    }
    .widget-products.template-1 .widget-header + .widget-content{
        margin-top: 32px;
    }
    .widget-products.template-1 .widget-items{
        gap: 10px;
    }
    .widget-products.template-1 .widget-item{
        max-width: calc(50% - 5px);
        flex: 0 0 calc(50% - 5px);
        padding: 20px 8px;
    }
    .widget-products.template-1 .widget-item-icon{
        width: 66px;
    }
    .widget-products.template-1 .widget-item-name{
        font-size: 14px;
    }
    .widget-products.template-1 .widget-item-icon + .widget-item-name {
        margin-top: 15px;
    }
    .widget-products.template-1 .widget-item-description{
        font-size: 12px;
        margin-top: 5px;
        line-height: 130%;
    }
    .widget-products.template-1 .widget-item-price{
        font-size: 16px;
    }
}
@media all and (max-width: 360px) {
    .widget-products.template-1 .widget-item {
        max-width: 100%;
        flex: 0 0 100%;
    }
}