.widget-forms.template-4{
    position: relative;
    overflow: hidden;
    font-size: clamp(16px, 1.7vw, 20px);
}
.widget-forms.template-4 .widget-header{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.widget-forms.template-4 .widget-header .widget-title{
    flex: 1;
    color: #FFF;
    font-size: 2.2em;
    font-weight: 700;
    line-height: 1.3;
    text-transform: uppercase;
}
.widget-forms.template-4 .widget-header .widget-description{
    color: #FFF;
    font-size: 1em;
    font-weight: 400;
    line-height: 1.4;
    max-width: 1150px;
}
.widget-forms.template-4 .widget-header .widget-buttons{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: .8em;
}
.widget-forms.template-4 .widget-header .widget-button{
    display: inline-block;
    color: var(--main-color);
    font-size: .8em;
    font-weight: 500;
    line-height: 1.3;
    text-transform: uppercase;
    text-align: center;
    background-color: #ffffff;
    border: 1px solid #ffffff;
    padding: 1.1em 1.9em;
    cursor: pointer;
    text-decoration: none;
    user-select: none;
    border-radius: 4px;

    transition: background-color .2s ease-out, color .2s ease-out, border-color .2s ease-out;
}
.widget-forms.template-4 .widget-header .widget-button:nth-child(2n){
    color: #ffffff;
    background-color: transparent;
}
.widget-forms.template-4 .widget-header .widget-button:hover{
    background-color: #cccccc;
    border-color: #cccccc;
}
.widget-forms.template-4 .widget-header .widget-button:nth-child(2n):hover{
    color: var(--main-color);
}
.widget-forms.template-4 .widget-header .widget-title + *{
    margin-top: 1.2em;
}
.widget-forms.template-4 .widget-header .widget-description + *{
    margin-top: 2.3em;
}
@media all and (max-width: 800px) {
    .widget-forms.template-4 .widget-header .widget-title{
        font-size: 2.125em;
        line-height: 1.2;
    }
    .widget-forms.template-4 .widget-header .widget-title + *{
        margin-top: 1.555555em;
    }
    .widget-forms.template-4 .widget-header .widget-description + * {
        margin-top: 3em;
    }
    .widget-forms.template-4 .widget-header .widget-description{
        font-size: 1.125em;
    }
    .widget-forms.template-4 .widget-header .widget-button{
        font-size: 1em;
        padding: 1.1em 1.6em;
    }
}
@media all and (max-width: 600px) {
    .widget-forms.template-4 .widget-header{
        align-items: flex-start;
        text-align: left;
    }
    .widget-forms.template-4 .widget-header .widget-buttons{
        justify-content: flex-start;
    }
    .widget-forms.template-4 .widget-header .widget-description{
        line-height: 1.3;
    }
}