.widget-form.template-5{
    position: relative;
    overflow: hidden;
    font-size: clamp(16px, 1.8vw, 20px);
}
.widget-form.template-5 .widget-item{
    position: relative;
    display: flex;
    justify-content: space-between;
    gap: 60px;
    border-radius: 4px;
    background-color: var(--form-background-color, #000000);
    padding: 3.7em 4em 4.4em;
    overflow: hidden;
}
.widget-form.template-5 .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-5 .widget-item-wrapper{
    position: relative;
    z-index: 1;
    flex: 1;
    max-width: 65%;
}
.widget-form.template-5 .widget-item:has(.widget-picture){
    max-width: calc(50% - 20px);
    flex: 0 0 calc(50% - 20px);
}
.widget-form.template-5 .widget-item-name{
    font-size: 3.2em;
    font-weight: 700;
    line-height: 107%;
    color: #ffffff;
    text-wrap-style: balance;
    text-wrap: balance;
}
.widget-form.template-5 .widget-item-description{
    font-size: 1.2em;
    font-weight: 500;
    line-height: 126%;
    color: #ffffff;
    margin-top: 1.3em;
}
.widget-form.template-5 .widget-item-description span.special{
    font-weight: 500;
    color: var(--main-color);
}
.widget-form.template-5 .widget-item-button{
    display: inline-block;
    font-size: .85em;
    font-weight: 400;
    line-height: 1;
    color: #ffffff;
    text-transform: uppercase;
    background-color: var(--main-color);
    white-space: nowrap;
    text-decoration: none;
    padding: 19px 34px;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 1.9em;
    border: none;
    outline: none;
    user-select: none;

    transition: background-color .2s ease-out;
}
.widget-form.template-5 .widget-item-button:hover,
.widget-form.template-5 .widget-item-button:focus{
    background-color: var(--dark-main-color);
}
.widget-form.template-5 .widget-item-picture{
    display: flex;
    top: 50%;
    position: absolute;
    right: 0;
    height: 94%;
    transform: translateY(-50%);
}
.widget-form.template-5 .widget-item-picture:before{
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    aspect-ratio: 4 / 4;
    border-radius: 50%;
    opacity: 1;
    background-color: var(--form-additional-color, #000000);
    filter: blur(80px);
    pointer-events: none;
}
.widget-form.template-5 .widget-item-picture img{
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    pointer-events: none;
    user-select: none;
}
@media all and (max-width: 1240px) {
    .widget-form.template-5 .widget-item{
        padding: 3.7em 3.2em 4.4em;
    }
}
@media all and (max-width: 1000px) {
    .widget-form.template-5 .widget-item{
        gap: 40px;
    }
    .widget-form.template-5 .widget-item-wrapper{
        max-width: 50%;
    }
    .widget-form.template-5 .widget-item-name br{
        display: none;
    }
    .widget-form.template-5 .widget-item-description br{
        display: none;
    }

    .widget-form.template-5 .widget-item-picture{
        max-width: 50%;
    }
    .widget-form.template-5 .widget-item-description,
    .widget-form.template-5 .widget-item-button{
        font-size: 1em;
    }
}
@media all and (max-width: 800px) {
    .widget-form.template-5{
        font-size: clamp(16px, 2.8vw, 18px);
    }
    .widget-form.template-5 .widget-item{
        padding: 60px 40px;
        gap: 50px 30px;
    }
    .widget-form.template-5 .widget-item-name{
        font-size: 2em;
        font-weight: 600;
    }
    .widget-form.template-5 .widget-item-description {
        font-weight: 400;
        margin-top: .9375em;
    }
    .widget-form.template-5 .widget-item-button{
        font-size: .875em;
        margin-top: 1.715em;
        padding: 16px 32px;
    }
}
@media all and (max-width: 720px) {
    .widget-form.template-5 .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-5 .widget-item-wrapper{
        max-width: 100%;
        flex: 0 0 100%;
    }
    .widget-form.template-5 .widget-item-picture{
        top: 0;
        transform: none;
        max-width: 80%;
        position: relative;
        margin: 0 auto;
    }
    .widget-form.template-5 .widget-item:before{
        display: none;
    }
}
@media all and (max-width: 600px) {
    .widget-form.template-5 .widget-item{
        gap: 20px;
    }
    .widget-form.template-5 .widget-item-name {
        font-size: 1.75em;
    }
    .widget-form.template-5 .widget-item-picture{
        max-width: 100%;
    }
}