@charset "UTF-8";
/* lg: 1168px*/
/* .container{*/
/*   @media screen and (min-width: 1280px) and (max-width: 1719px){*/
/*     width: 908px !important;*/
/*   }*/
/* }*/
.container_wide {
    margin: 0 auto;
}

@media screen and (min-width: 1720px) {
    .container_wide {
        /* width: 1600px !important;*/
        width: 1470px !important;
    }
}

@media screen and (min-width: 1280px) and (max-width: 1719px) {
    .container_wide {
        width: 1240px !important;
    }
}

@media screen and (min-width: 1024px) and (max-width: 1279px) {
    .container_wide {
        width: 1000px !important;
    }
}

@media screen and (min-width: 767px) and (max-width: 1023px) {
    .container_wide {
        width: 726px !important;
    }
}

@media screen and (max-width: 766px) and (max-width: 1023px) {
    .container_wide {
        width: 100% !important;
    }
}

html {
    box-sizing: border-box;
}

*,
*::after,
*::before {
    box-sizing: inherit;
}

body,
html {
    margin: 0;
    font-family: 'Roboto', sans-serif;
}

body.body_active {
    height: 100%;
    position: fixed;
    width: 100%;
    overflow: hidden;
    padding-right: 17px;
}

.flex-xs-first {
    order: -1;
}

.flex-xs-last {
    order: 1;
}

.flex-xs-unordered {
    order: 0;
}

.flex-items-xs-top {
    align-items: flex-start;
}

.flex-items-xs-middle {
    align-items: center;
}

.flex-items-xs-bottom {
    align-items: flex-end;
}

.flex-xs-top {
    align-self: flex-start;
}

.flex-xs-middle {
    align-self: center;
}

.flex-xs-bottom {
    align-self: flex-end;
}

.flex-items-xs-left {
    justify-content: flex-start;
}

.flex-items-xs-center {
    justify-content: center;
}

.flex-items-xs-right {
    justify-content: flex-end;
}

.flex-items-xs-around {
    justify-content: space-around;
}

.flex-items-xs-between {
    justify-content: space-between;
}

@media (min-width: 767px) {
    .flex-sm-first {
        order: -1;
    }

    .flex-sm-last {
        order: 1;
    }

    .flex-sm-unordered {
        order: 0;
    }
}

@media (min-width: 767px) {
    .flex-items-sm-top {
        align-items: flex-start;
    }

    .flex-items-sm-middle {
        align-items: center;
    }

    .flex-items-sm-bottom {
        align-items: flex-end;
    }
}

@media (min-width: 767px) {
    .flex-sm-top {
        align-self: flex-start;
    }

    .flex-sm-middle {
        align-self: center;
    }

    .flex-sm-bottom {
        align-self: flex-end;
    }
}

@media (min-width: 767px) {
    .flex-items-sm-left {
        justify-content: flex-start;
    }

    .flex-items-sm-center {
        justify-content: center;
    }

    .flex-items-sm-right {
        justify-content: flex-end;
    }

    .flex-items-sm-around {
        justify-content: space-around;
    }

    .flex-items-sm-between {
        justify-content: space-between;
    }
}

@media (min-width: 1024px) {
    .flex-md-first {
        order: -1;
    }

    .flex-md-last {
        order: 1;
    }

    .flex-md-unordered {
        order: 0;
    }
}

@media (min-width: 1024px) {
    .flex-items-md-top {
        align-items: flex-start;
    }

    .flex-items-md-middle {
        align-items: center;
    }

    .flex-items-md-bottom {
        align-items: flex-end;
    }
}

@media (min-width: 1024px) {
    .flex-md-top {
        align-self: flex-start;
    }

    .flex-md-middle {
        align-self: center;
    }

    .flex-md-bottom {
        align-self: flex-end;
    }
}

@media (min-width: 1024px) {
    .flex-items-md-left {
        justify-content: flex-start;
    }

    .flex-items-md-center {
        justify-content: center;
    }

    .flex-items-md-right {
        justify-content: flex-end;
    }

    .flex-items-md-around {
        justify-content: space-around;
    }

    .flex-items-md-between {
        justify-content: space-between;
    }
}

@media (min-width: 1280px) {
    .flex-lg-first {
        order: -1;
    }

    .flex-lg-last {
        order: 1;
    }

    .flex-lg-unordered {
        order: 0;
    }
}

@media (min-width: 1280px) {
    .flex-items-lg-top {
        align-items: flex-start;
    }

    .flex-items-lg-middle {
        align-items: center;
    }

    .flex-items-lg-bottom {
        align-items: flex-end;
    }
}

@media (min-width: 1280px) {
    .flex-lg-top {
        align-self: flex-start;
    }

    .flex-lg-middle {
        align-self: center;
    }

    .flex-lg-bottom {
        align-self: flex-end;
    }
}

@media (min-width: 1280px) {
    .flex-items-lg-left {
        justify-content: flex-start;
    }

    .flex-items-lg-center {
        justify-content: center;
    }

    .flex-items-lg-right {
        justify-content: flex-end;
    }

    .flex-items-lg-around {
        justify-content: space-around;
    }

    .flex-items-lg-between {
        justify-content: space-between;
    }
}

.invisible {
    visibility: hidden !important;
}

.hidden-xs-up {
    display: none !important;
}

@media (max-width: 766px) {
    .hidden-xs-down {
        display: none !important;
    }
}

@media (min-width: 767px) {
    .hidden-sm-up {
        display: none !important;
    }
}

@media (max-width: 1023px) {
    .hidden-sm-down {
        display: none !important;
    }
}

@media (min-width: 1024px) {
    .hidden-md-up {
        display: none !important;
    }
}

@media (max-width: 1279px) {
    .hidden-md-down {
        display: none !important;
    }
}

@media (min-width: 1280px) {
    .hidden-lg-up {
        display: none !important;
    }
}

.hidden-lg-down {
    display: none !important;
}

.visible-print-block {
    display: none !important;
}

@media print {
    .visible-print-block {
        display: block !important;
    }
}

.visible-print-inline {
    display: none !important;
}

@media print {
    .visible-print-inline {
        display: inline !important;
    }
}

.visible-print-inline-block {
    display: none !important;
}

@media print {
    .visible-print-inline-block {
        display: inline-block !important;
    }
}

@media print {
    .hidden-print {
        display: none !important;
    }
}

.container, .container_wide {
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
    width: 100%;
    max-width: 100%;
}

@media (min-width: 767px) {
    .container, .container_wide {
        width: 635px;
        max-width: 100%;
    }
}

@media (min-width: 1024px) {
    .container, .container_wide {
        width: 830px;
        max-width: 100%;
    }
}

@media (min-width: 1280px) {
    .container, .container_wide {
        width: 1070px;
        max-width: 100%;
    }
}

.container-fluid {
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
    margin-right: -15px;
    margin-left: -15px;
}

@media (min-width: 767px) {
    .row {
        margin-right: -15px;
        margin-left: -15px;
    }
}

@media (min-width: 1024px) {
    .row {
        margin-right: -15px;
        margin-left: -15px;
    }
}

@media (min-width: 1280px) {
    .row {
        margin-right: -15px;
        margin-left: -15px;
    }
}

.col-xs, .col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12, .col-sm, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-md, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-lg, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
    position: relative;
    min-height: 1px;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    padding-right: 15px;
    padding-left: 15px;
}

@media (min-width: 767px) {
    .col-xs, .col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12, .col-sm, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-md, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-lg, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
        padding-right: 15px;
        padding-left: 15px;
    }
}

@media (min-width: 1024px) {
    .col-xs, .col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12, .col-sm, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-md, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-lg, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
        padding-right: 15px;
        padding-left: 15px;
    }
}

@media (min-width: 1280px) {
    .col-xs, .col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12, .col-sm, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-md, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-lg, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
        padding-right: 15px;
        padding-left: 15px;
    }
}

.col-xs {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
}

.col-xs-1 {
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
}

.col-xs-2 {
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
}

.col-xs-3 {
    flex: 0 0 25%;
    max-width: 25%;
}

.col-xs-4 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
}

.col-xs-5 {
    flex: 0 0 41.66667%;
    max-width: 41.66667%;
}

.col-xs-6 {
    flex: 0 0 50%;
    max-width: 50%;
}

.col-xs-7 {
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
}

.col-xs-8 {
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
}

.col-xs-9 {
    flex: 0 0 75%;
    max-width: 75%;
}

.col-xs-10 {
    flex: 0 0 83.33333%;
    max-width: 83.33333%;
}

.col-xs-11 {
    flex: 0 0 91.66667%;
    max-width: 91.66667%;
}

.col-xs-12 {
    flex: 0 0 100%;
    max-width: 100%;
}

.pull-xs-0 {
    right: auto;
}

.pull-xs-1 {
    right: 8.33333%;
}

.pull-xs-2 {
    right: 16.66667%;
}

.pull-xs-3 {
    right: 25%;
}

.pull-xs-4 {
    right: 33.33333%;
}

.pull-xs-5 {
    right: 41.66667%;
}

.pull-xs-6 {
    right: 50%;
}

.pull-xs-7 {
    right: 58.33333%;
}

.pull-xs-8 {
    right: 66.66667%;
}

.pull-xs-9 {
    right: 75%;
}

.pull-xs-10 {
    right: 83.33333%;
}

.pull-xs-11 {
    right: 91.66667%;
}

.pull-xs-12 {
    right: 100%;
}

.push-xs-0 {
    left: auto;
}

.push-xs-1 {
    left: 8.33333%;
}

.push-xs-2 {
    left: 16.66667%;
}

.push-xs-3 {
    left: 25%;
}

.push-xs-4 {
    left: 33.33333%;
}

.push-xs-5 {
    left: 41.66667%;
}

.push-xs-6 {
    left: 50%;
}

.push-xs-7 {
    left: 58.33333%;
}

.push-xs-8 {
    left: 66.66667%;
}

.push-xs-9 {
    left: 75%;
}

.push-xs-10 {
    left: 83.33333%;
}

.push-xs-11 {
    left: 91.66667%;
}

.push-xs-12 {
    left: 100%;
}

.offset-xs-1 {
    margin-left: 8.33333%;
}

.offset-xs-2 {
    margin-left: 16.66667%;
}

.offset-xs-3 {
    margin-left: 25%;
}

.offset-xs-4 {
    margin-left: 33.33333%;
}

.offset-xs-5 {
    margin-left: 41.66667%;
}

.offset-xs-6 {
    margin-left: 50%;
}

.offset-xs-7 {
    margin-left: 58.33333%;
}

.offset-xs-8 {
    margin-left: 66.66667%;
}

.offset-xs-9 {
    margin-left: 75%;
}

.offset-xs-10 {
    margin-left: 83.33333%;
}

.offset-xs-11 {
    margin-left: 91.66667%;
}

@media (min-width: 767px) {
    .col-sm {
        flex-basis: 0;
        flex-grow: 1;
        max-width: 100%;
    }

    .col-sm-1 {
        flex: 0 0 8.33333%;
        max-width: 8.33333%;
    }

    .col-sm-2 {
        flex: 0 0 16.66667%;
        max-width: 16.66667%;
    }

    .col-sm-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }

    .col-sm-4 {
        flex: 0 0 33.33333%;
        max-width: 33.33333%;
    }

    .col-sm-5 {
        flex: 0 0 41.66667%;
        max-width: 41.66667%;
    }

    .col-sm-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .col-sm-7 {
        flex: 0 0 58.33333%;
        max-width: 58.33333%;
    }

    .col-sm-8 {
        flex: 0 0 66.66667%;
        max-width: 66.66667%;
    }

    .col-sm-9 {
        flex: 0 0 75%;
        max-width: 75%;
    }

    .col-sm-10 {
        flex: 0 0 83.33333%;
        max-width: 83.33333%;
    }

    .col-sm-11 {
        flex: 0 0 91.66667%;
        max-width: 91.66667%;
    }

    .col-sm-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .pull-sm-0 {
        right: auto;
    }

    .pull-sm-1 {
        right: 8.33333%;
    }

    .pull-sm-2 {
        right: 16.66667%;
    }

    .pull-sm-3 {
        right: 25%;
    }

    .pull-sm-4 {
        right: 33.33333%;
    }

    .pull-sm-5 {
        right: 41.66667%;
    }

    .pull-sm-6 {
        right: 50%;
    }

    .pull-sm-7 {
        right: 58.33333%;
    }

    .pull-sm-8 {
        right: 66.66667%;
    }

    .pull-sm-9 {
        right: 75%;
    }

    .pull-sm-10 {
        right: 83.33333%;
    }

    .pull-sm-11 {
        right: 91.66667%;
    }

    .pull-sm-12 {
        right: 100%;
    }

    .push-sm-0 {
        left: auto;
    }

    .push-sm-1 {
        left: 8.33333%;
    }

    .push-sm-2 {
        left: 16.66667%;
    }

    .push-sm-3 {
        left: 25%;
    }

    .push-sm-4 {
        left: 33.33333%;
    }

    .push-sm-5 {
        left: 41.66667%;
    }

    .push-sm-6 {
        left: 50%;
    }

    .push-sm-7 {
        left: 58.33333%;
    }

    .push-sm-8 {
        left: 66.66667%;
    }

    .push-sm-9 {
        left: 75%;
    }

    .push-sm-10 {
        left: 83.33333%;
    }

    .push-sm-11 {
        left: 91.66667%;
    }

    .push-sm-12 {
        left: 100%;
    }

    .offset-sm-0 {
        margin-left: 0%;
    }

    .offset-sm-1 {
        margin-left: 8.33333%;
    }

    .offset-sm-2 {
        margin-left: 16.66667%;
    }

    .offset-sm-3 {
        margin-left: 25%;
    }

    .offset-sm-4 {
        margin-left: 33.33333%;
    }

    .offset-sm-5 {
        margin-left: 41.66667%;
    }

    .offset-sm-6 {
        margin-left: 50%;
    }

    .offset-sm-7 {
        margin-left: 58.33333%;
    }

    .offset-sm-8 {
        margin-left: 66.66667%;
    }

    .offset-sm-9 {
        margin-left: 75%;
    }

    .offset-sm-10 {
        margin-left: 83.33333%;
    }

    .offset-sm-11 {
        margin-left: 91.66667%;
    }
}

@media (min-width: 1024px) {
    .col-md {
        flex-basis: 0;
        flex-grow: 1;
        max-width: 100%;
    }

    .col-md-1 {
        flex: 0 0 8.33333%;
        max-width: 8.33333%;
    }

    .col-md-2 {
        flex: 0 0 16.66667%;
        max-width: 16.66667%;
    }

    .col-md-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }

    .col-md-4 {
        flex: 0 0 33.33333%;
        max-width: 33.33333%;
    }

    .col-md-5 {
        flex: 0 0 41.66667%;
        max-width: 41.66667%;
    }

    .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .col-md-7 {
        flex: 0 0 58.33333%;
        max-width: 58.33333%;
    }

    .col-md-8 {
        flex: 0 0 66.66667%;
        max-width: 66.66667%;
    }

    .col-md-9 {
        flex: 0 0 75%;
        max-width: 75%;
    }

    .col-md-10 {
        flex: 0 0 83.33333%;
        max-width: 83.33333%;
    }

    .col-md-11 {
        flex: 0 0 91.66667%;
        max-width: 91.66667%;
    }

    .col-md-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .pull-md-0 {
        right: auto;
    }

    .pull-md-1 {
        right: 8.33333%;
    }

    .pull-md-2 {
        right: 16.66667%;
    }

    .pull-md-3 {
        right: 25%;
    }

    .pull-md-4 {
        right: 33.33333%;
    }

    .pull-md-5 {
        right: 41.66667%;
    }

    .pull-md-6 {
        right: 50%;
    }

    .pull-md-7 {
        right: 58.33333%;
    }

    .pull-md-8 {
        right: 66.66667%;
    }

    .pull-md-9 {
        right: 75%;
    }

    .pull-md-10 {
        right: 83.33333%;
    }

    .pull-md-11 {
        right: 91.66667%;
    }

    .pull-md-12 {
        right: 100%;
    }

    .push-md-0 {
        left: auto;
    }

    .push-md-1 {
        left: 8.33333%;
    }

    .push-md-2 {
        left: 16.66667%;
    }

    .push-md-3 {
        left: 25%;
    }

    .push-md-4 {
        left: 33.33333%;
    }

    .push-md-5 {
        left: 41.66667%;
    }

    .push-md-6 {
        left: 50%;
    }

    .push-md-7 {
        left: 58.33333%;
    }

    .push-md-8 {
        left: 66.66667%;
    }

    .push-md-9 {
        left: 75%;
    }

    .push-md-10 {
        left: 83.33333%;
    }

    .push-md-11 {
        left: 91.66667%;
    }

    .push-md-12 {
        left: 100%;
    }

    .offset-md-0 {
        margin-left: 0%;
    }

    .offset-md-1 {
        margin-left: 8.33333%;
    }

    .offset-md-2 {
        margin-left: 16.66667%;
    }

    .offset-md-3 {
        margin-left: 25%;
    }

    .offset-md-4 {
        margin-left: 33.33333%;
    }

    .offset-md-5 {
        margin-left: 41.66667%;
    }

    .offset-md-6 {
        margin-left: 50%;
    }

    .offset-md-7 {
        margin-left: 58.33333%;
    }

    .offset-md-8 {
        margin-left: 66.66667%;
    }

    .offset-md-9 {
        margin-left: 75%;
    }

    .offset-md-10 {
        margin-left: 83.33333%;
    }

    .offset-md-11 {
        margin-left: 91.66667%;
    }
}

@media (min-width: 1280px) {
    .col-lg {
        flex-basis: 0;
        flex-grow: 1;
        max-width: 100%;
    }

    .col-lg-1 {
        flex: 0 0 8.33333%;
        max-width: 8.33333%;
    }

    .col-lg-2 {
        flex: 0 0 16.66667%;
        max-width: 16.66667%;
    }

    .col-lg-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }

    .col-lg-4 {
        flex: 0 0 33.33333%;
        max-width: 33.33333%;
    }

    .col-lg-5 {
        flex: 0 0 41.66667%;
        max-width: 41.66667%;
    }

    .col-lg-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .col-lg-7 {
        flex: 0 0 58.33333%;
        max-width: 58.33333%;
    }

    .col-lg-8 {
        flex: 0 0 66.66667%;
        max-width: 66.66667%;
    }

    .col-lg-9 {
        flex: 0 0 75%;
        max-width: 75%;
    }

    .col-lg-10 {
        flex: 0 0 83.33333%;
        max-width: 83.33333%;
    }

    .col-lg-11 {
        flex: 0 0 91.66667%;
        max-width: 91.66667%;
    }

    .col-lg-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .pull-lg-0 {
        right: auto;
    }

    .pull-lg-1 {
        right: 8.33333%;
    }

    .pull-lg-2 {
        right: 16.66667%;
    }

    .pull-lg-3 {
        right: 25%;
    }

    .pull-lg-4 {
        right: 33.33333%;
    }

    .pull-lg-5 {
        right: 41.66667%;
    }

    .pull-lg-6 {
        right: 50%;
    }

    .pull-lg-7 {
        right: 58.33333%;
    }

    .pull-lg-8 {
        right: 66.66667%;
    }

    .pull-lg-9 {
        right: 75%;
    }

    .pull-lg-10 {
        right: 83.33333%;
    }

    .pull-lg-11 {
        right: 91.66667%;
    }

    .pull-lg-12 {
        right: 100%;
    }

    .push-lg-0 {
        left: auto;
    }

    .push-lg-1 {
        left: 8.33333%;
    }

    .push-lg-2 {
        left: 16.66667%;
    }

    .push-lg-3 {
        left: 25%;
    }

    .push-lg-4 {
        left: 33.33333%;
    }

    .push-lg-5 {
        left: 41.66667%;
    }

    .push-lg-6 {
        left: 50%;
    }

    .push-lg-7 {
        left: 58.33333%;
    }

    .push-lg-8 {
        left: 66.66667%;
    }

    .push-lg-9 {
        left: 75%;
    }

    .push-lg-10 {
        left: 83.33333%;
    }

    .push-lg-11 {
        left: 91.66667%;
    }

    .push-lg-12 {
        left: 100%;
    }

    .offset-lg-0 {
        margin-left: 0%;
    }

    .offset-lg-1 {
        margin-left: 8.33333%;
    }

    .offset-lg-2 {
        margin-left: 16.66667%;
    }

    .offset-lg-3 {
        margin-left: 25%;
    }

    .offset-lg-4 {
        margin-left: 33.33333%;
    }

    .offset-lg-5 {
        margin-left: 41.66667%;
    }

    .offset-lg-6 {
        margin-left: 50%;
    }

    .offset-lg-7 {
        margin-left: 58.33333%;
    }

    .offset-lg-8 {
        margin-left: 66.66667%;
    }

    .offset-lg-9 {
        margin-left: 75%;
    }

    .offset-lg-10 {
        margin-left: 83.33333%;
    }

    .offset-lg-11 {
        margin-left: 91.66667%;
    }
}

@font-face {
    font-family: 'Roboto';
    src: url("../fonts/Roboto-Italic.eot");
    src: url("../fonts/Roboto-Italic.eot?#iefix") format("embedded-opentype"), url("../fonts/Roboto-Italic.woff") format("woff"), url("../fonts/Roboto-Italic.ttf") format("truetype");
    font-weight: normal;
    font-style: italic;
}

@font-face {
    font-family: 'Roboto';
    src: url("../fonts/Roboto-Black.eot");
    src: url("../fonts/Roboto-Black.eot?#iefix") format("embedded-opentype"), url("../fonts/Roboto-Black.woff") format("woff"), url("../fonts/Roboto-Black.ttf") format("truetype");
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto';
    src: url("../fonts/Roboto-Light.eot");
    src: url("../fonts/Roboto-Light.eot?#iefix") format("embedded-opentype"), url("../fonts/Roboto-Light.woff") format("woff"), url("../fonts/Roboto-Light.ttf") format("truetype");
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto';
    src: url("../fonts/Roboto-MediumItalic.eot");
    src: url("../fonts/Roboto-MediumItalic.eot?#iefix") format("embedded-opentype"), url("../fonts/Roboto-MediumItalic.woff") format("woff"), url("../fonts/Roboto-MediumItalic.ttf") format("truetype");
    font-weight: 500;
    font-style: italic;
}

@font-face {
    font-family: 'Roboto Cn';
    src: url("../fonts/Roboto-BoldCondensedItalic.eot");
    src: url("../fonts/Roboto-BoldCondensedItalic.eot?#iefix") format("embedded-opentype"), url("../fonts/Roboto-BoldCondensedItalic.woff") format("woff"), url("../fonts/Roboto-BoldCondensedItalic.ttf") format("truetype");
    font-weight: bold;
    font-style: italic;
}

@font-face {
    font-family: 'Roboto';
    src: url("../fonts/Roboto-BoldItalic.eot");
    src: url("../fonts/Roboto-BoldItalic.eot?#iefix") format("embedded-opentype"), url("../fonts/Roboto-BoldItalic.woff") format("woff"), url("../fonts/Roboto-BoldItalic.ttf") format("truetype");
    font-weight: bold;
    font-style: italic;
}

@font-face {
    font-family: 'Roboto';
    src: url("../fonts/Roboto-BlackItalic.eot");
    src: url("../fonts/Roboto-BlackItalic.eot?#iefix") format("embedded-opentype"), url("../fonts/Roboto-BlackItalic.woff") format("woff"), url("../fonts/Roboto-BlackItalic.ttf") format("truetype");
    font-weight: 900;
    font-style: italic;
}

