:root {
    --white: #F1F2ED;
    --red: #ffb3b3;
    --silver: #ACACAC;
    --silver-light: #F9F9F9;
    --green: #008B27;
    --orange: #FB8F39;
    --blue: #1175E4;
    --black: #1F1E24;
    --error: var(--red);
    --gold: #FFE554;
    --premium: var(--black);

    --bg-body: var(--black);
    --bg-header:var(--black);
    --bg-footer: var(--white);
    --bg-form-el: var(--white);

    --color-menu-header: var(--white);
    --color-button-premium: var(--white);
    --color-placeholder-form-el: var(--silver);
    --color-form-el: var(--black);
    --color-text-base: var(--white);
    --e-global-color-text: var(--white) ;

    --height-header: 90px;
    --height-form-el: 54px;
    --height-form-button: 45px;

    --border-radius-form-el: 10px;
    --border-radius-btn-el: 10px;

    --container-max-width-mvc: 1360px;
    --content-width-mvc: min(100%, var(--container-max-width, 1360px));

    --gap-form-field: 24px;
    --border-color-form-el: var(--white);
    --padding-left-form-element: 20px;
    --margin-bottom-label-form: 8px;

    --padding-container: 10px;

    --text-size-content-small: 14px;
    --text-size-content-base: 18px;
    --text-size-phone: 16px;
    --text-size-menu: 14px;
    --text-size-btn: 16px;

    --line-height-base: 1.22;
}
@media screen and (min-width: 768px){
    :root {
        --height-header: 55px;
        --height-form-button: 55px;
        --text-size-btn: 20px;
    }
}

@media screen and (min-width: 1200px){
    :root {
        --height-header: 65px;
        --padding-container: 20px;
    }
}
@media screen and (min-width: 1440px){
    :root {
        --height-header: 99px;
    }
}
body { margin: 0px; padding: 0px; font-family: "Montserrat", sans-serif;  background-color: var(--bg-body); height: 100%; font-size: var(--color-text-base); -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; color: var(--color-text-base); line-height: var(--line-height-base); }
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video { margin: 0; padding: 0; border: 0; font-size: 100%; }
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, main { display: block; }
blockquote, q { quotes: none; }
blockquote:before, blockquote:after, q:before, q:after { content: ''; content: none; }
table { border-collapse: collapse; border-width: 0px; padding: 0px; margin: 0px; }
html { height: 100%; -webkit-text-size-adjust: none; -ms-text-size-adjust: none; }
input, textarea, select, button { font-family:  "Montserrat", sans-serif; }
input, textarea { color: #000; font-family:  "Montserrat", sans-serif; outline: none; border-radius: 0; -moz-border-radius: 0; -webkit-border-radius: 0; -webkit-appearance: none; }
input[type="button"], input[type="submit"], button { cursor: pointer; }
td { margin: 0px; padding: 0px; }
form { padding: 0px; margin: 0px; }
a { color: var(--white); -webkit-transition: all 0.3s ease-in; transition: all 0.3s ease-in; text-decoration: none;   }
a, span, div, button { outline: none !important; }
input[type=submit], input[type=button], button { -webkit-appearance: none; outline: none; }
* { box-sizing: border-box; -webkit-tap-highlight-color: rgba(0, 0, 0, 0); outline: none; }
*:before, *:after { box-sizing: border-box; }
strong { font-weight: 700; }
img, svg { max-width: 100%;  vertical-align: top}
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus
input:-webkit-autofill,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
    -webkit-text-fill-color: #ссс;
    -webkit-box-shadow: 0 0 0px 1000px transparent inset;
    transition: background-color 5000s ease-in-out 0s;
    background: -webkit-linear-gradient(top,  rgba(255,255,255,0) 0%,rgba(0,174,255,0.04) 50%,rgba(255,255,255,0) 51%,rgba(0,174,255,0.03) 100%);
}
p {
}
ul, ol {
    margin-left: 30px;
}
.row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
*, *:after, *:before {
    box-sizing: border-box;
}
h1, h2, h3, h4, h5, h6 {
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}
/* desktop: >= 1200, tablet: >= 768, mobile < 768*/

@media screen and (max-width: 767px) {
    .mobile_hide {
        display: none;
    }
}

@media screen and (min-width: 768px) and (max-width: 1279px) {
    .tablet_hide {
        display: none;
    }
}

