    /* services */
.services {
    margin-bottom: 30px;
}
/* services-header */
.services-header {
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    /*background: #b2b4b3;*/
    color: #000;
}
.services-header.w_img { justify-content: space-between; }
.services-header.w_img h2 { padding-right: 15px; }
.services-header.w_img img { width: auto; height: auto; margin-left: auto; max-width: 170px; }
@media (max-width: 768px) {
    .services-header.w_img { justify-content: center; }
    .services-header.w_img h2 { padding-right: 0; }
    .services-header.w_img img { display: none; }
    .topic__heading #pagetitle { display: none; }
}
.services-header__title {
    font-size: 1.867em;
    color: inherit;
    margin: 0;
}
/* services-actions */
.services-actions {
    margin-top: 30px;
    margin-bottom: 30px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}
.services-actions__item {
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    text-align: center;
    background-color: #009997;
    color: #fff;
    justify-content: space-between;
}
.services-actions__item-button {
    border: none;
    padding: 0;
    background: transparent;
    color: inherit;
    cursor: pointer;
    font-family: inherit;
    color: #000;
    font-size: 24px;
    font-weight: bold;
}
a[href^='tel'].services-actions__item-button {
    pointer-events: all;
    cursor: pointer;
}
.services-actions__item-button:hover {
    cursor: pointer;
    opacity: .8;
}
.services-actions__item-descr {
    color: inherit;
    margin-top: auto;
    margin-bottom: 0;
}
/* services-advantages */
.services-advantages {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    height: 220px;
}
.services-advantages__item-icon {
    max-width: 100%;
    height: auto;
}
.services-advantages__item {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    text-align: center;
    background-color: #88e6d5;
    transition: all ease 0.2s;
    cursor: pointer;
    padding: 8px;
}
.services-advantages__item:hover { /*border-color: #fff;*/ box-shadow: 0 10px 20px 0 rgba(0,0,0,.1); -webkit-transform: translateY(-1px); transform: translateY(-1px); background-color: #fff; z-index: 1; }
/* services-content */
.services-content {
    /*background-color: #b2b4b3;*/
    padding: 40px 30px;
    color: #000;
    font-size: 15px;
}
.services-content strong { font-weight: 600; }
/* collapse */
.services-form-wrapper {
    display: none;
}
.services-form-wrapper.is-visible {
    display: grid;
    grid-template-rows: 1fr;
    margin-bottom: 30px;
    transition: all .25s ease-in;
}
.services-form-wrapper > * {
    min-height: 0;
}
/* services-form */
.services-form {
    display: grid;
    gap: 15px;
}
.services-form.services-form textarea,
.services-form.services-form input:not([type="file"]) {
    position: relative;
    display: block;
    max-width: 100%;
    width: 100%;
    padding: 15px 20px;
    background-color: #ebedec !important;
    border: 1px solid #ebedec !important;
    color: #b2b3b3;
    font-size: 18px;
    border-radius: 0;
    min-height: 0;
    height: auto;
}
.services-form textarea::placeholder,
.services-form input::placeholder {
    color: #b2b3b3;
}
.form-control--required.error {
    border-color: #e62222;
    padding-bottom: 10px;
    transition: all .25s ease;
}
.form-control--required.error .error {
    position: absolute;
    margin-bottom: 5px;
    top: 100%;
    left: 0;
    right: auto;
}
.services-form.services-form .uploader {
    background-color: #f8bc89!important;
    display: block;
    padding: 15px 20px;
    color: #fff;
    font-size: 18px;
    line-height: 1.2;
    cursor: pointer;
    border: none;
    margin: 0;
}
.services-form.services-form .uploader .filename {
    font-size: inherit;
    color: inherit;
    line-height: 1.2;
}
.services-form.services-form .uploader:before {
    display: none;
}
.services-form.services-form .uploader:hover {
    border: none;
    background: #f8bc89;
}
.services-form.services-form .resetfile:before {
    display: none;
}
.services-form .form-control--required {
    position: relative;
    display: inline-block;
}
.services-form .form-control--required::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 8px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #e81e24;
    z-index: 1;
}
.services-form__button {
    display: block;
    width: 100%;
    border: none;
    padding: 0;
    background-color: #ed6b1e;
    color: inherit;
    cursor: pointer;
    font-family: inherit;
    color: #fff;
    text-align: center;
    font-size: 18px;
    padding: 15px;
}
.services-form .form_footer__bottom {
    display: flex;
    flex-direction: column;
    margin: 0;
    align-items: flex-end;
    gap: 15px;
}
.services-form  .line-block__item {
    width: 100%;
    padding: 0;
}
.services-form .required-fields-note {
    font-size: 18px;
    color: #000;
}
.services-form .required-fields-note .star {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #e81e24;
    transform: translate(-2px);
}
@media (max-width: 768px) {
    .services {
        gap: 15px;
    }
    .services-actions {
        margin-top: 15px;
        margin-bottom: 15px;
        grid-template-columns: repeat(2, 1fr);
    }
    .services-actions__item {
        padding: 15px;
        gap: 15px;
    }
    .services-actions__item-button {
        font-size: 18px;
    }
    .services-advantages {
        margin-top: 15px;
        grid-template-columns: repeat(2, 1fr);
    }
}
.services-form-wrapper .closeTabForm {
    display: flex;
    justify-content: flex-end;
}
a.services-actions__item:hover {
    color: #fff;
}
.visible_xs {
    display: none;
}
@media (max-width: 480px) {
    .visible_xs {
        display: flex;
    }
    .visible_xl {
        display: none;
    }
}