@font-face {
    font-family: 'Roboto Cn';
    src: url("../fonts/Roboto-Condensed.eot");
    src: url("../fonts/Roboto-Condensed.eot?#iefix") format("embedded-opentype"), url("../fonts/Roboto-Condensed.woff") format("woff"), url("../fonts/Roboto-Condensed.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto';
    src: url("../fonts/Roboto-Medium.eot");
    src: url("../fonts/Roboto-Medium.eot?#iefix") format("embedded-opentype"), url("../fonts/Roboto-Medium.woff") format("woff"), url("../fonts/Roboto-Medium.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto';
    src: url("../fonts/Roboto-Regular.eot");
    src: url("../fonts/Roboto-Regular.eot?#iefix") format("embedded-opentype"), url("../fonts/Roboto-Regular.woff") format("woff"), url("../fonts/Roboto-Regular.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto Cn';
    src: url("../fonts/Roboto-CondensedItalic.eot");
    src: url("../fonts/Roboto-CondensedItalic.eot?#iefix") format("embedded-opentype"), url("../fonts/Roboto-CondensedItalic.woff") format("woff"), url("../fonts/Roboto-CondensedItalic.ttf") format("truetype");
    font-weight: normal;
    font-style: italic;
}

@font-face {
    font-family: 'Roboto Cn';
    src: url("../fonts/Roboto-BoldCondensed.eot");
    src: url("../fonts/Roboto-BoldCondensed.eot?#iefix") format("embedded-opentype"), url("../fonts/Roboto-BoldCondensed.woff") format("woff"), url("../fonts/Roboto-BoldCondensed.ttf") format("truetype");
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto';
    src: url("../fonts/Roboto-Bold.eot");
    src: url("../fonts/Roboto-Bold.eot?#iefix") format("embedded-opentype"), url("../fonts/Roboto-Bold.woff") format("woff"), url("../fonts/Roboto-Bold.ttf") format("truetype");
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto';
    src: url("../fonts/Roboto-LightItalic.eot");
    src: url("../fonts/Roboto-LightItalic.eot?#iefix") format("embedded-opentype"), url("../fonts/Roboto-LightItalic.woff") format("woff"), url("../fonts/Roboto-LightItalic.ttf") format("truetype");
    font-weight: 300;
    font-style: italic;
}

@font-face {
    font-family: 'Roboto';
    src: url("../fonts/Roboto-Thin.eot");
    src: url("../fonts/Roboto-Thin.eot?#iefix") format("embedded-opentype"), url("../fonts/Roboto-Thin.woff") format("woff"), url("../fonts/Roboto-Thin.ttf") format("truetype");
    font-weight: 100;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto';
    src: url("../fonts/Roboto-ThinItalic.eot");
    src: url("../fonts/Roboto-ThinItalic.eot?#iefix") format("embedded-opentype"), url("../fonts/Roboto-ThinItalic.woff") format("woff"), url("../fonts/Roboto-ThinItalic.ttf") format("truetype");
    font-weight: 100;
    font-style: italic;
}

@font-face {
    font-family: 'Gotham Pro';
    src: url("../fonts/GothamPro-Medium.eot");
    src: url("../fonts/GothamPro-Medium.eot?#iefix") format("embedded-opentype"), url("../fonts/GothamPro-Medium.woff") format("woff"), url("../fonts/GothamPro-Medium.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Gotham Pro';
    src: url("../fonts/GothamPro-Italic.eot");
    src: url("../fonts/GothamPro-Italic.eot?#iefix") format("embedded-opentype"), url("../fonts/GothamPro-Italic.woff") format("woff"), url("../fonts/GothamPro-Italic.ttf") format("truetype");
    font-weight: normal;
    font-style: italic;
}

@font-face {
    font-family: 'Gotham Pro';
    src: url("../fonts/GothamPro.eot");
    src: url("../fonts/GothamPro.eot?#iefix") format("embedded-opentype"), url("../fonts/GothamPro.woff") format("woff"), url("../fonts/GothamPro.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Gotham Pro';
    src: url("../fonts/GothamPro-BlackItalic.eot");
    src: url("../fonts/GothamPro-BlackItalic.eot?#iefix") format("embedded-opentype"), url("../fonts/GothamPro-BlackItalic.woff") format("woff"), url("../fonts/GothamPro-BlackItalic.ttf") format("truetype");
    font-weight: 900;
    font-style: italic;
}

@font-face {
    font-family: 'Gotham Pro';
    src: url("../fonts/GothamPro-Black.eot");
    src: url("../fonts/GothamPro-Black.eot?#iefix") format("embedded-opentype"), url("../fonts/GothamPro-Black.woff") format("woff"), url("../fonts/GothamPro-Black.ttf") format("truetype");
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'Gotham Pro';
    src: url("../fonts/GothamPro-Light.eot");
    src: url("../fonts/GothamPro-Light.eot?#iefix") format("embedded-opentype"), url("../fonts/GothamPro-Light.woff") format("woff"), url("../fonts/GothamPro-Light.ttf") format("truetype");
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Gotham Pro';
    src: url("../fonts/GothamPro-BoldItalic.eot");
    src: url("../fonts/GothamPro-BoldItalic.eot?#iefix") format("embedded-opentype"), url("../fonts/GothamPro-BoldItalic.woff") format("woff"), url("../fonts/GothamPro-BoldItalic.ttf") format("truetype");
    font-weight: bold;
    font-style: italic;
}

@font-face {
    font-family: 'Gotham Pro';
    src: url("../fonts/GothamPro-MediumItalic.eot");
    src: url("../fonts/GothamPro-MediumItalic.eot?#iefix") format("embedded-opentype"), url("../fonts/GothamPro-MediumItalic.woff") format("woff"), url("../fonts/GothamPro-MediumItalic.ttf") format("truetype");
    font-weight: 500;
    font-style: italic;
}

@font-face {
    font-family: 'Gotham Pro Narrow';
    src: url("../fonts/GothamProNarrow-Bold.eot");
    src: url("../fonts/GothamProNarrow-Bold.eot?#iefix") format("embedded-opentype"), url("../fonts/GothamProNarrow-Bold.woff") format("woff"), url("../fonts/GothamProNarrow-Bold.ttf") format("truetype");
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Gotham Pro Narrow';
    src: url("../fonts/GothamProNarrow-Medium.eot");
    src: url("../fonts/GothamProNarrow-Medium.eot?#iefix") format("embedded-opentype"), url("../fonts/GothamProNarrow-Medium.woff") format("woff"), url("../fonts/GothamProNarrow-Medium.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Gotham Pro';
    src: url("../fonts/GothamPro-LightItalic.eot");
    src: url("../fonts/GothamPro-LightItalic.eot?#iefix") format("embedded-opentype"), url("../fonts/GothamPro-LightItalic.woff") format("woff"), url("../fonts/GothamPro-LightItalic.ttf") format("truetype");
    font-weight: 300;
    font-style: italic;
}

@font-face {
    font-family: 'Gotham Pro';
    src: url("../fonts/GothamPro-Bold.eot");
    src: url("../fonts/GothamPro-Bold.eot?#iefix") format("embedded-opentype"), url("../fonts/GothamPro-Bold.woff") format("woff"), url("../fonts/GothamPro-Bold.ttf") format("truetype");
    font-weight: bold;
    font-style: normal;
}

.header {
    position: relative;
    z-index: 500;
}

@media screen and (max-width: 766px) {
    .header .intro-content__text {
        padding-bottom: 40px;
        padding-top: 30px;
    }
}

.header-inner__burger {
    text-align: right;
}

.header-inner__burger p {
    display: inline-block;
    color: #fff;
    vertical-align: middle;
    font-size: 18px;
    height: 12px;
    font-family: 'Roboto';
    margin: 24px -30px 0 0;
}

.blank-subheader {
    position: relative;
}

.blank-subheader .blank-subheader__payment ul {
    padding: 0;
    margin: 10px 0 20px;
}

.blank-subheader .blank-subheader__payment ul li a {
    display: block;
    border-bottom: none;
    color: #fff;
    font-size: 19px;
    border-radius: 40px;
    font-family: 'Roboto';
    font-weight: 300;
    background: -ms-linear-gradient(#8b68fd, #336fff);
    background: -webkit-linear-gradient(#8b68fd, #336fff);
    background: linear-gradient(#8b68fd, #336fff);
    display: inline-block;
    text-decoration: none;
    padding: 0 25px;
    height: 55px;
    line-height: 55px;
}

.blank-subheader .blank-subheader__payment ul li a:before {
    display: none;
}

.blank-subheader .blank-subheader__payment ul li a img {
    margin-right: 10px;
    display: inline-block;
    vertical-align: middle;
}

.blank-subheader hr {
    margin-top: 12px !important;
    margin-bottom: 0px !important;
}

.blank-subheader ul {
    padding: 0 0 5px 0;
    margin: 20px 0;
}

.blank-subheader ul li {
    list-style: none;
    display: inline-block;
    /* margin-right: 15px;*/
}

@media screen and (max-width: 1300px) {
    .blank-subheader ul li {
        max-width: 20%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 20%;
        flex: 0 0 20%;
    }
}

.blank-subheader ul li a {
    font-family: 'Roboto';
    font-weight: normal;
    font-size: 15px;
    color: #000;
    text-decoration: none;
    border-bottom: 1px dashed #000;
}

@media screen and (min-width: 1300px) and (max-width: 1720px) {
    .blank-subheader ul li a {
        font-size: 12px;
    }
}

.blank-subheader ul li a:before {
    /* background-color: #fff;*/
    content: '';
    background-image: url(../img/table_link.png);
    display: inline-block;
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    vertical-align: middle;
    margin-top: -3px;
    padding-right: 27px;
    background-position: left bottom;
}

.blank-subheader ul li a:hover:before {
    background-position: left bottom;
}

.blank-subheader .blank-header__datepick {
    margin-left: 15px;
    margin-bottom: 15px;
}

form.blank-subheader {
    margin-top: 30px;
}

.intro {
    height: 630px;
    position: relative;
}

@media screen and (min-width: 767px) and (max-width: 1023px) {
    .intro {
        height: 600px;
    }
}

@media screen and (min-width: 1024px) and (max-width: 1279px) {
    .intro {
        height: 542px;
    }
}

@media screen and (max-width: 766px) {
    .intro {
        height: 380px;
        margin-top: 60px;
    }
}

@media screen and (max-width: 766px) {
    .intro .header-inner__lk {
        color: #000;
        border-color: #000;
    }
}

@media screen and (max-width: 766px) {
    .intro .burger__collapse:after, .intro .burger__collapse:before, .intro .burger__collapse span {
        background-color: #000;
    }
}

@media screen and (max-width: 766px) {
    .intro .header-inner {
        background-color: #fff;
        padding: 0 15px;
        margin: 0 -15px;
    }

    .intro .header-inner .header-inner__phone h3 {
        color: #000;
    }

    .intro .header-inner .menu__link {
        color: #000;
        border-color: #000;
    }
}

@media screen and (max-width: 766px) {
    .intro .header-inner .header-inner__logo {
        /*margin-top: 12px;*/
    }

    .intro .header-inner .header-inner__logo img {
        /*margin-left: -20px;*/
        /*width: 140px;*/
    }
}

.intro-content {
    height: 505px;
}

@media screen and (max-width: 766px) {
    .intro-content {
        height: 375px;
    }
}

@media screen and (min-width: 767px) and (max-width: 1023px) {
    .intro-content {
        height: 375px;
    }
}

@media screen and (min-width: 1024px) and (max-width: 1279px) {
    .intro-content {
        height: 435px;
    }
}

.intro-content .header-inner .menu__link {
    color: #000;
    border-color: #000;
}

.intro-content .header-inner__lk {
    color: #000;
    border-color: #000;
}

/*.intro-content .header-inner__logo img:nth-of-type(1) {
	opacity: 0;
}

.intro-content .header-inner__logo img:nth-of-type(2) {
	opacity: 1;
}*/

.intro-content .header-inner__phone h3 {
    color: #000;
}

.intro-content .intro__overlay {
    background-color: #fff;
}

@media screen and (max-width: 766px) {
    .intro-content .intro__overlay {
        background-color: transparent;
    }
}

@media screen and (max-width: 399px) {
    .intro-content .intro__overlay div {
        /*background-position: -800px center;*/
    }
}

@media screen and (min-width: 400px) and (max-width: 766px) {
    .intro-content .intro__overlay div {
        background-position: right center;
    }
}

@media screen and (min-width: 767px) and (max-width: 1023px) {
    .intro-content .intro__overlay div {
        background-position: -250px center;
    }
}

.intro__overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #14427e;
}

.intro__overlay div:not([class*="greetings"]):not([class*="YTPlayer"]):not(.mbYTP_wrapper):not(.hidden-xs-down):not(.hidden-sm-up) {
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transition: all ease-in-out 0.3s;
    transition: all ease-in-out 0.3s;
    visibility: hidden;
    pointer-events: none;
}

.intro__overlay .hidden-xs-down,
.intro__overlay .hidden-xs-up {
    width: 100%;
    height: 100%;
    background-size: cover;
}

@media screen and (min-width: 767px) and (max-width: 1023px) {
    .intro__overlay div {
        /* background-position: -350px center;*/
        background-position: center;
    }
}

.intro__overlay div.active {
    opacity: 1;
    visibility: visible;
}

.menu {
    padding-left: 0;
    padding-right: 0;
}

@media screen and (max-width: 1023px) {
    .menu {
        position: fixed;
        right: -80%;
        text-align: right;
        width: 80%;
        background-color: #fff;
        z-index: 99;
        height: 100vh;
        -webkit-transition: all ease-in-out 0.2s;
        transition: all ease-in-out 0.2s;
    }
}

@media screen and (min-width: 1720px) {
    .menu {
        margin-right: -15px;
    }
}

@media screen and (min-width: 1280px) and (max-width: 1719px) {
    .menu {
        margin-top: 12px;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 45%;
        flex: 0 0 45%;
        max-width: 45%;
    }

    .header-inner__phone {
        flex: 0 0 40%;
        max-width: 40%;
    }
}

@media screen and (max-width: 1023px) {
    .menu.collapsed {
        right: 0;
    }
}

.menu__list {
    padding: 0;
    margin: 25px 0 0;
}

@media screen and (max-width: 1719px) {
    .menu__list {
        margin: 10px 0 0;
    }
}

@media screen and (max-width: 1023px) {
    .menu__list {
        padding-top: 55px;
    }
}

@media screen and (max-width: 500px) {
    .menu__list {
        padding-top: 85px;
    }
}

@media screen and (min-width: 1024px) and (max-width: 1279px) {
    .menu__list {
        margin: 23px 0 0 5px;
    }
}

.menu__list .header-inner__lk {
    display: none;
}

@media screen and (max-width: 640px) {
    .menu__list .header-inner__lk {
        display: inline-block;
        color: #000;
        text-decoration: none;
        margin-right: 25px;
        line-height: 29px;
        padding: 3px 0 2.5px;
        font-family: "Roboto";
        font-size: 34px;
        font-weight: 300;
    }
}

@media screen and (max-width: 500px) {
    .menu__list .header-inner__lk {
        font-size: 20px;
        margin-right: 15px;
    }
}

.menu__item {
    list-style: none;
    display: inline-block;
    font-family: "Roboto";
    font-weight: bold;
    font-size: 16px;
}

@media screen and (max-width: 1023px) {
    .menu__item {
        display: block;
        font-size: 34px;
        font-weight: 300;
        margin-bottom: 31px;
    }
}

@media screen and (max-width: 500px) {
    .menu__item {
        font-size: 20px;
        margin-bottom: 20px;
    }
}

@media screen and (min-width: 1024px) and (max-width: 1719px) {
    .menu__item {
        /*font-size: 14px;*/
    }
}

@media screen and (min-width: 1024px) {
    .menu__item:last-child .menu__link {
        margin-right: 0;
    }
}

@media screen and (min-width: 1024px) {
    .menu__item:hover .menu__link:before, .menu__item:hover .menu__link:after, .menu__item:hover .menu__link span:after, .menu__item:hover .menu__link span:before {
        opacity: 1;
    }
}

@media screen and (min-width: 1024px) {
    .menu__item:hover .menu__sublist {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
}

.menu__close {
    background-image: url("../img/collapse__close.png");
    background-repeat: no-repeat;
    background-position: center;
    width: 30px;
    height: 29px;
    display: inline-block;
    cursor: pointer;
    position: absolute;
    top: 26px;
    right: 26px;
}

.menu__sublist {
    position: absolute;
    padding: 0;
    background-color: #fff;
    border-radius: 15px;
    min-width: 210px;
    z-index: 22;
    margin-left: -15px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    overflow: hidden;
}

@media screen and (min-width: 1024px) {
    .menu__sublist {
        box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.4);
    }
}

@media screen and (max-width: 1023px) {
    .menu__sublist {
        max-height: 0;
        overflow: hidden;
        -webkit-transition: max-height ease-in-out 0.8s;
        transition: max-height ease-in-out 0.8s;
        position: relative;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        background-color: transparent;
        margin-left: 0;
        margin-right: 10px;
    }
}

@media screen and (max-width: 500px) {
    .menu__sublist {
        margin-right: 0;
    }
}

.menu__sublist.menu__sublist_collapsed {
    max-height: 500px;
}

.menu__subitem {
    list-style: none;
    font-weight: 400;
    font-family: "Roboto";
    font-size: 16px;
    line-height: 35px;
}

@media screen and (max-width: 500px) {
    .menu__subitem {
        font-size: 14px;
    }
}

.menu__sublink {
    color: #000;
    padding: 0 15px;
    display: block;
    text-decoration: none;
}

@media screen and (min-width: 1024px) {
    .menu__sublink:hover {
        color: #fff;
        background: -ms-linear-gradient(left, #2470ff, #9367fd);
        background: -webkit-linear-gradient(left, #2470ff, #9367fd);
        background: linear-gradient(left, #2470ff, #9367fd);
    }
}

.menu__link {
    color: #000;
    text-decoration: none;
    margin-right: 25px;
    line-height: 29px;
    /* padding: 3px 0 2.5px;*/
    position: relative;
    display: inline-block;
    /* @media screen and (min-width: 1024px) and (max-width: 1719px){*/
    /*   padding: 3px 0 5px;*/
    /* }*/
}

@media screen and (min-width: 1024px) and (max-width: 1279px) {
    .menu__link {
        margin-right: 8px;
    }
}

@media screen and (max-width: 1023px) {
    .menu__link {
        color: #000;
    }
}

@media screen and (max-width: 500px) {
    .menu__link {
        margin-right: 15px;
    }
}

.menu__link span {
    position: relative;
    z-index: 1;
    display: inline-block;
}

.menu__link span:before {
    content: "";
    background-size: 100%;
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-image: url("../img/border_top.png");
    background-repeat: no-repeat;
    opacity: 0;
    top: 0;
}

.menu__link span:after {
    content: "";
    background-size: 100%;
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-image: url("../img/border_bottom.png");
    background-repeat: no-repeat;
    opacity: 0;
    bottom: 0;
}

@media screen and (min-width: 1023px) {
    .menu__link:before {
        width: calc(100% + 24px);
        height: 29px;
        border-top: 2px solid #9767FD;
        border-bottom: 2px solid #276FFE;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        background-position: 0 0, 100% 0;
        background-repeat: no-repeat;
        -webkit-background-size: 20px 100%;
        -moz-background-size: 20px 100%;
        background-size: 1px 100%;
        background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/PjxzdmcgeG1sbnM9Imh0d…0iMSIgaGVpZ2h0PSIxIiBmaWxsPSJ1cmwoI2xlc3NoYXQtZ2VuZXJhdGVkKSIgLz48L3N2Zz4=), url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/PjxzdmcgeG1sbnM9Imh0d…0iMSIgaGVpZ2h0PSIxIiBmaWxsPSJ1cmwoI2xlc3NoYXQtZ2VuZXJhdGVkKSIgLz48L3N2Zz4=);
        background-image: -webkit-linear-gradient(top, #9767FD 0%, #276FFE 100%), -webkit-linear-gradient(top, #9767FD 0%, #276FFE 100%);
        background-image: -moz-linear-gradient(top, #9767FD 0%, #276FFE 100%), -moz-linear-gradient(top, #9767FD 0%, #276FFE 100%);
        background-image: -o-linear-gradient(top, #9767FD 0%, #276FFE 100%), -o-linear-gradient(top, #9767FD 0%, #276FFE 100%);
        background-image: linear-gradient(to bottom, #9767FD 0%, #276FFE 100%), linear-gradient(to bottom, #9767FD 0%, #276FFE 100%);
        content: "";
        position: absolute;
        left: -12px;
        opacity: 0;
        z-index: 0;
        border-radius: 20px;
        top: 0;
    }
}

.menu__link:after {
    z-index: 0;
    background: #fff;
    width: calc(100% + 20px);
    border-radius: 20px;
    height: 25px;
    /*content: "";*/
    background-size: 100%;
    position: absolute;
    right: -10px;
    opacity: 0;
    top: 2px;
}

.content-lk .header-inner__phone:before {
    content: '';
    position: absolute;
    top: 35px;
    left: 15px;
    background-color: #8c68fd;
    height: 1px;
    z-index: -1;
}

@media screen and (min-width: 1720px) {
    .content-lk .header-inner__phone:before {
        width: 1060px;
    }
}

@media screen and (min-width: 1280px) and (max-width: 1719px) {
    .content-lk .header-inner__phone:before {
        width: 840px;
    }
}

@media screen and (max-width: 1279px) {
    .content-lk .header-inner__phone:before {
        width: 600px;
    }
}

.header-inner__phone {
    margin-top: 5px;
    text-align: right;
    position: relative;
}

@media screen and (min-width: 1280px) {
    .header-inner__phone {
        /*	-webkit-box-flex: 0;
		-ms-flex: 0 0 30%;
		flex: 0 0 30%;
		max-width: 30%;*/
    }
}

.header-inner__phone h3 {
    font-size: 21px;
    font-family: "Roboto";
    color: #000;
    font-weight: 400;
    display: inline-block;
}

@media screen and (min-width: 1720px) {
    .header-inner__phone h3 {
        margin-left: -5px;
        margin-top: 21px;
        float: none;
    }
}

@media screen and (max-width: 1719px) {
    .header-inner__phone h3 {
        font-size: 18px;
    }
}

@media screen and (min-width: 501) and (max-width: 1023px) {
    .header-inner__phone {
        margin-top: 32px;
    }
}

@media screen and (max-width: 766px) {
    .header-inner__phone {
        margin-top: 20px;
        text-align: right;
    }
}

@media screen and (max-width: 766px) {
    .header-inner__phone .header-inner__lk {
        font-size: 0;
        float: right;
    }
}

@media screen and (max-width: 1023px) {
    .header-inner__phone .header-inner__lk {
        float: right;
    }
}

.header-inner__lk {
    font-weight: bold;
    color: #000;
    margin-top: 23px;
    font-size: 16px;
    font-family: "Roboto";
    position: relative;
    text-decoration: none;
    border-bottom: 1px solid #000;
}

@media screen and (min-width: 1024px) and (max-width: 1719px) {
    .header-inner__lk {
        margin-top: 22px;
    }
}

@media screen and (max-width: 766px) {
    .header-inner__lk {
        margin-left: 60px;
        margin-top: 0;
        display: inline-block;
    }
}

@media screen and (min-width: 1024px) {
    .header-inner__lk {
        display: inline-block;
        margin-top: 19px;
    }
}

@media screen and (min-width: 1720px) {
    .header-inner__lk {
        margin-left: 63px;
    }
}

@media screen and (min-width: 1280px) and (max-width: 1719px) {
    .header-inner__lk {
        left: 0;
        margin-left: 70px;
        position: absolute;
        font-size: 14px;
    }
}

@media screen and (min-width: 1024px) and (max-width: 1279px) {
    .header-inner__lk {
        margin-top: 23px;
        font-size: 14px;
        margin-left: 50px;
    }
}

.header-inner__lk:before {
    content: "";
    position: absolute;
    top: -10px;
    left: -57px;
    width: 47px;
    height: 38px;
    background-position: center top;
    background-repeat: no-repeat;
    background-size: 100%;
    background-image: url("../img/lk.png");
}

@media screen and (min-width: 1280px) and (max-width: 1719px) {
    .header-inner__lk:before {
        background-image: url("../img/lk_m.png");
        width: 41px;
        height: 33px;
        left: -48px;
    }
}

@media screen and (max-width: 360px) {
    .header-inner__lk:before {
        left: -32px;
        top: -15px;
    }
}

.header-inner__lk:hover {
    border-bottom: none;
}

.header-inner__lk:hover:before {
    background-position: center bottom;
}

.greetings {
    position: relative;
    /*padding: 195px 0 0;*/
}

@media screen and (max-width: 766px) {
    .greetings {
        padding-top: 40px;
    }
}

@media screen and (min-width: 1280px) and (max-width: 1719px) {
    .greetings {
        width: 880px !important;
    }
}

@media screen and (min-width: 1720px) {
    .greetings {
        padding-left: 15px;
        padding-right: 15px;
    }
}

@media screen and (min-width: 767px) and (max-width: 1279px) {
    .greetings {
        /*padding-top: 150px;*/
    }
}

.greetings-inner {
    /*height: 600px;*/
    position: relative;
    width: 100%;
}

@media screen and (min-width: 767px) and (max-width: 1279px) {
    .greetings-inner {
        /*	height: 260px;*/
    }
}

@media screen and (max-width: 766px) {
    .greetings-inner {
        /*	height: 300px;*/
    }
}

.greetings-inner__text {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    /*position: absolute;*/
    -webkit-transition: all ease-in-out 0.2s;
    transition: all ease-in-out 0.2s;
    position: static;
}

@media screen and (max-width: 1279px) {
    .greetings-inner__text {
        padding: 0 30px;
    }
}

@media screen and (max-width: 766px) {
    .greetings-inner__text {
        padding: 0 5px;
        top: 0;
        left: 0;
        right: 0;
        height: 300px;
        bottom: 0;
        margin: auto;
    }
}

.greetings-inner__text h1 {
    font-family: "Gotham Pro";
    font-weight: bold;
    font-size: 47px;
    color: #000;
    margin-bottom: 10px;
    line-height: 50px;
}

@media screen and (max-width: 1024px) {
    .greetings-inner__text h1 {
        font-size: 36px;
        line-height: 36px;
    }
}

@media screen and (max-width: 766px) {
    .greetings-inner__text h1 {
        font-size: 28px;
        line-height: 36px;
    }
}

.greetings-inner__text h3 {
    margin-top: 20px;
    font-size: 19px;
    color: #000;
    font-family: "Roboto";
    font-weight: 300;
    line-height: 28px;
}

@media screen and (max-width: 766px) {
    .greetings-inner__text h3 {
        font-size: 16px;
        line-height: 22px;
    }
}

.greetings-inner__text_active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.can-inner {
    margin: 0;
}

@media screen and (min-width: 767px) and (max-width: 1023px) {
    .can-inner {
        width: 602px;
        margin: 0 auto;
        display: block;
    }
}

@media screen and (max-width: 766px) {
    .can-inner {
        margin-left: auto;
        margin-right: auto;
        padding-left: 15px;
        padding-right: 15px;
        width: 100%;
        max-width: 100%;
    }
}

.can-inner__item {
    height: 355px;
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    border: 5px solid #fff;
}

.can-inner__item:nth-of-type(odd) {
    border-left: 0;
}

.can-inner__item:nth-of-type(even) {
    border-right: 0;
}

@media screen and (max-width: 1279px) {
    .can-inner__item {
        border: none;
    }
}

@media screen and (min-width: 1024px) {
    .can-inner__item:nth-of-type(1) .can-inner__visible {
        bottom: 0;
        right: 0;
    }

    .can-inner__item:nth-of-type(2) .can-inner__visible {
        bottom: 0;
        left: 0;
    }

    .can-inner__item:nth-of-type(3) .can-inner__visible {
        top: 0;
        right: 0;
    }

    .can-inner__item:nth-of-type(4) .can-inner__visible {
        top: 0;
        left: 0;
    }
}

@media screen and (min-width: 767px) and (max-width: 1023px) {
    .can-inner__item {
        margin-bottom: 40px;
    }
}

@media screen and (min-width: 340px) and (max-width: 766px) {
    .can-inner__item {
        margin-bottom: 10px;
        background-size: 700px;
        background-position: top center;
    }
}

@media screen and (max-width: 341px) {
    .can-inner__item {
        margin-bottom: 10px;
        background-size: 630px;
        background-position: top center;
    }
}

.can-inner__overlay {
    background-color: rgba(19, 62, 121, 0.95);
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    -webkit-transition: all ease-in-out 0.2s;
    transition: all ease-in-out 0.2s;
}

@media screen and (max-width: 1023px) {
    .can-inner__overlay {
        display: none;
    }
}

.can-inner__visible {
    position: absolute;
    margin: auto;
    pointer-events: auto;
    visibility: visible;
    -webkit-transition: all ease-in-out 0.2s;
    transition: all ease-in-out 0.2s;
}

@media screen and (min-width: 1024px) {
    .can-inner__visible {
        /* opacity: 0;*/
        /* pointer-events: none;*/
        /* visibility: hidden;*/
        background-color: rgba(19, 62, 121, 0.95);
        padding: 4px 10px 0 27px;
        width: 290px;
        height: 138px;
        /* top: 0;*/
        /* left: 0;*/
        /* right: 0;*/
        /* bottom: 0;*/
    }
}

@media screen and (max-width: 1023px) {
    .can-inner__visible {
        left: 0;
        min-height: 115px;
        right: 0;
        bottom: 0;
        background-color: rgba(19, 62, 121, 0.95);
        text-align: left;
        margin: 0;
        padding: 0 15px;
        width: 100%;
    }
}

.can-inner__visible h3 {
    font-family: "Gotham Pro";
    font-weight: 400;
    margin-bottom: 5px;
    letter-spacing: -0.6px;
    font-size: 19px;
}

@media screen and (max-width: 1023px) {
    .can-inner__visible h3 {
        font-size: 19px;
        line-height: 24px;
    }
}

.can-inner__visible h3 a {
    text-decoration: none;
    border-bottom: 1px solid #fff;
    color: #fff;
}

.can-inner__visible h4 {
    margin-top: 10px;
    color: #fff;
    font-family: "Roboto";
    font-weight: 300;
    font-size: 16px;
    letter-spacing: 0.2px;
    line-height: 20px;
}

@media screen and (max-width: 1023px) {
    .can-inner__visible h4 {
        font-size: 16px;
        line-height: 20px;
    }
}

.can-inner__item:hover {
    /* @media screen and (max-width: 1024px){*/
    /* }*/
}

.can-inner__item:hover .can-inner__hidden,
.can-inner__item:hover .can-inner__overlay {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
}

@media screen and (min-width: 1024px) {
    .can-inner__item:hover .can-inner__visible {
        opacity: 0;
        pointer-events: none;
        visibility: hidden;
    }
}

.can-inner__hidden {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 610px;
    height: 200px;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    -webkit-transition: all ease-in-out 0.2s;
    transition: all ease-in-out 0.2s;
}

@media screen and (max-width: 1279px) {
    .can-inner__hidden {
        width: 100%;
        padding: 20px;
        height: 400px;
    }
}

@media screen and (max-width: 1023px) {
    .can-inner__hidden {
        display: none;
    }
}

@media screen and (max-width: 1719px) {
    .can-inner__hidden {
        width: 80%;
    }
}

@media screen and (max-width: 500px) {
    .can-inner__hidden {
        width: 98%;
    }
}

.can-inner__hidden h3 {
    font-family: "Gotham Pro";
    font-weight: 500;
    font-size: 32px;
    color: #fff;
    margin-bottom: 15px;
}

@media screen and (max-width: 500px) {
    .can-inner__hidden h3 {
        font-size: 24px;
        line-height: 28px;
    }
}

.can-inner__hidden p {
    margin-top: 15px;
    font-family: "Roboto";
    font-weight: 300;
    color: #fff;
    line-height: 24px;
    font-size: 16px;
}

.helper {
    /*    background-color: #f3f4f5;*/
    padding-top: 70px;
}

.helper:after {
    content: '';
    width: 100%;
    right: 0;
    margin-top: -70px;
    position: absolute;
    /*      background-color: #f3f4f5;*/
    height: 100%;
}

.helper:before {
    content: '';
    width: 100%;
    left: 0;
    margin-top: -70px;
    position: absolute;
    /*    background-color: #f3f4f5;*/
    height: 100%;
}

@media screen and (max-width: 766px) {
    .helper {
        padding-top: 20px;
    }

    .helper:before, .helper:after {
        margin-top: -20px;
    }
}

@media screen and (min-width: 1024px) and (max-width: 1279px) {
    .helper {
        padding-top: 45px;
    }

    .helper:before, .helper:after {
        margin-top: -45px;
    }
}

.helper-inner h2 {
    font-family: "Gotham Pro";
    font-size: 32px;
    letter-spacing: -0.4px;
    font-weight: 500;
    line-height: 35px;
    margin-bottom: 15px;
}

@media screen and (min-width: 767px) and (max-width: 1023px) {
    .helper-inner h2 {
        font-size: 32px;
        line-height: 32px;
    }
}

@media screen and (max-width: 766px) {
    .helper-inner h2 {
        font-size: 28px;
    }
}

@media screen and (max-width: 766px) {
    .helper-inner h2 {
        padding-left: 20px;
    }
}

.helper-inner h3 {
    font-family: "Roboto";
    font-weight: 700;
    letter-spacing: 0.35px;
    font-size: 16px;
    margin-top: 8px;
    line-height: 24px;
}

@media screen and (max-width: 766px) {
    .helper-inner h3 {
        padding-left: 20px;
    }
}

.helper-inner p {
    margin-top: 0;
    font-family: "Roboto";
    font-weight: 300;
    font-size: 16px;
    letter-spacing: 0.4px;
    line-height: 24px;
}

@media screen and (max-width: 766px) {
    .helper-inner p {
        padding-left: 20px;
    }
}

@media screen and (min-width: 1280px) {
    .helper-inner__left {
        padding-right: 100px;
    }
}

@media screen and (min-width: 1024px) {
    .helper-inner__left .helper-inner__image_hidden {
        display: none;
    }
}

@media screen and (min-width: 500px) and (max-width: 640px) {
    .helper-inner__left .helper-inner__image_hidden {
        float: none !important;
    }
}

.helper-inner__image {
    position: relative;
    margin-bottom: 30px;
}

@media screen and (min-width: 1024px) and (max-width: 1279px) {
    .helper-inner__image {
        max-width: 100%;
        margin-left: 0 !important;
    }
}

@media screen and (min-width: 1024px) {
    .helper-inner__image {
        margin-top: 40px;
    }
}

@media screen and (max-width: 1023px) {
    .helper-inner__image {
        display: block;
        margin: 0 auto !important;
        max-width: 100%;
    }
}

@media screen and (min-width: 400px) {
    .helper-inner__image {
        float: none !important;
    }
}

@media screen and (min-width: 1024px) {
    .helper-inner__image_top {
        margin-top: -80px;
    }
}

.can {
    margin-top: 74px;
}

@media screen and (max-width: 766px) {
    .can {
        margin-top: 24px;
    }
}

.can-container h2 {
    font-family: "Gotham Pro";
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 20px;
}

@media screen and (min-width: 767px) and (max-width: 1023px) {
    .can-container h2 {
        font-size: 32px;
        line-height: 32px;
    }
}

@media screen and (max-width: 766px) {
    .can-container h2 {
        padding-left: 20px;
        font-size: 28px;
        line-height: 32px;
    }
}

.feedback {
    background-image: url("../img/feedback.jpg");
    background-color: #133e79;
    margin-top: -5px;
    background-position: center;
    background-size: cover;
    position: relative;
    overflow: hidden;
}

@media screen and (max-width: 1023px) {
    .feedback {
        padding-bottom: 20px;
    }
}

@media screen and (max-width: 766px) {
    .feedback {
        margin-top: 0;
    }
}

.feedback-container {
    padding-top: 70px;
    margin-bottom: 60px;
}

@media screen and (max-width: 766px) {
    .feedback-container {
        padding-top: 0;
    }
}

@media screen and (min-width: 767px) and (max-width: 1023px) {
    .feedback-container {
        min-height: 465px;
        padding-top: 24px;
    }
}

@media screen and (min-width: 1024px) and (max-width: 1279px) {
    .feedback-container {
        padding-top: 40px;
        min-height: 535px;
    }
}

.feedback-container p {
    color: #fff;
    font-size: 16px;
    font-family: "Roboto";
    line-height: 24px;
    margin-bottom: 0;
}

.feedback-container h2 {
    font-family: "Gotham Pro";
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 16px;
    color: #fff;
}

@media screen and (max-width: 766px) {
    .feedback-container h2 {
        padding-left: 20px;
        font-size: 28px;
        line-height: 32px;
    }
}

@media screen and (min-width: 767px) and (max-width: 1023px) {
    .feedback-container h2 {
        font-size: 32px;
        line-height: 32px;
    }
}

.carousel__list {
    margin: 0;
    padding: 0;
    height: 515px;
    position: relative;
    text-align: center;
}

@media screen and (max-width: 1699px) {
    .carousel__list {
        overflow: hidden;
    }
}

@media screen and (max-width: 766px) {
    .carousel__list {
        height: 350px;
    }
}

.carousel__item {
    list-style: none;
    left: 0;
    top: 35px;
    position: relative;
    overflow: hidden;
    width: 660px;
    border: 2px solid #fff;
}

.carousel__item iframe {
    min-height: 400px;
}

.carousel__item img {
    display: block;
    /* max-height: 100%;*/
}

@media screen and (max-width: 766px) {
    .carousel__item {
        width: 100%;
        display: block;
        height: 305px;
        top: 0;
        left: 0;
        right: 0;
        position: relative;
    }
}

@media screen and (min-width: 767px) and (max-width: 1023px) {
    .carousel__item {
        height: 280px;
        width: 70%;
        top: 0;
    }
}

@media screen and (min-width: 1024px) and (max-width: 1279px) {
    .carousel__item {
        top: 0;
        height: 330px;
    }
}

.public {
    margin-top: 40px;
}

@media screen and (max-width: 766px) {
    .public {
        margin-top: 10px;
    }
}

.public-container {
    min-height: 400px;
}

.public-container p {
    font-family: 'Roboto';
    font-weight: 300;
    font-size: 16px;
    color: #000;
}

.public-container p.caption__date {
    color: #fff;
}

.public-container h4 {
    font-family: 'Roboto';
    font-weight: 500;
    font-size: 19px;
}

.public-container h2 {
    font-family: "Gotham Pro";
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 20px;
}

@media screen and (min-width: 767px) and (max-width: 1023px) {
    .public-container h2 {
        font-size: 32px;
        line-height: 32px;
    }
}

@media screen and (max-width: 766px) {
    .public-container h2 {
        font-size: 28px;
        /* padding-left: 20px;*/
        line-height: 32px;
    }
}

.public-container h3 {
    font-family: "Roboto";
    font-size: 16px;
    color: #000;
    font-weight: bold;
    text-align: center;
    margin-bottom: 22px;
}

.public-inner__item {
    list-style: none;
    min-height: 420px;
    position: relative;
    overflow: hidden;
    border: 5px solid #fff;
    background-color: transparent;
}

@media screen and (max-width: 1023px) {
    .public-inner__item {
        min-height: 325px;
    }
}

.public-inner__item:hover .public-inner__image {
    height: 110%;
    width: 110%;
}

.public-inner__item:hover .caption__title {
    border-bottom: none;
}

.public-inner__list {
    padding: 0;
    margin: 10px 0 0;
}

@media screen and (min-width: 767px) and (max-width: 1023px) {
    .public-inner__list {
        margin: 10px -5px 0;
    }
}

.public-inner__caption {
    background-color: #133e79;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
}

.public-inner__caption.fixed {
    padding: 6px 20px 10px;
    display: flex;
    align-items: center;
    align-content: flex-start;
    justify-content: flex-start;
    height: 62px;
}

.caption__date {
    color: #fff;
    margin-bottom: 0;
    margin-top: 0;
    font-size: 16px;
    font-family: "Roboto";
    font-weight: 300;
}

.caption__title {
    color: #fff;
    display: inline;
    border-bottom: 1px solid #fff;
    font-family: "Roboto";
    font-weight: 500;
    font-size: 19px;
}

@media screen and (min-width: 1920px) {
    .consult {
        background-size: contain;
        margin-top: 64px;
        background-repeat: no-repeat;
        background-image: url("../img/consult.jpg");
    }
}

.consult-inner__form {
    margin-top: 12px;
    margin-left: 0;
    position: relative;
    padding: 0;
}

@media screen and (max-width: 766px) {
    .consult-inner__form {
        padding: 0;
    }
}

.consult-container h2 {
    padding-bottom: 33px;
    border-bottom: 1px solid #133e79;
    font-family: "Gotham Pro";
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 20px;
}

@media screen and (min-width: 767px) and (max-width: 1023px) {
    .consult-container h2 {
        font-size: 32px;
        line-height: 32px;
    }
}

@media screen and (max-width: 766px) {
    .consult-container h2 {
        font-size: 28px;
        line-height: 32px;
        padding-left: 20px;
        padding-bottom: 30px;
        margin-bottom: 0;
        border: none;
    }
}

.consult-inner__field {
    margin-bottom: 24px;
    text-align: center;
    /*  padding: 0;*/
    position: relative;
}

.consult-inner__field h4 {
    font-family: 'Roboto';
    font-size: 19px;
    font-weight: bold;
    margin-top: 0;
    margin-bottom: 18px;
}

@media screen and (min-width: 1024px) {
    .consult-inner__field:nth-of-type(1) {
        /* border-right: 25px solid #fff;*/
    }
}

@media screen and (max-width: 766px) {
    .consult-inner__field:nth-of-type(1) {
        border-top: 1px solid #133e79;
        padding-top: 20px;
    }
}

@media screen and (min-width: 1024px) {
    .consult-inner__field:nth-of-type(even) {
        border-left: 25px solid #fff;
    }
}

@media screen and (min-width: 767px) and (max-width: 1023px) {
    .consult-inner__field:nth-of-type(even) {
        border-left: 10px solid #fff;
    }
}

@media screen and (max-width: 766px) {
    .consult-inner__field:last-child {
        padding: 0;
    }
}

@media screen and (min-width: 1024px) {
    .consult-inner__field:last-child {
        border-left: none;
    }
}

.consult-inner__field:last-child:after {
    content: "";
    position: absolute;
    bottom: 25px;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 1px;
    background-color: #133e79;
}

@media screen and (max-width: 766px) {
    .consult-inner__field:last-child:after {
        display: none;
    }
}

@media screen and (max-width: 766px) {
    .consult-inner__field {
        /* padding: 0 20px;*/
        margin-bottom: 0;
    }
}

.consult-inner__field input {
    padding: 0 5px;
    outline: none;
    height: 50px;
    border: none;
    font-family: "Roboto";
    font-weight: 300;
    font-size: 19px;
    color: #9d9d9d;
    width: 100%;
    border-bottom: 1px solid #9d9d9d;
    background-color: transparent;
}

.consult-inner__field input:active + span, .consult-inner__field input:focus + span {
    font-size: 12px;
    top: -20px;
}

.consult-inner__field label {
    position: relative;
}

.consult-inner__field label span {
    -webkit-transition: all ease-in-out .2s;
    transition: all ease-in-out .2s;
    color: #ddd;
    position: absolute;
    top: 0;
    left: 0;
    text-align: left;
    pointer-events: none;
    font-size: 19px;
    width: 100%;
    font-weight: 300;
    font-family: 'Roboto';
    /* padding: 12px 0;*/
}

.consult-inner__field label span.focused {
    font-size: 12px;
    top: -20px;
}

.consult-inner__field .content-lk__check {
    display: block;
    margin-bottom: 14px;
}

.consult-inner__field textarea {
    outline: none;
    background-color: transparent;
    padding: 0 5px;
    height: 148px;
    border: none;
    font-family: "Roboto";
    font-weight: 300;
    font-size: 19px;
    color: #9d9d9d;
    width: 100%;
    resize: none;
    border-bottom: 1px solid #9d9d9d;
}

@media screen and (max-width: 766px) {
    .consult-inner__field textarea {
        height: 50px;
        padding-top: 10px;
    }
}

.modal .blank-header__submit .blank-table__prev {
    left: 0;
}

.modal .blank-subheader__payment a {
    float: right;
    display: block;
    border-bottom: none;
    color: #fff;
    font-size: 19px;
    border-radius: 40px;
    font-family: 'Roboto';
    font-weight: 300;
    background: -ms-linear-gradient(#8b68fd, #336fff);
    background: linear-gradient(#8b68fd, #336fff);
    display: inline-block;
    text-decoration: none;
    padding: 0 25px;
    height: 55px;
    line-height: 55px;
    vertical-align: middle;
}

.modal .blank-subheader__payment a:before {
    display: none;
}

.modal .blank-subheader__payment a img {
    margin-right: 10px;
    display: inline-block;
    vertical-align: middle;
}

.modal .select__custom {
    text-align: left;
    margin: 5px 50px;
}

.modal .consult-inner__btn {
    margin-top: 0px;
}

.aligned_left {
    text-align: left;
}

@media screen and (max-width: 766px) {
    #modal-cowork .consult-inner__form {
        padding: 0 10px;
    }
}

#modal-cowork .consult-inner__field:nth-of-type(1) {
    border: none;
    padding-top: 0;
}

.consult-inner__btn {
    background-image: url("../img/btn.png");
    width: 275px;
    height: 54px;
    outline: none;
    border: none;
    background-repeat: no-repeat;
    border-left: 10px solid #fff;
    border-right: 10px solid #fff;
    background-color: #fff;
    cursor: pointer;
    text-transform: lowercase;
    font-family: "Roboto";
    font-weight: 300;
    background-size: 100%;
    font-size: 19px;
    color: #fff;
    margin-top: 29px;
    background-position: center top;
}

@media screen and (max-width: 766px) {
    .consult-inner__btn {
        margin-top: 25px;
        margin-bottom: 20px;
    }
}

.consult-inner__btn:hover {
    background-position: center bottom;
}

.footer {
    background-color: #f3f4f5;
    #border-bottom: 10px solid #133e79;
    margin-top: 85px;
    padding-top: 80px;
    padding-bottom: 10px;
}

.footer.new {
    font-family: Gotham Pro;
    color: #000;
    font-size: 1rem;
    line-height: 1.5;
}

.footer.new .container {
    width: 100%;
}

.footer.copyright .row {
    align-items: center;
}

.footer.copyright {
    padding: 17px 15px;
    background: #dcdcdc;
    margin-top: 0;
    font-family: Gotham Pro;
}

.footer.copyright a, .footer-menu__link, footer-copyright__text {
    font-weight: 500 !important;
    color: #000;
}

.footer.new .footer-menu__item {
    font-weight: 500;
    font-size: 0.8rem !important;
    margin-bottom: 1rem !important;
}

.footer.new .footer-menu__item a, .footer.new a.footer-menu__link {
    text-decoration: none;
    border: none;
}

.footer.new .social-links img {
    height: 37px;
}

.footer.new .flex {
    justify-content: flex-end;
}

.footer.new .footer-menu__link_mail {
    color: #000 !important;
}

.footer.new a:hover {
    opacity: .7;
    color: #000;
}

.footer.new ul {
    margin: 0;
}

.mr-3 {
    margin-right: 1rem !important;
}

.mr-4 {
    margin-right: 1.5rem !important;
}

.mt-5, .my-5 {
    margin-top: 3rem !important;
}

.mb-5, .my-5 {
    margin-bottom: 3rem !important;
}

.flex {
    display: flex;
}

.align-items-center {
    align-items: center;
}

@media screen and (min-width: 767px) and (max-width: 1279px) {
    .footer {
        padding-top: 50px;
    }
}

@media screen and (max-width: 766px) {
    .footer {
        /* margin-top: 30px;*/
        padding-top: 40px;
    }
}

.footer-copyright__text {
    font-size: 13px;
    font-family: "Roboto";
    font-weight: 400;
    margin-top: 25px;
    line-height: 18px;
}

@media screen and (max-width: 1279px) {
    .footer-copyright__text {
        display: inline-block;
        vertical-align: middle;
        margin-left: 20px;
        margin-top: 0;
    }
}

@media screen and (min-width: 1301px) {
    .footer-copyright__text span {
        display: block;
    }
}

@media screen and (min-width: 767px) and (max-width: 1023px) {
    .footer-copyright__text {
        display: inline-block;
        vertical-align: middle;
        margin-bottom: 0;
    }
}

@media screen and (max-width: 639px) {
    .footer-copyright__text {
        margin-left: 0;
        margin-top: 20px;
    }
}

@media screen and (min-width: 1024px) and (max-width: 1279px) {
    .footer-copyright__text {
        margin-left: 0;
        margin-top: 25px;
    }
}

.footer-menu__list {
    padding: 0;
    margin: 0;
}

@media screen and (min-width: 767px) {
    .footer-menu__list {
        -moz-column-count: 3;
        -webkit-column-count: 3;
        column-count: 3;
    }
}

@media screen and (min-width: 640px) and (max-width: 766px) {
    .footer-menu__list {
        -moz-column-count: 2;
        -webkit-column-count: 2;
        column-count: 2;
    }
}

@media screen and (max-width: 766px) {
    .footer-menu__list {
        margin-top: 20px;
    }
}

.footer-menu__item {
    font-family: "Roboto";
    font-weight: 300;
    font-size: 15.5px;
    margin-bottom: 0;
    line-height: 28px;
    list-style: none;
}

@media screen and (min-width: 767px) and (max-width: 1279px) {
    .footer-menu__item {
        font-size: 14px;
    }
}

@media screen and (max-width: 766px) {
    .footer-menu__item {
        margin: 5px 0;
    }
}

@media screen and (min-width: 640px) and (max-width: 766px) {
    .footer-menu {
        max-width: 60%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 60%;
        flex: 0 0 60%;
    }
}

@media screen and (min-width: 767px) and (max-width: 1023px) {
    .footer-menu {
        padding-right: 0;
    }
}

.footer-menu__link {
    text-decoration: none;
    border-bottom: 1px solid #000;
    color: #000;
}

.footer-menu__link:hover {
    color: #2470ff;
    border-bottom: none;
    text-decoration: none;
}

@media screen and (min-width: 767px) and (max-width: 1279px) {
    .footer-copyright {
        margin-bottom: 20px;
    }
}

@media screen and (min-width: 640px) and (max-width: 766px) {
    .footer-copyright {
        margin-bottom: 20px;
    }
}

.footer-menu__link_mail {
    color: #2470ff;
    border-bottom: none;
}

.footer-feedback__link {
    font-family: "Roboto";
    font-size: 13px;
    display: block;
    color: #a6a6a6;
    text-align: left;
    margin-top: 3px;
    line-height: 20px;
    text-decoration: none;
    position: relative;
    margin-bottom: 0;
    float: right;
}

@media screen and (max-width: 767px) {
    .footer-feedback__link {
        float: none;
    }
}

.footer-feedback__link a {
    height: 40px;
    display: inline-block;
}

.footer-feedback__link a:hover img {
    opacity: 1;
}

.footer-feedback__link span {
    text-align: right;
    line-height: 14px;
    margin-right: 10px;
}

@media screen and (max-width: 767px) {
    .footer-feedback__link span {
        text-align: left;
    }
}

.footer-feedback__link span,
.footer-feedback__link img {
    display: inline-block;
    vertical-align: top;
}

.footer-feedback__link img {
    opacity: .8;
}

@media screen and (min-width: 1024px) {
    .footer-feedback__link {
        /* padding-left: 100px;*/
        /*float: right;*/
    }
}

@media screen and (min-width: 767px) and (max-width: 1023px) {
    .footer-feedback__link {
        float: none;
        margin-left: 35px;
        margin-top: 10px;
    }
}

@media screen and (max-width: 768px) {
    .footer-feedback__link {
        margin-top: 40px;
    }
}

@media screen and (max-width: 766px) {
    .footer-feedback__link {
        margin-top: 0px;
    }
}

.footer-feedback {
    margin-top: 20px;
}

@media screen and (min-width: 1024px) {
    .footer-feedback {
        text-align: right;
        margin-top: 0;
    }
}

@media screen and (min-width: 767px) and (max-width: 1023px) {
    .footer-feedback {
        text-align: right;
        margin-top: 0px;
    }
}

@media screen and (min-width: 640px) and (max-width: 766px) {
    .footer-feedback {
        margin-top: 10px;
        max-width: 40%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 40%;
        flex: 0 0 40%;
    }
}

@media screen and (max-width: 768px) {
    .footer-feedback {
        margin-top: 10px;
    }
}

.feedback-inner {
    position: relative;
}

.feedback-inner__carousel {
    position: relative;
}

.footer-feedback__btn {
    background-image: url("../img/link.png");
    width: 186px;
    height: 46px;
    outline: none;
    border: none;
    cursor: pointer;
    background-color: transparent;
    text-transform: lowercase;
    font-family: "Roboto";
    background-size: 100%;
    font-weight: 300;
    font-size: 19px;
    color: #000;
    background-repeat: no-repeat;
    background-position: center bottom;
}

.footer-feedback__btn:hover {
    color: #fff;
    background-position: center top;
}

@media screen and (max-width: 766px) {
    .footer-feedback__btn {
        display: none;
    }
}

@media screen and (min-width: 767px) {
    .footer-menu__item.footer-menu__item_hidden {
        display: none;
    }
}

@media screen and (max-width: 766px) {
    .footer-menu__item.footer-menu__item_hidden {
        display: block;
    }
}

.footer-menu__item .footer-feedback__btn {
    margin: 15px 0;
}

@media screen and (min-width: 767px) {
    .footer-menu__item .footer-feedback__btn {
        display: none;
    }
}

@media screen and (max-width: 766px) {
    .footer-menu__item .footer-feedback__btn {
        display: block;
        margin: 25px 0 10px;
    }
}

.carousel-nav {
    position: absolute;
    width: 95px;
    height: 210px;
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: 0;
    margin: auto;
}

@media screen and (max-width: 766px) {
    .carousel-nav {
        display: none;
    }
}

@media screen and (min-width: 767px) and (max-width: 1279px) {
    .carousel-nav {
        bottom: -160px;
    }
}

@media screen and (min-width: 1280px) {
    .carousel-nav {
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
        bottom: auto;
        margin: auto;
    }
}

@media screen and (max-width: 766px) {
    #buttons {
        display: block;
        top: 0;
        bottom: auto;
        height: 100%;
        width: 100%;
        pointer-events: none;
        z-index: 999;
    }

    #buttons .carousel-nav__item_prev {
        pointer-events: auto;
        width: 35%;
    }

    #buttons .carousel-nav__item_prev:after {
        display: none;
    }

    #buttons .carousel-nav__item_next {
        pointer-events: auto;
        width: 35%;
    }

    #buttons .carousel-nav__item_next:after {
        display: none;
    }
}

@media screen and (min-width: 767px) and (max-width: 1279px) {
    #carousel {
        height: 370px;
    }
}

@media screen and (min-width: 767px) and (max-width: 1023px) {
    #carousel .carousel__item {
        width: 90%;
    }
}

@media screen and (min-width: 1024px) and (max-width: 1279px) {
    #carousel .carousel__item {
        width: 70%;
    }
}

@media screen and (min-width: 767px) and (max-width: 1279px) {
    #buttons.carousel-nav {
        bottom: 0;
        top: 0;
        width: 100%;
    }
}

.carousel-nav__item {
    width: 40px;
    height: 100%;
    cursor: pointer;
    display: inline-block;
    position: absolute;
    z-index: 11;
}

@media screen and (min-width: 1024px) {
    .carousel-nav__item {
        margin-top: -40px;
    }
}

@media screen and (max-width: 500px) {
    .carousel-nav__item {
        width: 11px;
        overflow: hidden;
    }
}

.carousel-nav__item:after {
    content: "";
    position: absolute;
    background-image: url("../img/carousel-nav__item.png");
    background-repeat: no-repeat;
    width: 26px;
    height: 57px;
}

@media screen and (max-width: 500px) {
    .carousel-nav__item:after {
        width: 22px;
        height: 25px;
        background-size: 100%;
    }
}

.carousel-nav__item_prev {
    left: 0;
}

@media screen and (min-width: 1280px) {
    .carousel-nav__item_prev {
        left: -100px;
    }
}

.carousel-nav__item_prev:after {
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    background-position: top left;
}

@media screen and (max-width: 1279px) {
    .carousel-nav__item_prev:after {
        left: 10px;
    }
}

@media screen and (max-width: 500px) {
    .carousel-nav__item_prev:after {
        left: 0;
    }
}

.carousel-nav__item_prev.carousel-nav__item_disabled:after {
    background-position: center left;
}

.carousel-nav__item_prev:hover:after {
    background-position: bottom left;
}

#carousel {
    overflow: visible !important;
}

@media screen and (max-width: 1718px) {
    #carousel .carousel-nav__item_prev {
        left: 0;
    }
}

#carousel .carousel-nav__item_prev:after {
    left: 0;
}

@media screen and (max-width: 1280px) {
    #carousel .carousel-nav__item_prev:after {
        left: 10px;
    }
}

