@font-face {
    font-family: 'MuseoSans';
    font-weight: 900;
    font-style: normal;
    font-display: swap;
    src: url('../fonts/MuseoSansCyrl-900.woff') format('woff'),
        url('../fonts/MuseoSansCyrl-900.ttf') format('truetype');
}
@font-face {
    font-family: 'ProximaNova';
    font-weight: normal;
    font-style: normal;
    font-display: swap;
    src: url('../fonts/ProximaNova-Regular.woff') format('woff'),
        url('../fonts/ProximaNova-Regular.ttf') format('truetype');
}
@font-face {
    font-family: 'ProximaNova';
    font-weight: 600;
    font-style: normal;
    font-display: swap;
    src: url('../fonts/ProximaNova-Semibold.woff') format('woff'),
        url('../fonts/ProximaNova-Semibold.ttf') format('truetype');
}
@font-face {
    font-family: 'ProximaNova';
    font-weight: 700;
    font-style: normal;
    font-display: swap;
    src: url('../fonts/ProximaNova-Bold.woff') format('woff'),
        url('../fonts/ProximaNova-Bold.ttf') format('truetype');
}
@font-face {
    font-family: 'ProximaNova';
    font-weight: 900;
    font-style: normal;
    font-display: swap;
    src: url('../fonts/ProximaNova-Black.woff') format('woff'),
        url('../fonts/ProximaNova-Black.ttf') format('truetype');
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
*:before,
*:after {
    box-sizing: border-box;
}
img {
    border: none;
}
textarea {
    overflow: auto;
}
input,
textarea,
input:active,
textarea:active {
    -webkit-border-radius: 0;
    border-radius: 0;
    outline: none transparent !important;
    box-shadow: none;
    -webkit-appearance: none;
    appearance: none;
    -moz-outline: none !important;
}
input[type=submit],
button[type=submit],
input[type=reset],
button[type=reset] {
    -webkit-border-radius: 0;
    -webkit-appearance: none;
}
:focus {
    outline: none;
}
:hover,
:active {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-touch-callout: none;
}
::-ms-clear {
    display: none;
}
/*---------------
Main styles
---------------*/
:root {
    --bg: #fff;
    --scroll_width: 17px;
    --text_color: #000;
    --font_size: 16px;
    --font_size_title: 31px;
    --font_family: 'ProximaNova', 'Arial', sans-serif;
    --font_family2: 'MuseoSans', 'Arial', sans-serif;
}
.clear {
    clear: both;
}
.left {
    float: left;
}
.right {
    float: right;
}
html {
    height: 100%;
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}
body {
    color: var(--text_color);
    font-family: var(--font_family);
    font-size: var(--font_size);
    height: 100%;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-overflow-scrolling: touch;
    text-rendering: optimizeLegibility;
    text-decoration-skip: objects;
}
body.lock {
    position: fixed;
    overflow: hidden;
    width: 100%;
    height: 100%;
}
.wrap {
    position: relative;
    display: flex;
    overflow: hidden;
    flex-direction: column;
    min-width: 360px;
    min-height: 100%;
}
.main {
    flex: 1 0 auto;
}
.cont {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
}
.cont.padding {
    padding: 0 40px;
}
.compensate-for-scrollbar {
    margin-right: var(--scroll_width) !important;
}
.compensate-for-scrollbar header.fixed {
    padding-right: var(--scroll_width) !important;
}
.lozad {
    transition: .5s linear;
    opacity: 0;
}
.lozad.loaded {
    opacity: 1;
}
.flex {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    align-content: flex-start;
    flex-wrap: wrap;
}
.block {
    margin-bottom: 55px;
}
.block.no_margin {
    margin-bottom: 0 !important;
}
.block.bg {
    padding: 55px 0;
    background: #f6f7f8;
}
.block_head {
    display: flex;
    width: 100%;
    margin-bottom: 30px;
    justify-content: flex-start;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}
.block_head.center {
    text-align: center;
    justify-content: center;
}
.block_head .title {
    font-size: var(--font_size_title);
    font-weight: 600;
    line-height: normal;
}
.block_head .desc {
    line-height: 25px;
    width: 100%;
    max-width: 100%;
    margin-top: 25px;
}
.form {
    --form_border_color: #d3dae7;
    --form_focus_color: #d3dae7;
    --form_error_color: red;
    --form_success_color: green;
    --form_border_radius: 0;
    --form_bg_color: #fff;
    --form_placeholder_color: #626876;
}
.form ::-webkit-input-placeholder {
    color: var(--form_placeholder_color);
}
.form :-moz-placeholder {
    color: var(--form_placeholder_color);
}
.form :-ms-input-placeholder {
    color: var(--form_placeholder_color);
}
.form .line {
    margin-bottom: 16px;
}
.form .field {
    position: relative;
}
.form .field + .field {
    margin-top: 8px;
}
.form .input {
    color: var(--text_color);
    font: 17px var(--font_family);
    display: block;
    width: 100%;
    height: 63px;
    padding: 0 20px;
    transition: .2s linear;
    border: none;
    border-bottom: 1px solid var(--form_border_color);
    border-radius: var(--form_border_radius);
    background: var(--form_bg_color);
}
.form textarea {
    color: var(--text_color);
    font: 17px var(--font_family);
    display: block;
    width: 100%;
    height: 144px;
    padding: 18px 20px;
    resize: none;
    transition: .2s linear;
    border: none;
    border-bottom: 1px solid var(--form_border_color);
    border-radius: var(--form_border_radius);
    background: var(--form_bg_color);
}
.form .input:focus,
.form textarea:focus {
    border-color: var(--form_focus_color);
}
.form .success {
    border-color: var(--form_success_color);
}
.form .error {
    border-color: var(--form_error_color);
}
.form select {
    display: none;
}
.form .nice-select {
    position: relative;
    display: block;
}
.form .nice-select .current {
    color: var(--text_color);
    line-height: 62px;
    position: relative;
    display: block;
    overflow: hidden;
    height: 63px;
    padding: 0 50px 0 20px;
    cursor: pointer;
    transition: .2s linear;
    white-space: nowrap;
    text-overflow: ellipsis;
    border: none;
    border-bottom: 1px solid var(--form_border_color);
    border-radius: var(--form_border_radius);
    background: var(--form_bg_color);
}
.form .nice-select .current:after {
    position: absolute;
    top: 50%;
    right: 20px;
    display: block;
    width: 11px;
    height: 11px;
    margin-top: -8px;
    content: '';
    transform: rotate(-45deg);
    border-bottom: 2px solid var(--text_color);
    border-left: 2px solid var(--text_color);
}
.form .nice-select .list {
    position: absolute;
    z-index: 9;
    top: calc(100% + 30px);
    left: 0;
    visibility: hidden;
    overflow: hidden;
    min-width: 100%;
    padding: 5px 0;
    transition: .2s linear;
    opacity: 0;
    border: none;
    border-bottom: 1px solid var(--form_border_color);
    border-radius: var(--form_border_radius);
    background: var(--form_bg_color);
}
.form .nice-select.open .list {
    top: calc(100% + 1px);
    visibility: visible;
    opacity: 1;
}
.form .nice-select .list .scrollbar {
    overflow: auto;
    max-height: 240px;
}
.form .nice-select .list .list_item {
    padding: 10px 20px;
    cursor: pointer;
    transition: .2s linear;
}
.form .nice-select .list .list_item:empty {
    display: none;
}
.form .nice-select .list .list_item:hover,
.form .nice-select .list .list_item.selected {
    color: #f1063d;
}
.form .error_text {
    color: var(--form_error_color);
    font-size: 14px;
    line-height: 20px;
    margin-top: 5px;
}
.form .exp {
    color: #696969;
    font-size: 12px;
    line-height: 17px;
    margin-top: 25px;
}
.form .exp a {
    color: #144da4;
    text-decoration: none;
}
.form .exp a:hover {
    text-decoration: underline;
}
.form .submit {
    display: flex;
    padding-top: 19px;
    justify-content: flex-start;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}
.form .submit_btn {
    color: #fff;
    font: 700 24px/26px var(--font_family);
    display: inline-block;
    width: 100%;
    min-height: 80px;
    padding: 15px 30px;
    cursor: pointer;
    transition: .2s linear;
    vertical-align: top;
    border: none;
    border-radius: 40px;
    background: #f1063d;
    box-shadow: 9.804px 15.096px 24px 0 rgba(241, 6, 61, .33);
}
.form .submit_btn:hover {
    background: #144da4;
    box-shadow: none;
}
.text_block {
    line-height: 29px;
}
.text_block > :last-child {
    margin-bottom: 0 !important;
}
.text_block > :first-child {
    margin-top: 0 !important;
}
.text_block .big {
    font-size: 20px;
}
.text_block p {
    margin-bottom: 29px;
}
.text_block a {
    color: #144da4;
    transition: .2s linear;
}
.text_block a:hover {
    text-decoration: none;
}
.overlay {
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    display: none;
    width: 100%;
    height: 100vh;
    opacity: .65;
    background: #000;
}
.tab_content {
    visibility: hidden;
    height: 0;
    pointer-events: none;
    opacity: 0;
}
.tab_content.active {
    visibility: visible;
    height: auto;
    transition: opacity .5s linear;
    pointer-events: auto;
    opacity: 1;
}
.mCSB_scrollTools {
    width: 11px;
    opacity: 1;
}
.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar,
.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
    width: 100%;
    border-radius: 6px;
    background: #144da4;
}
.mCSB_scrollTools .mCSB_draggerRail {
    width: 100%;
    border-radius: 6px;
    background: #f6f7f9;
}
.supports_error {
    font-family: 'Arial', sans-serif;
    font-size: 20px;
    line-height: 30px;
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    display: none;
    width: 100%;
    height: 100%;
    padding: 20px;
    text-align: center;
    background: #fff;
    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}