@media screen and (min-width: 1280px) and (max-width: 1439px) {
    .notebook_hide {
        display: none;
    }
}

@media screen and (min-width: 1440px) {
    .desktop_hide {
        display: none;
    }
}

.main-wrapper {
    overflow: hidden;
}

.container {
    width: var(--content-width-mvc);
    max-width: var(--container-max-width-mvc);
    padding: 0px var(--padding-container) !important;
    margin: 0px auto;
}
.e-con {
    --container-max-width: var(--container-max-width-mvc);
    --content-width: min(100%, var(--container-max-width-mvc, 1440px));
}
@media screen and (min-width: 1200px){
    .e-con-inner {
        padding: 0px var(--padding-container)  ;
    }
}
/*
.e-con .e-con-inner {
    padding-left: var(--padding-container);
    padding-right: var(--padding-container);
}
*/
.e-con-inner .container {
    padding-left: 0px;
    padding-right: 0px;
}

/*================STYLES CONTENT==================*/
.h1 {
    font-size: 26px;
    font-weight: 700;
}
.text {
    font-size: 16px;
    font-weight: 400;
}
.content h1 {
    font-size: 24px;
    font-weight: 700;
    margin-top: 30px;
}
.content h2 {
    font-size: 20px;
    font-weight: 700;
    margin-top: 30px;
}
.content p {
    font-size: 18px;
    font-weight: 400;
    margin-top: 1em;
}
@media screen and (min-width: 768px){
    .h1 {
        font-size: 48px;
    }
    .text {
        font-size: 20px;
    }
    .content h1 {
        font-size: 36px;
    }
}
@media screen and (min-width: 1200px) {
    .content h1 {
        font-size: 40px;
        margin-top: 50px;
    }
    .content h2 {
        font-size: 24px;
        margin-top: 50px;
    }
    .content p {
        font-size: 20px;
    }
}
/*============END STYLES CONTENT==================*/

/*================HEADER==================*/