@media screen and (max-width: 500px) {
    #carousel .carousel-nav__item_prev:after {
        left: 0;
    }
}

@media screen and (max-width: 1718px) {
    #carousel .carousel-nav__item_next {
        right: 0;
    }
}

#carousel .carousel-nav__item_next:after {
    right: 0;
}

@media screen and (max-width: 1280px) {
    #carousel .carousel-nav__item_next:after {
        right: 10px;
    }
}

@media screen and (max-width: 500px) {
    #carousel .carousel-nav__item_next:after {
        right: 0;
    }
}

.carousel-nav__item_next {
    right: 0;
}

@media screen and (min-width: 1280px) {
    .carousel-nav__item_next {
        right: -100px;
    }
}

.carousel-nav__item_next:after {
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    background-position: top right;
}

@media screen and (max-width: 1279px) {
    .carousel-nav__item_next:after {
        right: 10px;
    }
}

@media screen and (max-width: 500px) {
    .carousel-nav__item_next:after {
        right: 0;
    }
}

.carousel-nav__item_next:hover:after {
    background-position: bottom right;
}

.carousel-nav__item_next.carousel-nav__item_disabled:after {
    background-position: center right;
}

.header-inner {
    position: fixed;
    z-index: 100;
    width: inherit;
    top: 0;
    -webkit-transition: all ease-in-out 0.2s;
    transition: all ease-in-out 0.2s;
}

.header-inner:before {
    content: "";
    position: absolute;
    -webkit-transition: all ease-in-out 0.2s;
    transition: all ease-in-out 0.2s;
    z-index: -1;
    width: 3840px;
    left: -1920px;
}

@media screen and (min-width: 1024px) {
    .header-inner:before {
        height: 100%;
    }
}

@media screen and (max-width: 1023px) {
    .header-inner:before {
        height: 80px;
    }
}

@media screen and (max-width: 766px) {
    .header-inner:before {
        height: 54px;
    }
}

@media screen and (max-width: 1279px) {
    .header-inner {
        /*padding-bottom: 20px;*/
        justify-content: space-between;
    }
}

.header-inner__logo {
    margin-top: 12px;
    position: relative;
}

.header-inner__logo img {
    /*position: absolute;*/
    /*top: 0;*/
    -webkit-transition: all ease-in-out 0.2s;
    transition: all ease-in-out 0.2s;
}

@media screen and (min-width: 1280px) and (max-width: 1719px) {
    .header-inner__logo img {
        /*width: 138px;*/
        /* left: -17px;*/
        /*top: -2px;*/
    }
}

@media screen and (min-width: 1024px) and (max-width: 1279px) {
    .header-inner__logo img {
        /*width: 138px;*/
    }
}

@media screen and (min-width: 1280px) {
    .header-inner__logo {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 14.66667%;
        flex: 0 0 14.66667%;
    }
}

@media screen and (max-width: 1024px) {
    .footer-copyright__link {
        display: inline-block;
        vertical-align: middle;
    }
}

@media screen and (min-width: 767px) and (max-width: 1279px) {
    .footer-copyright__link {
        display: inline-block;
        vertical-align: middle;
    }
}

.intro-content .burger__collapse:after, .intro-content .burger__collapse:before,
.intro-content .burger__collapse span {
    background-color: #000;
}

.intro-content .intro__overlay div {
    visibility: visible;
    opacity: 1;
}

.burger__collapse {
    position: relative;
    width: 40px;
    vertical-align: middle;
    height: 21px;
    background-color: transparent;
    border: none;
    outline: none;
    margin-top: 15px;
    cursor: pointer;
}

@media screen and (max-width: 766px) {
    .burger__collapse {
        width: 29px;
        margin-top: 15px;
        margin-right: -18px;
        margin-bottom: 15px;
    }
}

.burger__collapse span {
    height: 3px;
    background-color: #000;
    position: absolute;
    width: 100%;
    left: 0;
    top: 9px;
    display: inline-block;
}

.burger__collapse:before {
    content: "";
    width: 100%;
    height: 3px;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #000;
}

.burger__collapse:after {
    content: "";
    width: 100%;
    height: 3px;
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: #000;
}

@media screen and (min-width: 1024px) {
    .header-inner_fixed {
        background-color: transparent;
    }
}

.header-inner_fixed:before {
    background-color: #fff;
    box-shadow: 0 3px 8px 0 rgba(0, 0, 0, 0.1);
}