.supports_error.show {
    display: flex;
}
/*---------------
Header
---------------*/
.header_wrap {
    position: absolute;
    z-index: 101;
    top: 0;
    left: 0;
    width: 100%;
}
header {
    position: relative;
    z-index: 99;
    top: 0;
    left: 0;
    width: 100%;
}
header.absolute {
    position: absolute;
}
header > .close {
    position: absolute;
    top: 0;
    left: 100%;
    display: none;
    width: 50px;
    height: 50px;
    padding: 13px;
    cursor: pointer;
    border: none;
    background: none;
    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}
header.show > .close {
    display: flex;
}
header > .close span {
    position: relative;
    display: block;
    width: 100%;
    height: 2px;
    background: #fff;
}
header > .close span:nth-child(1) {
    top: 1px;
    transform: rotate(45deg);
}
header > .close span:nth-child(2) {
    top: -1px;
    transform: rotate(-45deg);
}
header .info {
    padding: 20px 0;
}
header .info .cont.flex {
    justify-content: space-between;
}
header .logo,
header .logo a {
    color: var(--text_color);
    font-family: var(--font_family2);
    font-weight: 900;
    line-height: 27px;
    display: block;
    text-decoration: none;
    letter-spacing: .16em;
    text-transform: uppercase;
}
header .logo span {
    color: #f1063d;
    font-size: 25px;
    display: block;
    letter-spacing: 0;
}
header .menu {
    margin-right: -40px;
    column-gap: 70px;
    column-count: 2;
}
header .menu > * {
    transform: translateZ(0);
    --webkit-column-break-inside: avoid;
    page-break-inside: avoid;
    break-inside: avoid;
}
header .menu > * + * {
    margin-top: 10px;
}
header .menu button {
    color: #144da4;
    font-family: var(--font_family);
    font-size: 17px;
    line-height: 24px;
    position: relative;
    display: inline-block;
    cursor: pointer;
    transition: .2s linear;
    vertical-align: top;
    border: none;
    background: none;
}
header .menu button:hover,
header .menu button.active {
    color: #f1063d;
}
header .time {
    font-size: 15px;
    line-height: 19px;
}
header .time .icon {
    display: inline-block;
    height: 34px;
    margin-bottom: 13px;
    vertical-align: top;
    border-bottom: 2px solid #f1063d;
}
header .time .icon > * {
    display: block;
    width: 21px;
    height: 21px;
    fill: #404147;
}
header .time .fixed_header {
    display: none;
}
header .adres {
    font-size: 15px;
    line-height: 19px;
}
header .adres .icon {
    display: inline-block;
    height: 34px;
    margin-bottom: 13px;
    vertical-align: top;
    border-bottom: 2px solid #f1063d;
}
header .adres .icon > * {
    display: block;
    width: 18px;
    height: 22px;
    fill: #404147;
}
header .phone {
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    align-content: flex-start;
    flex-wrap: wrap;
}
header .phone a {
    color: var(--text_color);
    display: inline-block;
    vertical-align: top;
    white-space: nowrap;
    text-decoration: none;
}
header .phone .icon {
    display: inline-block;
    height: 30px;
    margin-left: 27px;
    vertical-align: top;
    border-bottom: 2px solid #f1063d;
}
header .phone .icon > * {
    display: block;
    width: 17px;
    height: 18px;
    fill: #404147;
}
header .order_link {
    color: #f1063d;
    font-size: 16px;
    font-weight: 700;
    line-height: 19px;
    display: inline-block;
    margin-top: 17px;
    cursor: pointer;
    transition: .2s linear;
    vertical-align: top;
    border-bottom: none;
    background: none;
}
header .order_link span {
    line-height: 16px;
    display: inline-block;
    transition: border-color .2s linear;
    vertical-align: top;
    border-bottom: 1px solid rgba(241, 6, 61, .25);
}
header .order_link span ~ span {
    margin-top: 2px;
}
header .order_link:hover {
    color: #144da4;
}
header .order_link:hover span {
    border-color: transparent;
}
.mob_header {
    position: fixed;
    z-index: 99;
    top: 0;
    left: 0;
    display: none;
    width: 100%;
    padding: 20px 0;
    background: #fff;
    box-shadow: 0 10px 10px 0 rgba(168, 184, 190, .25);
}
.mob_header .cont {
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}
.mob_header .logo {
    margin-right: auto;
}
.mob_header .logo,
.mob_header .logo a {
    color: var(--text_color);
    font-family: var(--font_family2);
    font-size: 14px;
    font-weight: 900;
    line-height: 19px;
    display: block;
    text-decoration: none;
    letter-spacing: .16em;
    text-transform: uppercase;
}
.mob_header .logo span {
    color: #f1063d;
    display: block;
    letter-spacing: .435em;
}
.mob_header .contacts {
    display: flex;
    margin-right: 25px;
    justify-content: flex-start;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}