@media (max-width: 768px) {
    .services-header.w_img h2 {

        font-size: 40px !important;
    }
}

@media screen and (max-width: 991px), projection and (max-width: 991px), tv and (max-width: 991px), handheld and (max-width: 991px) {
    body .wrapper1.mfixed_Y {
        padding-top: 34px;
    }
}

 .services-advantages {
     margin-bottom: 50px;
 }
.services-advantages__item {
    background-color: unset;
}
.services-advantages__item--img img {
    max-height: 125px;
}
.services-advantages__item--desc {
    font-family: 'Futura PT';
    font-size: 16px;
}
.services-advantages__item--title {
    text-transform: uppercase;
    font-weight: bold;
}
@media (max-width: 768px) {
    .services-advantages {
        margin-top: 22px;
        height: auto;
    }
}

.loadings {
    background: none  !important;
    background-image: none !important;
    color: white !important;
    visibility: visible;
}


.loadings * {
    background: #00999a !important;
    background-image: none !important;
    z-index: 0;
    color: white !important;
    visibility: visible;
}

button.js-interlabs-feedbackform__container-show-button {
    background: none;
    border: none;
    color: white;
    font-weight: 500;
    font-size: clamp(16px, 3vw, 30px) !important;
    text-transform: uppercase;
    color: #fff;
    line-height: 32px;
}

.interlabs-feedbackform__container .js-interlabs-feedbackform__container-show-button, .interlabs-feedbackform__container .js-interlabs-feedbackform__dialog__cancel-button, .interlabs-feedbackform__container .interlabs-feedbackform__container-succsess__close {
    width: 144px;
    height: 36px;
    background: none;
    border-radius: 2px;
    border: none;
    color: #F2F2F2;
    font-style: normal;
    font-weight: normal;
    line-height: 25px;
    font-size: 14px;
    text-align: center;
    text-transform: uppercase;
}

.interlabs-feedbackform__container .interlabs-feedbackform__container__dialog.modal-mask {
    background: none;
    position: fixed;
}

.interlabs-feedbackform__container .modal-container {
    width: 700px;
    min-height: 500px;
    margin: 0px auto !important;
    padding: 20px 30px !important;
    background-color: #fff;
    border-radius: 2px;
    -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.33);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.33);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    font-family: Helvetica, Arial, sans-serif;
    top: 25px;
}

@media screen and (min-width: 0px) and (max-width: 800px) {
    .interlabs-feedbackform__container .interlabs-feedbackform__container__dialog.modal-mask .modal-container {
        top: 55px;
    }
}


