.widget-form.template-6{
    position: relative;
    overflow: hidden;
    font-size: clamp(16px, 1.8vw, 20px);
}
.widget-form.template-6 .widget-item{
    position: relative;
    display: flex;
    justify-content: space-between;
    gap: 60px;
    border-radius: 4px;
    background-color: var(--form-background-color, #000000);
    padding: 3.6em 2.9em 3.8em;
    overflow: hidden;
}
.widget-form.template-6 .widget-item:before{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    transform: translate(0%, 50%);
    width: 50%;
    max-width: 320px;
    aspect-ratio: 4 / 2;
    border-radius: 50%;
    background-color: var(--form-additional-color, transparent);
    filter: blur(90px);
    pointer-events: none;
}
.widget-form.template-6 .widget-item-wrapper{
    position: relative;
    z-index: 1;
    flex: 1;
    max-width: 50%;
}
.widget-form.template-6 .widget-item:has(.widget-picture){
    max-width: calc(50% - 20px);
    flex: 0 0 calc(50% - 20px);
}
.widget-form.template-6 .widget-item-name{
    font-size: 2.4em;
    font-weight: 700;
    line-height: 116%;
    color: #ffffff;
    text-wrap-style: balance;
    text-wrap: balance;
}
.widget-form.template-6 .widget-item-description{
    font-size: .8em;
    font-weight: 400;
    line-height: 126%;
    color: #ffffff;
    margin-top: 1.45em;
}
.widget-form.template-6 .widget-item-description span.special{
    font-weight: 500;
    color: var(--main-color);
}
.widget-form.template-6 .widget-item-button{
    display: inline-block;
    font-size: .85em;
    font-weight: 500;
    line-height: 1;
    color: var(--main-color);
    text-transform: uppercase;
    background-color: #FFFFFF;
    white-space: nowrap;
    text-decoration: none;
    padding: 1em 2em;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 2em;
    border: none;
    outline: none;
    user-select: none;

    transition: background-color .2s ease-out, color .2s ease-out;
}
.widget-form.template-6 .widget-item-button:hover,
.widget-form.template-6 .widget-item-button:focus{
    background-color: #cccccc;
}
.widget-form.template-6 .widget-item-picture{
    display: flex;
    position: absolute;
    bottom: 0;
    right: 0;
    height: 100%;
}
.widget-form.template-6 .widget-item-picture img{
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right bottom;
    pointer-events: none;
    user-select: none;
}
@media all and (max-width: 1240px) {
    .widget-form.template-6 .widget-item-name br{
        display: none;
    }
    .widget-form.template-6 .widget-item-description br{
        display: none;
    }
    .widget-form.template-6 .widget-item-picture{
        opacity: .3;
    }
    .widget-form.template-6 .widget-item-description{
        font-size: 1em;
    }
}
@media all and (max-width: 800px) {
    .widget-form.template-6{
        font-size: clamp(16px, 2.8vw, 18px);
    }
    .widget-form.template-6 .widget-item{
        padding: 60px 40px;
        gap: 50px 30px;
    }
    .widget-form.template-6 .widget-item-name{
        font-size: 1.6em;
        line-height: 124%;
        font-weight: 600;
    }
    .widget-form.template-6 .widget-item-description {
        font-weight: 400;
        line-height: 124%;
        margin-top: .875em;
    }
    .widget-form.template-6 .widget-item-button{
        font-size: .9375em;
        margin-top: 1.715em;
    }
    .widget-form.template-6 .widget-item {
        justify-content: flex-start;
        flex-direction: column;
        gap: 0;
        padding: 50px 28px;
        width: calc(100% + 32px);
        margin: 0 -16px;
        border-radius: 0;
    }
    .widget-form.template-6 .widget-item-wrapper{
        max-width: 100%;
        flex: 0 0 100%;
    }
    .widget-form.template-6 .widget-item-picture{
        max-width: 100%;
        flex: 0 0 100%;
        margin: 0 auto -50px;
        position: relative;
        opacity: 1;
    }
    .widget-form.template-6 .widget-item-picture img{
        object-position: bottom center;
    }
    .widget-form.template-6 .widget-item:before{
        display: none;
    }
}
@media all and (max-width: 600px) {
    .widget-form.template-6 .widget-item{
        gap: 20px;
    }
    .widget-form.template-6 .widget-item-picture {
        max-width: calc(100% + 56px);
        flex: 0 0 calc(100% + 56px);
        margin: 0 -28px -50px;
        position: relative;
        opacity: 1;
        aspect-ratio: 10 / 8;
    }
}