.mob_header .phone {
    font-size: 18px;
    font-weight: 700;
    line-height: 22px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    align-content: flex-start;
    flex-wrap: wrap;
}
.mob_header .phone a {
    color: var(--text_color);
    display: inline-block;
    vertical-align: top;
    white-space: nowrap;
    text-decoration: none;
}
.mob_header .order_link {
    color: #f1063d;
    font-size: 15px;
    font-weight: 700;
    line-height: 17px;
    display: inline-block;
    margin-left: 30px;
    cursor: pointer;
    transition: .2s linear;
    vertical-align: top;
    border-bottom: none;
    background: none;
}
.mob_header .order_link.mob_order_link {
    display: none;
}
.mob_header .order_link span {
    line-height: 15px;
    display: inline-block;
    transition: border-color .2s linear;
    vertical-align: top;
    border-bottom: 1px solid rgba(241, 6, 61, .25);
}
.mob_header .order_link span ~ span {
    margin-top: 2px;
}
.mob_header .order_link:hover {
    color: #144da4;
}
.mob_header .order_link:hover span {
    border-color: transparent;
}
.mob_header .mob_menu_link {
    display: block;
    width: 50px;
    height: 38px;
    margin-right: -10px;
    padding: 10px;
    cursor: pointer;
    border: none;
    background: none;
}
.mob_header .mob_menu_link span {
    position: relative;
    display: block;
    width: 100%;
    height: 2px;
    transition: .2s linear;
    background: var(--text_color);
}
.mob_header .mob_menu_link span + span {
    margin-top: 6px;
}
header.fixed {
    position: fixed;
    margin: 0;
    -webkit-animation: moveDown .5s;
    animation: moveDown .5s;
    background: #fff;
    box-shadow: 0 6px 32px 0 rgba(25, 83, 253, .15);
}
header.fixed .info {
    padding: 15px 0;
}
header.fixed .info .cont.flex {
    position: relative;
    min-height: 70px;
    padding-right: 235px;
    padding-left: 355px;
    align-items: center;
    align-content: center;
    justify-content: flex-start;
}
header.fixed .logo {
    position: absolute;
    top: 50%;
    left: 40px;
    height: 54px;
    margin-top: -27px;
}
header.fixed .time {
    display: flex;
    margin-left: 40px;
    order: 2;
    justify-content: flex-start;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}
header.fixed .time .icon {
    height: auto;
    margin-right: 10px;
    margin-bottom: 0;
    border: none;
}
header.fixed .time .icon + div {
    display: none;
}
header.fixed .time div.fixed_header {
    display: block;
}
header.fixed .adres {
    display: flex;
    margin-left: 35px;
    order: 3;
    justify-content: flex-start;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}
header.fixed .adres .icon {
    height: auto;
    margin-right: 10px;
    margin-bottom: 0;
    border: none;
}
header.fixed .adres br {
    display: none;
}
header.fixed .phone {
    align-items: center;
    align-content: center;
}
header.fixed .phone .icon {
    height: auto;
    margin-right: 10px;
    margin-bottom: 0;
    margin-left: 0;
    border: none;
}
header.fixed .phone a {
    order: 2;
}
header.fixed .order_link {
    position: absolute;
    top: 50%;
    right: 40px;
    height: 38px;
    margin: 0;
    margin-top: -19px;
}
header.fixed .menu {
    display: flex;
    width: 100%;
    margin-top: 10px;
    order: 5;
    column-gap: 0;
    column-count: 1;
    justify-content: flex-start;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}
header.fixed .menu > * + * {
    margin-top: 0;
    margin-left: 30px;
}
@-webkit-keyframes moveDown {
    0% {
        -webkit-transform: translateY(-77px);
        transform: translateY(-77px);
    }
}
@-moz-keyframes moveDown {
    0% {
        -webkit-transform: translateY(-77px);
        transform: translateY(-77px);
    }
}
@keyframes moveDown {
    0% {
        -webkit-transform: translateY(-77px);
        transform: translateY(-77px);
    }
}
/*---------------
Sidebar
---------------*/
/*---------------
Main section
---------------*/
.owl-carousel,
.owl-carousel .slide:first-child {
    display: block;
}
.owl-carousel .slide {
    display: none;
}
.owl-carousel .owl-stage {
    white-space: nowrap;
}
.owl-carousel .owl-item {
    display: inline-block;
    float: none;
    vertical-align: top;
    white-space: normal;
}
.owl-carousel .slide .lozad {
    transition: .2s linear;
}
.first_section {
    position: relative;
    background: #f6f7f9;
}
.first_section .tabs {
    position: absolute;
    z-index: 9;
    right: 50%;
    /*bottom: 40px;*/
    bottom: 0px;
    width: 233px;
    margin-right: -700px;
}
.first_section .tabs button {
    color: #144da4;
    font-family: var(--font_family);
    font-size: 18px;
    line-height: 19px;
    position: relative;
    display: flex;
    width: 100%;
    height: 104px;
    padding: 15px 20px;
    cursor: pointer;
    transition: .2s linear;
    text-align: left;
    border: none;
    background: rgba(255, 255, 255, .6);
    justify-content: flex-start;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}
.first_section .tabs button:first-child {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}
.first_section .tabs button:last-child {
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
}
.first_section .tabs button:before {
    position: absolute;
    top: 0;
    right: 100%;
    display: block;
    width: 10px;
    height: 104px;
    content: '';
    transition: .2s linear;
    border-top: 52px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 52px solid transparent;
}
.first_section .tabs button span {
    display: block;
    transition: border-color .2s linear;
    border-bottom: 1px solid rgba(20, 77, 164, .4);
}
.first_section .tabs button span + span {
    margin-top: 2px;
}
.first_section .tabs button + button {
    border-top: 1px solid #e8ebf1;
}
.first_section .tabs button:hover,
.first_section .tabs button.active {
    color: #fff;
    background: #144da4;
}
.first_section .tabs button:hover span,
.first_section .tabs button.active span {
    border-color: transparent;
}
.first_section .tabs button.active:first-child {
    border-top-left-radius: 0;
}
.first_section .tabs button.active:last-child {
    border-bottom-left-radius: 0;
}
.first_section .tabs button.active:before {
    border-right-color: #144da4;
}
.first_section .tab_content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    align-content: flex-start;
    flex-wrap: nowrap;
}
.first_section .tab_content.active {
    min-height: 640px;
}
.first_section .info {
    position: relative;
    z-index: 5;
    width: 565px;
    min-width: 565px;
    max-width: 100%;
    padding-top: 215px;
    padding-bottom: 50px;
}
.first_section .info .title {
    font-size: 44px;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 20px;
}
.first_section .info .desc {
    line-height: 29px;
    width: 535px;
    max-width: 100%;
    margin-bottom: 50px;
}
.first_section .info .link {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;
    position: relative;
    display: flex;
    min-height: 73px;
    margin: 12px;
    padding: 15px 35px;
    cursor: pointer;
    transition: .2s linear;
    text-align: center;
    border: none;
    border-radius: 40px;
    background: #f1063d;
    box-shadow: 9.804px 15.096px 24px 0 rgba(241, 6, 61, .33);
    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}
.first_section .info .link:before {
    position: absolute;
    top: -12px;
    left: -12px;
    display: block;
    width: calc(100% + 24px);
    height: calc(100% + 24px);
    content: '';
    transition: .2s linear;
    opacity: .41;
    border: 1px solid #f1063d;
    border-radius: 50px;
}
.first_section .info .link:hover {
    background: #144da4;
    box-shadow: none;
}
.first_section .info .link:hover:before {
    border-color: #144da4;
}
.first_section .img {
    display: flex;
    width: 100%;
    min-height: 494px;
    margin-left: -170px;
    padding-right: 80px;
    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
    align-self: flex-end;
}
.first_section .img img {
    display: block;
}
.services .cont {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    align-content: stretch;
    flex-wrap: wrap;
}
.services .flex {
    width: 75%;
    padding-bottom: 1px;
    padding-left: 1px;
    align-items: stretch;
    align-content: stretch;
}
.services .flex > * {
    width: calc(33.333% + 1px);
    margin-bottom: -1px;
    margin-left: -1px;
}
.services .service {
    color: #144da4;
    font-family: var(--font_family);
    font-size: 23px;
    position: relative;
    display: flex;
    overflow: hidden;
    min-height: 222px;
    padding: 30px;
    cursor: pointer;
    transition: .2s linear;
    text-align: left;
    border: none;
    border-bottom: 1px solid #e5e8ee;
    border-left: 1px solid #e5e8ee;
    background: none;
    justify-content: space-between;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}