a.link {
    pointer-events: auto;
    cursor: pointer;
    font-weight: 700 !important;
    font-size: clamp(20px, 5vw, 25px) !important;
    color: #00999A !important;
}


.interlabs-feedbackform__container .body .form-group label:nth-child(1) {
    font-size: 18px;
    line-height: 23px;
    margin-top: 20px !important;
}

.interlabs-feedbackform__container .body .form-group textarea {
    height: 90px;
}

.interlabs-feedbackform__container .body .form-group input[type="text"] {
    font-size: 20px;
    border-radius: 5px !important;

}

form label {
    font-size: 16px;
}

.interlabs-feedbackform__container .body .form-group .file a {
    padding: 5px 30px !important;
}

.interlabs-feedbackform__container .body .form-group.agree .c-checkbox {
    padding-left: 1px ! IMPORTANT;
}

.interlabs-feedbackform__container .body .form-group input[type="text"] {
    height: 38px;
}
.abacon {

    font-size: 30px;
}


.modal-container  .interlabs-feedbackform__container .js-interlabs-feedbackform__container-show-button, .interlabs-feedbackform__container .js-interlabs-feedbackform__dialog__cancel-button{
    display: none;
}

.modal-container .interlabs-feedbackform__container .body input[type="submit"], .interlabs-feedbackform__container .body .js-interlabs-feedbackform__dialog__send-button, .interlabs-feedbackform__container .body .interlabs-feedbackform__container-succsess__close {
    width: 271px;
    height: 38px;
    background: #70BB18;
    border-radius: 2px;
    border: none;
    color: #F2F2F2;
    font-style: normal;
    font-weight: normal;
    line-height: 25px;
    font-size: 20px;
    text-align: center;
    border-radius: 5px;
    text-transform: uppercase;
}

div.agree {
    display: inline;
    color: #9E9BAF;
    font-size: 16px !important;
    line-height: 160% !important;
    text-transform: inherit;
    font-family: 'Futura PT';
}

button.modal-default-button.js-interlabs-feedbackform__dialog__send-button {
    margin-top: 10px !important;
}
a.agree {
    display: inline;
    text-decoration: underline;
    color: #9E9BAF;
}



@media screen and (min-width: 0px) and (max-width: 800px) {
    .interlabs-feedbackform__container .interlabs-feedbackform__container__dialog.modal-mask .modal-container {
        top: 55px;
        height: 90%;
    }
    .modal-container .interlabs-feedbackform__container .body input[type="submit"], .interlabs-feedbackform__container .body .js-interlabs-feedbackform__dialog__send-button, .interlabs-feedbackform__container .body .interlabs-feedbackform__container-succsess__close {
        width: 100%;
    }
    .aba {
        display: block;
    }
    .interlabs-feedbackform__container .body .scroll-area {
        padding-right: 0px;
    }
}
.interlabs-feedbackform__container .body .form-group.agree .c-checkbox {
    padding-left: 1px ! IMPORTANT;
    padding-top: 5px !important;
}


.interlabs-feedbackform__container .js-interlabs-feedbackform__container-show-button, .interlabs-feedbackform__container .js-interlabs-feedbackform__dialog__cancel-button, .interlabs-feedbackform__container .interlabs-feedbackform__container-succsess__close {
    top: 18px;
    position: absolute;
}

.green-card-item p {
    align-items: baseline;
}

.interlabs-feedbackform__container .modal-container {
    cursor: default;
}


.interlabs-feedbackform__container .body .form-group input[type="phone"] {
    height: 38px;
    font-size: 20px;
    border-radius: 5px !important;
    color: #595471 !important;
    margin-bottom: 0;
    height: 36px;
    background: #F8FAFC;
    border: 1px solid #D5DADC;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 2px;
    width: 100%;
    margin-bottom: 0;
    height: 36px;
    background: #F8FAFC;
    border: 1px solid #D5DADC;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 2px;
    width: 100%;
}