@media screen and (max-width: 420px){
    #wpadminbar {
        overflow: hidden;
        display: none;
    }
    html {
        margin-top: 0px !important;
    }
}
.header {
    background-color: var(--bg-header);
    padding: 10px 0px;
    height: var(--height-header);
    display: flex;
    align-items: center;
}
.header__row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 0px;
}
.header__logo-col {
    width: 50%;
}
.header__phone-col {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.header__menu {
    display: flex;
    list-style: none;
    margin: 0px;
    align-items: center;
    justify-content: center;
    gap: 30px;
    font-weight: 600;
}
.header__menu > li {
    transform: translateY(3px);
    font-size: var(--text-size-menu);
}
.header__menu-col {
    width: 100%;
}
.h-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.h-menu-a {
    text-decoration: none;
    color: var(--color-menu-header);
    transition: opacity 0.3s ease-out;
    border-bottom: 0px solid var(--color-menu-header);
    opacity: 1;
}
.h-menu-a:hover {
    border-bottom: 1px solid var(--color-menu-header);
    opacity: .8;
}
.header__logo-img {
    height: 28px;
}
.header__bars {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    width: 33px;
    height: 33px;
    border-radius: 50%;
    border: 1px solid #fff;
    padding: 0px 5px;
}
.header__bars__line {
    height: 2px;
    width: 100%;
    border-radius: 2px;
    background: #fff;
    display: block;
}
.header__phone-number {
    font-size: var(--text-size-phone);
    text-decoration: none;
    font-weight: 600;
}
@media screen and (min-width: 768px){
    .h-menu {
        flex-direction: row;
        align-items: center;
    }
    .header__logo-img {
        height: 35px;
    }
    .header__row {
        flex-wrap: nowrap;
    }
    .header__logo-col {
        order: 1;
    }
    .header__phone-col {
        order: 3;
    }
    .header__menu-col {
        order: 2;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .header__menu {
        gap: 50px;
    }
    .header__menu > li {
        transform: translateY(0px);
    }

}

@media screen and (min-width: 1200px){

}
/*================HEADER END===============*/


/*================FOOTER==================*/
.footer {
    background-color: var(--bg-footer);
    padding: 30px 0px;
    color: var(--white);
}
.footer__container {
    display: flex;
    flex-direction: column;
    gap: 17px;
}
.footer__logos {
    display: flex;
    gap: 40px;
    align-items: center;
    justify-content: center;
}
.footer__description {
    color: var(--black);
    font-size: var(--text-size-content-small);
}
.footer__logo__ortotis {
    height: 49px;
}
.footer__logo {
    height: 73px;
}
.footer__description p {
    margin-top: 1em;
}

@media screen and (min-width: 768px){
    .footer__logos {
        gap: 50px;
    }
    .footer__logo__ortotis {
        height: 59px;
    }
    .footer__logo {
        height: 89px;
    }
}
@media screen and (min-width: 1200px){
    .footer {
        padding: 17px 0px 31px;
    }
    .footer__container {
        flex-direction: row-reverse;
        justify-content: space-between;
    }
    .footer__description {
        width: 736px;
    }
}

/*================FOOTER END==============*/


/*===============FORM=====================*/

.form {
    background: #FFF;
    margin: 0 auto;
    width: 482px;
    height: auto;
    -webkit-box-shadow: 0px 1px 1px 0px rgba(185, 184, 184, 0.75);
    -moz-box-shadow: 0px 1px 1px 0px rgba(185, 184, 184, 0.75);
    box-shadow: 0px 1px 1px 0px rgba(185, 184, 184, 0.75);
    border-radius: 30px;
}

.form__title {
    margin: 0 0 0px;
    font-size: 19px;
    font-weight: 600;
    color: #000;
    line-height: 1.2;
    text-align: center;
}
.form__container {
    padding: 21px 15px 15px;
}
.form__footer {
    padding: 40px 15px;
    border-top: 1px solid var(--silver);
}
.form__footer_row {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    justify-content: center;
}


.form__field-set {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}
.form__field-set p {
    margin: 0px;
}
.form__field-line {
    display: flex;
    flex-direction: row;
    gap: 20px;
}
.form__field-row {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.form__field-label {
    font-size: 16px;
    color: var(--white);
}
.form__control {
    padding: 9px 9px;
    width: 100%;
    height: 40px;
    border: 1px solid var(--bg-form-el);
    font-size: 16px;
    font-weight: 400;
    color: var(--color-form-el);
    line-height: normal;
    background-color: var(--bg-form-el);
    border-radius: var(--border-radius-form-el);
    display: inline-block;
    overflow: hidden;
    margin-top: 8px;
}
.form__control:focus:invalid {
    border-color: var(--red); /* Красная рамка */
    background-color: #ffe6e6; /* Светло-красный фон */
}
.form__control_textarea {
    height: auto;
}
.form__control_button, .wp-block-button__link {
    background: var(--premium);
    border: 0px;
    border-color: var(--premium);
    color: var(--color-button-premium);
    border-radius: var(--border-radius-btn-el);
    text-align: center;
    text-decoration: none;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0px var(--padding-container);
    height: var(--height-form-button);
    font-size: var(--text-size-btn);
}
.form-privacy p {
    font-size: 14px;
    text-align: center;
    margin-top: 6px;
}
.wp-block-button__link {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    background-color: #0EBDBA;
    border-radius: 42px 42px 42px 42px;
    padding: 25px 50px 25px 50px;
    color: #fff;
}
.form__control_button_silver {
    background: var(--silver);
    border-color: var(--silver);
    color: var(--black);
}
.form__control_button_red {
    background: var(--red);
    border-color: var(--red);
    color: var(--white);
}
.is-invalid {
    border-color: var(--error);
}
.invalid-feedback {
    color: var(--error);
    margin-top: 4px;
    display: block;
    font-size: 12px;
}
.error-wrap {
    color: var(--error);
}


.form__file-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4px;
}
.form__control_file-preview {
    display: flex;
    width: 50px;
    align-items: center;
    justify-content: center;
    height: 44px;
    overflow: hidden;
}
.form__control_file {
    background: var(--bg-form-el);
    border-radius: var(--border-radius-form-el);
    border: 1px solid var(--border-color-form-el);
    width: 100%;
    padding: 0px 0px 0px var(--padding-left-form-element);
    display: flex;
    align-items: center;
    position: relative;
    justify-content: space-between;
    cursor: pointer;

}
.form__control_file input {
    opacity: 0;
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    cursor: pointer;
}
.form__control_file-btn {
    border-left: 1px solid var(--border-color-form-el);
    padding: 0px 10px;
    background: #DADADB;
    cursor: pointer;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    height: 100%;
    align-items: center;
    justify-content: center;
    display: flex;
}
.form__control_file-placeholder {
    max-width: 70%;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.form__control_file .invalid-feedback {
    position: absolute;
}
.form__control_file-link {
    text-decoration: none;
    color: var(--premium);
    font-size: 14px;
}

.form__control_select {
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='7' viewBox='0 0 10 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M9.53033 0.96967C9.82322 1.26256 9.82322 1.73744 9.53033 2.03033L5.53033 6.03033C5.23744 6.32322 4.76256 6.32322 4.46967 6.03033L0.46967 2.03033C0.176777 1.73744 0.176777 1.26256 0.46967 0.96967C0.762563 0.676777 1.23744 0.676777 1.53033 0.96967L5 4.43934L8.46967 0.96967C8.76256 0.676777 9.23744 0.676777 9.53033 0.96967Z' fill='black'/%3E%3C/svg%3E%0A");
    background-repeat: no-repeat;
    background-position: calc(100% - 20px) center;
    padding-right: 30px;
}
.form__control_select::-ms-expand {
    display: none;
}
select option[disabled][hidden] {
    display: block; /* Отображение в блоке */
    color: #999; /* Цвет текста */
    background-color: #f0f0f0; /* Цвет фона */
}

.form__loading {
    position: relative;
    overflow: hidden;
}
.form__loading::before {
    filter: blur(5px);
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height:  100%;
    background: rgba(255,255,255,0.5);
}

.form__loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--premium), transparent);
    animation: loading 1s infinite;
    filter: none;
}