.services .service .icon {
    width: 75px;
}
.services .service .icon > * {
    display: block;
    margin: 0 auto;
    transition: .2s linear;
}
.services .service:hover .icon > *,
.services .service.active .icon > *,
.services .service .icon > *.hover {
    display: none;
}
.services .service .icon1 > *.hover {
    width: 61px;
    height: 80px;
}
.services .service .icon2 > *.hover {
    width: 87px;
    height: 86px;
}
.services .service .icon3 > *.hover {
    width: 63px;
    height: 65px;
}
.services .service .icon4 > *.hover {
    width: 78px;
    height: 73px;
}
.services .service .icon5 > *.hover {
    width: 60px;
    height: 62px;
}
.services .service .icon6 > *.hover {
    width: 80px;
    height: 71px;
}
.services .service .icon7 > *.hover {
    width: 70px;
    height: 82px;
}
.services .service .icon8 > *.hover {
    width: 74px;
    height: 77px;
}
.services .service .icon9 > *.hover {
    width: 75px;
    height: 78px;
}
.services .service .icon > *.bg {
    position: absolute;
    right: -20px;
    bottom: -50px;
    display: block;
    width: 263px;
    height: 249px;
    opacity: 0;
    fill: #fff;
}
.services .service .icon + .name {
    width: calc(100% - 105px);
}
.services .service:hover,
.services .service.active {
    color: #fff;
    background: #9000ff;
}
.services .service:hover .icon > *.hover,
.services .service.active .icon > *.hover {
    display: block;
    fill: #fff;
}
.services .service:hover .icon > *.bg,
.services .service.active .icon > *.bg {
    opacity: .13;
}
.services .order_form {
    display: flex;
    width: 25%;
    padding: 40px 30px;
    border-left: 1px solid #e5e8ee;
    background: #f6f7f9;
    justify-content: flex-start;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}
