.sts_footer_form_sect {
    padding: 0;
    background-color: #000000;
    color: #ffffff;
}
.sts_footer_form_sect .container {
    display: flex;
    flex-direction: column;
}
.sts_footer_form_sect .picture {
    order: 1;
    margin: 0 calc(50% - 50vw);
    padding: 0 calc(50vw - 50%);
    box-sizing: border-box;
    background-size: cover;
    background-position: center;
    background-image: url(../../img/footer-form-sect/picture.png);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 17.75em;
    position: relative;
    z-index: 1;
}
.sts_footer_form_sect .picture:before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.59) 0%, rgba(0, 0, 0, 0.59) 100%);
    z-index: -1;
}
.sts_footer_form_sect .logo {
    max-width: 100%;
}









.sts_footer_form_sect .form {
    margin: 0 calc(50% - 50vw);
    padding: 6.375em calc(50vw - 50%);
    background-image: linear-gradient(101deg, #222 6.63%, #434343 98.96%);
    box-sizing: border-box;
    order: 2;
    position: relative;
}
.sts_footer_form_sect .sect_title {
    font-size: 1.5em;
}
.sts_footer_form_sect .sect_title:not(:last-child) {
    margin-bottom: 0.67em;
}
.sts_footer_form_sect .sect_description {
    font-size: 0.875em;
    font-weight: 400;
}
.sts_footer_form_sect .sect_description:not(:last-child) {
    margin-bottom: 1em;
}
.sts_footer_form_sect .fields:not(:last-child) {
    margin-bottom: 3.25em;
}
.sts_footer_form_sect .field {
    display: block;
}
.sts_footer_form_sect .field:not(:last-child) {
    margin-bottom: 1.5em;
}
.sts_footer_form_sect .field_title {
    font-weight: 500;
    display: block;
}
.sts_footer_form_sect .field_title:not(:last-child) {
    margin-bottom: 0.5em;
}
.sts_footer_form_sect .field_text_input {
    font-size: 1.25em;
    box-sizing: border-box;
    font-family: inherit;
    font-weight: 500;
    padding: 0 1em;
    border: 0.125em solid rgba(255, 255, 255, 0.64);
    height: 2.5em;
    border-radius: 0.9em;
    width: 100%;
    background-color: transparent;
    color: #ffffff;
    display: block;
    outline: none;
}
.sts_footer_form_sect .field_text_input:focus {
    border-color: #ffffff;
}
.sts_footer_form_sect .field_text_input::placeholder {
    opacity: 0.5;
    font-size: 0.875em;
    color: #ffffff;
}
.sts_footer_form_sect textarea.field_text_input {
    padding: 1em;
    height: 12em;
}
.sts_footer_form_sect .field_error {
    font-size: 0.875em;
    color: red;
    font-weight: 500;
    margin-top: 0.5em;
    display: none;
}
.sts_footer_form_sect .field.has_error .field_text_input {
    border-color: red;
}
.sts_footer_form_sect .fields_cols:not(:last-child) {
    margin-bottom: 1.5em;
}
.sts_footer_form_sect .fields_col:not(:last-child) {
    margin-bottom: 1.5em;
}
.sts_footer_form_sect .butt {
    width: 100%;
    margin-top: auto;
}
.sts_footer_form_sect .hide_on_mobile {
    display: none;
}
.sts_footer_form_sect .form:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 5;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.5);
    opacity: 0;
    visibility: hidden;
    transition-property: opacity, visibility;
    transition-duration: 0.3s;
}
.sts_footer_form_sect .form.loading:before {
    opacity: 1;
    visibility: visible;
}