.form__star-rating {
    direction: rtl;
    display: flex;
    align-items: center;
    justify-content: center;
}
.form__star {
    background-image: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.87552 0.367188L4.11881 3.72429L0 5.24903L2.41519 8.84852L2.62616 13.1479L6.87552 12.0155L11.1248 13.1479L11.3358 8.84852L13.7509 5.24903L9.63213 3.72429L6.87552 0.367188Z' fill='%23B5B5B5'/%3E%3C/svg%3E%0A");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    display: inline-block;
    background-size: cover;
}

.form__star-radio {
    display: none;
}

.form__star-radio:checked ~ label.form__star,
.form__star-radio:checked ~ label.form__star ~ label.form__star {
    background-image: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.87552 0.367188L4.11881 3.72429L0 5.24903L2.41519 8.84852L2.62616 13.1479L6.87552 12.0155L11.1248 13.1479L11.3358 8.84852L13.7509 5.24903L9.63213 3.72429L6.87552 0.367188Z' fill='%233812AA'/%3E%3C/svg%3E%0A");

}
@keyframes loading {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

@media screen and (min-width: 768px) {

    .form__control {
        height: 54px;
        border-radius: 14px;
        margin-top: 6px;
    }
    .form__field-set {
        gap: 18px;
    }
    .form__control_textarea {
        height: auto;
    }
}
@media screen and (min-width: 1280px) {
    .box-field-avatar {
        flex-direction: column;
    }
    .form {
        border-radius: 120px;
        padding: 50px 100px;
    }
    .form__field-label {
        font-size: 20px;
    }
    .form__control {
        font-size: 17px;
        padding-left: 20px;
    }
    .form__footer_row {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 40px;
    }
    .form__field-set {
        margin-top: 40px;
        gap: 20px;
    }

    .form__container {
        max-width: 920px;
        margin-left: auto;
        margin-right: auto;
        padding-bottom: 40px;
    }
    .form__title {
        font-size: 24px;
    }

}

@media screen and (min-width: 1440px) {
    .form__field-label {
        font-size: 16px;
    }
}

.wpcf7-spinner {
    position: absolute;
}
.wpcf7-not-valid-tip {
    color: var(--error);
    padding-top: 5px;
    display: none;
}
.wpcf7-not-valid {
    background-color: var(--error);
}
.wpcf7-response-output {
    padding: 0px !important;
    margin: 10px 0px 0px !important;
    border: 0px !important;
    font-size: 14px;
    text-align: center;
}
.invalid .wpcf7-response-output {
    color: var(--error);
}
/*==============END FORM=====================*/

/*==================PAGE=====================*/

.page__content {
    min-height: calc(100vh - var(--height-header));
}
.page__content__bottom-padding {
    padding-bottom: 90px;
}
@media screen and (min-width: 1200px){
    .page__content__bottom-padding {
        padding-bottom: 120px;
    }
}
/*==============END PAGE=====================*/


/*=============POPUP=========================*/
.mvc-popup-content {
    padding: 20px 0px;
}
/*===========END POPUP=======================*/