.file-drop-area {
    position: relative;
    display: flex;
    align-items: center;
    width: 450px;
    max-width: 100%;
    padding: 25px;
    border: 1px dashed rgba(255, 255, 255, 0.4);
    border-radius: 3px;
    transition: 0.2s;
    &.is-active {
        background-color: rgba(255, 255, 255, 0.05);
    }}
.fake-btn {
    flex-shrink: 0;
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    padding: 8px 15px;
    margin-right: 10px;
    font-size: 12px;
    text-transform: uppercase;
}

.file-msg {
    font-size: small;
    font-weight: 300;
    line-height: 1.4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.file-input {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    cursor: pointer;
    opacity: 0;
    &:focus {
        outline: none;
    }
}

.uploader{
    display: none;
}

div#uniform-files {
    display: block;
}

.form-control.file.ALLFILES {
    display: none;
}

.file-input2 {
    display: none;
}
.file-input2.SEND_FILE2 {
    display: block;
}


input.line-white {
    background: white !important;
}

.form-control.text.Vopros1 {
    display: flex;
    max-width: 1200px;
    font-size: 0px;
    margin: 0px;

}

.form-control.text.Vopros2 {
    display: flex;
    max-width: 1200px;
    font-size: 0px;
    margin: 0px;
    background: white;
}
.form-control.text.Vopros3 {
    display: flex;
    max-width: 1200px;
    font-size: 0px;
    margin: 0px;

}
.form-control.text.Vopros4 {
    display: flex;
    max-width: 1200px;
    font-size: 0px;
    margin: 0px;

}




input.Vopros.num {
    width: 40px;
}

input.Vopros.product {
    max-width: 200px;
}

input.Vopros.edizm {
    max-width: 50px;
}

input.Vopros.colich {
    max-width: 40px;
}
input.Vopros.comment {
    max-width: 200px;
}

input.line-white[type="text"] {
    background: white !important;
}

.popup div.form-control label, .form_body div.form-control label {
    font-size: 16px;
    font-weight: 400;
    color: #4d4d4d !important;
}
.form textarea {
    min-height: 100px !important;
    font-size: 20px;
    line-height: 25px;
}
.form-control input[type="text"], .form-control input[type="password"], .form-control input[type="email"], .form-control input[type="tel"], select, textarea, input[type="text"].form-control, input[type="password"].form-control, input[type="email"].form-control, input[type="tel"].form-control {
    font-size: 20px;
    line-height: 25px;
}
span.smetatitle {
    font-size: 18px;
    line-height: 23px;
    font-weight: 450;
    color: #9E9BAF;
}
.popup .form .form_head h2 {
    margin: 0;
    font-size: 30px;
    color: #4d4d4d;
    border-inline-end: 36px;
    opacity: 0.8;
}

input.Vopros[type="text"] {
    border-radius: 0px !important;
    border: 1px solid #59547114   !important;
    margin: 0px !important;
    height: 35px !important;
    font-size: 17px;
    line-height: 20px;
    color: #595471;
}
input.Vopros[type="text"] {
    max-width: 40%;
}
.SMETAONLINE_frame.jqmWindow.popup.jqm-init.scrollblock.show {
    width: 1200px;
}
input.Vopros.comment {
    max-width: 40%;
}
input.Vopros.edizm {
    max-width: 11%;
}
input.Vopros.colich {
    max-width: 11%;
    text-align: center;
}
.form-control.text.Vopros1.title {
    background: rgba(0, 153, 154, 0.2);
    border-radius: 5px 5px 0px 0px;
}

.popup .form-control {
    margin-bottom: 15px;
}

    .form-control input[type="text"], .form-control input[type="password"], .form-control input[type="email"], .form-control input[type="tel"], select, textarea, input[type="text"].form-control, input[type="password"].form-control, input[type="email"].form-control, input[type="tel"].form-control {
        font-size: 16px;
    }

    .popup .form .form_footer {
        padding-left: 30px;
        padding-bottom: 0;
    }

    .form-control input[type] {
        height: 40px;
    }