.public-inner__image {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-transition: all ease-in-out 0.5s;
    transition: all ease-in-out 0.5s;
    left: 0;
    top: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

@media screen and (max-width: 766px) {
    .public-inner__image {
        background-size: cover;
        background-position: top center;
    }
}

@media screen and (max-width: 1023px) {
    .menu__item_hasChild .menu__sublink {
        color: #2470ff;
    }
}

@media screen and (max-width: 1023px) {
    .menu__item_hasChild .menu__link {
        position: relative;
        color: #2470ff;
    }

    .menu__item_hasChild .menu__link:before {
        content: "";
        position: absolute;
        width: 24px;
        height: 12px;
        background-repeat: no-repeat;
        top: 20px;
        opacity: 1;
        left: -35px;
        display: block;
        background-image: url("../img/hasChild.png");
        background-position: center bottom;
    }
}

@media screen and (max-width: 1023px) {
    .menu__item_hasChild .menu__link:before {
        top: 10px;
    }
}

@media screen and (max-width: 1023px) {
    .menu__item_hasChild .menu__link.menu__link_collapsed:before {
        background-position: center top;
    }
}

.ability {
    padding-top: 70px;
    min-height: 633px;
    background-image: url("../img/ability.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.ability.--dietology {
    background-image: url("../img/diet_abil_bg.png");
}

.ability.--aktivnoe-dolgoletie {
    background-image: url("../img/dolgoletie_abil_bg.jpg");
}

@media screen and (min-width: 767px) and (max-width: 1023px) {
    .ability {
        margin-top: 38px;
        padding-top: 20px;
        min-height: 100%;
        padding-bottom: 40px;
    }
}

@media screen and (max-width: 766px) {
    .ability {
        padding-top: 20px;
        min-height: 100%;
        padding-bottom: 40px;
        background-image: none;
        background-color: #133e79;
    }
}

@media screen and (min-width: 1024px) and (max-width: 1279px) {
    .ability {
        padding-top: 45px;
        padding-bottom: 65px;
        min-height: 0;
    }
}

@media screen and (min-width: 1720px) {
    .ability-container.container_wide {
        width: 1312px !important;
    }
}

@media screen and (min-width: 1280px) and (max-width: 1719px) {
    .ability-container.container_wide {
        width: 1050px !important;
    }
}

@media screen and (min-width: 1024px) and (max-width: 1279px) {
    .ability-container.container_wide {
        width: 830px !important;
    }
}

@media screen and (min-width: 767px) and (max-width: 1023px) {
    .ability-container.container_wide {
        width: 635px !important;
    }
}

.ability-container h2 {
    font-family: "Gotham Pro";
    font-size: 32px;
    font-weight: 500;
    color: #fff;
    line-height: 35px;
    letter-spacing: -.4px;
    display: inline-block;
    margin-bottom: 20px;
    position: relative;
}

.ability-container h2:after {
    content: "";
    position: absolute;
    bottom: -14px;
    width: 100%;
    height: 1px;
    background-color: #fff;
    left: 0;
}

@media screen and (min-width: 767px) and (max-width: 1023px) {
    .ability-container h2 {
        font-size: 32px;
        line-height: 36px;
    }
}

@media screen and (max-width: 766px) {
    .ability-container h2 {
        font-size: 28px;
    }
}

.ability-container p {
    font-size: 19px;
    font-family: "Roboto";
    font-weight: 500;
    color: #fff;
    line-height: 24px;
}

@media screen and (min-width: 767px) and (max-width: 1279px) {
    .ability-container p {
        margin-bottom: 12px;
    }
}

@media screen and (max-width: 766px) {
    .ability-container p {
        margin: 0;
        font-size: 16px;
        font-weight: 300;
    }
}

.ability-inner {
    margin-top: 55px;
}

@media screen and (min-width: 767px) and (max-width: 1023px) {
    .ability-inner {
        margin-top: 20px;
    }
}

@media screen and (min-width: 1024px) and (max-width: 1279px) {
    .ability-inner {
        margin-top: 18px;
    }
}

@media screen and (max-width: 766px) {
    .ability-inner {
        margin-top: 30px;
        padding-left: 20px;
    }
}

.ability-inner__item {
    padding-left: 68px;
    position: relative;
    margin-bottom: 24px;
}

@media screen and (min-width: 767px) and (max-width: 1279px) {
    .ability-inner__item {
        margin-bottom: 0;
    }
}

@media screen and (max-width: 766px) {
    .ability-inner__item {
        padding-left: 18px;
        padding-right: 30px;
        border-left-width: 3px;
        border-left-style: solid;
        -o-border-image: linear-gradient(to bottom, #2670ff, #9967fd) 1 100%;
        border-image: -ms-linear-gradient(top, #2670ff, #9967fd) 1 100%;
        border-image: -webkit-linear-gradient(top, #2670ff, #9967fd) 1 100%;
        border-image: linear-gradient(to bottom, #2670ff, #9967fd) 1 100%;
    }
}

.ability-inner__item:before {
    content: "";
    position: absolute;
    left: 10px;
    top: 15px;
    background-image: url("../img/vote.png");
    width: 39px;
    height: 43px;
    background-repeat: no-repeat;
    background-position: center;
}

@media screen and (max-width: 766px) {
    .ability-inner__item:before {
        display: none;
    }
}

.group {
    background-image: url("../img/group.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 70px;
    min-height: 780px;
}

@media screen and (min-width: 767px) and (max-width: 1023px) {
    .group {
        min-height: 100%;
        padding-top: 23px;
        padding-bottom: 26px;
    }
}

@media screen and (max-width: 766px) {
    .group {
        min-height: 100%;
        padding-top: 23px;
        padding-bottom: 26px;
    }
}

@media screen and (min-width: 1024px) and (max-width: 1279px) {
    .group {
        padding-top: 46px;
        min-height: 0;
        padding-bottom: 85px;
    }
}

.group-container h2 {
    font-family: "Gotham Pro";
    font-size: 32px;
    letter-spacing: -.4px;
    line-height: 35px;
    color: #000;
}

@media screen and (min-width: 1024px) and (max-width: 1279px) {
    .group-container h2 {
        position: absolute;
    }
}

@media screen and (max-width: 766px) {
    .group-container h2 {
        font-size: 28px;
    }
}

.group-tab__nav {
    padding: 33px 0 0;
    background-image: url("../img/group_bg.png");
    background-position: 144px 40px;
    background-repeat: no-repeat;
}

@media screen and (min-width: 1024px) and (max-width: 1279px) {
    .group-tab__nav {
        background-position: 138px 140px;
        padding: 130px 0 0;
    }
}

@media screen and (min-width: 767px) and (max-width: 1023px) {
    .group-tab__nav {
        background-position: center;
        padding: 12px 0 0;
    }
}

@media screen and (max-width: 766px) {
    .group-tab__nav {
        background-position: center 60px;
        background-size: 70px;
    }
}

.group-tab__link {
    text-align: center;
    display: inline-block;
    width: 49%;
    padding-top: 67px;
    height: 140px;
    vertical-align: top;
    cursor: pointer;
    position: relative;
}

@media screen and (max-width: 766px) {
    .group-tab__link {
        width: 49%;
        height: 120px;
    }
}

.group-tab__link:before {
    content: "";
    position: absolute;
    display: block;
    background-image: url("../img/group.png");
    width: 83px;
    height: 82px;
    margin: 0 auto;
    left: 0;
    top: 0;
    right: 0;
    background-repeat: no-repeat;
}

@media screen and (max-width: 766px) {
    .group-tab__link:before {
        -webkit-transform: scale(0.8);
        transform: scale(0.8);
    }
}

.group-tab__link p {
    margin-top: 17px;
    font-family: "Roboto";
    font-weight: 300;
    color: #000;
    line-height: 21px;
}

@media screen and (max-width: 766px) {
    .group-tab__link p {
        font-size: 12px;
        line-height: 14px;
    }
}

.group-tab__link:hover:before {
    height: 81px;
    background-position-y: -83px;
}

.group-tab__link:nth-of-type(odd) {
    left: 0;
}

.group-tab__link:nth-of-type(even) {
    right: -25px;
}

@media screen and (max-width: 766px) {
    .group-tab__link:nth-of-type(even) {
        right: 0;
    }
}

.group-tab__link_layer:before {
    background-position: 0 0;
}

.group-tab__link_photo:before {
    background-position: -83px 0;
}

.group-tab__link_bio:before {
    background-position: -166px 0;
}

.group-tab__link_active.group-tab__link_bio:before {
    background-position: -165px -164px;
}

.group-tab__link_meta:before {
    background-position: -249px 0;
}

.group-tab__link_process:before {
    width: 84px;
    background-position: -332px 0;
}

.group-tab__link_hurt:before {
    width: 84px;
    background-position: -417px 0;
}

.group-tab__link_osob_meta:before {
    background-position: -505px 0;
}

.group-tab__link_fiz_act:before {
    background-position: -588px 0;
}

.group-tab__link_reac_prod:before {
    background-position: -671px 0;
}

.group-tab__link_meta_vit:before {
    background-position: -754px 0;
}

.group-tab__link_pish_vit:before {
    background-position: -838px 0;
}

.group-tab__link_risk_zab:before {
    background-position: -923px 0;
}

.group-tab__link_f_androgenii:before {
    background-position: -1008px 0;
}

.group-tab__link_f_estrogenii:before {
    background-position: -1093px 0;
}

.group-tab__link_met_progestrona:before {
    background-position: -1433px 0;
}

.group-tab__link_nazn_gorm_prep:before {
    background-position: -1263px 0;
}

.group-tab__link_metil:before {
    background-position: -1348px 0;
}

.group-tab__link_detox:before {
    background-position: -1178px 0;
}

.group-tab__link_izm_sip:before {
    background-position: -1093px 0;
}

.group-tab__link_izm_baf:before {
    background-position: -1518px 0;
}

.group-tab__link_izm_cr:before {
    background-position: -1603px 0;
}

.group-tab__link_izm_mps:before {
    background-position: -1688px 0;
}

.group-tab__link_ver_osl_gemo:before {
    background-position: -1178px 0;
}

.group--diet .group-tab__nav {
    background: none;
    display: flex;
    flex-wrap: wrap;
}

.group--diet .group-tab__link {
    width: 50%;
}

@media screen and (min-width: 767px) {
    .group--diet .group-tab__link {
        width: 33.333333%;
    }
}

@media screen and (min-width: 1023px) {
    .group--diet .group-tab__link {
        width: 16.666666%;
    }
}

.group--diet .group-tab__link:nth-of-type(even) {
    right: 0;
}

.group--diet .group-tab-content {
    display: flex;
    flex-wrap: wrap;
    margin-top: 60px;
}

@media screen and (min-width: 767px) {
    .group--diet .group-tab-content {
        flex-wrap: nowrap;
    }
}

.group--diet .group-tab-content__left {
    flex: 0 1 100%;
    order: 2;
}

@media screen and (min-width: 767px) {
    .group--diet .group-tab-content__left {
        order: 1;
        flex: 0 1 50%;
        padding-right: 15px;
        min-width: 400px;
    }
}

@media screen and (min-width: 1023px) {
    .group--diet .group-tab-content__left {
        padding-right: 30px;
    }
}

.group--diet .group-tab-content__right {
    flex: 0 1 100%;
    text-align: center;
    order: 1;
    padding-top: 22px;
}

@media screen and (min-width: 767px) {
    .group--diet .group-tab-content__right {
        order: 2;
        flex: 0 1 50%;
        padding-left: 15px;
    }
}

@media screen and (min-width: 1023px) {
    .group--diet .group-tab-content__right {
        padding-left: 30px;
    }
}

.group--diet .group-tab-content__right img {
    display: block;
    margin: 0 auto;
    max-width: 50%;
}

@media screen and (min-width: 767px) {
    .group--diet .group-tab-content__right img {
        max-width: 100%;
    }
}

.group-tab__link_active:before {
    background-position-y: -164px;
    height: 84px;
}

.group-tab__link_active:hover:before {
    background-position-y: -164px;
    height: 84px;
}

.group-tab__list {
    padding: 0;
    position: relative;
    z-index: 99;
    margin-top: 35px;
}

.group-tab__item {
    list-style: none;
    background-color: #e9f0ff;
    border-radius: 20px;
    padding: 7px 18px;
    margin-right: 10px;
    color: #2470ff;
    font-size: 16px;
    font-family: "Roboto";
    cursor: pointer;
    display: inline-block;
    text-align: center;
    border: 2px solid #e9f0ff;
    margin-bottom: 10px;
}

.group-tab__item:last-child {
    margin-right: 0;
}

@media screen and (min-width: 767px) and (max-width: 1279px) {
    .group-tab__item {
        margin-bottom: 18px;
        margin-right: 5px;
        padding: 7px 10px;
    }
}

@media screen and (max-width: 766px) {
    .group-tab__item {
        display: block;
        width: 100%;
        margin: 0 auto 15px;
        padding: 7px 0;
        font-size: 15px;
    }
}

.group-tab__item_active {
    border: 2px solid #2470ff;
}

.group-tab__content {
    position: relative;
    margin-bottom: 40px;
    /* @media screen and(min-width: 767px) and(max-width: 1279px){*/
    /*   min-height: 500px;*/
    /* }*/
}

@media screen and (max-width: 766px) {
    .group-tab__content {
        height: auto !important;
    }
}

.group-tab__subitem {
    padding-left: 40px;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    visibility: hidden;
    -webkit-transition: all ease-in-out 0.2s;
    transition: all ease-in-out 0.2s;
    font-weight: 300;
    font-family: "Roboto";
    font-size: 17px;
    line-height: 24px;
}

@media screen and (max-width: 1279px) {
    .group-tab__subitem {
        padding-left: 0;
    }
}

@media screen and (max-width: 766px) {
    .group-tab__subitem {
        top: 0;
        position: relative;
        visibility: visible;
        opacity: 1;
        display: none;
    }
}

@media screen and (min-width: 766px) and (max-width: 1023px) {
    .group-tab__subitem {
        position: relative;
        top: 0;
        display: none;
    }
}

.group-tab__subitem h3 {
    font-weight: 300;
    font-family: "Roboto";
    font-size: 17px;
    margin-top: 4px;
}

.group-tab__subitem h3 span {
    color: #2470ff;
}

@media screen and (max-width: 766px) {
    .group-tab__subitem h3 span {
        display: block;
    }
}

.group-tab__subitem p,
.group-tab-content p {
    color: #000;
    font-weight: 300;
    font-family: "Roboto";
    font-size: 17px;
    line-height: 24px;
    margin-top: 22px;
    max-width: 450px;
}

@media screen and (min-width: 766px) and (max-width: 1023px) {
    .group-tab__subitem p,
    .group-tab-content p {
        max-width: 100%;
    }
}

.group-tab__subitem_active {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
}

@media screen and (min-width: 766px) and (max-width: 1023px) {
    .group-tab__subitem_active {
        display: block;
    }
}

@media screen and (max-width: 766px) {
    .group-tab__subitem_active {
        display: block;
    }
}

.group-tab__inner {
    position: absolute;
    top: 0;
    left: 25px;
    width: 100%;
    opacity: 0;
    -webkit-transition: all ease-in-out 0.2s;
    transition: all ease-in-out 0.2s;
    pointer-events: none;
    visibility: hidden;
}

.group--diet .group-tab__inner {
    position: static;
    display: none;
    visibility: visible;
}

@media screen and (max-width: 766px) {
    .group-tab__inner {
        left: 0;
        padding: 0;
        position: relative;
        display: none;
    }
}

@media screen and (min-width: 766px) and (max-width: 1023px) {
    .group-tab__inner {
        display: none;
        position: relative;
        left: 0;
    }
}

.group-tab__inner_active {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
}

.group--diet .group-tab__inner_active {
    display: block;
}

@media screen and (max-width: 1023px) {
    .group-tab__inner_active {
        display: block;
    }
}

.helper-inner__item {
    opacity: 0;
    pointer-events: none;
    position: absolute;
    visibility: hidden;
    left: 0;
    list-style: none;
    right: 0;
    margin: 0 auto;
    top: 10px;
    -webkit-transition: all ease-in-out 0.2s;
    transition: all ease-in-out 0.2s;
}

@media screen and (max-width: 450px) {
    .helper-inner__item {
        top: 45px;
    }
}

@media screen and (min-width: 451px) and (max-width: 765px) {
    .helper-inner__item {
        top: 8px;
    }
}

.helper-inner__item img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
}

@media screen and (max-width: 450px) {
    .helper-inner__item img {
        padding: 0 !important;
    }
}

.helper-inner__item_active {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
}

.helper-inner__right a {
    color: #2470ff;
    text-decoration: none;
}

@media screen and (max-width: 767px) {
    .helper-inner__right {
        padding-bottom: 30px;
    }
}

.helper-inner__right ul {
    padding: 0;
    margin: 0 0 15px 20px;
}

.helper-inner__right ul li {
    list-style: none;
    position: relative;
}

.helper-inner__right ul li:before {
    content: '';
    position: absolute;
    width: 3px;
    height: 3px;
    top: 10px;
    left: -15px;
    border-radius: 10px;
    background-color: #2470ff;
}

.helper-inner__right ul li p {
    color: #000;
    margin-bottom: 1px;
    padding-left: 0;
}

@media screen and (max-width: 767px) {
    .helper-inner__right ul li p {
        margin-bottom: 15px;
    }
}

@media screen and (min-width: 767px) and (max-width: 1023px) {
    .helper-inner__right.hidden-md-up {
        padding-bottom: 62px;
    }
}

@media screen and (max-width: 1023px) {
    .helper-inner__right img {
        display: none;
    }
}

.helper-inner__list {
    padding: 0;
    max-width: 515px;
    position: relative;
    width: 100%;
    background-position: center;
    background-size: contain;
    height: 313px;
    margin: 0 auto;
    background-repeat: no-repeat;
    background-image: url("../img/note.png");
}

@media screen and (min-width: 1024px) and (max-width: 1279px) {
    .helper-inner__list {
        padding: 0 15px;
    }
}

@media screen and (max-width: 766px) {
    .helper-inner__list {
        background-image: none;
    }
}

@media screen and (max-width: 1023px) {
    .helper-inner__list img {
        padding: 20px 50px;
        width: 100%;
    }
}

@media screen and (min-width: 1024px) and (max-width: 1279px) {
    .helper-inner__list img {
        padding: 30px 50px;
    }
}

#helper-carousel {
    padding: 0 0 67px;
    text-align: center;
}

@media screen and (min-width: 767px) and (max-width: 1023px) {
    #helper-carousel {
        padding-bottom: 30px;
    }
}

@media screen and (min-width: 1024px) and (max-width: 1279px) {
    #helper-carousel {
        padding-bottom: 90px;
        margin-left: -10px;
    }
}

#helper-carousel a {
    color: #133e79;
    font-family: "Roboto";
    font-size: 16px;
    text-decoration: none;
    border-bottom: 1px solid #133e79;
    position: relative;
    display: inline-block;
    margin-top: 15px;
}

@media screen and (min-width: 1024px) and (max-width: 1279px) {
    #helper-carousel a {
        margin-top: 0;
    }
}

#helper-carousel a:after {
    content: "";
    background-image: url("../img/pdf.png");
    width: 67px;
    height: 67px;
    position: absolute;
    top: -70px;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.how {
    padding-top: 70px;
    min-height: 561px;
}

.how:before {
    content: '';
    width: 100%;
    left: 0;
    margin-top: -70px;
    position: absolute;
    height: 640px;
    background-color: #fff;
}

@media screen and (min-width: 767px) and (max-width: 1023px) {
    .how {
        min-height: 0;
        padding-bottom: 8px;
        padding-top: 20px;
    }
}

@media screen and (min-width: 1024px) and (max-width: 1279px) {
    .how {
        padding-top: 45px;
        min-height: 100%;
        padding-bottom: 64px;
    }
}

@media screen and (max-width: 766px) {
    .how {
        padding-top: 45px;
        min-height: 100%;
        padding-bottom: 64px;
    }
}

.how h2 {
    position: relative;
    font-family: "Gotham Pro";
    font-size: 32px;
    letter-spacing: -.4px;
    line-height: 35px;
    color: #000;
}

@media screen and (max-width: 766px) {
    .how h2 {
        font-size: 28px;
    }
}

.how-inner {
    position: relative;
    z-index: 1;
}

@media screen and (min-width: 1720px) {
    .how-inner {
        margin: 56px -40px 0;
    }
}

@media screen and (min-width: 1280px) and (max-width: 1719px) {
    .how-inner {
        margin: 56px -15px 0;
    }
}

@media screen and (min-width: 1024px) and (max-width: 1279px) {
    .how-inner {
        background-image: url("../img/zagib_2.png");
        background-repeat: no-repeat;
        background-position: center 60px;
    }
}

@media screen and (min-width: 767px) and (max-width: 1023px) {
    .how-inner {
        margin-top: 45px;
        background-image: url("../img/zagib.png");
        background-repeat: no-repeat;
        background-position: center 60px;
    }
}

.how-inner__item {
    position: relative;
    padding: 0 10px;
    text-align: center;
}

@media screen and (min-width: 1024px) and (max-width: 1279px) {
    .how-inner__item {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 33.33333%;
        flex: 0 0 33.33333%;
        padding: 0 30px;
        min-height: 300px;
        max-width: 33.33333%;
    }
}

@media screen and (min-width: 767px) and (max-width: 1023px) {
    .how-inner__item {
        min-height: 300px;
        padding: 0 10px;
    }
}

.how-inner__item p {
    font-family: "Roboto";
    font-weight: 300;
    font-size: 16px;
    margin-top: 5px;
    line-height: 18px;
}

@media screen and (min-width: 767px) and (max-width: 1023px) {
    .how-inner__item p {
        padding: 0 15px;
    }
}

@media screen and (min-width: 1024px) and (max-width: 1279px) {
    .how-inner__item p {
        padding: 0 50px;
    }
}

.how-inner__item p span {
    display: block;
    font-size: 13px;
    color: #696969;
    margin-top: 8px;
    line-height: 16px;
}

.how-inner__item img {
    position: relative;
    z-index: 10;
    background-color: #fff;
}

.how-inner__item:after {
    content: "";
    position: absolute;
    top: 59px;
    z-index: 9;
    left: 50%;
    width: 100%;
    height: 1px;
    background-color: #c2c2c2;
}

@media screen and (max-width: 766px) {
    .how-inner__item:after {
        display: none;
    }
}

.how-inner__item:last-child:after {
    display: none;
}

@media screen and (min-width: 767px) and (max-width: 1279px) {
    .how-inner__item:nth-of-type(3):after {
        display: none;
    }
}

.ask {
    background-image: url("../img/ask.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding-top: 70px;
    min-height: 800px;
    -webkit-transition: all ease-in-out .4s;
    transition: all ease-in-out .4s;
}

@media screen and (min-width: 767px) and (max-width: 1023px) {
    .ask {
        min-height: 100%;
        padding-top: 50px;
        padding-bottom: 85px;
    }
}

@media screen and (max-width: 766px) {
    .ask {
        min-height: 100%;
        padding-top: 23px;
        padding-bottom: 26px;
    }
}

@media screen and (min-width: 1024px) and (max-width: 1279px) {
    .ask {
        min-height: 100%;
        padding-top: 45px;
        padding-bottom: 85px;
    }
}

.ask-container h2 {
    font-family: "Gotham Pro";
    font-weight: 500;
    font-size: 32px;
    letter-spacing: -.4px;
    line-height: 35px;
    color: #fff;
}

@media screen and (max-width: 766px) {
    .ask-container h2 {
        font-size: 28px;
    }
}

@media screen and (min-width: 767px) and (max-width: 1023px) {
    .ask-container h2 {
        margin-bottom: 14px;
    }
}

.ask-inner__item {
    font-size: 19px;
    font-weight: 300;
    min-height: 46px;
    line-height: 25px;
    color: #fff;
    margin-bottom: 35px;
    cursor: pointer;
    text-decoration: none;
    position: relative;
    font-family: "Roboto";
}

@media screen and (max-width: 766px) {
    .ask-inner__item {
        margin-bottom: 5px;
    }
}

@media screen and (min-width: 767px) and (max-width: 1023px) {
    .ask-inner__item {
        padding-left: 40px;
        margin-bottom: 0;
        min-height: 28px;
    }
}

.ask-inner__item:before {
    content: "";
    position: absolute;
    width: 24px;
    height: 12px;
    background-repeat: no-repeat;
    background-position: center top;
    background-image: url("../img/collapse_expand.png");
    top: 8px;
    left: 0;
}

@media screen and (min-width: 1024px) {
    .ask-inner__item:before {
        display: none;
    }
}

@media screen and (max-width: 766px) {
    .ask-inner__item:before {
        display: none;
    }
}

@media screen and (min-width: 1024px) and (max-width: 1279px) {
    .ask-inner__item {
        font-size: 17px;
    }
}

.ask-inner__item span {
    border-bottom: 1px solid #fff;
}

.ask-inner__item_active {
    color: #6fa1ff;
}

.ask-inner__item_active:before {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.ask-inner__item_active span {
    border-bottom: 1px solid #6fa1ff;
}

.ask-inner__item_active:after {
    content: "";
    position: absolute;
    width: 21px;
    background-repeat: no-repeat;
    background-position: center;
    right: -17px;
    top: 0;
    z-index: 10;
    height: 100%;
    bottom: 0;
    background-image: url("../img/answer_arrow.png");
}

@media screen and (max-width: 1023px) {
    .ask-inner__item_active:after {
        display: none;
    }
}

.ask-inner__text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    -webkit-transition: all ease-in-out 0.2s;
    transition: all ease-in-out 0.2s;
    pointer-events: none;
    visibility: hidden;
}

.ask-inner__text p {
    padding: 5px 100px 0 40px;
    font-size: 16px;
    color: #fff;
    line-height: 24px;
    font-family: "Roboto";
    font-weight: 300;
}

@media screen and (min-width: 1024px) and (max-width: 1279px) {
    .ask-inner__text p {
        padding: 5px 0 0 20px;
    }
}

@media screen and (max-width: 766px) {
    .ask-inner__text p {
        padding: 5px 0 0 5px;
    }
}

.ask-inner__subtext {
    -webkit-transition: all ease-in-out 0.4s;
    transition: all ease-in-out 0.4s;
    overflow: hidden;
}

@media screen and (min-width: 1024px) {
    .ask-inner__subtext {
        display: none;
    }
}

@media screen and (max-width: 1023px) {
    .ask-inner__subtext {
        max-height: 0;
    }
}

.ask-inner__subtext p {
    padding: 5px 100px 0 40px;
    font-size: 16px;
    color: #fff;
    line-height: 24px;
    font-family: "Roboto";
    font-weight: 300;
}

@media screen and (max-width: 766px) {
    .ask-inner__subtext p {
        padding: 5px 0 0 5px;
    }
}

.ask-inner__subtext_active {
    max-height: 100% !important;
    overflow: inherit;
}

.ask-inner__answer {
    border-left: 2px solid #4b6992;
}

.ask-inner__answer .ask-inner__subtext_active {
    display: block;
}

.intro-content__text {
    margin-top: 172px;
}

@media screen and (max-width: 766px) {
    .intro-content__text {
        margin-top: 15px;
    }
}

@media screen and (min-width: 767px) and (max-width: 1023px) {
    .intro-content__text {
        margin-top: 90px;
    }
}

@media screen and (min-width: 1024px) and (max-width: 1279px) {
    .intro-content__text {
        margin-top: 125px;
    }
}

@media screen and (max-width: 766px) {
    .intro-content__text img {
        display: block;
        margin: 0 auto;
    }
}

@media screen and (min-width: 767px) and (max-width: 1023px) {
    .intro-content__text img {
        width: 64px;
        margin-top: 5px;
    }
}

.intro-content__text.intro-content__text_black h1 {
    color: #000;
    margin-left: 0;
}

.intro-content__text h1 {
    margin-left: 4px;
    margin-top: 0;
    display: inline-block;
    vertical-align: top;
    font-size: 47px;
    font-family: "Gotham Pro";
    font-weight: bold;
    margin-bottom: 0;
}

.intro-content__text h1.intro-content__title {
    display: none;
}

.intro-content__text h1.intro-content__title_active {
    display: inline-block;
}

@media screen and (max-width: 1023px) {
    .intro-content__text h1 {
        font-size: 32px;
        padding-top: 10px;
    }
}

@media screen and (max-width: 766px) {
    .intro-content__text h1 {
        text-align: center;
        margin-left: 0;
        color: #fff;
        display: block;
    }
}

.intro-content__text h1 span {
    display: block;
    color: #7d7d7d;
    font-family: "Roboto";
    font-size: 19px;
    font-weight: 300;
}

@media screen and (max-width: 1023px) {
    .intro-content__text h1 span {
        font-size: 16px;
    }
}

@media screen and (max-width: 766px) {
    .intro-content__text h1 span {
        color: #fff;
    }
}

.intro-content__text p {
    margin-top: 12px;
    line-height: 26px;
    color: #000;
    font-family: "Roboto";
    font-size: 19px;
    font-weight: 300;
}

@media screen and (min-width: 767px) and (max-width: 1023px) {
    .intro-content__text p {
        margin-top: 8px;
        line-height: 22px;
    }
}

@media screen and (max-width: 1023px) {
    .intro-content__text p {
        text-align: center;
        font-size: 16px;
    }
}

@media screen and (max-width: 766px) {
    .intro-content__text p {
        color: #fff;
        line-height: 20px;
    }
}

.develop {
    padding-top: 70px;
    background-color: #133e79;
    min-height: 550px;
}

@media screen and (min-width: 767px) and (max-width: 1023px) {
    .develop {
        padding-top: 22px;
        min-height: 0;
        padding-bottom: 60px;
    }
}

@media screen and (max-width: 766px) {
    .develop {
        min-height: 100%;
        padding-top: 23px;
        padding-bottom: 26px;
    }
}

@media screen and (min-width: 1024px) and (max-width: 1279px) {
    .develop {
        padding-top: 45px;
        min-height: 100%;
        padding-bottom: 68px;
    }
}

.develop-container h2 {
    font-family: "Gotham Pro";
    font-size: 32px;
    line-height: 35px;
    letter-spacing: -.4px;
    color: #fff;
}

@media screen and (max-width: 766px) {
    .develop-container h2 {
        font-size: 28px;
    }
}

.develop-inner {
    margin-top: 45px;
}

@media screen and (min-width: 1024px) and (max-width: 1279px) {
    .develop-inner {
        margin: 45px -70px 0;
    }
}

@media screen and (min-width: 767px) and (max-width: 1023px) {
    .develop-inner {
        margin-top: 35px;
    }
}

.develop-inner__item {
    text-align: center;
}

.develop-inner__item p {
    font-family: "Roboto";
    font-size: 16px;
    line-height: 18px;
    color: #fff;
    margin-bottom: 20px;
    min-height: 54px;
}

@media screen and (min-width: 1024px) and (max-width: 1279px) {
    .develop-inner__item p {
        min-height: 54px;
    }
}

@media screen and (min-width: 767px) and (max-width: 1279px) {
    .develop-inner__item p {
        max-height: 72px;
        min-height: 72px;
    }
}

@media screen and (min-width: 767px) and (max-width: 1023px) {
    .develop-inner__item p {
        margin-bottom: 15px;
    }
}

@media screen and (min-width: 767px) and (max-width: 1023px) {
    .develop-inner__item img {
        width: 135px;
    }
}

.easy {
    padding-top: 75px;
}

.easy h2 {
    font-family: "Gotham Pro";
    font-weight: 500;
    font-size: 32px;
    letter-spacing: -.4px;
    line-height: 35px;
    color: #000;
    margin-bottom: 19px;
}

@media screen and (max-width: 766px) {
    .easy h2 {
        font-size: 28px;
    }
}

@media screen and (min-width: 767px) and (max-width: 1023px) {
    .easy h2 {
        margin-top: 50px;
    }
}

.easy-inner {
    padding: 0 13px;
}

@media screen and (min-width: 767px) and (max-width: 1023px) {
    .easy-inner {
        padding: 0;
    }
}

.easy-inner h4 {
    letter-spacing: 0.3px;
    margin-top: 0;
    font-weight: bold;
    font-family: "Roboto";
    font-size: 16px;
    margin-bottom: 0;
}

.easy-inner__list {
    padding: 0;
    margin-top: 5px;
}

.easy-inner__list li {
    color: #2470ff;
}

.easy-inner__list li p {
    font-family: "Roboto";
    margin-top: 5px;
    margin-bottom: 0;
    line-height: 23px;
    font-weight: 300;
    font-size: 16px;
    color: #000;
}

.easy-inner__button {
    background-image: url("../img/btn_big.png");
    width: 364px;
    height: 51px;
    outline: none;
    border: none;
    background-repeat: no-repeat;
    border-left: 10px solid #fff;
    border-right: 10px solid #fff;
    background-color: #fff;
    cursor: pointer;
    text-transform: lowercase;
    font-family: "Roboto";
    font-weight: 300;
    background-size: 100%;
    font-size: 19px;
    color: #fff;
    margin-left: -20px;
    margin-top: 9px;
    background-position: center top;
}

@media screen and (max-width: 1023px) {
    .easy-inner__button {
        margin: 9px auto;
        display: block;
    }
}

@media screen and (max-width: 766px) {
    .easy-inner__button {
        background-image: url("../img/btn_wide.png");
        width: 244px;
        height: 73px;
        border: none;
    }
}

@media screen and (min-width: 767px) {
    .easy-inner__button span {
        display: none;
    }
}

.easy-inner__button:hover {
    background-position: center bottom;
}

.ease-inner__photos {
    display: block;
    margin: 0 auto;
    max-width: 100%;
}

@media screen and (min-width: 767px) and (max-width: 1023px) {
    .footer-container {
        padding: 0;
    }
}

.helper-inner__nav {
    position: absolute;
    top: 0;
    width: 13px;
    background-repeat: no-repeat;
    height: 313px;
    cursor: pointer;
    background-image: url("../img/small_nav.png");
}

@media screen and (max-width: 766px) {
    .helper-inner__nav {
        display: none;
    }
}

.helper-inner__nav_prev {
    left: 45px;
    background-position: -27px center;
}

@media screen and (min-width: 1024px) and (max-width: 1279px) {
    .helper-inner__nav_prev {
        left: -10px;
    }
}

.helper-inner__nav_next {
    right: 45px;
    background-position: -42px center;
}

@media screen and (min-width: 1024px) and (max-width: 1279px) {
    .helper-inner__nav_next {
        right: -10px;
    }
}

.uniq {
    margin-top: 75px;
    background-image: url("../img/uniq.jpg");
    background-color: #133e79;
    padding-top: 70px;
    padding-bottom: 100px;
}

@media screen and (min-width: 1024px) {
    .uniq {
        background-size: cover;
    }
}

@media screen and (max-width: 1023px) {
    .uniq {
        background-size: cover;
    }
}

@media screen and (max-width: 766px) {
    .uniq {
        margin-top: 0;
        padding-top: 20px;
        padding-bottom: 80px;
    }
}

@media screen and (max-width: 766px) {
    .uniq {
        background-image: none;
    }
}

.uniq-inner {
    position: relative;
}

.uniq-inner:after {
    display: block;
    content: "";
    bottom: -25px;
    left: 0;
    right: 0;
    margin: 0 auto;
    position: absolute;
    width: 117px;
    height: 1px;
    border: 3px solid transparent;
    -o-border-image: linear-gradient(to bottom left, #2a70ff 0% 0%, #9867fd 100%);
    border-image: -webkit-linear-gradient(top right, #2a70ff 0% 0%, #9867fd 100%);
    border-image: -ms-linear-gradient(top right, #2a70ff 0% 0%, #9867fd 100%);
    border-image: linear-gradient(to bottom left, #2a70ff 0% 0%, #9867fd 100%);
    border-image-slice: 1;
    border-top: none;
    border-left: none;
    border-right: none;
}

.uniq-container {
    text-align: center;
}

.uniq-container h2 {
    font-weight: 300;
    color: #fff;
    font-family: "Gotham Pro";
    font-size: 32px;
    position: relative;
}

@media screen and (max-width: 766px) {
    .uniq-container h2 {
        font-size: 28px;
        font-weight: 500;
    }
}

.uniq-container h2:after {
    display: block;
    content: "";
    bottom: -25px;
    left: 0;
    right: 0;
    margin: 0 auto;
    position: absolute;
    width: 117px;
    height: 1px;
    border: 3px solid transparent;
    -o-border-image: linear-gradient(to bottom left, #2a70ff 0% 0%, #9867fd 100%);
    border-image: -webkit-linear-gradient(top right, #2a70ff 0% 0%, #9867fd 100%);
    border-image: -ms-linear-gradient(top right, #2a70ff 0% 0%, #9867fd 100%);
    border-image: linear-gradient(to bottom left, #2a70ff 0% 0%, #9867fd 100%);
    border-image-slice: 1;
    border-top: none;
    border-left: none;
    border-right: none;
}

.uniq-container p {
    letter-spacing: 0.6px;
    line-height: 35px;
    font-family: "Roboto";
    font-size: 21px;
    font-weight: 300;
    color: #fff;
}

@media screen and (max-width: 766px) {
    .uniq-container p {
        font-size: 16px;
        line-height: 24px;
        padding: 0;
    }
}

@media screen and (min-width: 1280px) {
    .uniq-container p {
        padding: 0 20px;
    }
}

.partners {
    padding-top: 70px;
    padding-bottom: 115px;
}

.partners h2 {
    font-weight: 500;
    color: #000;
    font-family: "Gotham Pro";
    font-size: 32px;
}

@media screen and (max-width: 766px) {
    .partners {
        padding-top: 10px;
        padding-bottom: 20px;
    }
}

.partners-inner {
    padding-top: 28px;
}

@media screen and (max-width: 766px) {
    .partners-inner {
        padding-top: 5px;
    }
}

@media screen and (min-width: 1280px) {
    .partners-inner {
        padding: 28px 10px 0;
    }
}

.partners-inner__item {
    text-align: center;
}

.partners-inner__item p {
    line-height: 18px;
    color: #133e79;
    font-size: 16px;
    font-family: "Roboto";
    min-height: 54px;
}

@media screen and (max-width: 1279px) {
    .partners-inner__item p {
        min-height: 90px;
    }
}

@media screen and (max-width: 766px) {
    .partners-inner__item p {
        font-size: 14px;
        min-height: 72px;
        letter-spacing: -.8px;
    }
}

.partners-inner__image {
    height: 175px;
    position: relative;
    background-image: url("../img/circle.png");
    background-repeat: no-repeat;
    background-position: center;
}

@media screen and (max-width: 1023px) {
    .partners-inner__image {
        background-size: contain;
    }
}

.partners-inner__image img {
    max-height: 117px;
    max-width: 117px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: block;
    margin: auto;
    /* max-width: 100%;*/
}

@media screen and (min-width: 767px) and (max-width: 1023px) {
    .partners-inner__image img {
        width: 80px;
    }
}

.map {
    margin-bottom: -85px;
}

#map-container {
    border-top: 1px solid #a4a4a4;
    border-bottom: 1px solid #a4a4a4;
    height: 490px;
}

@media screen and (max-width: 767px) {
    #map-container {
        margin-top: 20px;
    }
}

.contacts {
    background-image: url(../img/mainproduct.jpg);
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center top;
}

@media screen and (max-width: 1279px) {
    .contacts {
        background-image: none;
    }
}

.contacts .intro-content {
    height: auto !important;
}

.contacts .intro-content__text h1 {
    text-align: left;
}

.intro-content__column {
    margin-top: 20px;
    margin-bottom: 50px;
}

.intro-content__column li {
    list-style: none;
    margin-bottom: 20px;
}

.intro-content__column p {
    margin-top: 0;
    color: #000;
}

@media screen and (max-width: 766px) {
    .intro-content__column p {
        line-height: 20px;
    }
}

.intro-content__column p span {
    margin-top: 3px;
    display: block;
    color: #808080;
}

.intro-content__column p b {
    display: block;
    font-weight: 500;
    font-family: "Roboto";
    font-size: 21px;
    margin: 5px 0 34px;
    line-height: 20px;
}

.intro-content__column a {
    color: #2470ff;
    text-decoration: none;
    border-bottom: 1px solid #2470ff;
}

@media screen and (max-width: 766px) {
    .intro-content__column {
        margin-bottom: 10px;
    }
}

.intro-content__column:nth-of-type(2) {
    border-left: 1px solid #b2b2b2;
}

@media screen and (max-width: 766px) {
    .intro-content__column:nth-of-type(2) {
        border-left: none;
        border-top: 1px solid #b2b2b2;
        padding-top: 30px;
        margin-top: 0;
    }
}

.result {
    background-image: url("../img/result.jpg");
    padding-top: 68px;
    padding-bottom: 75px;
}

@media screen and (max-width: 766px) {
    .result {
        padding-top: 10px;
        padding-bottom: 15px;
        background-image: none;
        background-color: #f3f4f5;
    }
}

@media screen and (min-width: 767px) and (max-width: 1023px) {
    .result {
        padding-top: 20px;
        padding-bottom: 40px;
    }
}

.result-container h2 {
    font-family: "Gotham Pro";
    font-size: 32px;
    font-weight: 500;
    color: #000;
    line-height: 35px;
    letter-spacing: -.4px;
    margin-bottom: 20px;
    position: relative;
}

@media screen and (max-width: 766px) {
    .result-container h2 {
        font-size: 28px;
        font-weight: 500;
        line-height: 32px;
    }
}

@media screen and (max-width: 766px) {
    .result-inner {
        padding-left: 20px;
    }
}

.result-inner__item {
    margin-top: 10px;
    padding-left: 68px;
    position: relative;
    margin-bottom: 14px;
}

.result-inner__item:before {
    content: "";
    position: absolute;
    left: -10px;
    top: 15px;
    background-image: url("../img/vote.png");
    width: 39px;
    height: 43px;
    background-repeat: no-repeat;
    background-position: center;
}

@media screen and (max-width: 766px) {
    .result-inner__item:before {
        display: none;
    }
}

@media screen and (max-width: 766px) {
    .result-inner__item {
        padding-left: 10px;
        border-left-width: 2px;
        border-left-style: solid;
        -o-border-image: linear-gradient(to bottom, #2670ff, #9967fd) 1 100%;
        border-image: -ms-linear-gradient(top, #2670ff, #9967fd) 1 100%;
        border-image: -webkit-linear-gradient(top, #2670ff, #9967fd) 1 100%;
        border-image: linear-gradient(to bottom, #2670ff, #9967fd) 1 100%;
    }
}

@media screen and (min-width: 767px) and (max-width: 1023px) {
    .result-inner__item {
        padding-left: 50px;
        margin-top: 0;
    }
}

.result-inner__item p {
    font-size: 19px;
    font-family: "Roboto";
    font-weight: 500;
    color: #000;
    margin-bottom: 0;
    line-height: 24px;
}

@media screen and (max-width: 766px) {
    .result-inner__item p {
        margin-top: 0;
    }
}

.result-inner__item h5 {
    margin-bottom: 0;
    margin-top: 0;
    font-size: 16px;
    line-height: 24px;
    font-family: "Roboto";
    font-weight: 300;
}

.reasons {
    padding-top: 70px;
    padding-bottom: 65px;
    background-color: #133e79;
}

@media screen and (min-width: 767px) and (max-width: 1024px) {
    .reasons {
        padding-top: 30px;
        padding-bottom: 25px;
    }
}

@media screen and (max-width: 766px) {
    .reasons {
        padding-top: 15px;
        padding-bottom: 0;
    }
}

.reasons-container {
    position: relative;
}

.reasons-container h2 {
    font-family: "Gotham Pro";
    font-size: 32px;
    line-height: 35px;
    letter-spacing: -.4px;
    color: #fff;
}

@media screen and (max-width: 766px) {
    .reasons-container h2 {
        font-size: 28px;
        font-weight: 500;
        padding-left: 20px;
        line-height: 32px;
    }
}

.reasons-container:nth-of-type(2):after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url("../img/glow.png");
    background-position: center;
    background-repeat: no-repeat;
    top: 0;
    left: 0;
    z-index: 0;
}

@media screen and (min-width: 1024px) and (max-width: 1279px) {
    .reasons-container:nth-of-type(2):after {
        background-size: contain;
    }
}

.reasons-center__circle {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    background-image: url("../img/center_circle.png");
    background-position: center;
    background-repeat: no-repeat;
    width: 288px;
    height: 288px;
    z-index: 2;
    text-align: center;
}

@media screen and (max-width: 768px) {
    .reasons-center__circle {
        position: relative;
        margin: -170px auto -100px;
    }
}

@media screen and (min-width: 767px) and (max-width: 1023px) {
    .reasons-center__circle {
        position: relative;
        margin: -150px auto -70px;
    }
}

.reasons-center__circle:before {
    content: "";
    left: 15px;
    position: absolute;
    width: 21px;
    background-repeat: no-repeat;
    background-position: center left;
    height: 100%;
    background-image: url("../img/simple_arrow.png");
}

@media screen and (max-width: 768px) {
    .reasons-center__circle:before {
        background-image: url("../img/simple_arrow_m.png");
        top: 15px;
        width: 100%;
        height: 15px;
        left: 0;
        background-position: center top;
    }
}

.reasons-center__circle:after {
    content: "";
    right: 15px;
    position: absolute;
    width: 21px;
    background-repeat: no-repeat;
    background-position: center right;
    height: 100%;
    background-image: url("../img/simple_arrow.png");
}

@media screen and (max-width: 768px) {
    .reasons-center__circle:after {
        background-image: url("../img/simple_arrow_m.png");
        bottom: 15px;
        width: 100%;
        height: 15px;
        right: 0;
        background-position: center bottom;
    }
}

.reasons-center__circle p {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    margin: auto;
    bottom: 0;
    color: #fff;
    text-transform: uppercase;
    font-size: 17px;
    font-family: "Roboto";
}

@media screen and (min-width: 1024px) and (max-width: 1279px) {
    .reasons-container:nth-of-type(2) {
        width: 1000px !important;
    }
}

.reasons-inner__circle {
    text-align: center;
    position: relative;
    height: 440px;
    z-index: 1;
    margin-top: 50px;
    padding-top: 55px;
}

@media screen and (max-width: 766px) {
    .reasons-inner__circle:nth-of-type(1) {
        margin-top: 0;
    }
}

@media screen and (min-width: 767px) and (max-width: 1023px) {
    .reasons-inner__circle {
        width: 440px;
        padding: 25px 120px;
    }
}

@media screen and (min-width: 1024px) and (max-width: 1279px) {
    .reasons-inner__circle {
        width: 1000px !important;
    }
}

@media screen and (max-width: 766px) {
    .reasons-inner__circle {
        overflow: hidden;
    }
}

.reasons-inner__circle h3 {
    margin-bottom: 20px;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
    font-family: "Roboto";
    font-size: 17px;
    font-weight: 500;
    color: #346fff;
}

.reasons-inner__circle h3 span {
    display: block;
    color: #8269fd;
}

.reasons-inner__circle p {
    padding: 10px 0;
    margin: 0 60px 10px;
    color: #fff;
    font-size: 16px;
    font-family: "Roboto";
    font-weight: 300;
    position: relative;
    z-index: 1;
}

@media screen and (min-width: 1024px) and (max-width: 1279px) {
    .reasons-inner__circle p {
        margin: 0 40px 10px;
    }
}

@media screen and (max-width: 766px) {
    .reasons-inner__circle p {
        margin: 0 10px 10px;
    }
}

.reasons-inner__circle p:after {
    content: "";
    top: 0;
    right: 0;
    margin: 0 auto;
    position: absolute;
    left: 0;
    width: 200px;
    height: 1px;
    background-color: #fff;
}

.reasons-inner__circle p:before {
    content: "";
    bottom: 0;
    right: 0;
    margin: 0 auto;
    left: 0;
    position: absolute;
    width: 200px;
    height: 1px;
    background-color: #fff;
}

.reasons-inner__circle h4 {
    position: relative;
    z-index: 1;
    padding: 10px 0;
    margin: 0 50px;
    color: #6fa1ff;
    font-size: 16px;
    font-family: "Roboto";
    font-weight: 300;
}

@media screen and (max-width: 766px) {
    .reasons-inner__circle h4 {
        margin: 0 10px 10px;
    }
}

.reasons-inner__circle:after {
    content: "";
    position: absolute;
    width: 390px;
    height: 390px;
    border-radius: 100%;
    background-color: #123970;
    top: 0;
    left: 20px;
    z-index: 0;
}

@media screen and (min-width: 767px) and (max-width: 1023px) {
    .reasons-inner__circle:after {
        left: 0;
        right: 0;
        margin: 0 auto;
    }
}

@media screen and (max-width: 766px) {
    .reasons-inner__circle:after {
        left: -50%;
        right: -50%;
        margin: 0 auto;
    }
}

.genom {
    background-image: url("../img/genom.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 70px;
    min-height: 800px;
}

@media screen and (min-width: 767px) and (max-width: 1023px) {
    .genom {
        min-height: 100%;
        padding-top: 35px;
        padding-bottom: 85px;
    }
}

@media screen and (max-width: 766px) {
    .genom {
        min-height: 100%;
        padding-top: 0;
        padding-bottom: 26px;
    }
}

@media screen and (max-width: 1023px) {
    .genom {
        background-size: 1800px;
    }
}

@media screen and (min-width: 1024px) and (max-width: 1279px) {
    .genom {
        min-height: 100%;
        padding-top: 45px;
        padding-bottom: 85px;
    }
}

.genom-container {
    padding-bottom: 55px;
}

@media screen and (max-width: 1023px) {
    .genom-container {
        padding-bottom: 0;
    }
}

.genom-container h2 {
    font-family: "Gotham Pro";
    font-weight: 500;
    font-size: 32px;
    letter-spacing: -.4px;
    line-height: 35px;
}

@media screen and (max-width: 766px) {
    .genom-container h2 {
        font-size: 28px;
        font-weight: 500;
        padding-left: 20px;
        line-height: 32px;
    }
}

@media screen and (min-width: 767px) and (max-width: 1023px) {
    .genom-container h2 {
        margin-bottom: 14px;
    }
}

.genom-inner {
    margin-top: 35px;
}

@media screen and (min-width: 767px) and (max-width: 1023px) {
    .genom-inner {
        padding-bottom: 40px;
    }
}

@media screen and (max-width: 766px) {
    .genom-inner {
        margin-top: 0;
    }
}

.genom-inner ul {
    padding: 0;
    margin: 10px 0 30px 22px;
}

@media screen and (min-width: 767px) and (max-width: 1023px) {
    .genom-inner ul {
        margin: 10px 0 0 20px;
    }
}

@media screen and (max-width: 767px) {
    .genom-inner ul {
        margin: 10px 0;
        text-align: center;
    }
}

.genom-inner li {
    list-style: none;
    font-size: 16px;
    font-weight: 300;
    font-family: "Roboto";
    color: #737373;
    margin: 0 0 5px;
}

@media screen and (min-width: 767px) and (max-width: 1023px) {
    .genom-inner__answer {
        padding: 0;
    }
}

@media screen and (max-width: 766px) {
    .genom-inner__answer {
        padding: 0 0 20px;
    }
}

.genom-inner__item {
    font-size: 16px;
    font-weight: 300;
    margin-top: 26px;
    cursor: pointer;
    color: #2470ff;
    letter-spacing: -0.2px;
    text-decoration: none;
    font-family: "Roboto";
    position: relative;
}

@media screen and (max-width: 766px) {
    .genom-inner__item {
        background-color: #e9f0ff;
        border-radius: 40px;
        min-height: 58px;
    }
}

.genom-inner__item span {
    padding: 8px 20px;
    background-color: #e9f0ff;
    border-radius: 40px;
    border: 2px solid #fff;
}

@media screen and (min-width: 767px) and (max-width: 1023px) {
    .genom-inner__item span {
        padding: 8px 15px;
        display: block;
    }
}

@media screen and (max-width: 767px) {
    .genom-inner__item span {
        padding: 8px 0;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        border-radius: 0;
        background-color: transparent;
        margin: auto;
        border: none;
        display: inline-table;
        width: 100%;
    }
}

@media screen and (min-width: 767px) and (max-width: 1023px) {
    .genom-inner__item {
        margin-bottom: 0;
        min-height: 28px;
    }
}

@media screen and (max-width: 767px) {
    .genom-inner__item {
        text-align: center;
        margin-top: 0;
    }
}

.genom-inner__item_active {
    color: #6fa1ff;
}

@media screen and (max-width: 767px) {
    .genom-inner__item_active {
        border: 2px solid #2470ff;
    }
}

@media screen and (min-width: 768px) {
    .genom-inner__item_active span {
        border: 2px solid #2470ff;
    }
}

.genom-inner__item_active:after {
    content: "";
    position: absolute;
    width: 21px;
    background-repeat: no-repeat;
    background-position: center;
    right: -18px;
    z-index: 10;
    height: 100%;
    min-height: 47px;
    bottom: -12px;
    background-image: url("../img/answer_arrow_w.png");
}

@media screen and (max-width: 1023px) {
    .genom-inner__item_active:after {
        display: none;
    }
}

.genom-inner__text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    -webkit-transition: all ease-in-out 0.2s;
    transition: all ease-in-out 0.2s;
    pointer-events: none;
    visibility: hidden;
}

.genom-inner__text p {
    padding: 5px 100px 0 40px;
    font-size: 16px;
    line-height: 24px;
    font-family: "Roboto";
    font-weight: 300;
}

@media screen and (min-width: 1024px) and (max-width: 1279px) {
    .genom-inner__text p {
        padding: 5px 0 0 20px;
    }
}

@media screen and (max-width: 766px) {
    .genom-inner__text p {
        padding: 5px 0 0 5px;
    }
}

.genom-inner__quest {
    border-right: 2px solid #e5e5e5;
}

@media screen and (max-width: 1023px) {
    .genom-inner__quest {
        border: none;
    }
}

@media screen and (max-width: 766px) {
    .genom-inner__quest {
        margin: 0;
    }
}

@media screen and (min-width: 767px) and (max-width: 1023px) {
    .genom-inner__quest {
        padding: 0;
        padding-bottom: 20px;
        margin-bottom: 20px;
    }
}

.genom-inner__quest > div:nth-of-type(1n) {
    padding-right: 0;
}

@media screen and (max-width: 766px) {
    .genom-inner__quest > div:last-child ul {
        border-bottom: 1px solid #e5e5e5;
        padding-bottom: 20px;
    }
}

.genom-inner__subtext {
    -webkit-transition: all ease-in-out 0.2s;
    transition: all ease-in-out 0.2s;
    overflow: hidden;
    position: relative;
}

@media screen and (min-width: 1024px) {
    .genom-inner__subtext {
        display: none;
    }
}

@media screen and (max-width: 1023px) {
    .genom-inner__subtext {
        max-height: 0;
    }
}

.genom-inner__subtext p {
    padding: 0 100px 0 16px;
    margin: 0;
    font-size: 16px;
    line-height: 24px;
    font-family: "Roboto";
    font-weight: 300;
}

@media screen and (min-width: 1024px) and (max-width: 1279px) {
    .genom-inner__subtext p {
        padding: 0 15px 0 16px;
    }
}

@media screen and (min-width: 767px) and (max-width: 1023px) {
    .genom-inner__subtext p {
        padding: 0 15px 0 0;
    }
}

@media screen and (max-width: 766px) {
    .genom-inner__subtext p {
        padding: 15px 0 0 20px;
    }
}

.genom-inner__subtext_active {
    max-height: 520px !important;
}

@media screen and (max-width: 767px) {
    .genom-inner__subtext_active {
        max-height: 100% !important;
        height: 100% !important;
    }
}

.genom-inner__answer .genom-inner__subtext_active {
    display: block;
}

@media screen and (max-width: 767px) {
    .intro-content__breadcrumbs {
        /* display: none;*/
        margin-top: 50px;
        margin-bottom: 30px;
    }
}

.ss-wrapper {
    overflow: hidden;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 20;
    float: left;
}

.ss-wrapper:before {
    content: '';
    position: absolute;
    width: 30px;
    background-color: #fff;
    top: 0;
    z-index: 22;
    left: 0;
    height: 100%;
}

@media screen and (max-width: 1023px) {
    .ss-wrapper:before {
        display: none;
    }
}

.ss-content {
    height: 100%;
    width: 100%;
    padding: 0 32px 0 0;
    position: relative;
    right: -18px;
    overflow: auto;
    box-sizing: border-box;
}

.ss-scroll {
    position: relative;
    width: 12px;
    height: 12px !important;
    top: 0;
    z-index: 20;
    cursor: pointer;
    -webkit-transition: opacity 0.25s linear;
    transition: opacity 0.25s linear;
}

@media screen and (max-width: 767px) {
    .ss-scroll {
        display: none;
    }
}

.ss-scroll:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    width: 12px;
    height: 12px;
    background-image: url("../img/scrollbar.png");
    background-repeat: no-repeat;
}

.ss-scroll:after {
    content: "";
    position: absolute;
    right: 5px;
    width: 2px;
    z-index: 0;
    height: 3000px;
    background-color: #e5e5e5;
    top: -1000px;
}

@media screen and (max-width: 767px) {
    .ss-scroll:after {
        display: none;
    }
}

.ss-hidden {
    display: none;
}

.ss-grabbed {
    -o-user-select: none;
    -ms-user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    user-select: none;
}

.breadcrumbs__link {
    font-family: "Roboto";
    font-size: 16px;
    color: #000;
    text-decoration: none;
    font-weight: 300;
    position: relative;
    padding-left: 15px;
    margin-left: -15px;
    margin-top: 40px;
}

.breadcrumbs__link:hover {
    color: #2470ff;
}

.breadcrumbs__link span {
    border-bottom: 1px solid #2470ff;
}

.breadcrumbs__link:before {
    content: "";
    position: absolute;
    top: 0;
    left: -3px;
    width: 11px;
    height: 23px;
    background-image: url("../img/bread.png");
}

.publication__image {
    margin-top: 24px;
    min-height: 300px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

@media screen and (max-width: 766px) {
    .publication__image {
        margin-top: 0;
    }
}

.publication__title {
    position: relative;
    margin-top: 30px;
}

.publication__title h2 {
    font-size: 32px;
    font-family: "Gotham Pro";
    font-weight: 500;
    color: #000;
    margin-bottom: 20px;
    padding-right: 100px;
}

@media screen and (max-width: 766px) {
    .publication__title h2 {
        display: none;
    }
}

.publication__title p {
    position: absolute;
    top: 0;
    right: 0;
    font-family: "Roboto";
    font-size: 16px;
    color: #909090;
    margin-top: 5px;
    font-weight: 300;
}

@media screen and (max-width: 766px) {
    .publication__title p {
        position: relative;
    }
}

.publication__inner {
    border-bottom: 1px solid #cccccc;
    padding-bottom: 28px;
}

.publication__inner p {
    font-family: "Roboto";
    font-weight: 300;
    font-size: 16px;
    color: #000;
    line-height: 24px;
}

.mainproduct {
    min-height: 400px;
}

.mainproduct-item {
    list-style: none;
    margin-bottom: 24px;
}

@media screen and (max-width: 766px) {
    .mainproduct-item {
        border: none;
        padding-bottom: 40px;
        margin-bottom: 0;
    }
}

@media screen and (min-width: 767px) and (max-width: 1023px) {
    .mainproduct-item {
        margin-bottom: 45px;
    }
}

@media screen and (min-width: 1024px) and (max-width: 1279px) {
    .mainproduct-item {
        margin-bottom: 75px;
    }
}

@media screen and (min-width: 1279px) {
    .mainproduct-item {
        margin-bottom: 75px;
    }
}

@media screen and (min-width: 766px) {
    .mainproduct-item:nth-of-type(7) .mainproduct-item__text p {
        border: none;
    }
}

.mainproduct-item:nth-of-type(8) .mainproduct-item__text p {
    border: none;
}

.mainproduct-item__inner {
    position: relative;
    min-height: 100%;
}

.mainproduct-list {
    padding: 0;
}

@media screen and (max-width: 766px) {
    .mainproduct-list {
        margin-top: 0px;
    }
}

.mainproduct-container {
    margin-top: 40px;
}

@media screen and (max-width: 766px) {
    .mainproduct-container {
        margin-top: 0px;
        padding: 0 30px;
    }
}

@media screen and (min-width: 767px) and (max-width: 1023px) {
    .mainproduct-container {
        margin-top: 20px;
    }
}

@media screen and (min-width: 1024px) and (max-width: 1279px) {
    .mainproduct-container {
        margin-top: 30px;
    }
}

.mainproduct-item__image {
    margin-top: 30px;
}

@media screen and (min-width: 767px) and (max-width: 1023px) {
    .mainproduct-item__image {
        position: absolute;
    }
}

@media screen and (max-width: 1023px) {
    .mainproduct-item__image {
        max-height: 66px;
        margin-top: 15px;
    }

    .mainproduct-item__image img {
        width: 60px;
        max-height: 66px;
        display: block;
    }
}

@media screen and (max-width: 766px) {
    .mainproduct-item__image img {
        margin: 0;
    }
}

@media screen and (min-width: 767px) and (max-width: 1023px) {
    .mainproduct-item__text {
        padding-top: 76px;
    }
}

.mainproduct-item__text h3 {
    font-family: 'Roboto';
    font-size: 19px;
    margin-bottom: 8px;
}

.mainproduct-item__text h3 a {
    color: #000;
    text-decoration: none;
}

.mainproduct-item__text h3 a:hover {
    color: #2470ff;
}

@media screen and (max-width: 1023px) {
    .mainproduct-item__text h3 {
        margin-top: 10px;
    }
}

.mainproduct-item__text p {
    position: relative;
    min-height: 100%;
    margin-top: 0;
    line-height: 24px;
    font-family: 'Roboto';
    font-weight: 300;
    font-size: 16px;
    padding-bottom: 80px;
    margin-bottom: 0;
    border-bottom: 1px solid #ddd;
}

@media screen and (max-width: 766px) {
    .mainproduct-item__text p {
        padding-bottom: 38px;
        color: #000;
    }
}

@media screen and (min-width: 767px) and (max-width: 1023px) {
    .mainproduct-item__text p {
        padding-bottom: 40px;
    }
}

@media screen and (min-width: 1023px) and (max-width: 1279px) {
    .mainproduct-item__text p {
        padding-bottom: 58px;
    }
}

@media screen and (min-width: 1280px) {
    .mainproduct-item__text p {
        padding-bottom: 55px;
    }
}

.mainproduct-item__text > a {
    position: absolute;
    bottom: 50px;
    left: 15px;
    font-family: 'Roboto';
    font-size: 19px;
    text-decoration: none;
    text-transform: lowercase;
    padding: 8px 28px;
    border-radius: 30px;
    color: #000;
    background: -webkit-linear-gradient(#2470ff, #9367fd);
    background: -ms-linear-gradient(#2470ff, #9367fd);
    background: linear-gradient(#2470ff, #9367fd);
}

@media screen and (max-width: 766px) {
    .mainproduct-item__text > a {
        bottom: -18px;
    }
}

@media screen and (min-width: 767px) and (max-width: 1023px) {
    .mainproduct-item__text > a {
        bottom: -15px;
    }
}

@media screen and (min-width: 1023px) and (max-width: 1279px) {
    .mainproduct-item__text > a {
        bottom: 2px;
    }
}

@media screen and (min-width: 1279px) {
    .mainproduct-item__text > a {
        bottom: 0px;
    }
}

.mainproduct-item__text > a:before {
    content: 'Подробнее';
    position: absolute;
    line-height: 35px;
    text-align: center;
    left: 2px;
    top: 2px;
    width: 148px;
    height: 35px;
    border-radius: 30px;
    background-color: #fff;
}

.mainproduct-item__text > a:hover {
    color: #fff;
}

.mainproduct-item__text > a:hover:before {
    display: none;
}

.event-info__time p {
    margin-bottom: 6px;
}

.event-info__time p span {
    font-size: 16px;
    color: #909090;
    font-family: 'Roboto';
    font-weight: 300;
}

.event-info__timer ul {
    margin: 0;
    text-align: center;
    border: 1px solid #2470ff;
    border-radius: 15px;
    width: 217px;
    padding: 10px 15px;
}

@media screen and (max-width: 766px) {
    .event-info__timer ul {
        width: 100%;
    }
}

.event-info__timer ul li {
    list-style: none;
    display: inline-block;
    color: #2470ff;
    font-size: 36px;
    font-family: 'Roboto';
    position: relative;
    margin: 0 5px;
}

.event-info__timer ul li:last-child:after {
    display: none;
}

.event-info__timer ul li:after {
    content: ':';
    position: absolute;
    right: -12px;
    top: -4px;
}

.event-info__timer ul li span {
    display: block;
    font-size: 11px;
    color: #909090;
}

.event-info__company p,
.event-info__place p,
.event-info__date p,
.event-info__city p,
.event-info__personal p {
    font-size: 19px;
    font-family: 'Roboto';
    color: #000;
    font-weight: 500;
    margin-top: 19px;
    margin-bottom: 20px;
}

.event-info__company p span,
.event-info__place p span,
.event-info__date p span,
.event-info__city p span,
.event-info__personal p span {
    display: block;
    font-size: 16px;
    color: #909090;
    font-weight: 300;
}

.event-info__cost {
    border-radius: 15px;
    width: 200px;
    background-color: #f3f4f5;
    padding: 13px 25px;
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
    .event-info__cost {
        padding: 10px 5px 10px 15px;
    }
}

@media screen and (max-width: 768px) {
    .event-info__cost {
        margin-top: 15px;
        width: 100%;
    }
}

.event-info__cost p {
    padding: 0;
    margin: 0;
    font-size: 24px;
    color: #2470ff;
    font-family: 'Roboto';
    font-weight: 700;
}

.event-info__cost p span {
    display: block;
    font-size: 16px;
    color: #909090;
    font-weight: 300;
}

.event-info__photo {
    width: 150px;
    height: 150px;
    border-radius: 130px;
    border: 8px solid #fff;
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    margin: 0 auto;
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
    .event-info__photo {
        width: 140px;
        height: 140px;
        margin-top: 30px;
    }
}

@media screen and (max-width: 767px) {
    .event-info__photo {
        margin-top: 18px;
        width: 140px;
        height: 140px;
    }
}

.event-info__photo input {
    margin-bottom: 7px;
}

.event-info__photo:after {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    border-radius: 160px;
    width: 154px;
    height: 154px;
    z-index: -1;
    background: -webkit-linear-gradient(bottom, #018edb, #ab53de);
    background: -ms-linear-gradient(bottom, #018edb, #ab53de);
    background: linear-gradient(to top, #018edb, #ab53de);
}

@media screen and (max-width: 1023px) {
    .event-info__photo:after {
        width: 144px;
        height: 144px;
    }
}

.event-column {
    margin: 0;
}

@media screen and (min-width: 767px) and (max-width: 1023px) {
    .event-column:nth-of-type(2) {
        margin-top: 40px;
    }
}

@media screen and (min-width: 767px) and (max-width: 1023px) {
    .event-description {
        margin-top: 5px;
    }
}

@media screen and (max-width: 766px) {
    .event-description .consult-inner__field {
        padding: 0;
    }
}

.event-sort__city {
    position: relative;
    margin-bottom: 40px;
}

@media screen and (max-width: 1023px) {
    .event-sort__city {
        margin-bottom: 13px;
    }
}

@media screen and (max-width: 766px) {
    .event-sort__city {
        margin-bottom: 0px;
    }
}

.event-sort__city p {
    font-family: 'Roboto';
    display: block;
    font-size: 16px;
    color: #909090;
    font-weight: 300;
}

@media screen and (max-width: 766px) {
    .event-sort__city p {
        margin-bottom: 10px;
    }
}

.event-sort__city select {
    border: 1px solid #2470ff;
    padding: 6px 14px;
    border-radius: 20px;
    color: #2470ff;
    font-family: 'Roboto';
    font-size: 16px;
    font-weight: 300;
}

@media screen and (max-width: 766px) {
    .event-sort__city select {
        width: 100%;
        padding: 12px 14px;
    }
}

.event-sort__city select:focus {
    outline: none;
}

.event-sort__city input[type="radio"] {
    display: none;
    /* &:checked + span{*/
    /*   background-position: center top;*/
    /* }*/
}

.event-sort__city label {
    padding-left: 23px;
    margin-right: 10px;
    position: relative;
    font-family: 'Roboto';
    font-size: 16px;
    font-weight: 300;
    display: inline-block;
    margin-top: 8px;
}

.event-sort__city label span {
    left: 0;
    position: absolute;
    width: 18px;
    height: 18px;
    background-image: url(../img/radio.png);
    background-repeat: no-repeat;
    background-position: center bottom;
}

@media screen and (min-width: 1024px) and (max-width: 1279px) {
    .event-sort__city label:nth-of-type(2) {
        float: right;
        margin-right: 0;
    }
}

@media screen and (min-width: 1024px) and (max-width: 1279px) {
    .event-sort__city label:nth-of-type(3) {
        right: 5px;
        position: absolute;
        top: 10px;
    }
}

@media screen and (max-width: 766px) {
    .event-item__content {
        margin: 0;
        padding: 0;
    }
}

@media screen and (min-width: 767px) and (max-width: 1023px) {
    .event-item__content {
        margin-bottom: 40px;
    }
}

.event-item__header {
    border: 1px solid #c2c2c2;
    border-bottom: none;
    background-color: #f3f4f5;
    padding: 7px 33px;
}

@media screen and (max-width: 766px) {
    .event-item__header {
        padding: 7px 17px;
    }
}

.event-item__header p {
    margin: 0;
    font-family: 'Roboto';
    font-size: 16px;
    font-weight: 300;
}

.event-item__inner {
    border: 1px solid #c2c2c2;
    border-top: none;
    margin: 0;
    padding: 0 16px;
}

@media screen and (max-width: 766px) {
    .event-item__inner {
        padding: 0;
        padding-bottom: 30px;
    }
}

.event-item {
    margin-top: 35px;
}

@media screen and (min-width: 1024px) and (max-width: 1279px) {
    .event-item {
        margin-top: 26px;
    }
}

@media screen and (max-width: 1023px) {
    .event-item .footer-feedback__btn {
        margin: 0 auto;
        display: block;
    }
}

@media screen and (max-width: 766px) {
    .event-item .footer-feedback__btn {
        background-image: url(../img/link.png);
        width: 186px;
        height: 46px;
        margin-top: 30px;
    }
}

@media screen and (min-width: 767px) and (max-width: 1279px) {
    .event-item .event-info__photo {
        width: 100px;
        height: 100px;
    }
}

@media screen and (min-width: 767px) and (max-width: 1279px) {
    .event-item .event-info__photo:after {
        width: 104px;
        height: 104px;
        top: -10px;
        left: -10px;
    }
}

.event-item .event-info__cost {
    border-radius: 0;
    position: absolute;
    bottom: 0;
    left: -16px;
}

@media screen and (min-width: 767px) and (max-width: 1023px) {
    .event-item .event-info__cost {
        left: auto;
        bottom: auto;
        top: 24px;
        right: -15px;
        width: 165px;
    }
}

@media screen and (max-width: 766px) {
    .event-item .event-info__cost {
        position: relative;
        width: 180px;
        left: auto;
        margin: 0 auto;
        display: block;
    }
}

@media screen and (max-width: 768px) {
    .event-item .event-info__cost p {
        margin-bottom: 5px !important;
    }
}

.event-item .event-item__title h2 {
    margin-bottom: 10px;
    font-size: 17px;
    cursor: pointer;
}

@media screen and (min-width: 767px) and (max-width: 1023px) {
    .event-item .event-item__title h2 {
        max-width: 350px;
    }
}

.event-item .event-item__title h3 {
    text-align: left;
    margin-top: 0;
    /*padding-bottom: 70px;*/
    font-size: 17px;
}

.event-item .event-info__personal {
    margin-top: 30px;
}

@media screen and (min-width: 767px) and (max-width: 1023px) {
    .event-item .event-info__personal {
        margin-top: 0px;
    }
}

.event-item .event-item__text {
    margin-top: 16px;
    margin-bottom: 36px;
}

@media screen and (min-width: 767px) and (max-width: 1023px) {
    .event-item .event-item__text {
        margin-top: 10px;
    }
}

@media screen and (max-width: 766px) {
    .event-item .event-item__text {
        margin-bottom: 0;
    }
}

.event-item .event-item__text h3 {
    font-size: 19px;
    text-align: left;
    margin-bottom: 7px;
}

.event-item .event-item__text p {
    margin-top: 0;
    line-height: 24px;
    margin-bottom: 22px;
}

@media screen and (min-width: 767px) and (max-width: 1023px) {
    .event-item .event-item__text p {
        margin-bottom: 0;
    }
}

.event-pagination {
    text-align: center;
    margin-top: 46px;
}

.event-pagination__list {
    font-size: 0;
    padding-left: 0;
}

.event-pagination__item {
    width: 31px;
    height: 31px;
    text-align: center;
    line-height: 28px;
    font-family: 'Roboto';
    font-weight: 700;
    font-size: 16px;
    list-style: none;
    display: inline-block;
    border: 2px solid #b2b2b2;
    border-radius: 31px;
    position: relative;
    margin: 0 1px;
}

.event-pagination__item:after {
    content: '';
    width: 6px;
    height: 8px;
    top: 9px;
    background-color: #fff;
    right: -6px;
    z-index: 10;
    position: absolute;
    border-top: 2px solid #b2b2b2;
    border-bottom: 2px solid #b2b2b2;
}

.event-pagination__item:last-child:after {
    display: none;
}

.event-pagination__link {
    text-decoration: none;
    color: #000;
}

.event-pagination__link_active {
    color: #2470ff;
}

@media screen and (max-width: 400px) {
    .break-word {
        font-weight: inherit !important;
        font-family: inherit !important;
        font-size: inherit !important;
        display: inline-block !important;
    }
}

@media screen and (min-width: 380px) {
    .break-word {
        display: none !important;
    }
}

.event-description__inner h2 {
    font-size: 26px;
}

.event-description__inner p {
    font-family: 'Roboto';
    font-weight: 300;
    font-size: 16px;
    color: #000;
    line-height: 22px;
}

hr {
    width: 100%;
    margin: 20px 15px 15px;
    border: none;
    background-color: #c2c2c2;
    height: 1px;
}

.event-info {
    margin: 0;
    padding: 0;
}

.faq-quest__list {
    padding: 0;
}

@media screen and (max-width: 1023px) {
    .faq-quest__list {
        text-align: center;
        border-bottom: 2px solid #ededed;
    }
}

.faq-quest__item {
    list-style: none;
    background-color: #e9f0ff;
    border-radius: 20px;
    padding: 7px 18px;
    margin-right: 10px;
    margin-bottom: 25px;
    color: #2470ff;
    display: block;
    font-size: 16px;
    font-family: "Roboto";
    cursor: pointer;
    text-align: center;
    border: 2px solid #e9f0ff;
}

.faq-quest__item:hover {
    border: 2px solid #2470ff;
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
    .faq-quest__item {
        width: 48%;
        display: inline-block;
    }
}

.faq-quest__item_active {
    border: 2px solid #2470ff;
}

.faq-answers__list {
    padding: 0;
    margin: 0;
    display: none;
}

.faq-answers__list_active {
    display: block;
}

.faq-inner__answers {
    border-left: 2px solid #ededed;
}

@media screen and (max-width: 1023px) {
    .faq-inner__answers {
        border-left: none;
    }
}

@media screen and (max-width: 767px) {
    .faq-inner__answers {
        padding: 0 30px;
    }
}

.faq-answers__item {
    list-style: none;
    border-bottom: 1px solid #ededed;
    position: relative;
}

@media screen and (max-width: 1023px) {
    .faq-answers__item {
        padding-bottom: 15px;
    }
}

.faq-answers__item:before {
    content: '';
    position: absolute;
    top: 25px;
    right: 0;
    background-image: url(../img/faq.png);
    width: 19px;
    height: 8px;
    background-position: top center;
}

@media screen and (max-width: 767px) {
    .faq-answers__item:before {
        display: none;
    }
}

.faq-answers__item h3 {
    font-weight: 300;
    display: inline-block;
    font-size: 19px;
    font-family: 'Roboto';
    border-bottom: 1px solid #000;
    margin-top: 15px;
    margin-bottom: 20px;
    cursor: pointer;
}

@media screen and (max-width: 1023px) {
    .faq-answers__item h3 {
        margin-bottom: 5px;
    }
}

.faq-answers__item h3:hover {
    color: #2470ff;
    border-bottom: 1px solid #2470ff;
}

.faq-answers__item div p {
    margin-top: 5px;
    font-weight: 300;
    font-size: 16px;
    line-height: 24px;
    font-family: 'Roboto';
    display: none;
}

.faq-answers__item_active:before {
    background-position: bottom center;
}

.faq-answers__item_active h3 {
    color: #2470ff;
    border-bottom: 1px solid #2470ff;
}

.faq-answers__item_active div p {
    display: block;
}

.faq {
    margin-top: 45px;
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
    .faq {
        margin-top: 7px;
    }
}

@media screen and (max-width: 767px) {
    .faq {
        margin-top: 10px;
    }
}

.intro-content__tabs {
    margin-top: 60px;
    padding: 0;
    margin-bottom: 30px;
}

@media screen and (max-width: 766px) {
    .intro-content__tabs {
        margin-bottom: 75px;
        margin-top: 30px;
    }
}

.intro-content__tablist {
    padding: 0;
    margin: 0;
    width: 100%;
    position: relative;
    border-radius: 40px;
    height: 45px;
    background: -webkit-linear-gradient(#2470ff, #9367fd);
    background: -ms-linear-gradient(#2470ff, #9367fd);
    background: linear-gradient(#2470ff, #9367fd);
}

@media screen and (max-width: 766px) {
    .intro-content__tablist {
        background: none;
    }
}

@media screen and (min-width: 767px) {
    .intro-content__tablist {
        width: 450px;
    }
}

.intro-content__tablist:after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 100%;
    height: 100%;
    border-radius: 40px;
    background-color: #fff;
}

@media screen and (min-width: 767px) {
    .intro-content__tablist:after {
        width: 446px;
        height: 41px;
    }
}

.intro-content__tabitem {
    cursor: pointer;
    list-style: none;
    text-align: center;
    position: relative;
    z-index: 2;
    font-family: 'Roboto';
    font-weight: 300;
    font-size: 19px;
    padding: 12px 20px;
    border-radius: 40px;
}

@media screen and (max-width: 766px) {
    .intro-content__tabitem {
        margin-bottom: 10px;
        border: 2px solid #626bfe;
    }
}

.intro-content__tabitem_active {
    padding: 14px 20px;
    background: -webkit-linear-gradient(#2470ff, #9367fd);
    background: -ms-linear-gradient(#2470ff, #9367fd);
    background: linear-gradient(#2470ff, #9367fd);
    color: #fff;
    border: none;
}

.intro-content__sort {
    position: relative;
    margin-bottom: 40px;
}

@media screen and (max-width: 1023px) {
    .intro-content__sort {
        margin-bottom: 13px;
    }
}

@media screen and (max-width: 766px) {
    .intro-content__sort {
        margin-bottom: 0px;
        /*    padding: 0;*/
    }
}

.intro-content__sort p {
    font-family: 'Roboto';
    display: block;
    font-size: 16px;
    color: #909090;
    font-weight: 300;
}

@media screen and (max-width: 766px) {
    .intro-content__sort p {
        margin-bottom: 10px;
        text-align: center;
    }
}

.marker__label {
    background-color: #fff;
    height: 37px;
    padding: 0 22px 0 52px;
    line-height: 38px;
    position: absolute;
    border-radius: 41px;
    color: #808080;
    font-family: 'Roboto';
    font-size: 16px;
    font-weight: 300;
}

.marker__label:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0px;
    background-image: url(../img/marker_small.png);
    width: 37px;
    height: 41px;
}

.select__custom {
    position: relative;
    z-index: 10;
    cursor: pointer;
    display: inline-block;
}

.select__custom:after {
    content: '';
    position: absolute;
    top: 14px;
    z-index: 25;
    right: 20px;
    background-image: url(../img/custom__select.png);
    background-position: center top;
    background-repeat: no-repeat;
    width: 13px;
    height: 6px;
}

.select__custom:hover:after {
    background-position: center bottom;
}

.select__custom:hover.select__custom_focused {
    z-index: 21;
}

.select__custom:hover.select__custom_focused span {
    z-index: 22;
}

.select__custom:hover.select__custom_focused:after {
    background-position: center bottom;
}

.select__custom:hover.select__custom_focused ul {
    z-index: 20;
    display: block;
}

.select__custom span {
    z-index: 1;
    position: relative;
    border: 1px solid #2470ff;
    padding: 8px 55px 3px 14px;
    border-radius: 20px;
    width: 100%;
    color: #2470ff;
    font-family: 'Roboto';
    background-color: #fff;
    font-size: 16px;
    font-weight: 300;
    word-break: break-word;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    max-height: 60px;
    margin-bottom: 10px;
}

@media screen and (max-width: 766px) {
    .select__custom span {
        width: 100%;
        padding: 12px 14px;
    }
}

.select__custom span:focus {
    outline: none;
}

.select__custom ul {
    display: none;
    z-index: 0;
    top: -16px;
    width: 100%;
    margin: 17px 0;
    padding: 60px 10px 10px 19px;
    background-color: #fff;
    border-radius: 20px;
    position: absolute;
    box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.4);
}

.select__custom ul li {
    margin-bottom: 12px;
    cursor: pointer;
    color: #000;
    font-family: 'Roboto';
    font-size: 16px;
    font-weight: 300;
    list-style: none;
    display: list-item;
    width: 100%;
    word-break: break-word;
}

.select__custom ul li:hover {
    color: #2470ff;
}

.event-sort__city .select__custom {
    width: 100%;
}

.event-sort__city .select__custom span {
    padding: 8px 25px 8px 14px;
}

.content-lk .header-inner__phone {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
}

/* личный кабинет */
.lk {
    height: 80px;
}

@media screen and (min-width: 767px) {
    .lk .header-inner__burger {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%;
    }
}

.lk .burger__collapse:before, .lk .burger__collapse:after,
.lk .burger__collapse span {
    background-color: #fff;
}

.lk .header-inner {
    padding-bottom: 20px;
}

.lk .header-inner:before {
    background-color: #133e79;
}

.lk .header-inner__lk {
    margin-left: 0;
}

.lk .menu {
    padding-left: 0;
    padding-right: 0;
    position: fixed;
    right: -80%;
    text-align: right;
    width: 80%;
    background-color: #fff;
    z-index: 99;
    height: 100vh;
    -webkit-transition: all ease-in-out 0.2s;
    transition: all ease-in-out 0.2s;
}

@media screen and (min-width: 1720px) {
    .lk .menu {
        margin-right: -15px;
    }
}

.lk .menu.collapsed {
    right: 0;
}

.lk .menu__sublist {
    position: absolute;
    padding: 0;
    border-radius: 15px;
    min-width: 210px;
    z-index: 22;
    max-height: 0;
    overflow: hidden;
    -webkit-transition: max-height ease-in-out 0.8s;
    transition: max-height ease-in-out 0.8s;
    position: relative;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    background-color: transparent;
    margin-left: 0;
    margin-right: 10px;
}

@media screen and (min-width: 1024px) {
    .lk .menu__sublist {
        box-shadow: none;
    }
}

@media screen and (max-width: 500px) {
    .lk .menu__sublist {
        margin-right: 0;
    }
}

.lk .menu__sublist.menu__sublist_collapsed {
    max-height: 500px;
}

.lk .menu__list {
    margin: 25px 0 0;
    padding: 55px 0 0;
}

@media screen and (max-width: 500px) {
    .lk .menu__list {
        padding-top: 85px;
    }
}

@media screen and (min-width: 1024px) and (max-width: 1279px) {
    .lk .menu__list {
        margin: 23px 0 0 5px;
    }
}

.lk .menu__list .header-inner__lk {
    display: none;
}

@media screen and (max-width: 640px) {
    .lk .menu__list .header-inner__lk {
        display: inline-block;
        color: #000;
        text-decoration: none;
        margin-right: 25px;
        line-height: 29px;
        padding: 3px 0 2.5px;
        font-family: "Roboto";
        font-size: 34px;
        font-weight: 300;
    }
}

@media screen and (max-width: 500px) {
    .lk .menu__list .header-inner__lk {
        font-size: 20px;
        margin-right: 15px;
    }
}

.lk .menu__item {
    list-style: none;
    display: block;
    font-size: 34px;
    font-weight: 300;
    margin-bottom: 31px;
}

@media screen and (max-width: 500px) {
    .lk .menu__item {
        font-size: 20px;
        margin-bottom: 20px;
    }
}

@media screen and (min-width: 1024px) and (max-width: 1719px) {
    .lk .menu__item {
        font-size: 20px;
        margin-bottom: 15px;
    }
}

@media screen and (min-width: 1024px) {
    .lk .menu__item:last-child .menu__link {
        margin-right: 25px;
    }
}

@media screen and (min-width: 1024px) {
    .lk .menu__item:hover .menu__link:before, .lk .menu__item:hover .menu__link:after, .lk .menu__item:hover .menu__link span:after, .lk .menu__item:hover .menu__link span:before {
        opacity: 1;
    }
}

@media screen and (min-width: 1024px) {
    .lk .menu__item:hover .menu__sublist {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
}

.lk .menu__item_hasChild .menu__sublink {
    color: #2470ff;
}

.lk .menu__item_hasChild .menu__sublink:hover {
    background-image: none;
}

.lk .menu__item_hasChild .menu__link {
    position: relative;
    color: #2470ff;
}

.lk .menu__item_hasChild .menu__link:before {
    content: "";
    position: absolute;
    width: 24px;
    height: 12px;
    background-repeat: no-repeat;
    top: 10px;
    opacity: 1;
    left: -35px;
    display: block;
    background-image: url("../img/hasChild.png");
    background-position: center bottom;
}

.lk .menu__item_hasChild.menu__link_collapsed:before {
    background-position: center top;
}

.lk .menu__link {
    color: #000;
    text-decoration: none;
    margin-right: 25px;
    line-height: 29px;
    position: relative;
    display: inline-block;
}

@media screen and (max-width: 500px) {
    .lk .menu__link {
        margin-right: 15px;
    }
}

.lk .menu__link span {
    position: relative;
    display: inline-block;
}

.lk .menu__link span:before, .lk .menu__link span:after {
    display: none;
}

.lk .menu__link:before, .lk .menu__link:after {
    display: none;
}

.blank-table {
    position: relative;
    margin-top: 12px;
}

.blank-table h2 {
    margin-top: 20px;
    font-family: 'Gotham Pro';
    font-size: 32px;
    font-weight: normal;
    display: inline-block;
}

.blank-table p.award-done {
    position: absolute;
    right: 0;
    top: -50px;
    font-family: 'Roboto';
    font-weight: 300;
    font-size: 16px;
}

.blank-table table {
    border-spacing: 0;
    width: 100%;
    border-bottom: 1px solid #ddd;
}

.blank-table table td.short {
    width: 75px;
    text-align: center;
    padding: 10px;
}

.blank-table thead {
    background-color: #143e7a;
    color: #fff;
    font-family: 'Roboto';
    font-size: 19px;
    font-weight: 300;
}

.blank-table thead .order_asc[data-goto] {
    cursor: pointer;
    position: relative;
}

.blank-table thead .order_asc[data-goto]:after {
    content: '';
    position: absolute;
    display: block;
    top: 10px;
    right: 10px;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    opacity: .4;
    border-top: 0;
    border-bottom: 5px solid #2177b8;
}

.blank-table thead .order_asc[data-goto]:hover:after {
    opacity: 1;
    border-bottom: 5px solid #72b9ef;
}

.blank-table thead .order_desc {
    cursor: pointer;
    position: relative;
}

.blank-table thead .order_desc:after {
    content: '';
    position: absolute;
    display: block;
    top: 10px;
    right: 10px;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-bottom: 0;
    border-right: 5px solid transparent;
    border-top: 5px solid #2177b8;
    opacity: .4;
}

.blank-table thead .order_desc:hover:after {
    opacity: 1;
    border-top: 5px solid #72b9ef;
}

.blank-table thead td[data-goto] {
    cursor: pointer;
}

.blank-table thead td[data-goto]:hover {
    position: relative;
}

.blank-table thead td[data-goto]:hover:after {
    content: '';
    position: absolute;
    display: block;
    top: 10px;
    right: 10px;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    opacity: .4;
    border-top: 0;
    border-bottom: 5px solid #2177b8;
}

.blank-table thead td[data-goto].order_desc:hover {
    position: relative;
}

.blank-table thead td[data-goto].order_desc:hover:after {
    content: '';
    position: absolute;
    display: block;
    top: 10px;
    right: 10px;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-bottom: 0;
    border-right: 5px solid transparent;
    border-top: 5px solid #72b9ef;
    opacity: 1 !important;
}

@media screen and (min-width: 860px) and (max-width: 1023px) {
    .blank-table thead {
        font-size: 16px;
    }
}

.blank-table thead td {
    border-bottom: 1px solid #ddd;
    border-left: 1px solid #ddd;
    padding: 15px 10px 15px 10px;
}

.blank-table thead td.transparent {
    background-color: #fff;
}

.blank-table thead td .content-lk__agree {
    padding: 0;
}

.blank-table thead td:first-child {
    border-left: none;
}

.blank-table thead td:first-child:after {
    opacity: 1;
}

.blank-table tbody {
    font-family: 'Roboto';
    font-size: 16px;
    font-weight: 300;
    -webkit-text-size-adjust: none !important;
    text-size-adjust: none !important;
}

.blank-table tbody img {
    margin-right: 10px;
    vertical-align: middle;
}

.blank-table tbody td {
    border-left: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    padding: 15px 10px 15px 10px;
    vertical-align: middle;
}

.blank-table tbody td.test_end:before {
    content: '';
    position: relative;
    display: inline-block;
    width: 33px;
    height: 33px;
    margin-right: 10px;
    vertical-align: middle;
    background-image: url(../img/test_end.png);
}

.blank-table tbody td.test_triho:before {
    content: '';
    position: relative;
    display: inline-block;
    width: 33px;
    height: 33px;
    margin-right: 10px;
    vertical-align: middle;
    background-image: url(../img/test_triho.png);
}

.blank-table tbody td.test_cosm:before {
    content: '';
    position: relative;
    display: inline-block;
    width: 33px;
    height: 33px;
    margin-right: 10px;
    vertical-align: middle;
    background-image: url(../img/test_cosm.png);
}

.blank-table tbody td.test_gin:before {
    content: '';
    position: relative;
    display: inline-block;
    width: 33px;
    height: 33px;
    margin-right: 10px;
    vertical-align: middle;
    background-image: url(../img/test_gin.png);
}

.blank-table tbody td.test_nutr:before {
    content: '';
    position: relative;
    display: inline-block;
    width: 33px;
    height: 33px;
    margin-right: 10px;
    vertical-align: middle;
    background-image: url(../img/test_nutr.png);
}

.blank-table tbody td.test_tromb:before {
    content: '';
    position: relative;
    display: inline-block;
    width: 33px;
    height: 33px;
    margin-right: 10px;
    vertical-align: middle;
    background-image: url(../img/test_tromb.png);
}

.blank-table tbody td.test_derm:before {
    content: '';
    position: relative;
    display: inline-block;
    width: 33px;
    height: 33px;
    margin-right: 10px;
    vertical-align: middle;
    background-image: url(../img/test_derm.png);
}

.blank-table tbody td.test_akne:before {
    content: '';
    position: relative;
    display: inline-block;
    width: 33px;
    height: 33px;
    margin-right: 10px;
    vertical-align: middle;
    background-image: url(../img/test_akne.png);
}

.blank-table tbody td .content-lk__agree {
    padding: 0;
}

.blank-table tbody td a {
    color: #000;
    text-decoration: none;
}

.blank-table tbody td a:before {
    content: '';
    background-image: url(../img/table_link.png);
    display: inline-block;
    width: 20px;
    height: 20px;
    vertical-align: middle;
    margin-right: 7px;
}

.blank-table tbody td a:hover:before {
    background-position: center bottom;
}

.blank-table tbody tr:nth-of-type(even) td {
    background-color: #f4f7fa;
}

.blank-table tbody tr:last-child td {
    border-bottom: none;
}

.blank-table tbody tr td:first-child {
    border-left: none;
}

.sidebar-lk__list {
    border-radius: 20px;
    border: 1px solid #ddd;
    padding: 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 1279px) {
    .sidebar-lk__list {
        overflow: inherit;
    }
}

.sidebar-lk__item {
    list-style: none;
    font-family: 'Roboto';
    font-size: 16px;
    font-weight: 300;
    position: relative;
}

@media screen and (max-width: 1279px) {
    .sidebar-lk__item {
        font-size: 0;
    }
}

.sidebar-lk__item:last-child a {
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

.sidebar-lk__item:first-child a {
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

@media screen and (max-width: 1279px) {
    .sidebar-lk__item .sidebar-lk__link {
        display: none;
        position: absolute;
        top: 0;
        line-height: 50px;
        padding: 0 15px;
        z-index: 20;
        min-width: 180px;
        height: 50px;
        left: 58px;
        background: -webkit-linear-gradient(left, #2470ff, #9367fd);
        background: -ms-linear-gradient(left, #2470ff, #9367fd);
        background: linear-gradient(left, #2470ff, #9367fd);
    }
}

.sidebar-lk__item a {
    min-height: 50px;
    padding: 5px 18px 5px 14px;
    display: block;
    text-decoration: none;
    color: #000;
}

@media screen and (max-width: 1279px) {
    .sidebar-lk__item:active a {
        background: #2470ff;
        color: #fff;
    }

    .sidebar-lk__item:active a .sidebar-lk__icon {
        background-position-x: -90px !important;
    }
}

@media screen and (max-width: 1279px) {
    .sidebar-lk__item:hover .sidebar-lk__link {
        /* display: block;*/
    }
}

.sidebar-lk__item:hover a {
    text-decoration: none;
    font-size: 16px !important;
}

.sidebar-lk__item:hover .sidebar-lk__icon {
    background-position-x: 0px !important;
}

.sidebar-lk__item.sidebar-lk__item_active a {
    color: #fff;
}

@media screen and (max-width: 1279px) {
    .sidebar-lk__item.sidebar-lk__item_active a {
        background: #2470ff;
    }
}

@media screen and (min-width: 1280px) {
    .sidebar-lk__item.sidebar-lk__item_active a {
        background: -webkit-linear-gradient(left, #2470ff, #9367fd);
        background: -ms-linear-gradient(left, #2470ff, #9367fd);
        background: linear-gradient(left, #2470ff, #9367fd);
    }
}

.sidebar-lk__item.sidebar-lk__item_active .sidebar-lk__icon {
    background-position-x: -90px !important;
}

.sidebar-lk__item span {
    vertical-align: middle;
    display: inline-block;
}

.sidebar-lk__item span.sidebar-lk__icon {
    width: 34px;
    position: relative;
    z-index: 10;
    margin-right: 10px;
    height: 40px;
    background-image: url(../img/sidebar.png);
    background-repeat: no-repeat;
}

.sidebar-lk__item span.sidebar-lk__icon.icon_tg {
    background-image: url(../img/new_groupe_3.png);
    background-position: center center !important;
}

.sidebar-lk__item span.icon_profile {
    background-position: -44px 10px;
}

.sidebar-lk__item span.icon_order {
    background-position: -44px -26px;
}

.sidebar-lk__item span.icon_clinic {
    background-position: -44px -60px;
}

.sidebar-lk__item span.icon_orderclinic {
    background-position: -44px -94px;
}

.sidebar-lk__item span.icon_balance {
    background-position: -44px -128px;
}

.sidebar-lk__item span.icon_prem {
    background-position: -44px -161px;
}

.sidebar-lk__item span.icon_docs {
    background-position: -44px -195px;
}

.sidebar-lk__item span.icon_base {
    background-position: -44px -227px;
}

.sidebar-lk__item span.icon_logic {
    background-position: -44px -330px;
}

.sidebar-lk__item span.icon_doc {
    background-position: -44px -297px;
}

.sidebar-lk__item span.icon_patient {
    background-position: -44px -262px;
}

.blank-header__title h1 {
    font-family: 'Gotham Pro';
    font-weight: bold;
    font-size: 32px;
    line-height: 35px;
    /* margin-bottom: 24px;*/
    margin-bottom: 10px;
    display: inline-block;
}

.blank-header__title h1 a,
.button-blue {
    color: #fff;
    font-size: 16px;
    margin: 0 0 15px 10px;
    border-radius: 40px;
    font-family: 'Roboto';
    font-weight: 300;
    background: -ms-linear-gradient(left, #2470ff, #9367fd);
    background: -webkit-linear-gradient(left, #2470ff, #9367fd);
    background: linear-gradient(left, #2470ff, #9367fd);
    display: inline-block;
    text-decoration: none;
    padding: 0 30px;
    vertical-align: middle;
}

.blank-header__sum {
    font-family: 'Roboto';
}

.button-blue {
    line-height: 35px;
    border: none;
    cursor: pointer;
    margin: 0;
}

.button-blue:hover {
    opacity: 0.9;
}

.button-blue.v--big {
    line-height: 54px;
    padding: 0 50px;
    font-size: 19px;
}

.button-blue.v--small {
    line-height: 24px;
    padding: 0 15px;
}

.blank-header__title p {
    /* display: inline-block;*/
    /* margin-left: 15px;*/
    font-family: 'Roboto';
    font-weight: 300;
    font-size: 16px;
    color: #aaaaab;
    margin-bottom: 10px;
    margin-top: 5px;
}

.blank-header__title p span {
    color: #000;
}

.blank-header__title h3 {
    font-family: 'Roboto';
    font-weight: bold;
    font-size: 19px;
    z-index: 20;
    margin-bottom: 16px;
    position: relative;
    overflow: hidden;
}

.blank-header__title h3 b {
    padding-right: 25px;
    background-color: #fff;
}

.blank-header__title h3 span {
    font-family: 'Roboto';
    margin-left: 15px;
    font-weight: 300;
    font-size: 16px;
    color: #aaaaab;
    margin-bottom: 10px;
    margin-top: 5px;
}

.blank-header__title h3 span b {
    font-weight: 300;
    color: #000;
}

.blank-header .blank-table__prev {
    margin-top: 74px;
    right: 0;
}

.blank-header + .blank-table {
    /* margin-top: 38px;*/
    margin-top: 28px;
}

.blank-header__saldo {
    position: absolute;
    top: 28px;
    right: 0;
}

.blank-header__saldo a {
    cursor: pointer;
    color: #000;
    text-decoration: none;
}

.blank-header__saldo a span {
    color: #3f6eff;
}

.blank-header__saldo a:hover {
    color: #3f6eff;
    border-bottom: 1px solid #3f6eff;
}

.blank-header__saldo p {
    margin-left: 15px;
    display: inline-block;
    font-family: 'Roboto';
    font-weight: bold;
    font-size: 16px;
}

.blank-subheader__item {
    width: 300px;
    display: inline-block;
}

@media screen and (max-width: 1379px) {
    .blank-subheader__item span {
        /* display: block;*/
        line-height: 20px;
    }
}

.blank-subheader__item label {
    position: relative;
}

.blank-subheader__item h3 {
    font-family: 'Roboto';
    font-weight: bold;
    font-size: 19px;
}

.blank-subheader__item p {
    font-family: 'Roboto';
    font-weight: 300;
    font-size: 16px;
    color: #aaaaab;
    margin-bottom: 15px;
    margin-top: 5px;
    word-break: break-word;
}

.blank-subheader__item p a {
    height: 35px;
    line-height: 35px;
    color: #fff;
    font-size: 16px;
    margin: 0 0 0 15px;
    border-radius: 40px;
    font-family: 'Roboto';
    font-weight: 300;
    background: -ms-linear-gradient(left, #2470ff, #9367fd);
    background: -webkit-linear-gradient(left, #2470ff, #9367fd);
    background: linear-gradient(left, #2470ff, #9367fd);
    display: inline-block;
    text-decoration: none;
    padding: 0 34px;
    vertical-align: middle;
}

.blank-subheader__item p a.blank-subheader__add {
    font-weight: bold;
    font-size: 16px;
    color: #000;
    text-decoration: none;
    margin: 0 10px;
    background: transparent;
    padding: 0;
}

@media screen and (max-width: 1279px) {
    .blank-subheader__item p a.blank-subheader__add {
        margin: 0;
    }
}

.blank-subheader__item p span {
    color: #000;
}

@media screen and (max-width: 1279px) {
    .blank-subheader__item p span {
        display: block;
    }
}

.blank-subheader__item .blank-subheader__annotation {
    margin-top: 0;
    margin-bottom: 0;
    color: #3f6eff;
    font-weight: bold;
}

.blank-subheader__item .blank-subheader__annotation span {
    color: #3f6eff;
}

.blank-subheader__item input {
    border: none;
    outline: none;
    border-bottom: 1px solid #ddd;
    font-size: 19px;
    width: 100%;
    font-weight: 300;
    font-family: 'Roboto';
    padding: 12px 0;
}

.blank-subheader__item input:active + span, .blank-subheader__item input:focus + span {
    font-size: 12px;
    top: -20px;
}

.blank-subheader__item label span {
    -webkit-transition: all ease-in-out .2s;
    transition: all ease-in-out .2s;
    color: #ddd;
    position: absolute;
    top: 0;
    pointer-events: none;
    font-size: 18px;
    width: 100px;
    font-weight: 300;
    font-family: 'Roboto';
    /* padding: 12px 0;*/
    left: 0;
}

@media screen and (max-width: 1279px) {
    .blank-subheader__item label span {
        font-size: 16px;
    }
}

.blank-subheader__item label span.focused {
    font-size: 12px;
    top: -30px;
}

.blank-subheader__item .consult-inner__btn {
    position: absolute;
    right: 0;
    top: 0;
    margin-top: -20px;
}

.blank-subheader__item .restore_btn {
    padding: 0 20px;
    margin: 0 0 0 15px;
    position: relative;
    border-radius: 40px;
    height: 46px;
    position: relative;
    z-index: 10;
    text-decoration: none;
    line-height: 42px;
    font-family: 'Roboto';
    font-weight: 300;
    font-size: 16px;
    background-color: transparent;
    border: 2px solid #ddd;
    color: #ccc;
}

@media screen and (max-width: 1279px) {
    .blank-subheader__item .restore_btn {
        margin: 15px auto 0;
    }
}

.blank-table {
    position: relative;
}

.blank-table tbody tr[data-goto] {
    cursor: pointer;
}

.blank-table > a {
    position: absolute;
    right: 0;
    top: -63px;
    line-height: 35px;
    color: #fff;
    font-size: 16px;
    margin: 0 0 0 15px;
    border-radius: 40px;
    font-family: 'Roboto';
    font-weight: 300;
    background: -ms-linear-gradient(left, #2470ff, #9367fd);
    background: -webkit-linear-gradient(left, #2470ff, #9367fd);
    background: linear-gradient(left, #2470ff, #9367fd);
    display: inline-block;
    text-decoration: none;
    padding: 0 34px;
    vertical-align: middle;
}

.blank-header__select {
    display: inline-block;
    width: 300px;
}

.blank-header__datepick {
    display: inline-block;
    height: 40px;
    line-height: 40px;
    font-family: 'Roboto';
    font-size: 16px;
    font-weight: 300;
}

@media screen and (min-width: 860px) and (max-width: 1023px) {
    .blank-header__datepick {
        font-size: 14px;
    }
}

.blank-header__datepick p {
    margin-top: 0px;
    display: inline-block;
    margin-right: 15px;
}

.blank-header__datepick p img {
    vertical-align: middle;
    margin-right: 10px;
}

.blank-header__datepick input {
    max-width: 130px;
    margin-right: 15px;
    color: #9d9d9d;
    font-family: 'Roboto';
    font-weight: 300;
    font-size: 19px;
    border: none;
    border-bottom: 1px solid #9d9d9d;
    background-image: url(../img/calendar.png);
    background-position: 92px center;
    padding: 15px 25px 15px 5px;
    background-repeat: no-repeat;
}

.blank-table__total h3 {
    color: #3f6eff;
    font-family: 'Roboto';
    font-size: 19px;
    font-weight: bold;
    margin-bottom: 30px;
    margin-top: 12px;
}

.blank-table__prev {
    position: absolute;
    right: 15px;
    bottom: 0;
}

.blank-table__prev_bottom {
    position: relative;
    margin: 50px 0;
}

.blank-table__prev_bottom .breadcrumbs__link {
    margin-left: 5px;
}

.blank-table__prev_bottom .consult-inner__btn {
    margin-right: -10px;
}

.centered {
    text-align: center;
}

.blank-subheader__title h3 {
    font-size: 28px;
    font-family: 'Roboto';
}

.blank-subheader__title h3 img {
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
}

.blank-subheader__title h2 {
    /*padding-top: 41px;*/
    /*margin-top: 30px;*/
    /*border-top: 1px solid #ddd;*/
    margin-top: 20px;
    font-family: 'Gotham Pro';
    font-size: 32px;
    font-weight: normal;
    display: inline-block;
}

.blank-subheader__title .select__custom {
    margin-left: 20px;
    display: inline-block;
    vertical-align: middle;
}

.blank-subheader__title .select__custom span {
    width: 250px;
}

.blank-subheader__item button[type="submit"],
.blank-subheader__link,
.button-blue-border {
    padding: 0 10px;
    cursor: pointer;
    outline: none;
    margin: 12px 0 0 15px;
    display: inline-block;
    border-radius: 40px;
    height: 40px;
    background: -ms-linear-gradient(#2470ff, #9367fd);
    background: -webkit-linear-gradient(#2470ff, #9367fd);
    background: linear-gradient(#2470ff, #9367fd);
    color: #000;
    position: relative;
    z-index: 10;
    text-decoration: none;
    line-height: 42px;
    font-family: 'Roboto';
    font-weight: 300;
    font-size: 16px;
}

.blank-subheader__item button[type="submit"]:disabled,
.blank-subheader__link:disabled,
.button-blue-border:disabled {
    background: #f5f5f5;
    border: 1px solid #cccccc;
    color: #999999;
    cursor: not-allowed;
    background: none;
    background-color: #f5f5f5;
}

.blank-subheader__item button[type="submit"] span,
.blank-subheader__link span,
.button-blue-border span {
    background-image: url(../img/table_link.png);
    display: inline-block;
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    vertical-align: middle;
    padding-right: 27px;
}

.blank-subheader__item button[type="submit"]:hover,
.blank-subheader__link:hover,
.button-blue-border:not(:disabled):hover {
    color: #fff;
    outline: none;
}

.blank-subheader__item button[type="submit"]:hover:after,
.blank-subheader__link:hover:after,
.button-blue-border:not(:disabled):hover:after {
    background-color: transparent;
}

.blank-subheader__item button[type="submit"]:after,
.blank-subheader__link:after,
.button-blue-border:after {
    content: '';
    position: absolute;
    top: 2px;
    z-index: -1;
    left: 2px;
    right: 2px;
    height: 36px;
    border-radius: 40px;
    background-color: #fff;
}

.button-blue-border {
    border: none;
    padding: 0 20px;
    margin: 0;
}

.button-blue-border.v--mini {
    height: auto;
    line-height: normal;
    padding: 3px 15px;
    font-size: 15px;
}

.button-blue-border.v--red {
    background: red;
}

.button-blue-border:after {
    top: 1px;
    left: 1px;
    right: 1px;
    bottom: 1px;
    height: auto;
}

.button-blue-border:disabled {
    cursor: default;
    background: #a2a2a2;
    color: #a2a2a2;
}

.header-inner__company {
    font-size: 16px;
    font-family: 'Roboto';
    font-weight: bold;
    padding: 10px 20px 9px 60px;
    margin-right: -2px;
    background-color: #fff;
    background-image: url(../img/lk.png);
    background-repeat: no-repeat;
    background-position: 5px bottom;
    display: inline-block;
}

.header-inner__exit {
    color: #000;
    text-decoration: none;
    font-family: 'Roboto';
    font-size: 14px;
    font-weight: normal;
    background-image: url(../img/exit.png);
    background-repeat: no-repeat;
    background-position: left center;
    padding: 20px 0 20px 50px;
    /*margin-left: 20px;*/
    background-color: #fff;
}

@media screen and (min-width: 1280px) {
    .content-lk__sidebar {
        max-width: 20%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 20%;
        flex: 0 0 20%;
    }
}

@media screen and (max-width: 1279px) {
    .content-lk__sidebar {
        position: absolute;
        max-width: 90px;
    }
}

@media screen and (min-width: 860px) and (max-width: 1023px) {
    .content-lk__sidebar {
        left: 0px;
    }
}

@media screen and (min-width: 1280px) {
    .content-lk__blank.col-lg-9 {
        max-width: 80%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 80%;
        flex: 0 0 80%;
        padding-left: 30px;
    }
}

@media screen and (min-width: 1280px) {
    .content-lk__blank.col-lg-6 {
        max-width: 55%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 55%;
        flex: 0 0 55%;
        padding-left: 30px;
    }
}

.blank-table__load {
    text-align: center;
    font-family: 'Roboto';
    font-weight: 300;
    font-size: 16px;
    margin: 30px 0;
    position: relative;
}

.blank-table__load img {
    vertical-align: middle;
    margin-right: 5px;
}

.blank-table__load a {
    color: #000;
    text-decoration: none;
    border-bottom: 1px dashed #000;
}

.blank-header__title {
    position: relative;
}

.picker {
    font-size: 16px;
    text-align: left;
    line-height: 1.2;
    color: #000000;
    position: absolute;
    z-index: 10000;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.picker__input {
    cursor: default;
}

.picker__input.picker__input--active {
    border-color: #0089ec;
}

.picker__holder {
    width: 100%;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.picker {
    width: 100%;
}

.picker__holder {
    position: absolute;
    background: #ffffff;
    border: 1px solid #aaaaaa;
    border-top-width: 0;
    border-bottom-width: 0;
    border-radius: 0 0 5px 5px;
    box-sizing: border-box;
    min-width: 176px;
    max-width: 466px;
    max-height: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    -moz-opacity: 0;
    opacity: 0;
    -webkit-transform: translateY(-1em) perspective(600px) rotateX(10deg);
    transform: translateY(-1em) perspective(600px) rotateX(10deg);
    transition: -webkit-transform 0.15s ease-out, opacity 0.15s ease-out, max-height 0s 0.15s, border-width 0s 0.15s;
    -webkit-transition: opacity 0.15s ease-out, max-height 0s 0.15s, border-width 0s 0.15s, -webkit-transform 0.15s ease-out;
    transition: opacity 0.15s ease-out, max-height 0s 0.15s, border-width 0s 0.15s, -webkit-transform 0.15s ease-out;
    transition: transform 0.15s ease-out, opacity 0.15s ease-out, max-height 0s 0.15s, border-width 0s 0.15s;
    transition: transform 0.15s ease-out, opacity 0.15s ease-out, max-height 0s 0.15s, border-width 0s 0.15s, -webkit-transform 0.15s ease-out;
}

.picker__frame {
    padding: 1px;
}

.picker__wrap {
    margin: -1px;
}

.picker--opened .picker__holder {
    max-height: 25em;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
    -moz-opacity: 1;
    opacity: 1;
    border-top-width: 1px;
    border-bottom-width: 1px;
    -webkit-transform: translateY(0) perspective(600px) rotateX(0);
    transform: translateY(0) perspective(600px) rotateX(0);
    transition: -webkit-transform 0.15s ease-out, opacity 0.15s ease-out, max-height 0s, border-width 0s;
    -webkit-transition: opacity 0.15s ease-out, max-height 0s, border-width 0s, -webkit-transform 0.15s ease-out;
    transition: opacity 0.15s ease-out, max-height 0s, border-width 0s, -webkit-transform 0.15s ease-out;
    transition: transform 0.15s ease-out, opacity 0.15s ease-out, max-height 0s, border-width 0s;
    transition: transform 0.15s ease-out, opacity 0.15s ease-out, max-height 0s, border-width 0s, -webkit-transform 0.15s ease-out;
    box-shadow: 0 6px 18px 1px rgba(0, 0, 0, 0.12);
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    right: 0;
    overflow-y: scroll;
    bottom: 0;
    padding: 177px 0;
}

.modal .blank-subheader__link {
    padding: 0 25px;
    margin-bottom: 25px;
}

@media screen and (max-width: 500px) {
    .modal {
        width: 100%;
        padding: 50px 0;
    }
}

.modal_middle .container, .modal_middle .container_wide {
    max-width: 850px;
}

.modal_middle h3 {
    display: inline-block;
}

.modal_middle .modal-inner__btn {
    float: right;
}

.modal-inner__field_margin {
    margin-top: 20px;
}

.modal_short .container, .modal_short .container_wide {
    max-width: 445px;
}

.modal_open {
    display: block;
}

.modal-inner {
    margin: 0 auto;
    background-color: #fff;
    position: relative;
    padding: 10px 44px 20px;
    box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.8);
}

@media screen and (max-width: 500px) {
    .modal-inner {
        padding: 10px 15px 20px;
    }
}

.modal-inner .consult-inner__field {
    border: none;
    padding-top: 0;
}

.modal-inner h3 {
    padding: 0 10px 32px;
    font-size: 28px;
    font-family: 'Gotham Pro';
    font-weight: 500;
    border-bottom: 1px solid #133e79;
}

.modal-inner p {
    font-family: 'Roboto';
    font-weight: 300;
    font-size: 16px;
}

#modal-lk .modal-inner h3 {
    padding: 0 10px 5px;
    border-bottom: none;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(19, 62, 121, 0.75);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    -webkit-transition: all ease-in-out .2s;
    transition: all ease-in-out .2s;
}

.overlay_active {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
}

.modal-inner__field input {
    height: 48px;
    border: none;
    border-bottom: 1px solid #ddd;
    margin-bottom: 12px;
    width: 100%;
    font-family: 'Roboto';
    font-weight: 300;
    color: #9d9d9d;
    font-size: 19px;
    padding: 0 10px;
}

.modal-inner__field input:focus {
    outline: none;
}

.modal-inner__field button {
    border: none;
    outline: none;
    color: #fff;
    border-radius: 40px;
    margin: 15px auto;
    display: block;
    cursor: pointer;
    font-size: 19px;
    font-weight: 300;
    padding: 18px;
    width: 250px;
    font-family: 'Roboto';
    background: -ms-linear-gradient(#2470ff, #9367fd);
    background: -webkit-linear-gradient(#2470ff, #9367fd);
    background: linear-gradient(#2470ff, #9367fd);
}

.modal-inner__field_centered {
    text-align: center;
}

.modal-inner__info {
    text-align: center;
    margin-top: 20px;
    display: none;
}

.modal-inner__info p {
    margin-top: 0;
    margin-bottom: 10px;
    line-height: 24px;
    font-size: 16px;
    font-weight: 300;
    font-family: 'Roboto';
}

.modal-inner__info p a {
    color: #3f6eff;
}

.modal-inner__info p span {
    display: block;
    text-transform: uppercase;
    font-weight: bold;
}

.modal-inner__info_active {
    display: block;
}

.modal-inner > span {
    position: absolute;
    width: 14px;
    height: 14px;
    background-image: url(../img/close.png);
    top: 15px;
    right: 12px;
    cursor: pointer;
    background-repeat: no-repeat;
    display: inline-block;
}

.modal-inner__message {
    text-align: center;
    margin-top: 38px;
}

.modal-inner__message ul {
    margin: 0;
    padding: 0;
}

.modal-inner__message ul li {
    list-style: none;
    display: inline-block;
    margin: 0 5px;
}

.modal-inner__message h3 {
    border-bottom: none;
    margin-bottom: 25px;
    padding-bottom: 0;
}

.modal-inner__message h4 {
    margin-top: 18px;
    font-weight: bold;
    font-family: 'Roboto';
    font-size: 19px;
    margin-bottom: 5px;
}

.modal-inner__message p {
    line-height: 24px;
    margin-top: 0;
    font-family: 'Roboto';
    font-weight: 300;
    font-size: 16px;
}

#modal-send .modal-inner,
#modal-pass .modal-inner,
#modal-lk .modal-inner {
    width: 635px;
}

@media screen and (max-width: 650px) {
    #modal-send .modal-inner,
    #modal-pass .modal-inner,
    #modal-lk .modal-inner {
        width: 100%;
        margin: 50px auto;
    }
}

.consult .consult-inner__form {
    padding: 0 15px;
}

.content-lk__header {
    margin-top: 38px;
}

.content-lk__header h1 {
    font-family: 'Gotham Pro';
    font-weight: bold;
    font-size: 32px;
    margin-bottom: 0;
    display: inline-block;
}

.content-lk__form {
    display: none;
    margin-top: 43px;
}

.content-lk__form h2 {
    font-family: 'Gotham Pro';
    font-size: 32px;
    font-weight: normal;
}

.content-lk__form p {
    font-family: "Roboto";
    font-weight: 300;
    font-size: 16px;
}

.content-lk__form_active {
    display: block;
}

.content-lk__field {
    margin-bottom: 35px;
}

.content-lk__field input {
    padding: 0 5px;
    outline: none;
    height: 50px;
    border: none;
    font-family: "Roboto";
    font-weight: 300;
    font-size: 19px;
    color: #9d9d9d;
    width: 100%;
    border-bottom: 1px solid #9d9d9d;
    background-color: transparent;
    margin-bottom: 31px;
}

.content-lk__tabs {
    margin-top: 28px;
    padding: 0;
    margin-bottom: 30px;
}

@media screen and (max-width: 766px) {
    .content-lk__tabs {
        margin-bottom: 75px;
        margin-top: 30px;
    }
}

.content-lk__tablist {
    padding: 0;
    margin: 0;
    width: 100%;
    position: relative;
    border-radius: 40px;
    height: 52px;
    background: -ms-linear-gradient(#2470ff, #9367fd);
    background: -webkit-linear-gradient(#2470ff, #9367fd);
    background: linear-gradient(#2470ff, #9367fd);
}

@media screen and (max-width: 766px) {
    .content-lk__tablist {
        background: none;
    }
}

@media screen and (min-width: 767px) {
    .content-lk__tablist {
        width: 450px;
    }
}

.content-lk__tablist:after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 100%;
    height: 100%;
    border-radius: 40px;
    background-color: #fff;
}

@media screen and (min-width: 767px) {
    .content-lk__tablist:after {
        width: 446px;
        height: 48px;
    }
}

.content-lk__tabitem {
    cursor: pointer;
    list-style: none;
    text-align: center;
    position: relative;
    z-index: 2;
    font-family: 'Roboto';
    font-weight: 300;
    font-size: 19px;
    padding: 14px 10px;
    border-radius: 40px;
}

@media screen and (max-width: 766px) {
    .content-lk__tabitem {
        margin-bottom: 10px;
        border: 2px solid #626bfe;
    }
}

.content-lk__tabitem_active {
    background: -ms-linear-gradient(#2470ff, #9367fd);
    background: -webkit-linear-gradient(#2470ff, #9367fd);
    background: linear-gradient(#2470ff, #9367fd);
    color: #fff;
}

.attach-file p {
    font-family: 'Roboto';
    font-weight: bold;
    font-size: 16px;
}

.attach-file p span {
    font-weight: 300;
    position: relative;
    margin-left: 32px;
    cursor: pointer;
    border-bottom: 1px dashed #000;
}

.attach-file p span:after {
    content: '';
    position: absolute;
    background-image: url(../img/attach.png);
    width: 22px;
    height: 23px;
    left: -32px;
    top: 0;
}

.attach-file input {
    display: none;
}

input[type="checkbox"] {
    display: none;
    position: relative;
}

input[type="checkbox"] + span {
    -webkit-transition: none;
    transition: none;
    display: inline-block;
    width: 28px;
    left: 0;
    top: 0 !important;
    margin-top: -7px;
    position: absolute;
    height: 31px;
    background-image: url(../img/checkbox.png);
    background-repeat: no-repeat;
    background-position: left center;
    vertical-align: middle;
}

input[type="checkbox"]:checked + span {
    background-position: -28px center;
}

.content-lk__btn {
    background-image: url("../img/btn.png");
    width: 275px;
    height: 54px;
    outline: none;
    border: none;
    background-repeat: no-repeat;
    border-left: 10px solid #fff;
    border-right: 10px solid #fff;
    background-color: #fff;
    cursor: pointer;
    text-transform: lowercase;
    font-family: "Roboto";
    font-weight: 300;
    background-size: 100%;
    font-size: 19px;
    color: #fff;
    background-position: center top;
}

@media screen and (max-width: 766px) {
    .content-lk__btn {
        margin-bottom: 20px;
    }
}

.content-lk__btn:hover {
    background-position: center bottom;
}

.content-lk__agree {
    padding-left: 38px;
    font-family: 'Roboto';
    font-weight: 300;
    font-size: 16px;
    position: relative;
    cursor: pointer;
    margin-right: 25px;
}

.content-lk__agree a {
    color: #2470ff;
    text-decoration: none;
    border-bottom: 1px solid #2470ff;
}

.content-lk__field_submit {
    display: inline-block;
    vertical-align: middle;
    float: right;
}

.js-clinic-register-form {
    margin-bottom: 140px;
}

.content-lk__entrance {
    position: absolute;
    top: 0;
    right: 15px;
    margin-top: 10px;
}

.content-lk__entrance p {
    font-family: 'Roboto';
    font-weight: 300;
    font-size: 16px;
    display: inline-block;
}

.content-lk__entrance a {
    padding: 2px 30px;
}

.content-lk__field_bordered {
    margin-top: 52px;
    padding-top: 17px;
    border-top: 1px solid #9d9d9d;
    border-bottom: 1px solid #9d9d9d;
    padding-bottom: 45px;
    margin-left: 0;
    margin-right: 0;
}

.content-lk__field_bordered > div {
    padding: 0;
}

.content-lk__id h2 {
    margin-bottom: 20px;
}

.content-lk__id p {
    line-height: 24px;
    margin-bottom: 5px;
    margin-top: 10px;
}

.content-lk__id input {
    width: 50%;
}

.content-lk__id a {
    padding: 0 40px;
    cursor: pointer;
}

input.error {
    border-color: #2470ff !important;
}

.error-page .intro-content {
    height: auto !important;
}

.error-page__content {
    margin-bottom: 150px;
    margin-top: 150px;
    padding: 100px 0;
    text-align: center;
    background-image: url(../img/404.jpg);
    background-position: center;
    background-repeat: no-repeat;
}

.error-page__content h1 {
    font-family: 'Gotham Pro';
    font-weight: bold;
    font-size: 100px;
    margin: 10px 0;
}

.error-page__content p {
    font-family: 'Roboto';
    font-weight: 300;
    font-size: 16px;
}

.error-page__content p a {
    color: #2470ff;
}

.blank-subheader__item.col-lg-12 {
    margin-bottom: 12px;
}

.blank-subheader__item.col-lg-12 h2 {
    font-family: 'Roboto';
    font-weight: normal;
    font-size: 32px;
    display: inline-block;
    margin: 15px 5px 0 0;
}

.blank-subheader__item.col-lg-12 p {
    margin: 4px 0;
    display: inline-block;
    font-weight: bold;
}

.blank-subheader__test {
    list-style: none;
    text-align: center;
}

.blank-subheader__test p {
    font-family: 'Roboto';
    margin-top: 5px;
    margin-bottom: 5px;
}

.blank-subheader__test .blank-subheader__link {
    border-bottom: none;
}

.blank-subheader__test a {
    margin: 10px 0 15px 0;
    height: 36px;
    line-height: 36px;
}

.blank-subheader__test a:after {
    height: 32px;
}

.blank-subheader__test span {
    width: 47px;
    height: 48px;
    background-image: url(../img/test2.png);
    display: inline-block;
}

.blank-subheader__test span.test_end {
    background-position: 0 0;
}

.blank-subheader__test span.test_triho {
    background-position: -49px 0;
}

.blank-subheader__test span.test_cosm {
    background-position: -99px 0;
}

.blank-subheader__test span.test_gin {
    background-position: -151px 0;
}

.blank-subheader__test span.test_nutr {
    background-position: -201px 0;
}

.blank-subheader__test span.test_tromb {
    background-position: -252px 0;
}

.blank-subheader__test span.test_antiage {
    background-position: -302px 0;
}

.blank-subheader__test:hover span {
    background-position-y: -53px;
}

.blank-subheader__list {
    padding: 0 0 8px 0;
    -webkit-column-count: 6;
    -moz-column-count: 6;
    column-count: 6;
    margin: 22px 15px 3px;
    border-bottom: 1px solid #aaaaab;
}

.not-ready {
    position: relative;
    padding-left: 10px;
    display: inline-block;
    vertical-align: middle;
}

.not-ready:before {
    content: '';
    display: inline-block;
    vertical-align: middle;
    width: 15px;
    height: 7px;
    background-image: url(../img/test-status.png);
    background-repeat: no-repeat;
    left: 0;
    top: 0;
    margin-right: 4px;
}

.process {
    position: relative;
    padding-left: 10px;
    display: inline-block;
    vertical-align: middle;
}

.process:before {
    content: '';
    display: inline-block;
    vertical-align: middle;
    width: 15px;
    height: 15px;
    background-image: url(../img/test-status.png);
    background-repeat: no-repeat;
    background-position: 0 -7px;
    left: 0;
    top: 0;
    margin-right: 4px;
}

.ready {
    position: relative;
    padding-left: 10px;
    display: inline-block;
    vertical-align: middle;
}

.ready:before {
    content: '';
    display: inline-block;
    vertical-align: middle;
    width: 15px;
    height: 15px;
    background-image: url(../img/test-status.png);
    background-repeat: no-repeat;
    background-position: 0 -26px;
    left: 0;
    margin-right: 4px;
}

.sidebar-lk__post {
    padding: 10px 20px;
    background-color: #fff;
    border-radius: 20px;
    margin-bottom: 16px;
    border: 1px solid #fff;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 1279px) {
    .sidebar-lk__post {
        overflow: inherit;
    }
}

.sidebar-lk__post:hover {
    border: 1px solid #346fff;
}

.content-lk__postbar {
    padding: 15px 15px 0 0;
    background-color: #f7f7f7;
    height: 500px;
    position: relative;
}

.content-lk__postbar:after {
    content: '';
    position: absolute;
    top: 0;
    right: -44px;
    opacity: 0;
    height: 100%;
    width: 1px;
    background-color: #e5e5e5;
}

.content-lk__postbar:hover:after {
    opacity: 1;
}

.content-lk__postbar:hover .ss-scroll {
    opacity: 1;
}

.content-lk__postbar .ss-scroll {
    margin-left: 50px;
    opacity: 0;
}

.content-lk__postbar .ss-scroll:after {
    display: none;
}

.content-lk__postbar .ss-content {
    padding: 0 15px 0 0;
    right: -15px;
}

.content-lk__postbar .ss-wrapper:before {
    display: none;
}

@media screen and (min-width: 1280px) {
    .content-lk__postbar {
        max-width: 24%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 24%;
        flex: 0 0 24%;
    }
}

.sidebar-lk__date p {
    margin-bottom: 0;
    font-family: 'Roboto';
    font-weight: 300;
    font-size: 16px;
    /*color: #aaaaab;*/
    padding-left: 35px;
    position: relative;
}

.sidebar-lk__date p:before {
    content: '';
    left: 0;
    position: absolute;
    background-image: url(../img/vote.png);
    width: 24px;
    top: -8px;
    background-size: 100%;
    height: 26px;
}

.read .sidebar-lk__date p:before {
    -webkit-filter: grayscale(100%);
    opacity: .7;
    filter: grayscale(100%);
}

.sidebar-lk__title h3 {
    margin-top: 15px;
    font-family: 'Roboto';
    font-size: 19px;
    font-weight: bold;
    display: inline-block;
    margin-right: 15px;
    margin-bottom: 10px;
}

.sidebar-lk__title p {
    display: inline-block;
    font-family: 'Roboto';
    font-size: 16px;
    color: #aaaaab;
    margin-top: 0;
    margin-bottom: 10px;
}

.sidebar-lk__title p span {
    color: #2470ff;
    font-weight: bold;
}

.sidebar-lk__text p {
    font-family: 'Roboto';
    font-size: 16px;
    font-weight: 300;
}

.sidebar-lk__text p span {
    font-weight: bold;
}

.blank-subheader__clinic {
    margin-bottom: 13px;
    border: 1px solid #c2c2c2;
    border-radius: 15px;
    position: relative;
    margin-left: 2px;
    margin-right: 14px;
    padding: 5px 0 0;
}

.blank-subheader__clinic .blank-subheader__item {
    padding: 0 27px;
}

.blank-subheader__clinic .blank-subheader__title {
    padding: 0 27px;
}

.blank-subheader__clinic .blank-subheader__title h3 {
    font-family: 'Roboto';
    font-size: 19px;
    font-weight: bold;
    margin-bottom: 5px;
}

.blank-subheader__clinic .blank-subheader__title p {
    font-weight: 300;
    font-family: 'Roboto';
    font-size: 16px;
    position: absolute;
    color: #aaaaab;
    top: 8px;
    right: 20px;
}

.blank-subheader__clinic .blank-subheader__title p span {
    color: #000;
}

.blank-subheader__clinic:nth-of-type(3) {
    margin-top: 62px;
}

.blank-subheader__clinic:nth-of-type(3):before {
    content: '';
    top: -36px;
    left: 0;
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: #c2c2c2;
}

.blank-subheader__collapse {
    padding: 0;
}

.blank-subheader__collapse .collapse-container {
    padding: 15px;
    max-height: 0;
    -webkit-transition: all ease-in-out .6s;
    transition: all ease-in-out .6s;
    overflow: hidden;
}

.blank-subheader__collapse .collapse-container.collapse-container_active {
    max-height: 1000px;
}

.blank-subheader__collapse .collapse-container.collapse-container_active + p:after {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.blank-subheader__collapse .collapse-container h3 {
    padding-top: 20px;
    border-top: 1px solid #aaaaab;
}

.blank-subheader__collapse .collapse-container p {
    display: block;
    font-weight: 300;
}

.blank-subheader__collapse > p {
    margin: 0;
    height: 48px;
    line-height: 48px;
    color: #fff;
    font-family: 'Roboto';
    font-weight: bold;
    font-size: 16px;
    padding: 0 27px;
    cursor: pointer;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    background: -ms-linear-gradient(left, #2470ff, #9367fd);
    background: -webkit-linear-gradient(left, #2470ff, #9367fd);
    background: linear-gradient(left, #2470ff, #9367fd);
    position: relative;
}

.blank-subheader__collapse > p:after {
    content: '';
    position: absolute;
    width: 22px;
    height: 10px;
    opacity: .8;
    background-image: url(../img/collapse_lk.png);
    right: 27px;
    top: 20px;
}

.blank-subheader__collapse > p:hover:after {
    opacity: 1;
}

.award-done:before {
    content: '';
    width: 9px;
    margin-right: 4px;
    height: 10px;
    background-image: url(../img/done.png);
    display: inline-block;
}

.award-smooth {
    opacity: .5;
}

.blank-header__search {
    margin-top: 12px;
    /* height: 270px;*/
    position: relative;
    /* &:nth-of-type(1){ */
    /*   &:after{ */
    /*     content: ''; */
    /*     position: absolute; */
    /*     height: 100%; */
    /*     width: 1px; */
    /*     background-color: #e5e5e5; */
    /*     top: 0; */
    /*     right: 30px; */
    /*     z-index: 100; */
    /*   } */
    /* } */
}

.blank-header__search input {
    width: 500px;
    margin-right: 15px;
    color: #9d9d9d;
    font-family: 'Roboto';
    font-weight: 300;
    font-size: 19px;
    border: none;
    border-bottom: 1px solid #9d9d9d;
    background-image: url(../img/search.png);
    background-position: center right;
    padding: 15px 25px 15px 5px;
    background-repeat: no-repeat;
}

@media screen and (max-width: 1279px) {
    .blank-header__search input {
        font-size: 16px;
    }
}

.blank-header__search input:focus {
    outline: none;
}

.blank-header__search_short {
    margin-bottom: 21px;
}

.blank-header__search_short input {
    width: 265px;
    background-position: 225px center;
}

.blank-header__patients .blank-table__prev {
    margin-top: 28px;
}

.blank-header__patients .blank-subheader__link {
    margin: 12px 0 0 0;
}

.ui-menu,
.patients__container ul {
    padding: 0 0 20px 0;
    /* margin: 0 31px 0 0;*/
    position: relative;
    z-index: 99;
    border-right: 1px solid #aaaaab;
}

.ui-menu li,
.patients__container ul li {
    cursor: pointer;
    list-style: none;
    font-family: 'Roboto';
    font-weight: 300;
    font-size: 16px;
    margin-bottom: 7px;
}

.ui-menu li[data-selected="true"],
.patients__container ul li[data-selected="true"] {
    background: -ms-linear-gradient(left, #2470ff, #9367fd);
    background: -webkit-linear-gradient(left, #2470ff, #9367fd);
    background: linear-gradient(left, #2470ff, #9367fd);
    color: #fff;
}

.ui-menu li[data-selected="true"]:hover,
.patients__container ul li[data-selected="true"]:hover {
    color: #fff;
}

.ui-menu {
    background-color: #fff;
    z-index: 99;
}

.blank-header__directions {
    margin-top: 38px;
    padding-top: 14px;
    position: relative;
    /*border-top: 1px solid #e5e5e5;*/
    /*border-bottom: 1px solid #e5e5e5;*/
}

.blank-header__directions:nth-of-type(3):after {
    content: '';
    position: absolute;
    height: 90%;
    width: 1px;
    background-color: #e5e5e5;
    top: 35px;
    right: 30px;
    z-index: 100;
}

.blank-header__directions h3 {
    font-family: 'Roboto';
    font-weight: bold;
    font-size: 19px;
    margin-bottom: 10px;
}

.blank-header__directions ul {
    padding: 0;
    display: inline-block;
}

.blank-header__directions ul li {
    list-style: none;
    padding: 15px 0;
    position: relative;
}

:not(.open) > .order-report-items ul {
    display: none;
}

.order-report-items ul {
    padding: 15px 0 0 45px;
}

.order-report-items ul li {
    padding: 5px 0;
}

.order-report-items__opener {
    float: right;
    color: #9d9d9d;
    border-bottom: 1px dashed;
    cursor: pointer;
    font-family: "Roboto";
    font-weight: 300;
}

.blank-header__columns {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
}

.patients__container {
    margin-bottom: 5px;
    /* margin-bottom: 45px;*/
    margin-left: -17px;
    /* position: absolute;*/
    z-index: 99;
    width: 100%;
    /* height: 240px;*/
    height: 215px;
    background-color: #fff;
}

.patients__container:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    height: 30px;
    width: 100%;
    background-color: #fff;
    z-index: 99;
    opacity: .9;
    -webkit-filter: blur(8px);
    filter: blur(8px);
}

.patients__container .ss-scroll {
    margin-left: -55px;
}

.patients__container .ss-scroll:after {
    display: none;
}

.patients__container .ss-wrapper:before {
    display: none;
}

.blank-header__remove {
    font-family: 'Roboto';
    font-size: 16px;
    color: #aaaaab;
    position: absolute;
    top: 71px;
    background-color: #fff;
    padding-left: 30px;
    z-index: 1;
    right: 0;
    cursor: pointer;
    background-image: url(../img/delete.png);
    background-repeat: no-repeat;
    background-position: 10px center;
}

.blank-header__remove:before {
    content: '';
    position: absolute;
    width: 900px;
    height: 1px;
    background-color: #aaaaab;
    right: 180px;
    top: 10px;
    z-index: -1;
}

input[type="radio"] {
    display: none;
    position: relative;
}

input[type="radio"] + span {
    display: inline-block;
    width: 18px;
    left: 0;
    top: 0;
    position: absolute;
    height: 18px;
    background-image: url(../img/radio-lk.png);
    background-repeat: no-repeat;
    background-position: center top;
    vertical-align: middle;
    -webkit-transition: none;
    transition: none;
}

input[type="radio"]:active + span {
    top: 0;
}

input[type="radio"]:checked + span {
    background-position: center bottom;
}

.content-lk__check {
    padding-left: 28px;
    font-family: 'Roboto';
    font-weight: 300;
    font-size: 16px;
    position: relative;
    cursor: pointer;
    margin-right: 25px;
}

@media screen and (max-width: 1023px) {
    .contacts .intro-content__text p {
        text-align: left;
    }
}

.select__custom:hover:after {
    background-position: center top;
}

.select__custom.open {
    z-index: 21;
}

.select__custom.open span {
    z-index: 22;
}

.select__custom.open:after {
    background-position: center bottom;
}

.select__custom.open ul {
    z-index: 20;
    display: block;
}

.select__custom li img {
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
}

@media screen and (max-width: 420px) {
    .disAjaxWin .consult-inner__form {
        padding: 0 !important;
    }

    .disAjaxWin .consult-container h2 {
        padding-left: 0 !important;
    }
}

.blank-header__submit {
    position: relative;
    height: 54px;
}

.blank-header__submit .blank-table__prev {
    margin-top: 15px;
    left: 15px;
}

.blank-header__submit button {
    position: absolute;
    right: 5px;
}

#js-trainig-list .event-item .event-item__title h2 {
    margin-top: 40px;
    font-size: 17px !important;
}

.popup-window {
    margin-top: 25px;
    border-radius: 15px;
    font: 18px 'Roboto' !important;
    font-weight: 300;
    box-shadow: none !important;
    background-color: transparent !important;
}

.bx-calendar-year-number,
.bx-calendar-year,
.bx-calendar-month {
    font: 15px 'Roboto';
    font-weight: 300;
    padding: 5px;
}

.bx-calendar-year-number:hover,
.bx-calendar-year:hover,
.bx-calendar-month:hover {
    color: #2470ff !important;
    background-color: transparent;
}

.bx-calendar-year-content,
.bx-calendar-month-content {
    margin-top: 10px;
}

.bx-calendar-year-popup,
.bx-calendar-month-popup {
    margin-top: -39px !important;
    padding: 8px 10px;
    background-color: #fff;
    box-shadow: 0 7px 21px rgba(83, 92, 105, 0.12), 0 -1px 6px 0 rgba(83, 92, 105, 0.06);
}

.bx-calendar-year-popup {
    width: auto !important;
}

.bx-calendar-year-active,
.bx-calendar-month-active {
    display: none;
}

.bx-calendar-year-title,
.bx-calendar-month-title,
.bx-calendar-month-content {
    font: 18px 'Roboto';
    border: none;
    padding: 0 1px;
    font-weight: 300;
}

.popup-window-content {
    background-color: transparent;
}

.bx-calendar {
    width: 369px !important;
    background-color: #fff;
    box-shadow: 0 7px 21px rgba(83, 92, 105, 0.12), 0 -1px 6px 0 rgba(83, 92, 105, 0.06);
    border-radius: 15px;
    padding: 15px;
    margin-left: -168px;
}

.bx-calendar-header-content {
    width: 294px !important;
    padding: 11px 0 1px;
}

.bx-calendar-top-month,
.bx-calendar-top-year {
    font: 18px 'Roboto';
    font-weight: 300;
    padding: 5px 20px 5px !important;
}

.bx-calendar-top-month:hover,
.bx-calendar-top-year:hover {
    color: #2470ff !important;
    background-color: transparent !important;
}

.bx-calendar-month-popup {
    width: auto;
}

.bx-calendar-name-day-wrap {
    padding: 19px 0;
    margin: 0;
}

.bx-calendar-range {
    border-bottom: none !important;
}

.bx-calendar-name-day {
    width: 41px !important;
}

.bx-calendar-cell {
    width: 41px !important;
    height: 28px !important;
    line-height: 28px !important;
}

.bx-calendar-header {
    border-bottom: 1px solid #f2f2f2;
}

.bx-calendar-name-day-wrap {
    background-color: transparent;
}

.bx-calendar-name-day {
    font: 16px 'Roboto';
    font-weight: bold;
}

.bx-calendar-cell {
    font-family: 'Roboto';
    font-size: 16px !important;
    font-weight: 300;
}

.bx-calendar-weekend,
.bx-calendar-weekend:link,
.bx-calendar-weekend:active,
.bx-calendar-weekend:visited {
    color: #000;
}

.bx-calendar-active {
    background: -ms-linear-gradient(left, #2470ff, #9367fd);
    background: -webkit-linear-gradient(left, #2470ff, #9367fd);
    color: #fff !important;
    background: linear-gradient(left, #2470ff, #9367fd);
}

.bx-calendar-cell:hover {
    border: 2px solid #396fff;
    width: 37px !important;
    background-color: transparent !important;
    height: 26px !important;
    line-height: 16px;
    padding-top: 2px;
}

.bx-calendar-set-time-wrap {
    text-align: center;
    padding: 8px 0;
}

.bx-calendar-form-text {
    font: 16px 'Roboto';
    margin: 0 10px 0 0;
    line-height: 35px;
    color: #000;
    font-weight: 300;
}

.bx-calendar-layer {
    padding-bottom: 15px;
}

.bx-calendar-button-text {
    font: 16px 'Roboto';
    font-weight: 300;
    padding: 8px 0 0;
    border-bottom: 2px solid #fff;
}

.bx-calendar-button-text:hover {
    border-bottom: 2px solid #396fff;
}

#date_fld_finish,
#date_fld {
    max-width: 130px;
    margin-right: 15px;
    color: #9d9d9d;
    font-family: 'Roboto';
    font-weight: 300;
    font-size: 16px;
    border: none;
    border-bottom: 1px solid #9d9d9d;
    background-image: url(../img/calendar.png);
    background-position: 92px center;
    padding: 15px 45px 15px 5px;
    background-repeat: no-repeat;
}

#date_fld_finish:focus,
#date_fld:focus {
    outline: none;
}

.blank-header__sum {
    font-family: 'Roboto';
    font-weight: 300;
}

.blank-header__sum input {
    max-width: 230px;
    margin-right: 15px;
    color: #9d9d9d;
    font-family: 'Roboto';
    font-weight: 300;
    font-size: 16px;
    border: none;
    border-bottom: 1px solid #9d9d9d;
    padding: 15px 45px 15px 5px;
    background-repeat: no-repeat;
}

.blank-header__sum p {
    color: #000;
    font-family: 'Roboto';
    font-weight: normal;
    font-size: 32px;
    display: inline-block;
    vertical-align: bottom;
}

.bx-calendar-button-left,
.bx-calendar-button-right {
    display: none;
}

.bx-calendar-button-text {
    background: none;
}

.blank-pagination {
    text-align: right;
    margin: 15px 0;
}

.blank-pagination__list {
    padding: 0;
    display: inline-block;
    cursor: default;
}

.blank-pagination__item {
    display: inline-block;
    list-style: none;
}

.blank-pagination__link {
    margin: 12px 0 0 15px;
    display: inline-block;
    border-radius: 40px;
    height: 36px;
    text-align: center;
    width: 36px;
    background: #b4b4b4;
    color: #000;
    position: relative;
    z-index: 10;
    text-decoration: none;
    line-height: 36px;
    font-family: 'Roboto';
    font-weight: 300;
    font-size: 16px;
}

.blank-pagination__link:hover {
    background: -ms-linear-gradient(#2470ff, #9367fd);
    background: -webkit-linear-gradient(#2470ff, #9367fd);
    background: linear-gradient(#2470ff, #9367fd);
}

.blank-pagination__link:after {
    content: '';
    position: absolute;
    top: 2px;
    z-index: -1;
    left: 2px;
    right: 2px;
    width: 100;
    height: 32px;
    border-radius: 40px;
    background-color: #fff;
}

.blank-pagination__link_active {
    color: #fff;
    background: -ms-linear-gradient(#2470ff, #9367fd);
    background: -webkit-linear-gradient(#2470ff, #9367fd);
    background: linear-gradient(#2470ff, #9367fd);
}

.blank-pagination__link_active:after {
    background-color: transparent;
}

.blank-pagination__prev,
.blank-pagination__next {
    height: 36px;
    line-height: 36px;
}

.blank-pagination__prev:after,
.blank-pagination__next:after {
    height: 32px;
}

.modal-inner__field_border {
    padding: 2px 4px;
    display: inline-block;
    border-radius: 40px;
    background: -ms-linear-gradient(#2470ff, #9367fd);
    background: -webkit-linear-gradient(#2470ff, #9367fd);
    background: linear-gradient(#2470ff, #9367fd);
    color: #000;
    position: relative;
    z-index: 10;
    text-decoration: none;
    line-height: 54px;
    font-family: 'Roboto';
    font-weight: 300;
    font-size: 0;
    margin-bottom: 30px;
}

.modal-inner__field_border:after {
    content: '';
    position: absolute;
    top: 2px;
    z-index: -1;
    left: 2px;
    right: 2px;
    height: 54px;
    border-radius: 40px;
    background-color: #fff;
}

.modal-inner__field_border label {
    font-size: 0;
    display: inline-block;
    width: 33.333334%;
    vertical-align: top;
}

.modal-inner__field_border input + span {
    position: relative;
    height: 50px;
    text-align: center;
    border: none;
    outline: none;
    border-radius: 40px;
    margin: 2px auto;
    cursor: pointer;
    font-size: 18px;
    font-weight: 300;
    padding: 0 18px;
    line-height: 1.1;
    width: 100%;
    font-family: 'Roboto';
    background: #fff;
    color: #000;
    display: inline-flex;
    align-items: center;
    align-content: center;
    justify-content: center;
    word-break: break-all;
}

.modal-inner__field_border input:checked + span {
    color: #fff;
    background: -ms-linear-gradient(#2470ff, #9367fd);
    background: -webkit-linear-gradient(#2470ff, #9367fd);
    background: linear-gradient(#2470ff, #9367fd);
}

form.blank-subheader .blank-subheader__item {
    margin-bottom: 30px;
}

.modal-inner__field p {
    font-family: 'Roboto';
    font-size: 16px;
    margin-top: 6px;
    margin-bottom: 0px;
}

.modal-inner__field p b {
    font-size: 19px;
}

.modal-inner__field h4 {
    font-family: 'Roboto';
    margin-top: 3px;
    font-size: 28px;
    margin-bottom: 12px;
}

.modal-inner__field_centered {
    margin-bottom: 40px;
}

.consult-inner__btn + a {
    margin-top: 25px;
    display: inline-block;
    font-family: 'Roboto';
    font-size: 16px;
    color: #000;
    text-decoration: none;
    border-bottom: 1px dotted #000;
}

.develop + .helper.container, .develop + .helper.container_wide {
    overflow: hidden;
    background-color: #f3f4f6;
}

.develop + .helper.container:before, .develop + .helper.container_wide:before {
    background-color: #f3f4f6;
}

.moder {
    margin: 15px 0;
}

.moder__message {
    border: 1px solid #ddd;
    border-radius: 20px;
    padding: 0 0 45px;
}

.moder__message h3 {
    margin: 0;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    background-color: #133e79;
    color: #fff;
    padding: 37px 40px 32px;
    font-size: 19px;
    font-weight: bold;
    font-family: 'Roboto';
}

.moder__message img {
    width: 55px;
    margin-bottom: 10px;
}

.modal-inner__message {
    margin-top: 55px;
}

.blank-header__date {
    margin-top: 15px;
    margin-bottom: 72px;
}

.blank-header__cost {
    text-align: right;
}

.blank-header__cost p {
    font-family: 'Roboto';
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 0;
}

.blank-header__cost h3 {
    margin-top: 10px;
    font-weight: normal;
    font-family: 'Gotham Pro';
    font-size: 32px;
}

.blank-header__code {
    margin-right: 20px;
    display: inline-block;
}

.blank-header__code input {
    max-width: 210px;
    margin-right: 25px;
    color: #9d9d9d;
    font-family: 'Roboto';
    font-weight: 300;
    font-size: 19px;
    border: none;
    border-bottom: 1px solid #9d9d9d;
    padding: 15px 25px 15px 5px;
}

.blank-header__code input:focused {
    outline: none;
}

/* 30.01*/
.blank-subheader__item button[type="submit"],
.blank-subheader__item button.restore_btn {
    border: none;
}

#js-profile-forma span {
    font-size: 12px;
    left: 0;
    top: -30px;
}

.bx-calendar-year-input {
    display: none;
}

.payment-page__content {
    margin-bottom: 150px;
    margin-top: 30px;
    padding: 100px 0;
    text-align: center;
}

.payment-page__content h2 {
    font-family: 'Gotham Pro';
    font-size: 32px;
    font-weight: 500;
    margin: 140px 0 40px;
}

.payment-page__content h2 span {
    display: block;
    width: 145px;
    margin: 0 auto 24px;
    height: 118px;
    background-repeat: no-repeat;
    background-position: center bottom;
}

.payment-page__content h2 span.payment-page__notfound {
    background-image: url(../img/payment-notok.png);
}

.payment-page__content h2 span.payment-page__ok {
    background-image: url(../img/payment-ok.png);
}

.payment-page__content p {
    font-family: 'Roboto';
    font-weight: 300;
    font-size: 16px;
}

.payment-page__content p a {
    color: #fff;
    font-size: 16px;
    height: 34px;
    line-height: 34px;
    margin: 0 0 0 10px;
    border-radius: 40px;
    font-family: 'Roboto';
    font-weight: 300;
    background: -ms-linear-gradient(left, #2470ff, #9367fd);
    background: -webkit-linear-gradient(left, #2470ff, #9367fd);
    background: linear-gradient(left, #2470ff, #9367fd);
    display: inline-block;
    text-decoration: none;
    padding: 0 34px;
    vertical-align: middle;
}

.payment-page {
    background-image: url(../img/payment-page.png), url(../img/payment-page2.png);
    background-position: right 150px, left 400px;
    background-repeat: no-repeat;
}

.content-lk {
    min-height: 400px;
}

a[href^="tel:"],
a[x-apple-data-detectors] {
    color: inherit !important;
    text-decoration: none !important;
    font-size: inherit !important;
    font-family: inherit !important;
    font-weight: inherit !important;
    line-height: inherit !important;
}

input.date-inp {
    cursor: pointer;
    margin-right: 5px !important;
}

.blank-header__patients .blank-header__search {
    height: 265px;
    margin-bottom: 80px;
}

.patients__container .ss-scroll {
    margin-left: -24px;
}

.patients__container ul li:hover {
    color: #2470ff;
}

.blank-header__patients .blank-header__search:nth-of-type(1) {
    padding-right: 30px;
}

.blank-header__patients .blank-header__search input {
    width: 100%;
}

select.table-select,
input.table-input {
    color: #9d9d9d;
    font-family: 'Roboto';
    font-weight: 300;
    font-size: 19px;
    border: none;
    border-bottom: 1px solid #9d9d9d;
    padding: 15px 5px 1px;
}

select.table-select:focused,
input.table-input:focused {
    outline: none;
}

#js-password-forma .blank-subheader__item span {
    font-size: 14px;
}

#js-select-distributor #distributor_search_container {
    font-family: "Roboto";
    border: none;
    font-weight: 300;
    font-size: 15px;
}

#js-select-distributor .blank-subheader__link {
    display: block;
    text-align: center;
    margin: 0 auto;
}

/**/
@media screen and (min-width: 1280px) {
    .greetings-inner {
        /*height: 340px;*/
    }
}

.greetings-inner__text {
    text-align: center;
}

.greetings-inner__text h1,
.greetings-inner__text h3 {
    color: #fff;
}

.carousel-caption {
    text-align: center;
    width: 100%;
}

.carousel-caption__item {
    width: 16px;
    cursor: pointer;
    height: 16px;
    border: 1px solid #fff;
    border-radius: 100%;
    display: inline-block;
    margin: 0 5px;
}

.carousel-caption__item_active {
    background-color: #fff;
}

@media screen and (min-width: 768px) {
    .header-inner_index .burger__collapse:before,
    .header-inner_index .burger__collapse:after,
    .header-inner_index .burger__collapse span {
        background-color: #fff;
    }
}

@media screen and (min-width: 768px) {
    .header-inner_index .header-inner__phone h3,
    .header-inner_index .header-inner__lk,
    .header-inner_index .menu__link {
        color: #fff;
    }
}

@media screen and (min-width: 768px) {
    .header-inner_index .header-inner__lk {
        border-bottom-color: #fff;
    }
}

@media screen and (min-width: 768px) {
    .header-inner_index .header-inner__lk:before {
        background-image: url(../img/lkw.png);
    }
}

@media screen and (max-width: 1719px) and (min-width: 1280px) {
    .header-inner_index .header-inner__lk:before {
        background-image: url(../img/lk_mw.png);
    }
}

/*@media screen and (min-width: 768px) {
	.header-inner_index .header-inner__logo a img {
		-moz-filter: invert(100%);
		-webkit-filter: invert(100%);
		filter: invert(100%);
	}
}*/

.footer-copyright__payment {
    margin-top: 5px;
}

@media screen and (max-width: 1279px) {
    .footer-copyright__payment {
        display: inline-block;
        vertical-align: middle;
    }
}

@media screen and (max-width: 1024px) {
    .footer-copyright__payment {
        margin-top: 23px;
    }
}

@media screen and (max-width: 768px) {
    .footer-copyright__payment {
        float: right;
        margin-top: 0;
    }
}

.footer-copyright__payment img {
    max-width: 200px;
}

.footer-confidential {
    margin-top: 10px;
}

@media screen and (max-width: 1279px) {
    .footer-confidential {
        margin-top: 0px;
    }
}

@media screen and (max-width: 1024px) {
    .footer-confidential {
        margin-top: 0px;
    }
}

@media screen and (max-width: 768px) {
    .footer-confidential {
        margin-top: 0px;
    }
}

.footer-confidential h3 {
    font-family: "Roboto";
    font-weight: 300;
    font-size: 13px;
    line-height: 16px;
    margin: 10px 0 0;
}

@media screen and (max-width: 1279px) {
    .footer-confidential h3 {
        margin-top: 5px;
        font-size: 13px;
    }
}

@media screen and (max-width: 768px) {
    .footer-confidential h3 {
        font-size: 11px;
    }
}

.footer-confidential a {
    text-decoration: none;
    color: #a6a6a6;
}

.footer-confidential a:hover {
    border-bottom: 1px solid #a6a6a6;
}

.footer-copyright__payment img {
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    opacity: .6;
}

.social-links {
    margin-top: 20px;
}

.social-links a {
    display: inline-block;
    vertical-align: bottom;
    margin-right: 10px;
}

.social-links a:hover img {
    opacity: 1;
}

.social-links img {
    height: 22px;
    opacity: .8;
}

.license-inner__item {
    text-align: center;
}

.license {
    background-image: url(../img/license_bg.jpg);
    -webkit-background-size: cover;
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: cover;
    padding-top: 50px;
    padding-bottom: 50px;
}

.license h2 {
    font-weight: 500;
    color: #000;
    font-family: "Gotham Pro";
    font-size: 32px;
}

.license p {
    margin-top: 0;
    font-family: "Roboto";
    font-weight: 300;
    font-size: 16px;
    letter-spacing: 0.4px;
    line-height: 24px;
}

.license-inner {
    margin-top: 40px;
}

.license-inner__item a {
    text-decoration: none;
    color: #133e79;
    cursor: pointer;
}

.license-inner__item div {
    position: relative;
}

.license-inner__item div:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(20, 62, 122, .9);
    opacity: 0;
    pointer-events: none;
    transition: all ease-in-out .2s;
    background-image: url(../img/license_d.png);
    background-repeat: no-repeat;
    background-position: center;
}

.license-inner__item div:hover:after {
    opacity: 1;
}

.license-inner__item p {
    display: inline;
    margin-top: 10px;
    border-bottom: 1px solid transparent;
}

/*.license-inner__item a:hover p {
  border-bottom: 1px solid #133e79;
}*/

.license-item__image {
    height: 325px;
    -webkit-background-size: 80%;
    background-size: 80%;
    background-position: center;
    margin-bottom: 20px;
    background-repeat: no-repeat;
}

@media screen and (max-width: 767px) {
    .license {
        background-image: none;
    }

    .license-inner__item {
        text-align: left;
        border-bottom: 1px solid #b2b2b2;
    }

    .license-inner__item {
        display: block;
    }

    .license-inner__item p {
        display: block;
        margin: 0;
    }

    .license-inner__item a {
        padding: 10px 0;
        display: block;
    }

    .license-item__image {
        display: none;
    }
}

@media (max-width: 1023px) {
    .header-inner_index .menu__link {
        color: #000;
    }
}

/* accordion_bgg */
.accordion {
    margin-bottom: 10px;
    border: 1px solid #dddddd;
    border-radius: 14px;
    padding: 16px 20px;
}

.accordion:hover {
    -webkit-box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.05);
}

.accordion:hover .accordion-title:after {
    background: url(../img/svg/arrow_down_hover.svg) no-repeat center;
    background-size: contain;
}

.accordion__head.open .accordion-title:after {
    background: url(../img/svg/arrow_up.svg) no-repeat center;
    background-size: contain;
}

.accordion__content {
    margin-top: 20px;
    border-top: 1px solid #dddddd;
    padding: 30px 30px 10px;
}

.accordion__content iframe {
    max-width: 1000px;
    width: 100%;
    height: 560px;
}

.accordion-title {
    font-size: 19px;
    line-height: 24px;
    color: #000000;
    font-family: "Roboto";
    font-weight: bold;
    cursor: pointer;
    position: relative;
}

.accordion-title:after {
    content: '';
    position: absolute;
    top: 8px;
    right: 0px;
    width: 23px;
    height: 11px;
    background: url(../img/svg/arrow_down.svg) no-repeat center;
    background-size: contain;
}

.order-item-checkbox ~ input[type=text] {
    margin-right: 5px;
    width: 50px;
}

.order-item-checkbox:not(:checked) ~ input[type=text] {
    display: none;
}

.form-input {
    padding: 0 5px;
    outline: none;
    height: 50px;
    border: none;
    font-family: "Roboto";
    font-weight: 300;
    font-size: 19px;
    color: #474747;
    border-bottom: 1px solid #9d9d9d;
    background-color: transparent;
}

.form-input::placeholder {
    color: #a0a0a0;
}

.form-input.v--small {
    font-size: 16px;
    padding: 7px 5px;
    height: auto;
}

.form-group {
    padding-bottom: 10px;
}

.form-group__title {
    font-family: "Roboto";
    font-size: 16px;
    font-weight: bold;
    padding: 0;
}

.default-link {
    display: inline !important;
    background: none !important;
    border-radius: 0 !important;
    height: auto !important;
    line-height: normal !important;
    margin: auto !important;
    padding: 0 !important;
    cursor: pointer;
    text-decoration: underline !important;
    color: #3F6EFF !important;
    vertical-align: inherit !important;
    font-family: "Roboto";
    font-weight: 300 !important;
    font-size: inherit !important;
}

.default-link:hover {
    text-decoration: none !important;
}

.default-link:before {
    display: none !important;
    background-image: none !important;
}

.default-link.v--dotted {
    text-decoration: none !important;
    border-bottom: 1px dashed;
}

.default-link.v--gray {
    color: #9d9d9d !important;
}

.default-link.v--black {
    color: #000 !important;
}

#list_tags {
    margin: 15px 0;
}

#list_tags a {
    text-decoration: none;
    font-family: 'Roboto';
    margin-right: 15px;
    text-transform: uppercase;
    color: #909090
}

#list_tags a:hover {
    text-decoration: underline;
}

@media (min-width: 576px) {
    .footer.new .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .footer.new .container {
        max-width: 750px;
    }
}

@media (min-width: 992px) {
    .footer.new .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .footer.new .container {
        max-width: 1170px;
    }
}

@media (min-width: 1330px) {
    .footer.new .container {
        max-width: 1300px;
    }
}


/* block.css */

.block {
    background: #ffffff;
    color: #333333;
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e0e0e0;
}

.block.full-width {
    text-align: left;
}

.block:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.full-width {
    width: 100%;
}

.block-row {
    display: flex;
    gap: 20px;
}

.block-row .column {
    flex: 1;
}

/* Адаптивность для мобильных устройств */
@media (max-width: 768px) {
    .block {
        padding: 25px;
        border-radius: 15px;
    }
}

/* lk-patient */

.product-icon {
    color: #aaaaab;
}

.product-icon:hover {
    color: #2747bf;
}

#result-block {
    padding-top: 20px;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.3s ease-in-out, max-height 0.3s ease-in-out;
}

#result-block.show {
    opacity: 1;
    max-height: 2000px; /* достаточно большое значение */
}


/* dropdown.css */


.dropdown {
    background: white;
    overflow: hidden;
}

.dropdown .block {
    text-align: left;
    line-height: 1.5;
}

.dropdown h3 {
    text-align: left;
    /*color: ;*/
    font-size: 1em;
}

.dropdown .block .text {
    margin-bottom: 10px;
}

.dropdown .block .text.value {
    margin: 10px 20% 10px 20px;
    border-radius: 20px;
    background: #EFF7F8;
    padding: 10px 20px;
}

.dropdowns-container {
    display: flex;
    flex-direction: column;
    gap: 20px 0;
}

.dropdown-toggle {
    width: 100%;
    padding: 20px 25px;
    background: white;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    color: #333;

    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    border: 1px solid #eaeaea;
}

.dropdown-toggle:hover {
    background: #f8f9fa;
    border: 1px solid #143e7a;
}

.dropdown-toggle.active {
    background: #143e7a;
    color: white;
}

.dropdown-toggle::after {
    content: '';
    display: inline-block;
    width: 12px;
    height: 12px;
    border-right: 3px solid currentColor;
    border-bottom: 3px solid currentColor;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
}

.dropdown-toggle.active::after {
    transform: rotate(-135deg);
}

.dropdown-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.dropdown-content.active {
    max-height: 1000px;
    border: none;
}

.content-wrapper {
    padding-top: 25px;
}

.content-title {
    font-size: 22px;
    margin-bottom: 15px;
    color: #143e7a;
    font-weight: 600;
}

.content-text {
    line-height: 1.6;
    margin-bottom: 20px;
    color: #444;
}

.content-image {
    width: 100%;
    border-radius: 8px;
    margin: 15px 0;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.content-list {
    padding-left: 20px;
    margin: 15px 0;
}

.content-list li {
    margin-bottom: 8px;
    line-height: 1.5;
}

.content-highlight {
    background: #f0f5ff;
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid #143e7a;
    margin: 15px 0;
}

@media (max-width: 768px) {

    .dropdown-toggle {
        padding: 16px 20px;
        font-size: 16px;
    }

    .content-wrapper {
        padding: 20px;
    }
}


