.widget-form.template-9{
    position: relative;
    overflow: hidden;
    font-size: clamp(16px, 1.8vw, 20px);
}
.widget-form.template-9 .widget-item{
    position: relative;
    display: flex;
    justify-content: space-between;
    gap: 2em;
    border-radius: 4px;
    background: var(--form-background);
    padding: 2.4em 3em;
    overflow: hidden;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.widget-form.template-9 .widget-item:before{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    transform: translate(0%, 50%);
    width: 50%;
    max-width: 380px;
    aspect-ratio: 4 / 2;
    border-radius: 50%;
    background-color: var(--form-additional-color, #000000);
    filter: blur(100px);
    pointer-events: none;
}
.widget-form.template-9 .widget-item-wrapper{
    position: relative;
    flex: 1;
    padding-top: 1.6em;
}
.widget-form.template-9 .widget-item:has(.widget-picture){
    max-width: calc(50% - 20px);
    flex: 0 0 calc(50% - 20px);
}
.widget-form.template-9 .widget-item-name{
    font-size: 2em;
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
    text-wrap-style: balance;
    text-wrap: balance;
}
.widget-form.template-9 .widget-item-description{
    font-size: 1em;
    font-weight: 500;
    line-height: 130%;
    color: #ffffff;
    margin-top: 1.15em;
}
.widget-form.template-9 .widget-item-description span.special{
    font-weight: 500;
    color: var(--main-color);
}
.widget-form.template-9 .widget-item-description ul{
    padding-left: 26px;
    list-style: disc;
}
.widget-form.template-9 .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: 1.118em 2.236em;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 3.45em;
    user-select: none;

    transition: background-color .2s ease-out;
}
.widget-form.template-9 .widget-item-button:hover,
.widget-form.template-9 .widget-item-button:focus{
    background-color: #cccccc;
}
.widget-form.template-9 .widget-item-picture{
    display: flex;
    position: relative;
    max-width: 56%;
    margin-bottom: -2.4em;
    margin-right: -.6em;
}
.widget-form.template-9 .widget-item-picture:before{
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    aspect-ratio: 4 / 4;
    border-radius: 50%;
    opacity: 1;
    background-color: var(--form-additional-color, transparent);
    filter: blur(100px);
    pointer-events: none;
}
.widget-form.template-9 .widget-item-picture img{
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center bottom;
    pointer-events: none;
    user-select: none;
}

.widget-form.template-9[data-scheme='light'] .widget-item-name,
.widget-form.template-9[data-scheme='light'] .widget-item-description,
.widget-form.template-9[data-scheme='light'] .widget-item-button{
    color: #000000;
}

@media all and (max-width: 1240px) {
    .widget-form.template-9 .widget-item-name br{
        display: none;
    }
    .widget-form.template-9 .widget-item-picture{
        max-width: 50%;
    }
    .widget-form.template-9 .widget-item-name{
        font-size: 1.8em;
    }
}
@media all and (max-width: 1000px) {

}
@media all and (max-width: 800px) {
    .widget-form.template-9{
        font-size: clamp(16px, 2.8vw, 18px);
    }
    .widget-form.template-9 .widget-item-wrapper{
        padding-top: 0;
    }
    .widget-form.template-9 .widget-item{
        padding: 3em 2em;
    }
    .widget-form.template-9 .widget-item-picture{
        margin-bottom: -3em;
    }
    .widget-form.template-9 .widget-item-name{
        font-size: 1.4em;
        line-height: 124%;
        font-weight: 600;
    }
    .widget-form.template-9 .widget-item-description {
        font-weight: 400;
        line-height: 124%;
        margin-top: .9375em;
    }
    .widget-form.template-9 .widget-item-button{
        font-size: .875em;
        margin-top: 1.715em;
        padding: 16px 32px;
    }
}
@media all and (max-width: 720px) {
    .widget-form.template-9 .widget-item {
        justify-content: flex-start;
        flex-direction: column;
        gap: 2em;
        padding: 2.5em 1em;
        width: calc(100% + 32px);
        margin: 0 -16px;
        border-radius: 0;
    }
    .widget-form.template-9 .widget-item-picture{
        max-width: 100%;
        flex: 0 0 100%;
        margin-bottom: -2.5em;
    }
    .widget-form.template-9 .widget-item:before{
        width: 100%;
        max-width: 100%;
    }
    .widget-form.template-9 .widget-item-picture:before{
        display: none;
    }
    .widget-form.template-9 .widget-item-name {
        font-size: 1.5em;
    }
}