.services .order_form > * {
    width: 100%;
}
.services .order_form .block_head {
    margin-bottom: 20px;
}
.special_offer .cont {
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    align-content: stretch;
    flex-wrap: wrap;
}
.special_offer .block_head {
    color: #fff;
    width: 25%;
    margin: 0;
    padding: 50px 40px 101px;
    background: #568ecc;
    align-items: flex-start;
    align-content: flex-start;
}
.special_offer .slider {
    width: 75%;
}
.special_offer .item {
    color: var(--text_color);
    font-size: 20px;
    font-weight: 600;
    line-height: 26px;
    display: block;
    transition: .2s linear;
    text-decoration: none;
}
.special_offer .item.bg1 {
    background: #edf7fe;
}
.special_offer .item.bg2 {
    background: #f6fcff;
}
.special_offer .item.bg3 {
    background: #f6f7f8;
}
.special_offer .item .thumb {
    position: relative;
    overflow: hidden;
    padding-bottom: 57%;
    background: #ddd;
}
.special_offer .item .thumb img {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.special_offer .item .name {
    padding: 16px 32px;
}
.special_offer .item:hover {
    color: #fff;
    background: #9000ff;
}
.information .cont {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    align-content: flex-start;
    flex-wrap: wrap;
}
.information .data {
    width: calc(100% - 520px);
}
.information .advantages {
    width: 400px;
    max-width: 100%;
}
.information .advantages .item {
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    display: flex;
    padding-right: 65px;
    justify-content: space-between;
    align-items: flex-start;
    align-content: flex-start;
    flex-wrap: wrap;
}
.information .advantages .item + .item {
    margin-top: 20px;
}
.information .advantages .icon {
    width: 60px;
}
.information .advantages .icon img {
    display: block;
    max-width: 100%;
    margin: 0 auto;
}
.information .advantages .icon + .name {
    width: calc(100% - 110px);
    align-self: center;
}
.complex_included .block_head {
    margin-bottom: 40px;
}
.complex_included .block_head .title {
    margin-right: auto;
}
.complex_included .block_head .exp {
    line-height: 21px;
    position: relative;
    width: 238px;
    margin-right: 38px;
    padding-right: 46px;
    background: url(../images/ic_exp_arr.png) 100% 0 no-repeat;
}
.complex_included .block_head .link {
    color: #fff;
    font: 700 20px/22px var(--font_family);
    display: inline-block;
    height: 80px;
    margin-right: -20px;
    padding: 15px 56px;
    cursor: pointer;
    transition: .2s linear;
    vertical-align: top;
    border: none;
    border-radius: 40px;
    background: #f1063d;
    box-shadow: 9.804px 15.096px 24px 0 rgba(241, 6, 61, .33);
}
.complex_included .block_head .link:hover {
    background: #144da4;
    box-shadow: none;
}
.complex_included .flex {
    margin-bottom: -40px;
    margin-left: -40px;
    justify-content: space-between;
}
.complex_included .flex > * {
    margin-bottom: 40px;
    margin-left: 40px;
}
.complex_included .item {
    line-height: 23px;
}
.complex_included .item .icon {
    display: flex;
    height: 106px;
    margin-bottom: 20px;
    justify-content: flex-start;
    align-items: flex-end;
    align-content: flex-end;
    flex-wrap: wrap;
}
.complex_included .item .icon img {
    display: block;
    max-width: 100%;
    max-height: 100%;
}
.about {
    position: relative;
    z-index: 9;
}
.about .bg {
    position: absolute;
    z-index: -1;
    right: 0;
    bottom: -55px;
    display: block;
    width: 596px;
    max-width: 100%;
    height: 696px;
    max-height: 100%;
}
.about .text_block {
    width: 645px;
    max-width: calc(100% - 405px);
}
.about .info {
    width: 347px;
    max-width: 100%;
    margin-left: 58px;
    align-self: center;
}
.about .info > * + * {
    margin-top: 60px;
}
.about .info .video_link {
    color: #144da4;
    font: 700 15px/21px var(--font_family);
    position: relative;
    display: inline-block;
    width: 100%;
    cursor: pointer;
    transition: .2s linear;
    vertical-align: top;
    border: none;
    background: none;
}
.about .info .video_link .icon {
    position: relative;
    display: block;
    width: 74px;
    height: 74px;
    margin: 0 auto;
    margin-bottom: 12px;
    transition: .2s linear;
    border-radius: 50%;
    background: #144da4;
}
.about .info .video_link .icon:before {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    content: '';
    transition: .2s linear;
    opacity: 0;
    border: 1px solid #144da4;
    border-radius: 50%;
}
.about .info .video_link .icon:after {
    position: absolute;
    z-index: 2;
    top: 27px;
    right: 0;
    left: 5px;
    display: block;
    width: 20px;
    height: 20px;
    margin: auto;
    content: '';
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 20px solid #fff;
}
.about .info .video_link:hover {
    color: #9000ff;
}
.about .info .video_link:hover .icon {
    background: #9000ff;
}
.about .info .video_link:hover .icon:before {
    top: -6px;
    left: -6px;
    width: calc(100% + 12px);
    height: calc(100% + 12px);
    opacity: 1;
    border-color: #9000ff;
}
.about .info .order_link {
    color: #fff;
    font: 700 20px/22px var(--font_family);
    display: inline-block;
    width: 100%;
    height: 80px;
    padding: 15px 35px;
    cursor: pointer;
    transition: .2s linear;
    vertical-align: top;
    border: none;
    border-radius: 40px;
    background: #f1063d;
    box-shadow: 9.804px 15.096px 24px 0 rgba(241, 6, 61, .33);
}
.about .info .order_link:hover {
    background: #144da4;
    box-shadow: none;
}
.about .bottom {
    margin-top: 25px;
}
.about .items {
    display: flex;
    width: calc(100% + 48px);
    margin-bottom: -8px;
    margin-left: -28px;
    justify-content: flex-start;
    align-items: stretch;
    align-content: stretch;
    flex-wrap: wrap;
}
.about .items > * {
    width: 410px;
    max-width: calc(33.333% - 8px);
    margin-bottom: 8px;
    margin-left: 8px;
}
.about .items .item {
    font-size: 14px;
    line-height: 21px;
    padding: 20px;
    border-radius: 10px;
    background: #f6f7f9;
}
.about .items .item .name {
    font-size: 22px;
    line-height: 26px;
    margin-bottom: 12px;
}
.about .items .item .link {
    color: #144da4;
    font-family: var(--font_family);
    font-size: var(--font_size);
    line-height: 18px;
    display: inline-block;
    margin-top: 12px;
    cursor: pointer;
    transition: .2s linear;
    vertical-align: top;
    border: none;
    border-bottom: 1px solid transparent;
    background: none;
}
.about .items .item .link:hover {
    color: #f1063d;
    border-color: rgba(241, 6, 61, .25);
}
.about .details {
    margin-top: 20px;
}
.about .details > * {
    color: #144da4;
    font-family: var(--font_family);
    font-size: var(--font_size);
    line-height: 18px;
    position: relative;
    display: inline-block;
    padding-right: 70px;
    cursor: pointer;
    transition: .2s linear;
    vertical-align: top;
    border: none;
    background: none;
}
.about .details > *:before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    display: block;
    width: 50px;
    height: 1px;
    margin: auto;
    content: '';
    transition: .2s linear;
    background: #144da4;
}
.about .details > *:after {
    position: absolute;
    top: 50%;
    right: 0;
    display: block;
    width: 7px;
    height: 7px;
    margin-top: -3px;
    content: '';
    transition: .2s linear;
    transform: rotate(-45deg);
    border-right: 1px solid #144da4;
    border-bottom: 1px solid #144da4;
}
.about .details > *:hover {
    color: #f1063d;
}
.about .details > *:hover:before {
    background: #f1063d;
}
.about .details > *:hover:after {
    border-color: #f1063d;
}
.promo {
    padding-top: 30px;
}
.promo .flex {
    margin-bottom: -10px;
    margin-left: -30px;
    align-items: stretch;
    align-content: stretch;
}
.promo .flex > * {
    width: calc(33.33% - 30px);
    margin-left: 30px;
    overflow: visible;
    position: relative;
    z-index: 10;
}
.promo video {
    width: 100%;
	background: transparent;
	 border-bottom: 1px solid transparent;
}
.doctors .flex {
    margin-bottom: -10px;
    margin-left: -30px;
    align-items: stretch;
    align-content: stretch;
}
.doctors .flex > * {
    width: calc(33.33% - 30px);
    margin-bottom: 30px;
    margin-left: 30px;
}
.doctors .doctor {
    position: relative;
    z-index: 9;
    display: flex;
    flex-direction: column;
    padding: 0 29px 29px;
    cursor: pointer;
    text-align: center;
}
.doctors .doctor:before {
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    content: '';
    transition: .2s linear;
    border: 1px solid transparent;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 15px 15px 0 rgba(168, 184, 190, .16);
}
.doctors .doctor:after {
    position: absolute;
    z-index: 1;
    top: 10px;
    left: 10px;
    display: block;
    width: calc(100% - 20px);
    height: 100%;
    content: '';
    transition: .2s linear;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 15px 15px 0 rgba(168, 184, 190, .16);
}
.doctors .doctor > * {
    position: relative;
    z-index: 5;
}
.doctors .doctor .foto {
    position: relative;
    overflow: hidden;
    width: 164px;
    height: 164px;
    margin: -11px auto 25px;
    border-radius: 50%;
    background: #ddd;
    box-shadow: 0 15px 27px 0 rgba(168, 184, 190, .51);
}
.doctors .doctor .foto img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.doctors .doctor .post {
    color: #f1063d;
    font-size: 16px;
    /*position: absolute;
    top: 0;
    right: 0;
    transform: rotate(-180deg);
    text-align: right;
    writing-mode: vertical-rl;
    -webkit-writing-mode: vertical-rl;
    */
    max-height: 200px;
    padding: 20px 13px;
}
.doctors .doctor .name {
    font-size: 19px;
    font-weight: 600;
    line-height: 20px;
    margin-bottom: 5px;
}
.doctors .doctor .desc {
    font-size: 14px;
    line-height: 18px;
    flex: 1 0 auto;
}
.doctors .doctor .details {
    margin-top: 20px;
}
.doctors .doctor .details span {
    color: #144da4;
    line-height: 18px;
    display: inline-block;
    cursor: pointer;
    transition: .2s linear;
    vertical-align: top;
    border-bottom: 1px solid transparent;
}
.doctors .doctor .details span:hover {
    color: #f1063d;
    border-color: rgba(241, 6, 61, .25);
}
.doctors .doctor:hover:before {
    border-color: #568ecc;
}
.doctors .doctor:hover:after {
    opacity: 0;
}
.excursion {
    position: relative;
}
.excursion .cont {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    align-content: flex-start;
    flex-wrap: wrap;
}
.excursion .img {
    position: relative;
    width: calc(100% - 590px);
    height: 100%;
    min-height: 551px;
    background: #ddd;
}
.excursion .img img {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.excursion .img img.foto {
    z-index: 2;
    top: auto;
    right: 0;
    bottom: 0;
    left: auto;
    width: auto;
    height: auto;
    max-height: calc(100% - 30px);
    transform: translateX(calc(50% - 20px));
}
.excursion .info {
    position: relative;
    display: flex;
    width: 405px;
    max-width: 100%;
    padding: 40px;
    align-self: center;
    justify-content: flex-start;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}
.excursion .info .quote {
    position: absolute;
    z-index: -1;
    top: 50px;
    right: calc(100% - 69px);
    display: block;
    width: 186px;
    height: 173px;
    fill: #f1f5f7;
}
.excursion .info .title {
    font-size: var(--font_size_title);
    font-weight: 600;
    line-height: normal;
    width: 100%;
}
.excursion .info .desc {
    line-height: 29px;
    width: 100%;
    margin-top: 25px;
}
.excursion .info .link {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    line-height: 26px;
    position: relative;
    display: flex;
    width: 235px;
    min-height: 80px;
    margin: 48px 8px 8px;
    padding: 15px 35px;
    cursor: pointer;
    transition: .2s linear;
    text-align: center;
    border: none;
    border-radius: 40px;
    background: #f1063d;
    box-shadow: 9.804px 15.096px 24px 0 rgba(241, 6, 61, .33);
    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}
.excursion .info .link .icon {
    display: block;
    width: 10px;
    height: 12px;
    margin-top: 1px;
    margin-left: 25px;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 10px solid #fff;
}
.excursion .info .link:before {
    position: absolute;
    top: -8px;
    left: -8px;
    display: block;
    width: calc(100% + 16px);
    height: calc(100% + 16px);
    content: '';
    transition: .2s linear;
    opacity: .41;
    border: 1px solid #f1063d;
    border-radius: 50px;
}
.excursion .info .link:hover {
    background: #144da4;
    box-shadow: none;
}
.excursion .info .link:hover:before {
    border-color: #144da4;
}
.excursion .prev {
    color: #144da4;
    font-family: var(--font_family);
    font-size: var(--font_size);
    line-height: 18px;
    position: absolute;
    z-index: 9;
    right: 50%;
    bottom: 0;
    display: inline-block;
    visibility: hidden;
    margin-right: -700px;
    padding-left: 70px;
    cursor: pointer;
    transition: .2s linear;
    vertical-align: top;
    pointer-events: none;
    opacity: 0;
    border: none;
    background: none;
}
.excursion .prev.show {
    visibility: visible;
    pointer-events: auto;
    opacity: 1;
}
.excursion .prev:before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    display: block;
    width: 50px;
    height: 1px;
    margin: auto;
    content: '';
    transition: .2s linear;
    background: #144da4;
}
.excursion .prev:after {
    position: absolute;
    top: 50%;
    left: 0;
    display: block;
    width: 7px;
    height: 7px;
    margin-top: -3px;
    content: '';
    transition: .2s linear;
    transform: rotate(-45deg);
    border-top: 1px solid #144da4;
    border-left: 1px solid #144da4;
}
.excursion .prev:hover {
    color: #f1063d;
}
.excursion .prev:hover:before {
    background: #f1063d;
}
.excursion .prev:hover:after {
    border-color: #f1063d;
}
.examples .flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    align-content: flex-start;
    flex-wrap: wrap;
}
.examples .text_block {
    line-height: 23px;
    width: 37%;
}
.examples .text_block p {
    margin-bottom: 23px;
}
.examples .text_block .big {
    color: #144da4;
    font-size: 24px;
    font-weight: 600;
    line-height: 37px;
}
.examples .slider {
    width: 745px;
    max-width: calc(63% - 30px);
}
.examples .item {
    font-size: 18px;
    font-weight: 800;
    line-height: 37px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    align-content: flex-start;
    flex-wrap: nowrap;
}
.examples .item > * {
    width: 100%;
}
.examples .item > * + * {
    margin-left: 1px;
}
.examples .item .img {
    position: relative;
    overflow: hidden;
    width: 100%;
    margin-top: 25px;
    padding-bottom: 69%;
    background: #ddd;
}
.examples .item img {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.garanti .cont {
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    align-content: stretch;
    flex-wrap: wrap;
}
.garanti .block_head {
    color: #fff;
    width: 25%;
    margin: 0;
    padding: 50px 40px 101px;
    background: #568ecc;
    align-items: flex-start;
    align-content: flex-start;
}
.garanti .flex {
    width: 75%;
    margin-bottom: -2px;
    margin-left: -2px;
    align-items: stretch;
    align-content: stretch;
}
.garanti .flex > * {
    width: calc(33.333% - 2px);
    margin-bottom: 2px;
    margin-left: 2px;
}
.garanti .item {
    display: flex;
    flex-direction: column;
    padding: 50px 40px;
    background: #edf7fe;
}
.garanti .item .period {
    font-size: 48px;
    font-weight: 900;
    line-height: 50px;
}
.garanti .item .desc {
    line-height: 17px;
    margin-top: 15px;
    flex: 1 0 auto;
}
.garanti .item .payment {
    color: #144da4;
    font-size: 20px;
    font-weight: 700;
    margin-top: 40px;
}
.reviews .block_head {
    margin-bottom: 20px;
}
.reviews .owl-stage-outer {
    overflow: visible !important;
}
.reviews .owl-item {
    visibility: hidden;
    transition: .2s linear;
    pointer-events: none;
    opacity: 0;
}
.reviews .owl-item.active {
    visibility: visible;
    pointer-events: auto;
    opacity: 1;
}
.reviews .review {
    position: relative;
    display: flex;
    flex-direction: column;
    padding-top: 30px;
}
.reviews .review .quote {
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    display: block;
    width: 108px;
    height: 101px;
    fill: #f1f5f7;
}
.reviews .review .text {
    line-height: 26px;
    flex: 1 0 auto;
}
.reviews .review .author {
    display: flex;
    margin-top: 25px;
    justify-content: space-between;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}
.reviews .review .author .foto {
    overflow: hidden;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: #ddd;
}
.reviews .review .author .foto img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.reviews .review .author .name {
    font-weight: 700;
    line-height: 19px;
    width: calc(100% - 95px);
}
.are_you_sure {
    padding: 50px 0;
    background: #f5fbfe;
}
.are_you_sure .data {
    position: relative;
    display: flex;
    padding-left: 378px;
    justify-content: space-between;
    align-items: flex-start;
    align-content: flex-start;
    flex-wrap: wrap;
}
.are_you_sure .data .foto {
    position: absolute;
    bottom: -50px;
    left: -70px;
    display: block;
}
.are_you_sure .block_title {
    font-size: 43px;
    font-weight: 600;
    line-height: 45px;
    width: 100%;
    margin-bottom: 40px;
}
.are_you_sure .info {
    width: calc(100% - 445px);
}
.are_you_sure .info .title {
    font-size: 24px;
}
.are_you_sure .info ul {
    margin-top: 30px;
}
.are_you_sure .info ul li {
    position: relative;
    display: block;
    padding-left: 26px;
    list-style-type: none;
}
.are_you_sure .info ul li + li {
    margin-top: 15px;
}
.are_you_sure .info ul li:before {
    position: absolute;
    top: 5px;
    left: 0;
    display: block;
    width: 10px;
    height: 10px;
    content: '';
    background: #144da4;
}
.are_you_sure .info .title2 {
    font-size: 30px;
    font-weight: 600;
    margin-top: 40px;
}
.are_you_sure .form {
    width: 405px;
    max-width: 100%;
}
.are_you_sure .form .submit_btn {
    font-size: 22px;
    padding: 15px 23px;
}
.contacts_block {
    position: relative;
    padding-top: 330px;
    background: #eee;
}
.contacts_block .cont {
    position: relative;
    z-index: 5;
    padding: 0 20px;
}
.contacts_block .info {
    display: flex;
    padding: 40px;
    background: #fff;
    box-shadow: 0 15px 27px 0 rgba(168, 184, 190, .33);
    justify-content: space-between;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}
.contacts_block .info .time {
    font-size: 15px;
    line-height: 19px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}
.contacts_block .info .time .icon {
    display: block;
    height: 34px;
    margin-right: 30px;
    border-bottom: 2px solid #dbe4e9;
}
.contacts_block .info .time .icon > * {
    display: block;
    width: 21px;
    height: 21px;
    fill: #404147;
}
.contacts_block .info .adres {
    font-size: 15px;
    line-height: 19px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}
.contacts_block .info .adres .icon {
    display: block;
    height: 34px;
    margin-right: 30px;
    border-bottom: 2px solid #dbe4e9;
}
.contacts_block .info .adres .icon > * {
    display: block;
    width: 18px;
    height: 22px;
    fill: #404147;
}
.contacts_block .info .contacts {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}
.contacts_block .info .phone {
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}
.contacts_block .info .phone a {
    color: var(--text_color);
    display: inline-block;
    vertical-align: top;
    white-space: nowrap;
    text-decoration: none;
}
.contacts_block .info .phone .icon {
    display: block;
    height: 34px;
    margin-right: 30px;
    border-bottom: 2px solid #dbe4e9;
}
.contacts_block .info .phone .icon > * {
    display: block;
    width: 17px;
    height: 18px;
    fill: #404147;
}
.contacts_block .info .order_link {
    color: #f1063d;
    font-size: 16px;
    font-weight: 700;
    line-height: 19px;
    display: inline-block;
    margin-left: 30px;
    cursor: pointer;
    transition: .2s linear;
    vertical-align: top;
    border-bottom: none;
    background: none;
}
.contacts_block .info .order_link span {
    line-height: 16px;
    display: inline-block;
    transition: border-color .2s linear;
    vertical-align: top;
    border-bottom: 1px solid rgba(241, 6, 61, .25);
}
.contacts_block .info .order_link span ~ span {
    margin-top: 2px;
}
.contacts_block .info .order_link:hover {
    color: #144da4;
}
.contacts_block .info .order_link:hover span {
    border-color: transparent;
}
.contacts_block .info .messengers {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}
.contacts_block .info .messengers a {
    display: block;
    transition: .2s linear;
}
.contacts_block .info .messengers a + a {
    margin-left: 8px;
}
.contacts_block .info .messengers img {
    display: block;
    max-width: 100%;
    max-height: 100%;
}
.contacts_block .info .messengers a:hover {
    opacity: .64;
}
.contacts_block .map {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
/*---------------
Footer
---------------*/
footer {
    flex: 0 0 auto;
}
footer .info {
    padding: 40px 0;
}
footer .info .cont.flex {
    padding: 0 20px;
    justify-content: space-between;
}
footer .info .logo,
footer .info .logo a {
    color: var(--text_color);
    font-family: var(--font_family2);
    font-size: 14px;
    font-weight: 900;
    line-height: 19px;
    display: block;
    text-decoration: none;
    letter-spacing: .16em;
    text-transform: uppercase;
}
footer .info .logo span {
    color: #f1063d;
    display: block;
    letter-spacing: .435em;
}
footer .info .socials {
    display: flex;
    margin-top: 18px;
    justify-content: flex-start;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}
footer .info .socials a {
    display: block;
    transition: .2s linear;
}
footer .info .socials a + a {
    margin-left: 5px;
}
footer .info .socials img {
    display: block;
    max-width: 100%;
    max-height: 100%;
}
footer .info .socials a:hover {
    opacity: .64;
}
footer .info .services_link {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    align-content: flex-start;
    flex-wrap: nowrap;
}
footer .info .services_link > * + * {
    margin-left: 40px;
}
footer .info .services_link .col > * + * {
    margin-top: 10px;
}
footer .info .services_link button {
    color: #144da4;
    font-family: var(--font_family);
    font-size: 16px;
    line-height: 22px;
    position: relative;
    display: inline-block;
    cursor: pointer;
    transition: .2s linear;
    vertical-align: top;
    border: none;
    background: none;
}
footer .info .services_link button:hover,
footer .info .services_link button.active {
    color: #f1063d;
}
footer .info .adres {
    line-height: 19px;
}
footer .info .time {
    line-height: 19px;
    margin-top: 28px;
}
footer .info .phone {
    font-size: 24px;
    font-weight: 700;
    line-height: 24px;
}
footer .info .phone a {
    color: var(--text_color);
    display: inline-block;
    vertical-align: top;
    white-space: nowrap;
    text-decoration: none;
}
footer .info .messengers {
    display: flex;
    margin-top: 38px;
    justify-content: flex-start;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}
footer .info .messengers a {
    display: block;
    width: 23px;
    height: 23px;
    transition: .2s linear;
}
footer .info .messengers a + a {
    margin-left: 5px;
}
footer .info .messengers img {
    display: block;
    max-width: 100%;
    max-height: 100%;
}
footer .info .messengers a:hover {
    opacity: .64;
}
footer .bottom {
    color: #fff;
    font-size: 15px;
    line-height: 19px;
    padding: 17px 0;
    background: #144da4;
}
footer .bottom .cont.flex {
    padding: 0 20px;
    justify-content: space-between;
    align-items: center;
    align-content: center;
}
footer .personal button {
    color: #fff;
    font-family: var(--font_family);
    font-size: 15px;
    line-height: 19px;
    display: inline-block;
    cursor: pointer;
    vertical-align: top;
    text-decoration: none;
    border: none;
    background: none;
}
footer .personal button:hover {
    text-decoration: underline;
}
footer .creator a {
    color: #fff;
    display: inline-block;
    vertical-align: top;
    text-decoration: none;
}
footer .creator span {
    line-height: 16px;
    display: inline-block;
    transition: border-color .2s linear;
    vertical-align: top;
    border-bottom: 1px solid rgba(255, 255, 255, .25);
}
/*---------------
PopUp
---------------*/
.modal {
    display: none;
    visibility: visible !important;
    width: 927px;
    max-width: 100%;
    padding: 0;
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, .3);
}
.modal_title {
    font-size: var(--font_size_title);
    font-weight: 600;
    line-height: normal;
    margin-bottom: 30px;
}
.modal_desc {
    font-size: 14px;
    line-height: 17px;
    margin-top: -25px;
    margin-bottom: 30px;
}
.modal .notice {
    font-size: 14px;
    line-height: 17px;
    position: relative;
    padding: 15px 20px 15px 82px;
    background: #ddf3f6;
}
.modal .notice .icon {
    position: absolute;
    top: 15px;
    left: 28px;
    display: block;
    width: 27px;
    height: 27px;
    fill: #f1063d;
}
#order_modal .flex {
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    align-content: stretch;
    flex-wrap: wrap;
}
#order_modal .col_left {
    width: 420px;
    padding: 40px 45px 40px 50px;
    background: #f6f7f9;
}
#order_modal .col_right {
    width: calc(100% - 420px);
    padding: 52px 82px 40px 32px;
}
#order_modal .col_right > * + * {
    margin-top: 30px;
}
#order_modal .col_right .title {
    font-size: 26px;
    font-weight: 700;
}
#order_modal .col_right ul {
    margin-top: 20px;
}
#order_modal .col_right ul li {
    position: relative;
    display: block;
    padding-left: 26px;
    list-style-type: none;
}
#order_modal .col_right ul li + li {
    margin-top: 15px;
}
#order_modal .col_right ul li:before {
    position: absolute;
    top: 6px;
    left: 0;
    display: block;
    width: 7px;
    height: 7px;
    content: '';
    background: #144da4;
}
.service_info {
    display: inline-block;
    width: 1440px;
    vertical-align: middle;
}
.service_info .data {
    display: flex;
    padding: 61px 76px 30px;
    justify-content: space-between;
    align-items: flex-start;
    align-content: flex-start;
    flex-wrap: wrap;
}
.service_info .data .thumb {
    position: relative;
    overflow: hidden;
    width: 465px;
    padding-bottom: 293px;
    background: #ddd;
}
.service_info .data .thumb img {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.service_info .data .thumb + .info {
    width: calc(100% - 515px);
}
.service_info .data .name {
    font-size: var(--font_size_title);
    font-weight: 600;
    line-height: normal;
}
.service_info .data .desc {
    line-height: 27px;
    margin-top: 30px;
}
.service_info .data .features {
    font-size: 21px;
    line-height: 27px;
    display: flex;
    margin-top: 30px;
    margin-bottom: -30px;
    margin-left: -30px;
    justify-content: flex-start;
    align-items: flex-start;
    align-content: flex-start;
    flex-wrap: wrap;
}
.service_info .data .features > * {
    width: calc(25% - 30px);
    margin-bottom: 30px;
    margin-left: 30px;
}
.service_info .data .features .val {
    font-weight: 700;
}
.service_info .order_form {
    padding: 40px 76px;
    background: #f6f7f9;
}
.service_info .order_form .block_head {
    margin-bottom: 25px;
}
.service_info .order_form .form {
    display: flex;
    width: 1045px;
    max-width: 100%;
    justify-content: space-between;
    align-items: flex-start;
    align-content: flex-start;
    flex-wrap: wrap;
}
.service_info .order_form .form .line {
    width: calc((100% - 408px) / 2);
    margin: 0;
}
.service_info .order_form .form .submit {
    width: 367px;
    max-width: 100%;
    margin: -4px 0 -13px 25px;
    padding: 0;
}
.service_info .order_form .form .exp {
    width: calc(100% - 400px);
    margin-top: 15px;
}
.service_info .services {
    padding: 15px;
}
.service_info .services .flex {
    width: 100%;
}
.service_info .services .flex > * {
    width: calc(11.111% + 1px);
    margin-bottom: -1px;
    margin-left: -1px;
}
.service_info .services .service {
    font-size: var(--font_size);
    min-height: 0;
    padding: 15px;
    border: 1px solid #e5e8ee;
    align-items: flex-start;
    align-content: flex-start;
}
.service_info .services .service .icon {
    display: flex;
    width: 100%;
    height: 60px;
    margin-bottom: 15px;
    justify-content: flex-start;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}
.service_info .services .service .icon > * {
    max-height: 100%;
    margin: 0;
}
.service_info .services .service .icon1 > *.hover {
    width: 41px;
    height: 55px;
}
.service_info .services .service .icon2 > *.hover {
    width: 60px;
    height: 59px;
}
.service_info .services .service .icon3 > *.hover {
    width: 43px;
    height: 45px;
}
.service_info .services .service .icon4 > *.hover {
    width: 54px;
    height: 50px;
}
.service_info .services .service .icon5 > *.hover {
    width: 41px;
    height: 43px;
}
.service_info .services .service .icon6 > *.hover {
    width: 55px;
    height: 49px;
}
.service_info .services .service .icon7 > *.hover {
    width: 48px;
    height: 57px;
}
.service_info .services .service .icon8 > *.hover {
    width: 51px;
    height: 53px;
}
.service_info .services .service .icon9 > *.hover {
    width: 51px;
    height: 53px;
}
.service_info .services .service .icon > *.bg {
    right: -50px;
    bottom: -35px;
    width: 183px;
    height: 172px;
}
.service_info .services .service .icon + .name {
    width: 100%;
}
.service_info .services .service:hover .icon > *,
.service_info .services .service.active .icon > *,
.service_info .services .service .icon > *.hover {
    display: none;
}
.service_info .services .service:hover,
.service_info .services .service.active {
    color: #fff;
    background: #9000ff;
}
.service_info .services .service:hover .icon > *.hover,
.service_info .services .service.active .icon > *.hover {
    display: block;
    fill: #fff;
}
.service_info .services .service:hover .icon > *.bg,
.service_info .services .service.active .icon > *.bg {
    opacity: .13;
}
.video_modal {
    width: 1000px;
    padding: 25px;
}
.video_modal .video {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding-bottom: 56%;
    background: #ddd;
}
.video_modal .video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
#order_personal_modal .flex {
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    align-content: stretch;
    flex-wrap: wrap;
}
#order_personal_modal .col_left {
    width: 420px;
    padding: 40px 45px 40px 50px;
    background: #f6f7f9;
}
#order_personal_modal .col_right {
    width: calc(100% - 420px);
    padding: 52px 82px 40px 32px;
}
#order_personal_modal .col_right > * + * {
    margin-top: 30px;
}
#order_personal_modal .doctor {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    align-content: flex-start;
    flex-wrap: wrap;
}
#order_personal_modal .doctor .foto {
    position: relative;
    overflow: hidden;
    width: 164px;
    height: 164px;
    border-radius: 50%;
    background: #ddd;
    box-shadow: 0 15px 27px 0 rgba(168, 184, 190, .51);
}
#order_personal_modal .doctor .foto img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
#order_personal_modal .doctor .foto + .info {
    width: calc(100% - 185px);
    align-self: center;
}
#order_personal_modal .doctor .info > * + * {
    margin-top: 20px;
}
#order_personal_modal .doctor .name {
    font-size: 21px;
    font-weight: 600;
    line-height: 25px;
}
#order_personal_modal .doctor .post {
    font-weight: 700;
    line-height: 18px;
}
#order_personal_modal .doctor .desc {
    line-height: 18px;
}
#order_personal_modal .items {
    margin-top: 35px;
}
#order_personal_modal .items > * + * {
    margin-top: 11px;
}
#order_personal_modal .items .item {
    font-size: 14px;
    line-height: 21px;
    padding: 25px 29px;
    border-radius: 10px;
    background: #f6f7f9;
}
#order_personal_modal .items .item .name {
    font-size: 22px;
    line-height: 26px;
    margin-bottom: 10px;
}
.doctor_info {
    display: inline-block;
    padding: 45px;
    vertical-align: middle;
}
.doctor_info > * + * {
    margin-top: 40px;
}
.doctor_info .block {
    margin-bottom: 0 !important;
}
.doctor_info .block_title {
    color: #f1063d;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}
.doctor_info .doctor {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    align-content: flex-start;
    flex-wrap: wrap;
}
.doctor_info .doctor .foto {
    position: relative;
    overflow: hidden;
    width: 164px;
    height: 164px;
    border-radius: 50%;
    background: #ddd;
    box-shadow: 0 15px 27px 0 rgba(168, 184, 190, .51);
}
.doctor_info .doctor .foto img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.doctor_info .doctor .foto + .info {
    width: calc(100% - 220px);
    align-self: center;
}
.doctor_info .doctor .info > * + * {
    margin-top: 10px;
}
.doctor_info .doctor .name {
    font-size: 31px;
    font-weight: 600;
    line-height: normal;
}
.doctor_info .doctor .post {
    font-weight: 700;
    line-height: 19px;
}
.doctor_info .doctor .desc {
    line-height: 19px;
}
.doctor_info .description .custom_scroll_wrap {
    overflow: hidden;
    height: 535px;
}
.doctor_info .description .custom_scroll_wrap.no_scroll {
    overflow: visible;
    height: auto;
}
.doctor_info .description .custom_scroll_wrap.no_scroll ~ .mCSB_scrollTools {
    display: none !important;
}
.doctor_info .description .text_block {
    line-height: 23px;
}
.doctor_info .description .text_block p {
    margin-bottom: 23px;
}
.doctor_info .education .flex {
    margin-bottom: -16px;
    margin-left: -16px;
    align-items: stretch;
    align-content: stretch;
}
.doctor_info .education .flex > * {
    width: calc(33.333% - 16px);
    margin-bottom: 16px;
    margin-left: 16px;
}
.doctor_info .education .item {
    font-size: 14px;
    line-height: 16px;
    padding: 15px 20px;
    border: 1px solid #d7e1f0;
}
.doctor_info .education .year {
    font-weight: 700;
    margin-bottom: 15px;
}
.doctor_info .additional_education {
    padding-bottom: 35px;
}
.doctor_info .additional_education .slider {
    padding-right: 58px;
}
.doctor_info .additional_education .item {
    font-size: 14px;
    line-height: 16px;
}
.doctor_info .additional_education .date {
    font-weight: 700;
    margin-bottom: 8px;
}
.doctor_info .certs {
    padding-bottom: 35px;
}
.doctor_info .certs .slider {
    padding-right: 58px;
}
.doctor_info .certs .item {
    display: block;
}
.doctor_info .certs .item img {
    display: block;
    border: 1px solid #e3f9ec;
    width: 120px;
}
.doctor_info .certs .item.big img {
    width: 211px;
}
#personal_data_modal,
#ok_modal {
    padding: 40px;
}
#personal_data_modal .custom_scroll_wrap {
    overflow: hidden;
    height: 535px;
}
#personal_data_modal .custom_scroll_wrap.no_scroll {
    overflow: visible;
    height: auto;
}
#personal_data_modal .custom_scroll_wrap.no_scroll ~ .mCSB_scrollTools {
    display: none !important;
}
#personal_data_modal .text_block,
#ok_modal .text_block {
    line-height: 23px;
}
#personal_data_modal .text_block p,
#ok_modal .text_block p {
    margin-bottom: 23px;
}
#ok_modal {
    text-align: center;
}
.slider-video img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
#Covid_modal {
    padding: 15px;
}