.widget-form.template-1{
    position: relative;
    overflow: hidden;
    font-size: clamp(16px, 1.8vw, 20px);
}
.widget-form.template-1 .widget-item{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    border-radius: 4px;
    background-color: var(--special-background, #FAFBFE);
    padding: 52px 70px 52px 77px;
}
.widget-form.template-1 .widget-item-text{
    max-width: 618px;
}
.widget-form.template-1 .widget-item-name{
    font-size: 1.6em;
    font-weight: 700;
    line-height: 130%;
    color: #000000;
    text-wrap-style: balance;
    text-wrap: balance;
}
.widget-form.template-1 .widget-item-description{
    font-size: 1em;
    font-weight: 400;
    line-height: 130%;
    color: #000000;
    margin-top: .6em;
}
.widget-form.template-1 .widget-item-description span.special{
    font-weight: 500;
    color: var(--main-color);
}
.widget-form.template-1 .widget-item-button{
    font-size: .85em;
    font-weight: 400;
    line-height: 1;
    color: #ffffff;
    text-transform: uppercase;
    background-color: var(--main-color, #252525);
    white-space: nowrap;
    text-decoration: none;
    padding: 19px 34px;
    border-radius: 4px;
    cursor: pointer;
    border: none;
    margin: 0;
    user-select: none;

    transition: background-color .2s ease-out;
}
.widget-form.template-1 .widget-item-button:hover,
.widget-form.template-1 .widget-item-button:focus{
    background-color: var(--dark-main-color, #000000);
}
@media all and (max-width: 1000px) {
    .widget-form.template-1 .widget-item{
        padding: 42px 32px;
    }
}
@media all and (max-width: 800px) {
    .widget-form.template-1{
        font-size: clamp(16px, 2.8vw, 18px);
    }
    .widget-form.template-1 .widget-item-button{
        font-size: .875em;
        margin-top: 1.715em;
    }
}
@media all and (max-width: 720px) {
    .widget-form.template-1 .widget-item{
        flex-wrap: wrap;
    }
    .widget-form.template-1 .widget-item-text{
        max-width: 100%;
        flex: 0 0 100%;
    }
}
@media all and (max-width: 600px) {
    .widget-form.template-1 .widget-item-name{
        font-size: 1.4375em;
        line-height: 114%;
        font-weight: 700;
    }
    .widget-form.template-1 .widget-item-description {
        margin-top: 1.25em;
    }
    .widget-form.template-1 .widget-item-button{
        padding: 16px 32px;
    }
    .widget-form.template-1 .widget-item {
        padding: 32px;
        gap: 24px 40px;
    }
}