    .jq-checkbox {
        top: -1px;
        vertical-align: middle;
        width: 16px;
        height: 16px;
        margin: 0 4px 0 0;
        border: 1px solid #C3C3C3;
        border-radius: 3px;
        background: #F5F5F5;
        background: -webkit-linear-gradient(#FFF, #E6E6E6);
        background: linear-gradient(#FFF, #E6E6E6);
        box-shadow: 0 1px 1px rgba(0, 0, 0, .05), inset -1px -1px #FFF, inset 1px -1px #FFF;
        cursor: pointer;
    }

    .jq-checkbox.checked .jq-checkbox__div {
        width: 12px;
        height: 12px;
        margin: 2px 0 0 2px;
        border-radius: 2px;
        background: #666;
        box-shadow: inset 0 -3px 6px #AAA;
    }

    .jq-checkbox.focused {
        border: 1px solid #08C;
    }

    .jq-checkbox.disabled {
        opacity: .55;
    }

    .jq-radio {
        top: -1px;
        vertical-align: middle;
        width: 16px;
        height: 16px;
        margin: 0 4px 0 0;
        border: 1px solid #C3C3C3;
        border-radius: 50%;
        background: #F5F5F5;
        background: -webkit-linear-gradient(#FFF, #E6E6E6);
        background: linear-gradient(#FFF, #E6E6E6);
        box-shadow: 0 1px 1px rgba(0, 0, 0, .05), inset -1px -1px #FFF, inset 1px -1px #FFF;
        cursor: pointer;
    }

    .jq-radio.checked .jq-radio__div {
        width: 10px;
        height: 10px;
        margin: 3px 0 0 3px;
        border-radius: 50%;
        background: #777;
        box-shadow: inset 1px 1px 1px rgba(0, 0, 0, .7);
    }

    .jq-radio.focused {
        border: 1px solid #08C;
    }

    .jq-radio.disabled {
        opacity: .55;
    }

    .jq-file {
        width: 270px;
        border-radius: 4px;
        box-shadow: 0 1px 2px rgba(0, 0, 0, .1);
    }

    .jq-file input {
        height: auto;
        line-height: 1em;
        cursor: pointer;
    }

    .jq-file__name {
        overflow: hidden;
        box-sizing: border-box;
        width: 100%;
        height: 34px;
        padding: 0 80px 0 10px;
        border: 1px solid #CCC;
        border-bottom-color: #B3B3B3;
        border-radius: 4px;
        background: #FFF;
        box-shadow: inset 1px 1px #F1F1F1;
        font: 14px/32px Arial, sans-serif;
        color: #333;
        white-space: nowrap;
        text-overflow: ellipsis;
    }

    .jq-file__browse {
        position: absolute;
        top: 1px;
        right: 1px;
        padding: 0 10px;
        border-left: 1px solid #CCC;
        border-radius: 0 4px 4px 0;
        background: #F5F5F5;
        background: -webkit-linear-gradient(#FFF, #E6E6E6);
        background: linear-gradient(#FFF, #E6E6E6);
        box-shadow: inset 1px -1px #F1F1F1, inset -1px 0 #F1F1F1, 0 1px 2px rgba(0, 0, 0, .1);
        font: 14px/32px Arial, sans-serif;
        color: #333;
        text-shadow: 1px 1px #FFF;
    }

    .jq-file:hover .jq-file__browse {
        background: #E6E6E6;
        background: -webkit-linear-gradient(#F6F6F6, #E6E6E6);
        background: linear-gradient(#F6F6F6, #E6E6E6);
    }

    .jq-file:active .jq-file__browse {
        background: #F5F5F5;
        box-shadow: inset 1px 1px 3px #DDD;
    }

    .jq-file.focused .jq-file__name {
        border: 1px solid #5794BF;
    }

    .jq-file.disabled,
    .jq-file.disabled .jq-file__name,
    .jq-file.disabled .jq-file__browse {
        border-color: #CCC;
        background: #F5F5F5;
        box-shadow: none;
        color: #888;
    }

    .jq-number {
        position: relative;
        display: inline-block;
        vertical-align: middle;
        padding: 0 36px 0 0;
    }

    .jq-number__field {
        width: 100px;
        border: 1px solid #CCC;
        border-bottom-color: #B3B3B3;
        border-radius: 4px;
        box-shadow: inset 1px 1px #F1F1F1, 0 1px 2px rgba(0, 0, 0, .1);
    }

    .jq-number__field:hover {
        border-color: #B3B3B3;
    }

    .jq-number__field input {
        box-sizing: border-box;
        width: 100%;
        padding: 8px 9px;
        border: none;
        outline: none;
        background: none;
        font: 14px Arial, sans-serif;
        color: #333;
        text-align: left;
        /* для Opera Presto */
        -moz-appearance: textfield;
    }

    .jq-number__field input::-webkit-inner-spin-button,
    .jq-number__field input::-webkit-outer-spin-button {
        margin: 0;
        /* в каких-то браузерах присутствует отступ */
        -webkit-appearance: none;
    }

    .jq-number__spin {
        position: absolute;
        top: 0;
        right: 0;
        width: 32px;
        height: 14px;
        border: 1px solid #CCC;
        border-bottom-color: #B3B3B3;
        border-radius: 4px;
        background: #F5F5F5;
        background: -webkit-linear-gradient(#FFF, #E6E6E6);
        background: linear-gradient(#FFF, #E6E6E6);
        box-shadow: 0 1px 2px rgba(0, 0, 0, .1);
        box-shadow: inset 1px -1px #F1F1F1, inset -1px 0 #F1F1F1, 0 1px 2px rgba(0, 0, 0, .1);
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        text-shadow: 1px 1px #FFF;
        cursor: pointer;
    }

    .jq-number__spin.minus {
        top: auto;
        bottom: 0;
    }

    .jq-number__spin:hover {
        background: #E6E6E6;
        background: -webkit-linear-gradient(#F6F6F6, #E6E6E6);
        background: linear-gradient(#F6F6F6, #E6E6E6);
    }

    .jq-number__spin:active {
        background: #F5F5F5;
        box-shadow: inset 1px 1px 3px #DDD;
    }

    .jq-number__spin:after {
        content: '';
        position: absolute;
        top: 4px;
        left: 11px;
        width: 0;
        height: 0;
        border-right: 5px solid transparent;
        border-bottom: 5px solid #999;
        border-left: 5px solid transparent;
    }

    .jq-number__spin.minus:after {
        top: 5px;
        border-top: 5px solid #999;
        border-right: 5px solid transparent;
        border-bottom: none;
        border-left: 5px solid transparent;
    }

    .jq-number__spin.minus:hover:after {
        border-top-color: #000;
    }

    .jq-number__spin.plus:hover:after {
        border-bottom-color: #000;
    }

    .jq-number.focused .jq-number__field {
        border: 1px solid #5794BF;
    }

    .jq-number.disabled .jq-number__field,
    .jq-number.disabled .jq-number__spin {
        border-color: #CCC;
        background: #F5F5F5;
        box-shadow: none;
        color: #888;
    }

    .jq-number.disabled .jq-number__spin:after {
        border-bottom-color: #AAA;
    }

    .jq-number.disabled .jq-number__spin.minus:after {
        border-top-color: #AAA;
    }

    .jq-selectbox {
        vertical-align: middle;
        cursor: pointer;
    }

    .jq-selectbox__select {
        height: 32px;
        padding: 0 45px 0 10px;
        border: 1px solid #CCC;
        border-bottom-color: #B3B3B3;
        border-radius: 4px;
        background: #F5F5F5;
        background: -webkit-linear-gradient(#FFF, #E6E6E6);
        background: linear-gradient(#FFF, #E6E6E6);
        box-shadow: inset 1px -1px #F1F1F1, inset -1px 0 #F1F1F1, 0 1px 2px rgba(0, 0, 0, .1);
        font: 14px/32px Arial, sans-serif;
        color: #333;
        text-shadow: 1px 1px #FFF;
    }

    .jq-selectbox__select:hover {
        background: #E6E6E6;
        background: -webkit-linear-gradient(#F6F6F6, #E6E6E6);
        background: linear-gradient(#F6F6F6, #E6E6E6);
    }

    .jq-selectbox__select:active {
        background: #F5F5F5;
        box-shadow: inset 1px 1px 3px #DDD;
    }

    .jq-selectbox.focused .jq-selectbox__select {
        border: 1px solid #5794BF;
    }

    .jq-selectbox.disabled .jq-selectbox__select {
        border-color: #CCC;
        background: #F5F5F5;
        box-shadow: none;
        color: #888;
    }

    .jq-selectbox__select-text {
        display: block;
        overflow: hidden;
        width: 100%;
        white-space: nowrap;
        text-overflow: ellipsis;
    }

    .jq-selectbox .placeholder {
        color: #888;
    }

    .jq-selectbox__trigger {
        position: absolute;
        top: 0;
        right: 0;
        width: 34px;
        height: 100%;
        border-left: 1px solid #CCC;
    }

    .jq-selectbox__trigger-arrow {
        position: absolute;
        top: 14px;
        right: 12px;
        width: 0;
        height: 0;
        border-top: 5px solid #999;
        border-right: 5px solid transparent;
        border-left: 5px solid transparent;
    }

    .jq-selectbox:hover .jq-selectbox__trigger-arrow {
        border-top-color: #000;
    }

    .jq-selectbox.disabled .jq-selectbox__trigger-arrow {
        border-top-color: #AAA;
    }

    .jq-selectbox__dropdown {
        box-sizing: border-box;
        width: 100%;
        margin: 2px 0 0;
        padding: 0;
        border: 1px solid #CCC;
        border-radius: 4px;
        background: #FFF;
        box-shadow: 0 2px 10px rgba(0, 0, 0, .2);
        font: 14px/18px Arial, sans-serif;
    }

    .jq-selectbox__search {
        margin: 5px;
    }

    .jq-selectbox__search input {
        box-sizing: border-box;
        width: 100%;
        margin: 0;
        padding: 5px 27px 6px 8px;
        border: 1px solid #CCC;
        border-radius: 3px;
        outline: none;
        background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAMCAYAAABiDJ37AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAO1JREFUeNqU078LAXEYx/FzYfNzk5TJaFNKYjFYSQZ/hvwBsvg1UCY2xT9gM8hukQGThWRjkcFw3pdnujhfT736Xn2fPvfc3fd07V0OFDDFAnM0ENYsZRiGLSc9OpqIYIA9fMhhjCrW2h9VlMlcH/aymMGtOqEugX08PwQucUZKdTozMIqdTc9WepQD7wjY9ARx+ydwhfyXfS+S0qMcOEQJGcueB3VccFINdMgal6NzkmPjRwJXxDBB7/2RDdtAp6wb+dpphHDASG5QQ0V6u2aoSqBZD/lDrNWRJynLK2qpBn4rc6K2XB9/Nb8EGABtf1thzY6X2AAAAABJRU5ErkJggg==) no-repeat 100% 50%;
        box-shadow: inset 1px 1px #F1F1F1;
        color: #333;
        -webkit-appearance: textfield;
    }

    .jq-selectbox__search input::-webkit-search-cancel-button,
    .jq-selectbox__search input::-webkit-search-decoration {
        -webkit-appearance: none;
    }

    .jq-selectbox__not-found {
        margin: 5px;
        padding: 5px 8px 6px;
        background: #F0F0F0;
        font-size: 13px;
    }

    .jq-selectbox ul {
        margin: 0;
        padding: 0;
    }

    .jq-selectbox li {
        min-height: 18px;
        padding: 5px 10px 6px;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        white-space: nowrap;
        color: #231F20;
    }

    .jq-selectbox li.selected {
        background-color: #A3ABB1;
        color: #FFF;
    }

    .jq-selectbox li:hover {
        background-color: #08C;
        color: #FFF;
    }

    .jq-selectbox li.disabled {
        color: #AAA;
    }

    .jq-selectbox li.disabled:hover {
        background: none;
    }

    .jq-selectbox li.optgroup {
        font-weight: bold;
    }

    .jq-selectbox li.optgroup:hover {
        background: none;
        color: #231F20;
        cursor: default;
    }

    .jq-selectbox li.option {
        padding-left: 25px;
    }

    .jq-select-multiple {
        box-sizing: border-box;
        padding: 1px;
        border: 1px solid #CCC;
        border-bottom-color: #B3B3B3;
        border-radius: 4px;
        background: #FFF;
        box-shadow: inset 1px 1px #F1F1F1, 0 1px 2px rgba(0, 0, 0, .1);
        font: 14px/18px Arial, sans-serif;
        color: #333;
        cursor: default;
    }

    .jq-select-multiple.focused {
        border: 1px solid #5794BF;
    }

    .jq-select-multiple.disabled {
        border-color: #CCC;
        background: #F5F5F5;
        box-shadow: none;
        color: #888;
    }

    .jq-select-multiple ul {
        margin: 0;
        padding: 0;
    }

    .jq-select-multiple li {
        padding: 3px 9px 4px;
        list-style: none;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        white-space: nowrap;
    }

    .jq-select-multiple li:first-child {
        border-radius: 3px 3px 0 0;
    }

    .jq-select-multiple li:last-child {
        border-radius: 0 0 3px 3px;
    }

    .jq-select-multiple li.selected {
        background: #08C;
        color: #FFF;
    }

    .jq-select-multiple li.disabled {
        color: #AAA;
    }

    .jq-select-multiple.disabled li.selected,
    .jq-select-multiple li.selected.disabled {
        background: #CCC;
        color: #FFF;
    }

    .jq-select-multiple li.optgroup {
        font-weight: bold;
    }

    .jq-select-multiple li.option {
        padding-left: 25px;
    }

    input[type='email'].styler,
    input[type='password'].styler,
    input[type='search'].styler,
    input[type='tel'].styler,
    input[type='text'].styler,
    input[type='url'].styler,
    textarea.styler {
        padding: 8px 9px;
        border: 1px solid #CCC;
        border-bottom-color: #B3B3B3;
        border-radius: 4px;
        box-shadow: inset 1px 1px #F1F1F1, 0 1px 2px rgba(0, 0, 0, .1);
        font: 14px Arial, sans-serif;
        color: #333;
    }

    input[type='search'].styler {
        -webkit-appearance: none;
    }

    textarea.styler {
        overflow: auto;
    }

    input[type='email'].styler:hover,
    input[type='password'].styler:hover,
    input[type='search'].styler:hover,
    input[type='tel'].styler:hover,
    input[type='text'].styler:hover,
    input[type='url'].styler:hover,
    textarea.styler:hover {
        border-color: #B3B3B3;
    }

    input[type='email'].styler:focus,
    input[type='password'].styler:focus,
    input[type='search'].styler:focus,
    input[type='tel'].styler:focus,
    input[type='text'].styler:focus,
    input[type='url'].styler:focus,
    textarea.styler:focus {
        border-color: #CCC;
        border-top-color: #B3B3B3;
        outline: none;
        box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1);
    }

    button.styler,
    input[type='button'].styler,
    input[type='submit'].styler,
    input[type='reset'].styler {
        overflow: visible;
        padding: 8px 11px;
        border: 1px solid #CCC;
        border-bottom-color: #B3B3B3;
        border-radius: 4px;
        outline: none;
        background: #F5F5F5;
        background: -webkit-linear-gradient(#FFF, #E6E6E6);
        background: linear-gradient(#FFF, #E6E6E6);
        box-shadow: inset 1px -1px #F1F1F1, inset -1px 0 #F1F1F1, 0 1px 2px rgba(0, 0, 0, .1);
        font: 14px Arial, sans-serif;
        color: #333;
        text-shadow: 1px 1px #FFF;
        cursor: pointer;
    }

    button.styler::-moz-focus-inner,
    input[type='button'].styler::-moz-focus-inner,
    input[type='submit'].styler::-moz-focus-inner,
    input[type='reset'].styler::-moz-focus-inner {
        padding: 0;
        border: 0;
    }

    button.styler:not([disabled]):hover,
    input[type='button'].styler:not([disabled]):hover,
    input[type='submit'].styler:not([disabled]):hover,
    input[type='reset'].styler:hover {
        background: #E6E6E6;
        background: -webkit-linear-gradient(#F6F6F6, #E6E6E6);
        background: linear-gradient(#F6F6F6, #E6E6E6);
    }

    button.styler:not([disabled]):active,
    input[type='button'].styler:not([disabled]):active,
    input[type='submit'].styler:not([disabled]):active,
    input[type='reset'].styler:active {
        background: #F5F5F5;
        box-shadow: inset 1px 1px 3px #DDD;
    }

    button.styler[disabled],
    input[type='button'].styler[disabled],
    input[type='submit'].styler[disabled] {
        border-color: #CCC;
        background: #F5F5F5;
        box-shadow: none;
        color: #888;
    }


    .ui-helper-hidden {
        display: none
    }

    .ui-helper-hidden-accessible {
        border: 0;
        clip: rect(0 0 0 0);
        height: 1px;
        margin: -1px;
        overflow: hidden;
        padding: 0;
        position: absolute;
        width: 1px
    }

    .ui-helper-reset {
        margin: 0;
        padding: 0;
        border: 0;
        outline: 0;
        line-height: 1.3;
        text-decoration: none;
        font-size: 100%;
        list-style: none
    }

    .ui-helper-clearfix:before,
    .ui-helper-clearfix:after {
        content: "";
        display: table;
        border-collapse: collapse
    }

    .ui-helper-clearfix:after {
        clear: both
    }

    .ui-helper-clearfix {
        min-height: 0
    }

    .ui-helper-zfix {
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        position: absolute;
        opacity: 0;
        filter: Alpha(Opacity=0)
    }

    .ui-front {
        z-index: 100
    }

    .ui-state-disabled {
        cursor: default!important
    }

    .ui-icon {
        display: block;
        text-indent: -99999px;
        overflow: hidden;
        background-repeat: no-repeat
    }

    .ui-widget-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%
    }

    .ui-draggable-handle {
        -ms-touch-action: none;
        touch-action: none
    }

    .ui-resizable {
        position: relative
    }

    .ui-resizable-handle {
        position: absolute;
        font-size: 0.1px;
        display: block;
        -ms-touch-action: none;
        touch-action: none
    }

    .ui-resizable-disabled .ui-resizable-handle,
    .ui-resizable-autohide .ui-resizable-handle {
        display: none
    }

    .ui-resizable-n {
        cursor: n-resize;
        height: 7px;
        width: 100%;
        top: -5px;
        left: 0
    }

    .ui-resizable-s {
        cursor: s-resize;
        height: 7px;
        width: 100%;
        bottom: -5px;
        left: 0
    }

    .ui-resizable-e {
        cursor: e-resize;
        width: 7px;
        right: -5px;
        top: 0;
        height: 100%
    }

    .ui-resizable-w {
        cursor: w-resize;
        width: 7px;
        left: -5px;
        top: 0;
        height: 100%
    }

    .ui-resizable-se {
        cursor: se-resize;
        width: 12px;
        height: 12px;
        right: 1px;
        bottom: 1px
    }

    .ui-resizable-sw {
        cursor: sw-resize;
        width: 9px;
        height: 9px;
        left: -5px;
        bottom: -5px
    }

    .ui-resizable-nw {
        cursor: nw-resize;
        width: 9px;
        height: 9px;
        left: -5px;
        top: -5px
    }

    .ui-resizable-ne {
        cursor: ne-resize;
        width: 9px;
        height: 9px;
        right: -5px;
        top: -5px
    }

    .ui-selectable {
        -ms-touch-action: none;
        touch-action: none
    }

    .ui-selectable-helper {
        position: absolute;
        z-index: 100;
        border: 1px dotted black
    }

    .ui-sortable-handle {
        -ms-touch-action: none;
        touch-action: none
    }

    .ui-accordion .ui-accordion-header {
        display: block;
        cursor: pointer;
        position: relative;
        margin: 2px 0 0 0;
        padding: .5em .5em .5em .7em;
        min-height: 0;
        font-size: 100%
    }

    .ui-accordion .ui-accordion-icons {
        padding-left: 2.2em
    }

    .ui-accordion .ui-accordion-icons .ui-accordion-icons {
        padding-left: 2.2em
    }

    .ui-accordion .ui-accordion-header .ui-accordion-header-icon {
        position: absolute;
        left: .5em;
        top: 50%;
        margin-top: -8px
    }

    .ui-accordion .ui-accordion-content {
        padding: 1em 2.2em;
        border-top: 0;
        overflow: auto
    }

    .ui-autocomplete {
        position: absolute;
        top: 0;
        left: 0;
        cursor: default
    }

    .ui-button {
        display: inline-block;
        position: relative;
        padding: 0;
        line-height: normal;
        margin-right: .1em;
        cursor: pointer;
        vertical-align: middle;
        text-align: center;
        overflow: visible
    }

    .ui-button,
    .ui-button:link,
    .ui-button:visited,
    .ui-button:hover,
    .ui-button:active {
        text-decoration: none
    }

    .ui-button-icon-only {
        width: 2.2em
    }

    button.ui-button-icon-only {
        width: 2.4em
    }

    .ui-button-icons-only {
        width: 3.4em
    }

    button.ui-button-icons-only {
        width: 3.7em
    }

    .ui-button .ui-button-text {
        display: block;
        line-height: normal
    }

    .ui-button-text-only .ui-button-text {
        padding: .4em 1em
    }

    .ui-button-icon-only .ui-button-text,
    .ui-button-icons-only .ui-button-text {
        padding: .4em;
        text-indent: -9999999px
    }

    .ui-button-text-icon-primary .ui-button-text,
    .ui-button-text-icons .ui-button-text {
        padding: .4em 1em .4em 2.1em
    }

    .ui-button-text-icon-secondary .ui-button-text,
    .ui-button-text-icons .ui-button-text {
        padding: .4em 2.1em .4em 1em
    }

    .ui-button-text-icons .ui-button-text {
        padding-left: 2.1em;
        padding-right: 2.1em
    }

    input.ui-button {
        padding: .4em 1em
    }

    .ui-button-icon-only .ui-icon,
    .ui-button-text-icon-primary .ui-icon,
    .ui-button-text-icon-secondary .ui-icon,
    .ui-button-text-icons .ui-icon,
    .ui-button-icons-only .ui-icon {
        position: absolute;
        top: 50%;
        margin-top: -8px
    }

    .ui-button-icon-only .ui-icon {
        left: 50%;
        margin-left: -8px
    }

    .ui-button-text-icon-primary .ui-button-icon-primary,
    .ui-button-text-icons .ui-button-icon-primary,
    .ui-button-icons-only .ui-button-icon-primary {
        left: .5em
    }

    .ui-button-text-icon-secondary .ui-button-icon-secondary,
    .ui-button-text-icons .ui-button-icon-secondary,
    .ui-button-icons-only .ui-button-icon-secondary {
        right: .5em
    }

    .ui-buttonset {
        margin-right: 7px
    }

    .ui-buttonset .ui-button {
        margin-left: 0;
        margin-right: -.3em
    }

    input.ui-button::-moz-focus-inner,
    button.ui-button::-moz-focus-inner {
        border: 0;
        padding: 0
    }

    .ui-datepicker {
        width: 17em;
        padding: .2em .2em 0;
        display: none
    }

    .ui-datepicker .ui-datepicker-header {
        position: relative;
        padding: .2em 0
    }

    .ui-datepicker .ui-datepicker-prev,
    .ui-datepicker .ui-datepicker-next {
        position: absolute;
        top: 2px;
        width: 1.8em;
        height: 1.8em
    }

    .ui-datepicker .ui-datepicker-prev-hover,
    .ui-datepicker .ui-datepicker-next-hover {
        top: 1px
    }

    .ui-datepicker .ui-datepicker-prev {
        left: 2px
    }

    .ui-datepicker .ui-datepicker-next {
        right: 2px
    }

    .ui-datepicker .ui-datepicker-prev-hover {
        left: 1px
    }

    .ui-datepicker .ui-datepicker-next-hover {
        right: 1px
    }

    .ui-datepicker .ui-datepicker-prev span,
    .ui-datepicker .ui-datepicker-next span {
        display: block;
        position: absolute;
        left: 50%;
        margin-left: -8px;
        top: 50%;
        margin-top: -8px
    }

    .ui-datepicker .ui-datepicker-title {
        margin: 0 2.3em;
        line-height: 1.8em;
        text-align: center
    }

    .ui-datepicker .ui-datepicker-title select {
        font-size: 1em;
        margin: 1px 0
    }

    .ui-datepicker select.ui-datepicker-month,
    .ui-datepicker select.ui-datepicker-year {
        width: 45%
    }

    .ui-datepicker table {
        width: 100%;
        font-size: .9em;
        border-collapse: collapse;
        margin: 0 0 .4em
    }

    .ui-datepicker th {
        padding: .7em .3em;
        text-align: center;
        font-weight: bold;
        border: 0
    }

    .ui-datepicker td {
        border: 0;
        padding: 1px
    }

    .ui-datepicker td span,
    .ui-datepicker td a {
        display: block;
        padding: .2em;
        text-align: right;
        text-decoration: none
    }

    .ui-datepicker .ui-datepicker-buttonpane {
        background-image: none;
        margin: .7em 0 0 0;
        padding: 0 .2em;
        border-left: 0;
        border-right: 0;
        border-bottom: 0
    }

    .ui-datepicker .ui-datepicker-buttonpane button {
        float: right;
        margin: .5em .2em .4em;
        cursor: pointer;
        padding: .2em .6em .3em .6em;
        width: auto;
        overflow: visible
    }

    .ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current {
        float: left
    }

    .ui-datepicker.ui-datepicker-multi {
        width: auto
    }

    .ui-datepicker-multi .ui-datepicker-group {
        float: left
    }

    .ui-datepicker-multi .ui-datepicker-group table {
        width: 95%;
        margin: 0 auto .4em
    }

    .ui-datepicker-multi-2 .ui-datepicker-group {
        width: 50%
    }

    .ui-datepicker-multi-3 .ui-datepicker-group {
        width: 33.3%
    }

    .ui-datepicker-multi-4 .ui-datepicker-group {
        width: 25%
    }

    .ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header,
    .ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header {
        border-left-width: 0
    }

    .ui-datepicker-multi .ui-datepicker-buttonpane {
        clear: left
    }

    .ui-datepicker-row-break {
        clear: both;
        width: 100%;
        font-size: 0
    }

    .ui-datepicker-rtl {
        direction: rtl
    }

    .ui-datepicker-rtl .ui-datepicker-prev {
        right: 2px;
        left: auto
    }

    .ui-datepicker-rtl .ui-datepicker-next {
        left: 2px;
        right: auto
    }

    .ui-datepicker-rtl .ui-datepicker-prev:hover {
        right: 1px;
        left: auto
    }

    .ui-datepicker-rtl .ui-datepicker-next:hover {
        left: 1px;
        right: auto
    }

    .ui-datepicker-rtl .ui-datepicker-buttonpane {
        clear: right
    }

    .ui-datepicker-rtl .ui-datepicker-buttonpane button {
        float: left
    }

    .ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current,
    .ui-datepicker-rtl .ui-datepicker-group {
        float: right
    }

    .ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header,
    .ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header {
        border-right-width: 0;
        border-left-width: 1px
    }

    .ui-dialog {
        overflow: hidden;
        position: absolute;
        top: 0;
        left: 0;
        padding: .2em;
        outline: 0
    }

    .ui-dialog .ui-dialog-titlebar {
        padding: .4em 1em;
        position: relative
    }

    .ui-dialog .ui-dialog-title {
        float: left;
        margin: .1em 0;
        white-space: nowrap;
        width: 90%;
        overflow: hidden;
        text-overflow: ellipsis
    }

    .ui-dialog .ui-dialog-titlebar-close {
        position: absolute;
        right: .3em;
        top: 50%;
        width: 20px;
        margin: -10px 0 0 0;
        padding: 1px;
        height: 20px
    }

    .ui-dialog .ui-dialog-content {
        position: relative;
        border: 0;
        padding: .5em 1em;
        background: none;
        overflow: auto
    }

    .ui-dialog .ui-dialog-buttonpane {
        text-align: left;
        border-width: 1px 0 0 0;
        background-image: none;
        margin-top: .5em;
        padding: .3em 1em .5em .4em
    }

    .ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset {
        float: right
    }

    .ui-dialog .ui-dialog-buttonpane button {
        margin: .5em .4em .5em 0;
        cursor: pointer
    }

    .ui-dialog .ui-resizable-se {
        width: 12px;
        height: 12px;
        right: -5px;
        bottom: -5px;
        background-position: 16px 16px
    }

    .ui-draggable .ui-dialog-titlebar {
        cursor: move
    }

    .ui-menu {
        list-style: none;
        padding: 0;
        margin: 0;
        display: block;
        outline: none
    }

    .ui-menu .ui-menu {
        position: absolute
    }

    .ui-menu .ui-menu-item {
        position: relative;
        margin: 0;
        padding: 3px 1em 3px .4em;
        cursor: pointer;
        min-height: 0;
        list-style-image: url("data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7")
    }

    .ui-menu .ui-menu-divider {
        margin: 5px 0;
        height: 0;
        font-size: 0;
        line-height: 0;
        border-width: 1px 0 0 0
    }

    .ui-menu .ui-state-focus,
    .ui-menu .ui-state-active {
        margin: -1px
    }

    .ui-menu-icons {
        position: relative
    }

    .ui-menu-icons .ui-menu-item {
        padding-left: 2em
    }

    .ui-menu .ui-icon {
        position: absolute;
        top: 0;
        bottom: 0;
        left: .2em;
        margin: auto 0
    }

    .ui-menu .ui-menu-icon {
        left: auto;
        right: 0
    }

    .ui-progressbar {
        height: 2em;
        text-align: left;
        overflow: hidden
    }

    .ui-progressbar .ui-progressbar-value {
        margin: -1px;
        height: 100%
    }

    .ui-progressbar .ui-progressbar-overlay {
        background: url("data:image/gif;base64,R0lGODlhKAAoAIABAAAAAP///yH/C05FVFNDQVBFMi4wAwEAAAAh+QQJAQABACwAAAAAKAAoAAACkYwNqXrdC52DS06a7MFZI+4FHBCKoDeWKXqymPqGqxvJrXZbMx7Ttc+w9XgU2FB3lOyQRWET2IFGiU9m1frDVpxZZc6bfHwv4c1YXP6k1Vdy292Fb6UkuvFtXpvWSzA+HycXJHUXiGYIiMg2R6W459gnWGfHNdjIqDWVqemH2ekpObkpOlppWUqZiqr6edqqWQAAIfkECQEAAQAsAAAAACgAKAAAApSMgZnGfaqcg1E2uuzDmmHUBR8Qil95hiPKqWn3aqtLsS18y7G1SzNeowWBENtQd+T1JktP05nzPTdJZlR6vUxNWWjV+vUWhWNkWFwxl9VpZRedYcflIOLafaa28XdsH/ynlcc1uPVDZxQIR0K25+cICCmoqCe5mGhZOfeYSUh5yJcJyrkZWWpaR8doJ2o4NYq62lAAACH5BAkBAAEALAAAAAAoACgAAAKVDI4Yy22ZnINRNqosw0Bv7i1gyHUkFj7oSaWlu3ovC8GxNso5fluz3qLVhBVeT/Lz7ZTHyxL5dDalQWPVOsQWtRnuwXaFTj9jVVh8pma9JjZ4zYSj5ZOyma7uuolffh+IR5aW97cHuBUXKGKXlKjn+DiHWMcYJah4N0lYCMlJOXipGRr5qdgoSTrqWSq6WFl2ypoaUAAAIfkECQEAAQAsAAAAACgAKAAAApaEb6HLgd/iO7FNWtcFWe+ufODGjRfoiJ2akShbueb0wtI50zm02pbvwfWEMWBQ1zKGlLIhskiEPm9R6vRXxV4ZzWT2yHOGpWMyorblKlNp8HmHEb/lCXjcW7bmtXP8Xt229OVWR1fod2eWqNfHuMjXCPkIGNileOiImVmCOEmoSfn3yXlJWmoHGhqp6ilYuWYpmTqKUgAAIfkECQEAAQAsAAAAACgAKAAAApiEH6kb58biQ3FNWtMFWW3eNVcojuFGfqnZqSebuS06w5V80/X02pKe8zFwP6EFWOT1lDFk8rGERh1TTNOocQ61Hm4Xm2VexUHpzjymViHrFbiELsefVrn6XKfnt2Q9G/+Xdie499XHd2g4h7ioOGhXGJboGAnXSBnoBwKYyfioubZJ2Hn0RuRZaflZOil56Zp6iioKSXpUAAAh+QQJAQABACwAAAAAKAAoAAACkoQRqRvnxuI7kU1a1UU5bd5tnSeOZXhmn5lWK3qNTWvRdQxP8qvaC+/yaYQzXO7BMvaUEmJRd3TsiMAgswmNYrSgZdYrTX6tSHGZO73ezuAw2uxuQ+BbeZfMxsexY35+/Qe4J1inV0g4x3WHuMhIl2jXOKT2Q+VU5fgoSUI52VfZyfkJGkha6jmY+aaYdirq+lQAACH5BAkBAAEALAAAAAAoACgAAAKWBIKpYe0L3YNKToqswUlvznigd4wiR4KhZrKt9Upqip61i9E3vMvxRdHlbEFiEXfk9YARYxOZZD6VQ2pUunBmtRXo1Lf8hMVVcNl8JafV38aM2/Fu5V16Bn63r6xt97j09+MXSFi4BniGFae3hzbH9+hYBzkpuUh5aZmHuanZOZgIuvbGiNeomCnaxxap2upaCZsq+1kAACH5BAkBAAEALAAAAAAoACgAAAKXjI8By5zf4kOxTVrXNVlv1X0d8IGZGKLnNpYtm8Lr9cqVeuOSvfOW79D9aDHizNhDJidFZhNydEahOaDH6nomtJjp1tutKoNWkvA6JqfRVLHU/QUfau9l2x7G54d1fl995xcIGAdXqMfBNadoYrhH+Mg2KBlpVpbluCiXmMnZ2Sh4GBqJ+ckIOqqJ6LmKSllZmsoq6wpQAAAh+QQJAQABACwAAAAAKAAoAAAClYx/oLvoxuJDkU1a1YUZbJ59nSd2ZXhWqbRa2/gF8Gu2DY3iqs7yrq+xBYEkYvFSM8aSSObE+ZgRl1BHFZNr7pRCavZ5BW2142hY3AN/zWtsmf12p9XxxFl2lpLn1rseztfXZjdIWIf2s5dItwjYKBgo9yg5pHgzJXTEeGlZuenpyPmpGQoKOWkYmSpaSnqKileI2FAAACH5BAkBAAEALAAAAAAoACgAAAKVjB+gu+jG4kORTVrVhRlsnn2dJ3ZleFaptFrb+CXmO9OozeL5VfP99HvAWhpiUdcwkpBH3825AwYdU8xTqlLGhtCosArKMpvfa1mMRae9VvWZfeB2XfPkeLmm18lUcBj+p5dnN8jXZ3YIGEhYuOUn45aoCDkp16hl5IjYJvjWKcnoGQpqyPlpOhr3aElaqrq56Bq7VAAAOw==");
        height: 100%;
        filter: alpha(opacity=25);
        opacity: 0.25
    }

    .ui-progressbar-indeterminate .ui-progressbar-value {
        background-image: none
    }

    .ui-selectmenu-menu {
        padding: 0;
        margin: 0;
        position: absolute;
        top: 0;
        left: 0;
        display: none
    }

    .ui-selectmenu-menu .ui-menu {
        overflow: auto;
        overflow-x: hidden;
        padding-bottom: 1px
    }

    .ui-selectmenu-menu .ui-menu .ui-selectmenu-optgroup {
        font-size: 1em;
        font-weight: bold;
        line-height: 1.5;
        padding: 2px 0.4em;
        margin: 0.5em 0 0 0;
        height: auto;
        border: 0
    }

    .ui-selectmenu-open {
        display: block
    }

    .ui-selectmenu-button {
        display: inline-block;
        overflow: hidden;
        position: relative;
        text-decoration: none;
        cursor: pointer
    }

    .ui-selectmenu-button span.ui-icon {
        right: 0.5em;
        left: auto;
        margin-top: -8px;
        position: absolute;
        top: 50%
    }

    .ui-selectmenu-button span.ui-selectmenu-text {
        text-align: left;
        padding: 0.4em 2.1em 0.4em 1em;
        display: block;
        line-height: 1.4;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap
    }

    .ui-slider {
        position: relative;
        text-align: left
    }

    .ui-slider .ui-slider-handle {
        position: absolute;
        z-index: 2;
        width: 1.2em;
        height: 1.2em;
        cursor: default;
        -ms-touch-action: none;
        touch-action: none
    }

    .ui-slider .ui-slider-range {
        position: absolute;
        z-index: 1;
        font-size: .7em;
        display: block;
        border: 0;
        background-position: 0 0
    }

    .ui-slider.ui-state-disabled .ui-slider-handle,
    .ui-slider.ui-state-disabled .ui-slider-range {
        filter: inherit
    }

    .ui-slider-horizontal {
        height: .8em
    }

    .ui-slider-horizontal .ui-slider-handle {
        top: -.3em;
        margin-left: -.6em
    }

    .ui-slider-horizontal .ui-slider-range {
        top: 0;
        height: 100%
    }

    .ui-slider-horizontal .ui-slider-range-min {
        left: 0
    }

    .ui-slider-horizontal .ui-slider-range-max {
        right: 0
    }

    .ui-slider-vertical {
        width: .8em;
        height: 100px
    }

    .ui-slider-vertical .ui-slider-handle {
        left: -.3em;
        margin-left: 0;
        margin-bottom: -.6em
    }

    .ui-slider-vertical .ui-slider-range {
        left: 0;
        width: 100%
    }

    .ui-slider-vertical .ui-slider-range-min {
        bottom: 0
    }

    .ui-slider-vertical .ui-slider-range-max {
        top: 0
    }

    .ui-spinner {
        position: relative;
        display: inline-block;
        overflow: hidden;
        padding: 0;
        vertical-align: middle
    }

    .ui-spinner-input {
        border: none;
        background: none;
        color: inherit;
        padding: 0;
        margin: .2em 0;
        vertical-align: middle;
        margin-left: .4em;
        margin-right: 22px
    }

    .ui-spinner-button {
        width: 16px;
        height: 50%;
        font-size: .5em;
        padding: 0;
        margin: 0;
        text-align: center;
        position: absolute;
        cursor: default;
        display: block;
        overflow: hidden;
        right: 0
    }

    .ui-spinner a.ui-spinner-button {
        border-top: none;
        border-bottom: none;
        border-right: none
    }

    .ui-spinner .ui-icon {
        position: absolute;
        margin-top: -8px;
        top: 50%;
        left: 0
    }

    .ui-spinner-up {
        top: 0
    }

    .ui-spinner-down {
        bottom: 0
    }

    .ui-spinner .ui-icon-triangle-1-s {
        background-position: -65px -16px
    }

    .ui-tabs {
        position: relative;
        padding: .2em
    }

    .ui-tabs .ui-tabs-nav {
        margin: 0;
        padding: .2em .2em 0
    }

    .ui-tabs .ui-tabs-nav li {
        list-style: none;
        float: left;
        position: relative;
        top: 0;
        margin: 1px .2em 0 0;
        border-bottom-width: 0;
        padding: 0;
        white-space: nowrap
    }

    .ui-tabs .ui-tabs-nav .ui-tabs-anchor {
        float: left;
        padding: .5em 1em;
        text-decoration: none
    }

    .ui-tabs .ui-tabs-nav li.ui-tabs-active {
        margin-bottom: -1px;
        padding-bottom: 1px
    }

    .ui-tabs .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor,
    .ui-tabs .ui-tabs-nav li.ui-state-disabled .ui-tabs-anchor,
    .ui-tabs .ui-tabs-nav li.ui-tabs-loading .ui-tabs-anchor {
        cursor: text
    }

    .ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor {
        cursor: pointer
    }

    .ui-tabs .ui-tabs-panel {
        display: block;
        border-width: 0;
        padding: 1em 1.4em;
        background: none
    }

    .ui-tooltip {
        padding: 8px;
        position: absolute;
        z-index: 9999;
        max-width: 300px;
        -webkit-box-shadow: 0 0 5px #aaa;
        box-shadow: 0 0 5px #aaa
    }

    body .ui-tooltip {
        border-width: 2px
    }

    .ui-widget {
        font-family: Verdana, Arial, sans-serif;
        font-size: 1.1em
    }

    .ui-widget .ui-widget {
        font-size: 1em
    }

    .ui-widget input,
    .ui-widget select,
    .ui-widget textarea,
    .ui-widget button {
        font-family: Verdana, Arial, sans-serif;
        font-size: 1em
    }

    .ui-widget-content {
        border: 1px solid #a6c9e2;
        background: #fcfdfd url("images/ui-bg_inset-hard_100_fcfdfd_1x100.png") 50% bottom repeat-x;
        color: #222
    }

    .ui-widget-content a {
        color: #222
    }

    .ui-widget-header {
        border: 1px solid #4297d7;
        background: #2191c0 url("images/ui-bg_gloss-wave_75_2191c0_500x100.png") 50% 50% repeat-x;
        color: #eaf5f7;
        font-weight: bold
    }

    .ui-widget-header a {
        color: #eaf5f7
    }

    .ui-state-default,
    .ui-widget-content .ui-state-default,
    .ui-widget-header .ui-state-default {
        border: 1px solid #77d5f7;
        background: #0078ae url("images/ui-bg_glass_45_0078ae_1x400.png") 50% 50% repeat-x;
        font-weight: normal;
        color: #fff
    }

    .ui-state-default a,
    .ui-state-default a:link,
    .ui-state-default a:visited {
        color: #fff;
        text-decoration: none
    }

    .ui-state-hover,
    .ui-widget-content .ui-state-hover,
    .ui-widget-header .ui-state-hover,
    .ui-state-focus,
    .ui-widget-content .ui-state-focus,
    .ui-widget-header .ui-state-focus {
        border: 1px solid #448dae;
        background: #79c9ec url("images/ui-bg_glass_75_79c9ec_1x400.png") 50% 50% repeat-x;
        font-weight: normal;
        color: #026890
    }

    .ui-state-hover a,
    .ui-state-hover a:hover,
    .ui-state-hover a:link,
    .ui-state-hover a:visited,
    .ui-state-focus a,
    .ui-state-focus a:hover,
    .ui-state-focus a:link,
    .ui-state-focus a:visited {
        color: #026890;
        text-decoration: none
    }

    .ui-state-active,
    .ui-widget-content .ui-state-active,
    .ui-widget-header .ui-state-active {
        border: 1px solid #acdd4a;
        background: #6eac2c url("images/ui-bg_gloss-wave_50_6eac2c_500x100.png") 50% 50% repeat-x;
        font-weight: normal;
        color: #fff
    }

    .ui-state-active a,
    .ui-state-active a:link,
    .ui-state-active a:visited {
        color: #fff;
        text-decoration: none
    }

    .ui-state-highlight,
    .ui-widget-content .ui-state-highlight,
    .ui-widget-header .ui-state-highlight {
        border: 1px solid #fcd113;
        background: #f8da4e url("images/ui-bg_glass_55_f8da4e_1x400.png") 50% 50% repeat-x;
        color: #915608
    }

    .ui-state-highlight a,
    .ui-widget-content .ui-state-highlight a,
    .ui-widget-header .ui-state-highlight a {
        color: #915608
    }

    .ui-state-error,
    .ui-widget-content .ui-state-error,
    .ui-widget-header .ui-state-error {
        border: 1px solid #cd0a0a;
        background: #e14f1c url("images/ui-bg_gloss-wave_45_e14f1c_500x100.png") 50% top repeat-x;
        color: #fff
    }

    .ui-state-error a,
    .ui-widget-content .ui-state-error a,
    .ui-widget-header .ui-state-error a {
        color: #fff
    }

    .ui-state-error-text,
    .ui-widget-content .ui-state-error-text,
    .ui-widget-header .ui-state-error-text {
        color: #fff
    }

    .ui-priority-primary,
    .ui-widget-content .ui-priority-primary,
    .ui-widget-header .ui-priority-primary {
        font-weight: bold
    }

    .ui-priority-secondary,
    .ui-widget-content .ui-priority-secondary,
    .ui-widget-header .ui-priority-secondary {
        opacity: .7;
        filter: Alpha(Opacity=70);
        font-weight: normal
    }

    .ui-state-disabled,
    .ui-widget-content .ui-state-disabled,
    .ui-widget-header .ui-state-disabled {
        opacity: .35;
        filter: Alpha(Opacity=35);
        background-image: none
    }

    .ui-state-disabled .ui-icon {
        filter: Alpha(Opacity=35)
    }

    .ui-icon {
        width: 16px;
        height: 16px
    }

    .ui-icon,
    .ui-widget-content .ui-icon {
        background-image: url("images/ui-icons_0078ae_256x240.png")
    }

    .ui-widget-header .ui-icon {
        background-image: url("images/ui-icons_d8e7f3_256x240.png")
    }

    .ui-state-default .ui-icon {
        background-image: url("images/ui-icons_e0fdff_256x240.png")
    }

    .ui-state-hover .ui-icon,
    .ui-state-focus .ui-icon {
        background-image: url("images/ui-icons_056b93_256x240.png")
    }

    .ui-state-active .ui-icon {
        background-image: url("images/ui-icons_f5e175_256x240.png")
    }

    .ui-state-highlight .ui-icon {
        background-image: url("images/ui-icons_f7a50d_256x240.png")
    }

    .ui-state-error .ui-icon,
    .ui-state-error-text .ui-icon {
        background-image: url("images/ui-icons_fcd113_256x240.png")
    }

    .ui-icon-blank {
        background-position: 16px 16px
    }

    .ui-icon-carat-1-n {
        background-position: 0 0
    }

    .ui-icon-carat-1-ne {
        background-position: -16px 0
    }

    .ui-icon-carat-1-e {
        background-position: -32px 0
    }

    .ui-icon-carat-1-se {
        background-position: -48px 0
    }

    .ui-icon-carat-1-s {
        background-position: -64px 0
    }

    .ui-icon-carat-1-sw {
        background-position: -80px 0
    }

    .ui-icon-carat-1-w {
        background-position: -96px 0
    }

    .ui-icon-carat-1-nw {
        background-position: -112px 0
    }

    .ui-icon-carat-2-n-s {
        background-position: -128px 0
    }

    .ui-icon-carat-2-e-w {
        background-position: -144px 0
    }

    .ui-icon-triangle-1-n {
        background-position: 0 -16px
    }

    .ui-icon-triangle-1-ne {
        background-position: -16px -16px
    }

    .ui-icon-triangle-1-e {
        background-position: -32px -16px
    }

    .ui-icon-triangle-1-se {
        background-position: -48px -16px
    }

    .ui-icon-triangle-1-s {
        background-position: -64px -16px
    }

    .ui-icon-triangle-1-sw {
        background-position: -80px -16px
    }

    .ui-icon-triangle-1-w {
        background-position: -96px -16px
    }

    .ui-icon-triangle-1-nw {
        background-position: -112px -16px
    }

    .ui-icon-triangle-2-n-s {
        background-position: -128px -16px
    }

    .ui-icon-triangle-2-e-w {
        background-position: -144px -16px
    }

    .ui-icon-arrow-1-n {
        background-position: 0 -32px
    }

    .ui-icon-arrow-1-ne {
        background-position: -16px -32px
    }

    .ui-icon-arrow-1-e {
        background-position: -32px -32px
    }

    .ui-icon-arrow-1-se {
        background-position: -48px -32px
    }

    .ui-icon-arrow-1-s {
        background-position: -64px -32px
    }

    .ui-icon-arrow-1-sw {
        background-position: -80px -32px
    }

    .ui-icon-arrow-1-w {
        background-position: -96px -32px
    }

    .ui-icon-arrow-1-nw {
        background-position: -112px -32px
    }

    .ui-icon-arrow-2-n-s {
        background-position: -128px -32px
    }

    .ui-icon-arrow-2-ne-sw {
        background-position: -144px -32px
    }

    .ui-icon-arrow-2-e-w {
        background-position: -160px -32px
    }

    .ui-icon-arrow-2-se-nw {
        background-position: -176px -32px
    }

    .ui-icon-arrowstop-1-n {
        background-position: -192px -32px
    }

    .ui-icon-arrowstop-1-e {
        background-position: -208px -32px
    }

    .ui-icon-arrowstop-1-s {
        background-position: -224px -32px
    }

    .ui-icon-arrowstop-1-w {
        background-position: -240px -32px
    }

    .ui-icon-arrowthick-1-n {
        background-position: 0 -48px
    }

    .ui-icon-arrowthick-1-ne {
        background-position: -16px -48px
    }

    .ui-icon-arrowthick-1-e {
        background-position: -32px -48px
    }

    .ui-icon-arrowthick-1-se {
        background-position: -48px -48px
    }

    .ui-icon-arrowthick-1-s {
        background-position: -64px -48px
    }

    .ui-icon-arrowthick-1-sw {
        background-position: -80px -48px
    }

    .ui-icon-arrowthick-1-w {
        background-position: -96px -48px
    }

    .ui-icon-arrowthick-1-nw {
        background-position: -112px -48px
    }

    .ui-icon-arrowthick-2-n-s {
        background-position: -128px -48px
    }

    .ui-icon-arrowthick-2-ne-sw {
        background-position: -144px -48px
    }

    .ui-icon-arrowthick-2-e-w {
        background-position: -160px -48px
    }

    .ui-icon-arrowthick-2-se-nw {
        background-position: -176px -48px
    }

    .ui-icon-arrowthickstop-1-n {
        background-position: -192px -48px
    }

    .ui-icon-arrowthickstop-1-e {
        background-position: -208px -48px
    }

    .ui-icon-arrowthickstop-1-s {
        background-position: -224px -48px
    }

    .ui-icon-arrowthickstop-1-w {
        background-position: -240px -48px
    }

    .ui-icon-arrowreturnthick-1-w {
        background-position: 0 -64px
    }

    .ui-icon-arrowreturnthick-1-n {
        background-position: -16px -64px
    }

    .ui-icon-arrowreturnthick-1-e {
        background-position: -32px -64px
    }

    .ui-icon-arrowreturnthick-1-s {
        background-position: -48px -64px
    }

    .ui-icon-arrowreturn-1-w {
        background-position: -64px -64px
    }

    .ui-icon-arrowreturn-1-n {
        background-position: -80px -64px
    }

    .ui-icon-arrowreturn-1-e {
        background-position: -96px -64px
    }

    .ui-icon-arrowreturn-1-s {
        background-position: -112px -64px
    }

    .ui-icon-arrowrefresh-1-w {
        background-position: -128px -64px
    }

    .ui-icon-arrowrefresh-1-n {
        background-position: -144px -64px
    }

    .ui-icon-arrowrefresh-1-e {
        background-position: -160px -64px
    }

    .ui-icon-arrowrefresh-1-s {
        background-position: -176px -64px
    }

    .ui-icon-arrow-4 {
        background-position: 0 -80px
    }

    .ui-icon-arrow-4-diag {
        background-position: -16px -80px
    }

    .ui-icon-extlink {
        background-position: -32px -80px
    }

    .ui-icon-newwin {
        background-position: -48px -80px
    }

    .ui-icon-refresh {
        background-position: -64px -80px
    }

    .ui-icon-shuffle {
        background-position: -80px -80px
    }

    .ui-icon-transfer-e-w {
        background-position: -96px -80px
    }

    .ui-icon-transferthick-e-w {
        background-position: -112px -80px
    }

    .ui-icon-folder-collapsed {
        background-position: 0 -96px
    }

    .ui-icon-folder-open {
        background-position: -16px -96px
    }

    .ui-icon-document {
        background-position: -32px -96px
    }

    .ui-icon-document-b {
        background-position: -48px -96px
    }

    .ui-icon-note {
        background-position: -64px -96px
    }

    .ui-icon-mail-closed {
        background-position: -80px -96px
    }

    .ui-icon-mail-open {
        background-position: -96px -96px
    }

    .ui-icon-suitcase {
        background-position: -112px -96px
    }

    .ui-icon-comment {
        background-position: -128px -96px
    }

    .ui-icon-person {
        background-position: -144px -96px
    }

    .ui-icon-print {
        background-position: -160px -96px
    }

    .ui-icon-trash {
        background-position: -176px -96px
    }

    .ui-icon-locked {
        background-position: -192px -96px
    }

    .ui-icon-unlocked {
        background-position: -208px -96px
    }

    .ui-icon-bookmark {
        background-position: -224px -96px
    }

    .ui-icon-tag {
        background-position: -240px -96px
    }

    .ui-icon-home {
        background-position: 0 -112px
    }

    .ui-icon-flag {
        background-position: -16px -112px
    }

    .ui-icon-calendar {
        background-position: -32px -112px
    }

    .ui-icon-cart {
        background-position: -48px -112px
    }

    .ui-icon-pencil {
        background-position: -64px -112px
    }

    .ui-icon-clock {
        background-position: -80px -112px
    }

    .ui-icon-disk {
        background-position: -96px -112px
    }

    .ui-icon-calculator {
        background-position: -112px -112px
    }

    .ui-icon-zoomin {
        background-position: -128px -112px
    }

    .ui-icon-zoomout {
        background-position: -144px -112px
    }

    .ui-icon-search {
        background-position: -160px -112px
    }

    .ui-icon-wrench {
        background-position: -176px -112px
    }

    .ui-icon-gear {
        background-position: -192px -112px
    }

    .ui-icon-heart {
        background-position: -208px -112px
    }

    .ui-icon-star {
        background-position: -224px -112px
    }

    .ui-icon-link {
        background-position: -240px -112px
    }

    .ui-icon-cancel {
        background-position: 0 -128px
    }

    .ui-icon-plus {
        background-position: -16px -128px
    }

    .ui-icon-plusthick {
        background-position: -32px -128px
    }

    .ui-icon-minus {
        background-position: -48px -128px
    }

    .ui-icon-minusthick {
        background-position: -64px -128px
    }

    .ui-icon-close {
        background-position: -80px -128px
    }

    .ui-icon-closethick {
        background-position: -96px -128px
    }

    .ui-icon-key {
        background-position: -112px -128px
    }

    .ui-icon-lightbulb {
        background-position: -128px -128px
    }

    .ui-icon-scissors {
        background-position: -144px -128px
    }

    .ui-icon-clipboard {
        background-position: -160px -128px
    }

    .ui-icon-copy {
        background-position: -176px -128px
    }

    .ui-icon-contact {
        background-position: -192px -128px
    }

    .ui-icon-image {
        background-position: -208px -128px
    }

    .ui-icon-video {
        background-position: -224px -128px
    }

    .ui-icon-script {
        background-position: -240px -128px
    }

    .ui-icon-alert {
        background-position: 0 -144px
    }

    .ui-icon-info {
        background-position: -16px -144px
    }

    .ui-icon-notice {
        background-position: -32px -144px
    }

    .ui-icon-help {
        background-position: -48px -144px
    }

    .ui-icon-check {
        background-position: -64px -144px
    }

    .ui-icon-bullet {
        background-position: -80px -144px
    }

    .ui-icon-radio-on {
        background-position: -96px -144px
    }

    .ui-icon-radio-off {
        background-position: -112px -144px
    }

    .ui-icon-pin-w {
        background-position: -128px -144px
    }

    .ui-icon-pin-s {
        background-position: -144px -144px
    }

    .ui-icon-play {
        background-position: 0 -160px
    }

    .ui-icon-pause {
        background-position: -16px -160px
    }

    .ui-icon-seek-next {
        background-position: -32px -160px
    }

    .ui-icon-seek-prev {
        background-position: -48px -160px
    }

    .ui-icon-seek-end {
        background-position: -64px -160px
    }

    .ui-icon-seek-start {
        background-position: -80px -160px
    }

    .ui-icon-seek-first {
        background-position: -80px -160px
    }

    .ui-icon-stop {
        background-position: -96px -160px
    }

    .ui-icon-eject {
        background-position: -112px -160px
    }

    .ui-icon-volume-off {
        background-position: -128px -160px
    }

    .ui-icon-volume-on {
        background-position: -144px -160px
    }

    .ui-icon-power {
        background-position: 0 -176px
    }

    .ui-icon-signal-diag {
        background-position: -16px -176px
    }

    .ui-icon-signal {
        background-position: -32px -176px
    }

    .ui-icon-battery-0 {
        background-position: -48px -176px
    }

    .ui-icon-battery-1 {
        background-position: -64px -176px
    }

    .ui-icon-battery-2 {
        background-position: -80px -176px
    }

    .ui-icon-battery-3 {
        background-position: -96px -176px
    }

    .ui-icon-circle-plus {
        background-position: 0 -192px
    }

    .ui-icon-circle-minus {
        background-position: -16px -192px
    }

    .ui-icon-circle-close {
        background-position: -32px -192px
    }

    .ui-icon-circle-triangle-e {
        background-position: -48px -192px
    }

    .ui-icon-circle-triangle-s {
        background-position: -64px -192px
    }

    .ui-icon-circle-triangle-w {
        background-position: -80px -192px
    }

    .ui-icon-circle-triangle-n {
        background-position: -96px -192px
    }

    .ui-icon-circle-arrow-e {
        background-position: -112px -192px
    }

    .ui-icon-circle-arrow-s {
        background-position: -128px -192px
    }

    .ui-icon-circle-arrow-w {
        background-position: -144px -192px
    }

    .ui-icon-circle-arrow-n {
        background-position: -160px -192px
    }

    .ui-icon-circle-zoomin {
        background-position: -176px -192px
    }

    .ui-icon-circle-zoomout {
        background-position: -192px -192px
    }

    .ui-icon-circle-check {
        background-position: -208px -192px
    }

    .ui-icon-circlesmall-plus {
        background-position: 0 -208px
    }

    .ui-icon-circlesmall-minus {
        background-position: -16px -208px
    }

    .ui-icon-circlesmall-close {
        background-position: -32px -208px
    }

    .ui-icon-squaresmall-plus {
        background-position: -48px -208px
    }

    .ui-icon-squaresmall-minus {
        background-position: -64px -208px
    }

    .ui-icon-squaresmall-close {
        background-position: -80px -208px
    }

    .ui-icon-grip-dotted-vertical {
        background-position: 0 -224px
    }

    .ui-icon-grip-dotted-horizontal {
        background-position: -16px -224px
    }

    .ui-icon-grip-solid-vertical {
        background-position: -32px -224px
    }

    .ui-icon-grip-solid-horizontal {
        background-position: -48px -224px
    }

    .ui-icon-gripsmall-diagonal-se {
        background-position: -64px -224px
    }

    .ui-icon-grip-diagonal-se {
        background-position: -80px -224px
    }

    .ui-corner-all,
    .ui-corner-top,
    .ui-corner-left,
    .ui-corner-tl {
        border-top-left-radius: 5px
    }

    .ui-corner-all,
    .ui-corner-top,
    .ui-corner-right,
    .ui-corner-tr {
        border-top-right-radius: 5px
    }

    .ui-corner-all,
    .ui-corner-bottom,
    .ui-corner-left,
    .ui-corner-bl {
        border-bottom-left-radius: 5px
    }

    .ui-corner-all,
    .ui-corner-bottom,
    .ui-corner-right,
    .ui-corner-br {
        border-bottom-right-radius: 5px
    }

    .ui-widget-overlay {
        background: #aaa url("images/ui-bg_flat_75_aaaaaa_40x100.png") 50% 50% repeat-x;
        opacity: .3;
        filter: Alpha(Opacity=30)
    }

    .ui-widget-shadow {
        margin: 5px 0 0 5px;
        padding: 0;
        background: #999 url("images/ui-bg_flat_55_999999_40x100.png") 50% 50% repeat-x;
        opacity: .45;
        filter: Alpha(Opacity=45);
        border-radius: 5px
    }


    .swiper-container {
        margin-left: auto;
        margin-right: auto;
        position: relative;
        overflow: hidden;
        /* Fix of Webkit flickering */
        z-index: 1;
    }

    .swiper-container-no-flexbox .swiper-slide {
        float: left;
    }

    .swiper-container-vertical > .swiper-wrapper {
        -webkit-box-orient: vertical;
        -moz-box-orient: vertical;
        -ms-flex-direction: column;
        -webkit-flex-direction: column;
        flex-direction: column;
    }

    .swiper-wrapper {
        position: relative;
        width: 100%;
        height: 100%;
        z-index: 1;
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-transition-property: -webkit-transform;
        -moz-transition-property: -moz-transform;
        -o-transition-property: -o-transform;
        -ms-transition-property: -ms-transform;
        transition-property: transform;
        -webkit-box-sizing: content-box;
        -moz-box-sizing: content-box;
        box-sizing: content-box;
    }

    .swiper-container-android .swiper-slide,
    .swiper-wrapper {
        -webkit-transform: translate3d(0px, 0, 0);
        -moz-transform: translate3d(0px, 0, 0);
        -o-transform: translate(0px, 0px);
        -ms-transform: translate3d(0px, 0, 0);
        transform: translate3d(0px, 0, 0);
    }

    .swiper-container-multirow > .swiper-wrapper {
        -webkit-box-lines: multiple;
        -moz-box-lines: multiple;
        -ms-flex-wrap: wrap;
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .swiper-container-free-mode > .swiper-wrapper {
        -webkit-transition-timing-function: ease-out;
        -moz-transition-timing-function: ease-out;
        -ms-transition-timing-function: ease-out;
        -o-transition-timing-function: ease-out;
        transition-timing-function: ease-out;
        margin: 0 auto;
    }

    .swiper-slide {
        -webkit-flex-shrink: 0;
        -ms-flex: 0 0 auto;
        flex-shrink: 0;
        width: 100%;
        height: 100%;
        position: relative;
    }
    /* Auto Height */

    .swiper-container-autoheight,
    .swiper-container-autoheight .swiper-slide {
        height: auto;
    }

    .swiper-container-autoheight .swiper-wrapper {
        -webkit-box-align: start;
        -ms-flex-align: start;
        -webkit-align-items: flex-start;
        align-items: flex-start;
        -webkit-transition-property: -webkit-transform, height;
        -moz-transition-property: -moz-transform;
        -o-transition-property: -o-transform;
        -ms-transition-property: -ms-transform;
        transition-property: transform, height;
    }
    /* a11y */

    .swiper-container .swiper-notification {
        position: absolute;
        left: 0;
        top: 0;
        pointer-events: none;
        opacity: 0;
        z-index: -1000;
    }
    /* IE10 Windows Phone 8 Fixes */

    .swiper-wp8-horizontal {
        -ms-touch-action: pan-y;
        touch-action: pan-y;
    }

    .swiper-wp8-vertical {
        -ms-touch-action: pan-x;
        touch-action: pan-x;
    }
    /* Arrows */
    /*
.swiper-button-prev,
.swiper-button-next {
    position: absolute;
    top: 50%;
    width: 27px;
    height: 44px;
    margin-top: -22px;
    z-index: 10;
    cursor: pointer;
    -moz-background-size: 27px 44px;
    -webkit-background-size: 27px 44px;
    background-size: 27px 44px;
    background-position: center;
    background-repeat: no-repeat;
}

.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
    opacity: 0.35;
    cursor: auto;
    pointer-events: none;
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
    left: 10px;
    right: auto;
}

.swiper-button-prev.swiper-button-black,
.swiper-container-rtl .swiper-button-next.swiper-button-black {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-prev.swiper-button-white,
.swiper-container-rtl .swiper-button-next.swiper-button-white {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
    right: 10px;
    left: auto;
}

.swiper-button-next.swiper-button-black,
.swiper-container-rtl .swiper-button-prev.swiper-button-black {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-next.swiper-button-white,
.swiper-container-rtl .swiper-button-prev.swiper-button-white {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}

*/
    /* Pagination Styles */

    .swiper-pagination {
        position: absolute;
        text-align: center;
        -webkit-transition: 300ms;
        -moz-transition: 300ms;
        -o-transition: 300ms;
        transition: 300ms;
        -webkit-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
        -o-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        z-index: 10;
    }

    .swiper-pagination.swiper-pagination-hidden {
        opacity: 0;
    }
    /* Common Styles */

    .swiper-pagination-fraction,
    .swiper-pagination-custom,
    .swiper-container-horizontal > .swiper-pagination-bullets {
        bottom: 10px;
        left: 0;
        width: 100%;
    }
    /* Bullets */

    .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
        display: inline-block;
        border-radius: 100%;
        background: #000;
        opacity: 0.2;
    }

    button.swiper-pagination-bullet {
        border: none;
        margin: 0;
        padding: 0;
        box-shadow: none;
        -moz-appearance: none;
        -ms-appearance: none;
        -webkit-appearance: none;
        appearance: none;
    }

    .swiper-pagination-clickable .swiper-pagination-bullet {
        cursor: pointer;
    }

    .swiper-pagination-white .swiper-pagination-bullet {
        background: #fff;
    }

    .swiper-pagination-bullet-active {
        opacity: 1;
        background: #007aff;
    }

    .swiper-pagination-white .swiper-pagination-bullet-active {
        background: #fff;
    }

    .swiper-pagination-black .swiper-pagination-bullet-active {
        background: #000;
    }

    .swiper-container-vertical > .swiper-pagination-bullets {
        right: 10px;
        top: 50%;
        -webkit-transform: translate3d(0px, -50%, 0);
        -moz-transform: translate3d(0px, -50%, 0);
        -o-transform: translate(0px, -50%);
        -ms-transform: translate3d(0px, -50%, 0);
        transform: translate3d(0px, -50%, 0);
    }

    .swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
        margin: 5px 0;
        display: block;
    }

    .swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
        margin: 0 5px;
    }
    /* Progress */

    .swiper-pagination-progress {
        background: rgba(0, 0, 0, 0.25);
        position: absolute;
    }

    .swiper-pagination-progress .swiper-pagination-progressbar {
        background: #007aff;
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        -webkit-transform: scale(0);
        -ms-transform: scale(0);
        -o-transform: scale(0);
        transform: scale(0);
        -webkit-transform-origin: left top;
        -moz-transform-origin: left top;
        -ms-transform-origin: left top;
        -o-transform-origin: left top;
        transform-origin: left top;
    }

    .swiper-container-rtl .swiper-pagination-progress .swiper-pagination-progressbar {
        -webkit-transform-origin: right top;
        -moz-transform-origin: right top;
        -ms-transform-origin: right top;
        -o-transform-origin: right top;
        transform-origin: right top;
    }

    .swiper-container-horizontal > .swiper-pagination-progress {
        width: 100%;
        height: 4px;
        left: 0;
        top: 0;
    }

    .swiper-container-vertical > .swiper-pagination-progress {
        width: 4px;
        height: 100%;
        left: 0;
        top: 0;
    }

    .swiper-pagination-progress.swiper-pagination-white {
        background: rgba(255, 255, 255, 0.5);
    }

    .swiper-pagination-progress.swiper-pagination-white .swiper-pagination-progressbar {
        background: #fff;
    }

    .swiper-pagination-progress.swiper-pagination-black .swiper-pagination-progressbar {
        background: #000;
    }
    /* 3D Container */

    .swiper-container-3d {
        -webkit-perspective: 1200px;
        -moz-perspective: 1200px;
        -o-perspective: 1200px;
        perspective: 1200px;
    }

    .swiper-container-3d .swiper-wrapper,
    .swiper-container-3d .swiper-slide,
    .swiper-container-3d .swiper-slide-shadow-left,
    .swiper-container-3d .swiper-slide-shadow-right,
    .swiper-container-3d .swiper-slide-shadow-top,
    .swiper-container-3d .swiper-slide-shadow-bottom,
    .swiper-container-3d .swiper-cube-shadow {
        -webkit-transform-style: preserve-3d;
        -moz-transform-style: preserve-3d;
        -ms-transform-style: preserve-3d;
        transform-style: preserve-3d;
    }

    .swiper-container-3d .swiper-slide-shadow-left,
    .swiper-container-3d .swiper-slide-shadow-right,
    .swiper-container-3d .swiper-slide-shadow-top,
    .swiper-container-3d .swiper-slide-shadow-bottom {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        pointer-events: none;
        z-index: 10;
    }

    .swiper-container-3d .swiper-slide-shadow-left {
        background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
        /* Safari 4+, Chrome */
        background-image: -webkit-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
        /* Chrome 10+, Safari 5.1+, iOS 5+ */
        background-image: -moz-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
        /* Firefox 3.6-15 */
        background-image: -o-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
        /* Opera 11.10-12.00 */
        background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
        /* Firefox 16+, IE10, Opera 12.50+ */
    }

    .swiper-container-3d .swiper-slide-shadow-right {
        background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
        /* Safari 4+, Chrome */
        background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
        /* Chrome 10+, Safari 5.1+, iOS 5+ */
        background-image: -moz-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
        /* Firefox 3.6-15 */
        background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
        /* Opera 11.10-12.00 */
        background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
        /* Firefox 16+, IE10, Opera 12.50+ */
    }

    .swiper-container-3d .swiper-slide-shadow-top {
        background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
        /* Safari 4+, Chrome */
        background-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
        /* Chrome 10+, Safari 5.1+, iOS 5+ */
        background-image: -moz-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
        /* Firefox 3.6-15 */
        background-image: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
        /* Opera 11.10-12.00 */
        background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
        /* Firefox 16+, IE10, Opera 12.50+ */
    }

    .swiper-container-3d .swiper-slide-shadow-bottom {
        background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
        /* Safari 4+, Chrome */
        background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
        /* Chrome 10+, Safari 5.1+, iOS 5+ */
        background-image: -moz-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
        /* Firefox 3.6-15 */
        background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
        /* Opera 11.10-12.00 */
        background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
        /* Firefox 16+, IE10, Opera 12.50+ */
    }
    /* Coverflow */

    .swiper-container-coverflow .swiper-wrapper,
    .swiper-container-flip .swiper-wrapper {
        /* Windows 8 IE 10 fix */
        -ms-perspective: 1200px;
    }
    /* Cube + Flip */

    .swiper-container-cube,
    .swiper-container-flip {
        overflow: visible;
    }

    .swiper-container-cube .swiper-slide,
    .swiper-container-flip .swiper-slide {
        pointer-events: none;
        -webkit-backface-visibility: hidden;
        -moz-backface-visibility: hidden;
        -ms-backface-visibility: hidden;
        backface-visibility: hidden;
        z-index: 1;
    }

    .swiper-container-cube .swiper-slide .swiper-slide,
    .swiper-container-flip .swiper-slide .swiper-slide {
        pointer-events: none;
    }

    .swiper-container-cube .swiper-slide-active,
    .swiper-container-flip .swiper-slide-active,
    .swiper-container-cube .swiper-slide-active .swiper-slide-active,
    .swiper-container-flip .swiper-slide-active .swiper-slide-active {
        pointer-events: auto;
    }

    .swiper-container-cube .swiper-slide-shadow-top,
    .swiper-container-flip .swiper-slide-shadow-top,
    .swiper-container-cube .swiper-slide-shadow-bottom,
    .swiper-container-flip .swiper-slide-shadow-bottom,
    .swiper-container-cube .swiper-slide-shadow-left,
    .swiper-container-flip .swiper-slide-shadow-left,
    .swiper-container-cube .swiper-slide-shadow-right,
    .swiper-container-flip .swiper-slide-shadow-right {
        z-index: 0;
        -webkit-backface-visibility: hidden;
        -moz-backface-visibility: hidden;
        -ms-backface-visibility: hidden;
        backface-visibility: hidden;
    }
    /* Cube */

    .swiper-container-cube .swiper-slide {
        visibility: hidden;
        -webkit-transform-origin: 0 0;
        -moz-transform-origin: 0 0;
        -ms-transform-origin: 0 0;
        transform-origin: 0 0;
        width: 100%;
        height: 100%;
    }

    .swiper-container-cube.swiper-container-rtl .swiper-slide {
        -webkit-transform-origin: 100% 0;
        -moz-transform-origin: 100% 0;
        -ms-transform-origin: 100% 0;
        transform-origin: 100% 0;
    }

    .swiper-container-cube .swiper-slide-active,
    .swiper-container-cube .swiper-slide-next,
    .swiper-container-cube .swiper-slide-prev,
    .swiper-container-cube .swiper-slide-next + .swiper-slide {
        pointer-events: auto;
        visibility: visible;
    }

    .swiper-container-cube .swiper-cube-shadow {
        position: absolute;
        left: 0;
        bottom: 0px;
        width: 100%;
        height: 100%;
        background: #000;
        opacity: 0.6;
        -webkit-filter: blur(50px);
        filter: blur(50px);
        z-index: 0;
    }
    /* Fade */

    .swiper-container-fade.swiper-container-free-mode .swiper-slide {
        -webkit-transition-timing-function: ease-out;
        -moz-transition-timing-function: ease-out;
        -ms-transition-timing-function: ease-out;
        -o-transition-timing-function: ease-out;
        transition-timing-function: ease-out;
    }

    .swiper-container-fade .swiper-slide {
        pointer-events: none;
        -webkit-transition-property: opacity;
        -moz-transition-property: opacity;
        -o-transition-property: opacity;
        transition-property: opacity;
    }

    .swiper-container-fade .swiper-slide .swiper-slide {
        pointer-events: none;
    }

    .swiper-container-fade .swiper-slide-active,
    .swiper-container-fade .swiper-slide-active .swiper-slide-active {
        pointer-events: auto;
    }

    .swiper-zoom-container {
        width: 100%;
        height: 100%;
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-box-pack: center;
        -moz-box-pack: center;
        -ms-flex-pack: center;
        -webkit-justify-content: center;
        justify-content: center;
        -webkit-box-align: center;
        -moz-box-align: center;
        -ms-flex-align: center;
        -webkit-align-items: center;
        align-items: center;
        text-align: center;
    }

    .swiper-zoom-container > img,
    .swiper-zoom-container > svg,
    .swiper-zoom-container > canvas {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
    }
    /* Scrollbar */

    .swiper-scrollbar {
        border-radius: 10px;
        position: relative;
        -ms-touch-action: none;
        background: rgba(0, 0, 0, 0.1);
    }

    .swiper-container-horizontal > .swiper-scrollbar {
        position: absolute;
        left: 1%;
        bottom: 3px;
        z-index: 50;
        height: 5px;
        width: 98%;
    }

    .swiper-container-vertical > .swiper-scrollbar {
        position: absolute;
        right: 3px;
        top: 1%;
        z-index: 50;
        width: 5px;
        height: 98%;
    }

    .swiper-scrollbar-drag {
        height: 100%;
        width: 100%;
        position: relative;
        background: rgba(0, 0, 0, 0.5);
        border-radius: 10px;
        left: 0;
        top: 0;
    }

    .swiper-scrollbar-cursor-drag {
        cursor: move;
    }
    /* Preloader */

    .swiper-lazy-preloader {
        width: 42px;
        height: 42px;
        position: absolute;
        left: 50%;
        top: 50%;
        margin-left: -21px;
        margin-top: -21px;
        z-index: 10;
        -webkit-transform-origin: 50%;
        -moz-transform-origin: 50%;
        transform-origin: 50%;
        -webkit-animation: swiper-preloader-spin 1s steps(12, end) infinite;
        -moz-animation: swiper-preloader-spin 1s steps(12, end) infinite;
        animation: swiper-preloader-spin 1s steps(12, end) infinite;
    }

    .swiper-lazy-preloader:after {
        display: block;
        content: "";
        width: 100%;
        height: 100%;
        background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
        background-position: 50%;
        -webkit-background-size: 100%;
        background-size: 100%;
        background-repeat: no-repeat;
    }

    .swiper-lazy-preloader-white:after {
        background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
    }

    @-webkit-keyframes swiper-preloader-spin {
        100% {
            -webkit-transform: rotate(360deg);
        }
    }

    @keyframes swiper-preloader-spin {
        100% {
            transform: rotate(360deg);
        }
    }


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

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

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

@font-face {
  font-family: 'Roboto';
  src: url('/assets/fonts/roboto-light-webfont.woff2') format('woff2'),
       url('/assets/fonts/roboto-light-webfont.woff') format('woff');
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'Roboto';
  src: url('/assets/fonts/roboto-medium-webfont.woff2') format('woff2'),
       url('/assets/fonts/roboto-medium-webfont.woff') format('woff');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Roboto';
  src: url('/assets/fonts/roboto-regular-webfont.woff2') format('woff2'),
       url('/assets/fonts/roboto-regular-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}
    @media only screen and (min-width: 1200px) {
        .no-desktop {
            display: none !important;
        }
    }

    @media only screen and (min-width: 1000px) and (max-width: 1199px) {
        .no-laptop {
            display: none !important;
        }
    }

    @media only screen and (min-width: 768px) and (max-width: 999px) {
        .no-tablet {
            display: none !important;
        }
    }

    @media only screen and (max-width: 767px) {
        .no-mobile {
            display: none !important;
        }
    }
    /*! normalize.css v3.0.2 | MIT License | git.io/normalize */

    html {
        font-family: sans-serif;
        -ms-text-size-adjust: 100%;
        -webkit-text-size-adjust: 100%;
    }

    body {
        margin: 0;
    }

    article,
    aside,
    details,
    figcaption,
    figure,
    footer,
    header,
    hgroup,
    main,
    menu,
    nav,
    section,
    summary {
        display: block;
    }

    audio,
    canvas,
    progress,
    video {
        display: inline-block;
        vertical-align: baseline;
    }

    audio:not([controls]) {
        display: none;
        height: 0;
    }

    [hidden],
    template {
        display: none;
    }

    a {
        background-color: transparent;
    }

    a:active,
    a:hover {
        outline: 0;
    }

    abbr[title] {
        border-bottom: 1px dotted;
    }

    b,
    strong {
        font-weight: bold;
    }

    dfn {
        font-style: italic;
    }

    h1 {
        font-size: 2em;
        margin: 0.67em 0;
    }

    mark {
        background: #ff0;
        color: #000;
    }

    small {
        font-size: 80%;
    }

    sub,
    sup {
        font-size: 75%;
        line-height: 0;
        position: relative;
        vertical-align: baseline;
    }

    sup {
        top: -0.5em;
    }

    sub {
        bottom: -0.25em;
    }

    img {
        border: 0;
    }

    svg:not(:root) {
        overflow: hidden;
    }

    figure {
        margin: 1em 40px;
    }

    hr {
        box-sizing: content-box;
        height: 0;
    }

    pre {
        overflow: auto;
    }

    code,
    kbd,
    pre,
    samp {
        font-family: monospace, monospace;
        font-size: 1em;
    }

    button,
    input,
    optgroup,
    select,
    textarea {
        color: inherit;
        font: inherit;
        margin: 0;
    }

    button {
        overflow: visible;
    }

    button,
    select {
        text-transform: none;
    }

    button,
    html input[type="button"],
    input[type="reset"],
    input[type="submit"] {
        -webkit-appearance: button;
        cursor: pointer;
    }

    button[disabled],
    html input[disabled] {
        cursor: default;
    }

    button::-moz-focus-inner,
    input::-moz-focus-inner {
        border: 0;
        padding: 0;
    }

    input {
        line-height: normal;
    }

    input[type="checkbox"],
    input[type="radio"] {
        box-sizing: border-box;
        padding: 0;
    }

    input[type="number"]::-webkit-inner-spin-button,
    input[type="number"]::-webkit-outer-spin-button {
        height: auto;
    }

    input[type="search"] {
        -webkit-appearance: textfield;
        box-sizing: content-box;
    }

    input[type="search"]::-webkit-search-cancel-button,
    input[type="search"]::-webkit-search-decoration {
        -webkit-appearance: none;
    }

    fieldset {
        border: 1px solid #c0c0c0;
        margin: 0 2px;
        padding: 0.35em 0.625em 0.75em;
    }

    legend {
        border: 0;
        padding: 0;
    }

    textarea {
        overflow: auto;
    }

    optgroup {
        font-weight: bold;
    }

    table {
        border-collapse: collapse;
        border-spacing: 0;
    }

    td,
    th {
        padding: 0;
    }

    * {
        -webkit-text-size-adjust: 100%;
        -ms-text-size-adjust: 100%;
        text-size-adjust: 100%;
    }

    input,
    textarea,
    select,
    option {
        -webkit-appearance: none;
        border-radius: 0;
    }

    a,
    input,
    button,
    textarea {
        outline: none;
    }

    .fancybox-skin {
        padding: 0 !important;
        background: none !important;
    }

    .fancybox-wrap {
        width: auto !important;
        background: none !important;
    }

    html .fancybox-overlay {
        background: none;
        background: rgba(50, 50, 50, 0.25);
    }

    html .fancybox-opened .fancybox-skin {
        box-shadow: none;
    }

    html,
    body {
        height: 100%;
        margin: 0;
        padding: 0;
    }

    .page-wrapper {
        min-height: 100%;
        margin-bottom: -460px;
    }

    @media only screen and (min-width: 768px) and (max-width: 999px) {
        .page-wrapper {
            margin-bottom: 0;
        }
    }

    @media only screen and (max-width: 767px) {
        .page-wrapper {
            margin-bottom: 0;
        }
    }

    * html .page-wrapper {
        height: 100%;
    }

    .page-buffer {
        height: 460px;
    }

    @media only screen and (min-width: 768px) and (max-width: 999px) {
        .page-buffer {
            height: auto;
        }
    }

    @media only screen and (max-width: 767px) {
        .page-buffer {
            height: auto;
        }
    }

    .page-footer {
        /* height: 460px; */
    }

    @media only screen and (min-width: 768px) and (max-width: 999px) {
        .page-footer {
            height: auto;
        }
    }

    @media only screen and (max-width: 767px) {
        .page-footer {
            height: auto;
        }
    }

    body {
        background: #f8f8f8;
    }

    body,
    textarea,
    input,
    button {
        font-family: "RobotoRegular", sans-serif;
        font-size: 16px;
        line-height: 1.3;
    }

    h1,
    .h1 {
        font-size: 23px;
        font-weight: 900;
        margin: 24px 0 10px;
    }

    @media only screen and (max-width: 767px) {
        h1,
        .h1 {
            font-size: 20px;
            margin: 20px 0 8px;
        }
    }

    h2,
    .h2 {
        font-size: 22px;
        font-weight: 900;
        margin: 24px 0 10px;
    }

    @media only screen and (max-width: 767px) {
        h2,
        .h2 {
            font-size: 19px;
            margin: 20px 0 8px;
        }
    }

    h3,
    .h3 {
        font-size: 21px;
        font-weight: 900;
        margin: 30px 0 26px;
    }

    @media only screen and (max-width: 767px) {
        h3,
        .h3 {
            font-size: 18px;
            margin: 24px 0 20px;
        }
    }

    h4,
    .h4 {
        font-size: 19px;
        font-weight: 900;
        margin: 36px 0 30px;
    }

    @media only screen and (max-width: 767px) {
        h4,
        .h4 {
            font-size: 16px;
            margin: 30px 0 26px;
        }
    }

    p {
        line-height: 2.2em;
        margin-bottom: 1.6em;
    }

    p a {
        color: #1f2167;
        display: inline-block;
        text-decoration: none;
        border-bottom: 1px solid;
        line-height: 1;
        padding-bottom: 2px;
    }

    .wrap {
        margin-left: auto;
        margin-right: auto;
    }

    @media only screen and (max-width: 767px) {
        .wrap {
            /* width: 320px; */
        }
    }

    .wrap-in {
        width: 1100px;
        margin-left: auto;
        margin-right: auto;
    }

    @media only screen and (min-width: 1000px) and (max-width: 1199px) {
        .wrap-in {
            width: 960px;
        }
    }

    @media only screen and (min-width: 768px) and (max-width: 999px) {
        .wrap-in {
            width: 720px;
        }
    }

    @media only screen and (max-width: 767px) {
        .wrap-in {
            width: 300px;
        }
    }

    .oh {
        overflow: hidden;
    }

    .clear {
        font-size: 0;
        line-height: 0;
        letter-spacing: 0;
        clear: both;
    }

    a {
        color: inherit;
        -webkit-transition: color 0.5s ease;
        transition: color 0.5s ease;
    }

    a:hover {
        color: #da2254;
    }

    .btn {
        display: inline-block;
        text-decoration: none;
        border: none;
        background: #da2254;
        color: white;
        height: 50px;
        line-height: 50px;
        padding: 0 29px;
        border-radius: 25px;
        min-width: 100px;
        text-align: center;
        -webkit-transition: background-color 0.3s ease, color 0.3s ease;
        transition: background-color 0.3s ease, color 0.3s ease;
    }

    @media only screen and (max-width: 767px) {
        .btn {
            display: block;
            width: auto;
        }
    }

    .btn:hover {
        color: white;
        background: #c41f4c;
    }

    .b-overload {
        position: absolute;
        left: 0;
        top: 0;
        z-index: 999;
        width: 100%;
        height: 100%;
        background: white;
        background: rgba(255, 255, 255, 0.9);
        display: none;
    }

    .b-overload__load_icon {
        width: 64px;
        height: 64px;
        background: url('/assets/img/loader.gif?1455841149') no-repeat left top;
        position: absolute;
        left: 50%;
        top: 50%;
        margin-left: -32px;
        margin-top: -32px;
    }

    .img_scale {
        display: inline-block;
        overflow: hidden;
    }

    .img_scale img {
        -webkit-transition: all .2s ease-in-out;
        transition: all .2s ease-in-out;
        display: block;
    }

    .img_scale img:hover {
        -webkit-transform: scale(1.15);
        transform: scale(1.15);
    }

    .b-header {
        padding: 38px 0 0;
        background-color: white;
    }

    @media only screen and (min-width: 768px) and (max-width: 999px) {
        .b-header {
            padding-top: 1px;
        }
    }

    @media only screen and (max-width: 767px) {
        .b-header {
            padding-top: 1px;
        }
    }

    @media only screen and (max-width: 767px) {
        .b-header {
            padding-bottom: 20px;
            text-align: center;
        }
    }

    .b-header__logo {
        float: left;
        margin: 40px 0;
        width: 206px;
        height: 59px;
        background: url('/assets/img/desktop/logo.png?1455814544') no-repeat left top;
    }

    @media (min--moz-device-pixel-ratio: 1.3),
    (-webkit-min-device-pixel-ratio: 1.3),
    (min-device-pixel-ratio: 1.3),
    (min-resolution: 1.3dppx) {
        .b-header__logo {
            background-image: url('/assets/img/desktop/logo_x2.png?1455814576');
            background-size: 206px 59px;
        }
    }

    @media only screen and (max-width: 767px) {
        .b-header__logo {
            display: inline-block;
            float: none;
            margin: 20px 0 15px;
        }
    }

    .b-header__info {
        float: right;
        width: 820px;
    }

    @media only screen and (min-width: 1000px) and (max-width: 1199px) {
        .b-header__info {
            width: 705px;
        }
    }

    @media only screen and (min-width: 768px) and (max-width: 999px) {
        .b-header__info {
            float: right;
            width: auto;
            padding-top: 35px;
        }
    }

    @media only screen and (max-width: 767px) {
        .b-header__info {
            float: none;
            width: auto;
        }
    }

    .b-header__contact {
        overflow: hidden;
        padding-bottom: 32px;
    }

    @media only screen and (min-width: 768px) and (max-width: 999px) {
        .b-header__contact {
            float: right;
            text-align: right;
        }
    }

    @media only screen and (max-width: 767px) {
        .b-header__contact {
            float: none;
            width: auto;
            padding-bottom: 20px;
        }
    }

    .b-header__time {
        float: left;
        background: url('/assets/img/desktop/icon_time.png?1455841153') no-repeat left center;
        min-height: 25px;
        padding-left: 41px;
        margin: 0 45px 0 0;
        padding-top: 5px;
    }

    @media (min--moz-device-pixel-ratio: 1.3),
    (-webkit-min-device-pixel-ratio: 1.3),
    (min-device-pixel-ratio: 1.3),
    (min-resolution: 1.3dppx) {
        .b-header__time {
            background-image: url('/assets/img/desktop/icon_time_x2.png?1455841155');
            background-size: 26px 25px;
        }
    }

    @media only screen and (min-width: 768px) and (max-width: 999px) {
        .b-header__time {
            margin-bottom: 13px;
            padding-left: 36px;
        }
    }

    @media only screen and (max-width: 767px) {
        .b-header__time {
            margin-bottom: 13px;
            padding-left: 36px;
        }
    }

    @media only screen and (max-width: 767px) {
        .b-header__time {
            background: none;
            min-height: 0;
            padding-left: 0;
        }
    }

    .b-header__write {
        float: left;
        background: url('/assets/img/desktop/icon_mail.png?1455841155') no-repeat left center;
        min-height: 23px;
        padding-left: 39px;
        margin: 0 0 0 0;
        padding-top: 5px;
    }

    @media (min--moz-device-pixel-ratio: 1.3),
    (-webkit-min-device-pixel-ratio: 1.3),
    (min-device-pixel-ratio: 1.3),
    (min-resolution: 1.3dppx) {
        .b-header__write {
            background-image: url('/assets/img/desktop/icon_mail_x2.png?1455841155');
            background-size: 29px 23px;
        }
    }

    @media only screen and (min-width: 768px) and (max-width: 999px) {
        .b-header__write {
            display: none;
        }
    }

    @media only screen and (max-width: 767px) {
        .b-header__write {
            display: none;
        }
    }

    .b-header__write a {
        text-decoration: none;
        border-bottom: 2px dotted;
    }

    @media only screen and (min-width: 768px) and (max-width: 999px) {
        .b-header__time,
        .b-header__write {
            margin: 0;
            width: auto;
            float: none;
        }
    }

    @media only screen and (max-width: 767px) {
        .b-header__time,
        .b-header__write {
            margin: 0;
            width: auto;
            float: none;
        }
    }

    .b-header__phone {
        font-size: 27px;
        font-family: "Roboto-Regular", sans-serif;
        font-weight: bold;
        float: right;
        text-decoration: none;
        text-align: right;
    }

    .b-header__phone .code {
        font-size: 18px;
        font-family: "Roboto-Regular", sans-serif;
    }

    @media only screen and (min-width: 768px) and (max-width: 999px) {
        .b-header__phone {
            margin: 17px 0 12px;
            float: none;
        }
    }

    @media only screen and (max-width: 767px) {
        .b-header__phone {
            margin: 17px 0 12px;
            float: none;
        }
    }

    .b-header__recall {
        float: right;
        margin-top: 3px;
    }

    @media only screen and (max-width: 767px) {
        .b-header__recall {
            float: none;
            margin-bottom: 15px;
        }
    }

    .b-header__separator {
        display: none;
    }

    @media only screen and (min-width: 768px) and (max-width: 999px) {
        .b-header__separator {
            display: block;
            clear: both;
        }
    }

    @media only screen and (max-width: 767px) {
        .b-header__separator {
            display: block;
            clear: both;
        }
    }

    .b-main_menu {
        padding-top: 27px;
        border-top: 1px solid #f2f2f2;
        float: right;
        width: 820px;
    }

    @media only screen and (min-width: 1000px) and (max-width: 1199px) {
        .b-main_menu {
            width: 705px;
        }
    }

    @media only screen and (min-width: 768px) and (max-width: 999px) {
        .b-main_menu {
            width: 100%;
        }
    }

    @media only screen and (min-width: 768px) and (max-width: 999px) {
        .b-main_menu {
            float: none;
            width: auto;
        }
    }

    @media only screen and (max-width: 767px) {
        .b-main_menu {
            float: none;
            width: auto;
        }
    }

    @media only screen and (max-width: 767px) {
        .b-main_menu {
            text-align: left;
            padding-top: 12px;
        }
    }

    @media only screen and (min-width: 1200px) {
        .b-main_menu__header {
            display: none;
        }
    }

    @media only screen and (min-width: 1000px) and (max-width: 1199px) {
        .b-main_menu__header {
            display: none;
        }
    }

    @media only screen and (min-width: 768px) and (max-width: 999px) {
        .b-main_menu__header {
            display: none;
        }
    }

    @media only screen and (max-width: 767px) {
        .b-main_menu__header {
            border: 1px solid #f2f2f2;
            position: relative;
            padding: 13px 0 13px 20px;
            cursor: pointer;
        }
    }

    .b-main_menu__header-icon {
        width: 24px;
        height: 22px;
        background: url('/assets/img/mobile/ico_menu.png?1455841187') no-repeat left top;
        position: absolute;
        top: 50%;
        right: 20px;
        margin-top: -11px;
    }

    .b-main_menu__list {
        list-style: none;
        padding: 20px 0 0;
        margin: 0 0 0 -70px;
        float: left;
    }

    @media only screen and (min-width: 1000px) and (max-width: 1199px) {
        .b-main_menu__list {
            margin-left: -40px;
        }
    }

    @media only screen and (min-width: 768px) and (max-width: 999px) {
        .b-main_menu__list {
            margin-left: -50px;
        }
    }

    @media only screen and (max-width: 767px) {
        .b-main_menu__list {
            margin-left: 0;
            float: none;
            padding-top: 0;
            display: none;
        }
    }

    .b-main_menu.opened .b-main_menu__list {
        display: block;
    }

    .b-main_menu__item {
        float: left;
        margin-left: 50px;
    }

    @media only screen and (min-width: 1000px) and (max-width: 1199px) {
        .b-main_menu__item {
            margin-left: 30px;
        }
    }

    @media only screen and (min-width: 768px) and (max-width: 999px) {
        .b-main_menu__item {
            margin-left: 35px;
        }
    }

    @media only screen and (max-width: 767px) {
        .b-main_menu__item {
            display: block;
            float: none;
            width: auto;
            margin: 0;
            border: 1px solid #f2f2f2;
            border-top: 0;
        }
    }

    .b-main_menu__item a {
        text-decoration: none;
        padding: 0 0 44px;
        display: inline-block;
    }

    @media only screen and (max-width: 767px) {
        .b-main_menu__item a {
            display: block;
            padding: 13px 0 13px 20px;
        }
    }

    .b-main_menu__item-a {
        position: relative;
        -webkit-transition: color 0.5s ease;
        transition: color 0.5s ease;
    }

    .b-main_menu__item-a:before {
        content: '';
        position: absolute;
        left: 0;
        width: 100%;
        opacity: 0;
        height: 5px;
        background: #da2254;
        bottom: -5px;
        -webkit-transition: opacity 0.5s ease;
        transition: opacity 0.5s ease;
    }

    @media only screen and (max-width: 767px) {
        .b-main_menu__item-a:before {
            display: none;
        }
    }

    .b-main_menu__item.active .b-main_menu__item-a:before,
    .b-main_menu__item:hover .b-main_menu__item-a:before {
        opacity: 1;
    }

    .b-main_menu__item.active .b-main_menu__item-a a,
    .b-main_menu__item:hover .b-main_menu__item-a a {
        color: #da2254;
    }

    .b-top_banner {
        margin-top: 81px;
    }

    @media only screen and (min-width: 1000px) and (max-width: 1199px) {
        .b-top_banner {
            margin-top: 65px;
        }
    }

    .b-top_banner img {
        display: block;
        width: 100%;
        height: auto;
        border-radius: 15px;
    }

    @media only screen and (min-width: 768px) and (max-width: 999px) {
        .b-top_banner {
            display: none;
        }
    }

    @media only screen and (max-width: 767px) {
        .b-top_banner {
            display: none;
        }
    }

    .b-breadcrumbs {
        padding: 26px 30px 3px;
        color: #8e8e8e;
        background: white;
        margin-bottom: 50px;
        border-radius: 15px;
    }

    @media only screen and (min-width: 768px) and (max-width: 999px) {
        .b-breadcrumbs {
            margin: 25px 0 27px;
        }
    }

    @media only screen and (max-width: 767px) {
        .b-breadcrumbs {
            margin: 25px 0 27px;
            padding: 20px 20px 3px;
        }
    }

    .b-breadcrumbs__item {
        display: inline-block;
        vertical-align: middle;
        margin-bottom: 20px;
    }

    .b-breadcrumbs__a {
        text-decoration: none;
    }

    .b-breadcrumbs__a:after {
        content: '';
        display: inline-block;
        margin: 0 28px 0 35px;
        width: 8px;
        height: 12px;
        background: url('/assets/img/desktop/breadcrumbs_separator.png?1455841153') no-repeat left top;
    }

    @media (min--moz-device-pixel-ratio: 1.3),
    (-webkit-min-device-pixel-ratio: 1.3),
    (min-device-pixel-ratio: 1.3),
    (min-resolution: 1.3dppx) {
        .b-breadcrumbs__a:after {
            background-image: url('/assets/img/desktop/breadcrumbs_separator_x2.png?1455841154');
            background-size: 8px 12px;
        }
    }

    @media only screen and (min-width: 1000px) and (max-width: 1199px) {
        .b-breadcrumbs__a:after {
            margin: 0 18px 0 25px;
        }
    }

    @media only screen and (min-width: 768px) and (max-width: 999px) {
        .b-breadcrumbs__a:after {
            margin: 0 13px 0 20px;
        }
    }

    @media only screen and (max-width: 767px) {
        .b-breadcrumbs__a:after {
            margin: 0 4px 0 11px;
        }
    }

    .b-breadcrumbs__a a {
        text-decoration: none;
    }

    .b-social.big {
        height: 70px;
    }

    .b-social__item {
        display: inline-block;
        vertical-align: middle;
        margin-right: 4px;
        -webkit-transition: opacity 0.5s ease;
        transition: opacity 0.5s ease;
    }

    .b-social__item.vk {
        width: 35px;
        height: 35px;
        background: url('/assets/img/desktop/social/vk.png?1455841163') no-repeat left top;
    }

    @media (min--moz-device-pixel-ratio: 1.3),
    (-webkit-min-device-pixel-ratio: 1.3),
    (min-device-pixel-ratio: 1.3),
    (min-resolution: 1.3dppx) {
        .b-social__item.vk {
            background-image: url('/assets/img/desktop/social/vk_x2.png?1455841163');
            background-size: 35px 35px;
        }
    }

    .b-social__item.tg {
        width: 35px;
        height: 35px;
        background: url('/assets/img/desktop/social/tg.png?1455841162') no-repeat left top;
    }

    @media (min--moz-device-pixel-ratio: 1.3),
    (-webkit-min-device-pixel-ratio: 1.3),
    (min-device-pixel-ratio: 1.3),
    (min-resolution: 1.3dppx) {
        .b-social__item.tg {
            background-image: url('/assets/img/desktop/social/tg_x2.png?1455841162');
            background-size: 35px 35px;
        }
    }

    .b-social__item.twitter {
        width: 35px;
        height: 35px;
        background: url('/assets/img/desktop/social/twitter.png?1455841161') no-repeat left top;
    }

    @media (min--moz-device-pixel-ratio: 1.3),
    (-webkit-min-device-pixel-ratio: 1.3),
    (min-device-pixel-ratio: 1.3),
    (min-resolution: 1.3dppx) {
        .b-social__item.twitter {
            background-image: url('/assets/img/desktop/social/twitter_x2.png?1455841161');
            background-size: 35px 35px;
        }
    }

    .b-social__item.instagram {
        width: 35px;
        height: 35px;
        background: url('/assets/img/desktop/social/instagram.png?1455841163') no-repeat left top;
    }

    @media (min--moz-device-pixel-ratio: 1.3),
    (-webkit-min-device-pixel-ratio: 1.3),
    (min-device-pixel-ratio: 1.3),
    (min-resolution: 1.3dppx) {
        .b-social__item.instagram {
            background-image: url('/assets/img/desktop/social/instagram_x2.png?1455841164');
            background-size: 35px 35px;
        }
    }

    .b-social__item:hover {
        opacity: 0.7;
    }

    .b-social.big .b-social__item {
        display: inline-block;
        vertical-align: middle;
        margin-right: 4px;
    }

    .b-social.big .b-social__item.vk {
        width: 40px;
        height: 40px;
        background: url('/assets/img/desktop/social_big/vk.png?1455841180') no-repeat left top;
    }

    .b-social__item.engflag {
        width: 35px;
        height: 35px;
        background: url('/assets/img/desktop/social/eng.png') no-repeat left top;
    }

    @media (min--moz-device-pixel-ratio: 1.3),
    (-webkit-min-device-pixel-ratio: 1.3),
    (min-device-pixel-ratio: 1.3),
    (min-resolution: 1.3dppx) {
        .b-social__item.engflag {
            background-image: url('/assets/img/desktop/social/eng_x2.png');
            background-size: 35px 35px;
        }
    }

    @media (min--moz-device-pixel-ratio: 1.3),
    (-webkit-min-device-pixel-ratio: 1.3),
    (min-device-pixel-ratio: 1.3),
    (min-resolution: 1.3dppx) {
        .b-social.big .b-social__item.vk {
            background-image: url('/assets/img/desktop/social_big/vk_x2.png?1455841179');
            background-size: 40px 40px;
        }
    }

    .b-social.big .b-social__item.tg {
        width: 40px;
        height: 40px;
        background: url('/assets/img/desktop/social_big/tg.png?1455841179') no-repeat left top;
    }

    @media (min--moz-device-pixel-ratio: 1.3),
    (-webkit-min-device-pixel-ratio: 1.3),
    (min-device-pixel-ratio: 1.3),
    (min-resolution: 1.3dppx) {
        .b-social.big .b-social__item.tg {
            background-image: url('/assets/img/desktop/social_big/tg_x2.png?1455841179');
            background-size: 40px 40px;
        }
    }

    .b-social.big .b-social__item.twitter {
        width: 40px;
        height: 40px;
        background: url('/assets/img/desktop/social_big/twitter.png?1455841178') no-repeat left top;
    }

    @media (min--moz-device-pixel-ratio: 1.3),
    (-webkit-min-device-pixel-ratio: 1.3),
    (min-device-pixel-ratio: 1.3),
    (min-resolution: 1.3dppx) {
        .b-social.big .b-social__item.twitter {
            background-image: url('/assets/img/desktop/social_big/twitter_x2.png?1455841178');
            background-size: 40px 40px;
        }
    }

    .b-social.big .b-social__item.instagram {
        width: 40px;
        height: 40px;
        background: url('/assets/img/desktop/social_big/instagram.png?1455841180') no-repeat left top;
    }

    @media (min--moz-device-pixel-ratio: 1.3),
    (-webkit-min-device-pixel-ratio: 1.3),
    (min-device-pixel-ratio: 1.3),
    (min-resolution: 1.3dppx) {
        .b-social.big .b-social__item.instagram {
            background-image: url('/assets/img/desktop/social_big/instagram_x2.png?1455841180');
            background-size: 40px 40px;
        }
    }

    .b-social.big .b-social__item:hover {
        opacity: 0.7;
    }

    .b-content {
        word-break: break-word;
    }

    .b-content__left_column {
        float: left;
        width: 540px;
    }

    @media only screen and (min-width: 1000px) and (max-width: 1199px) {
        .b-content__left_column {
            width: 470px;
        }
    }

    .b-content__right_column {
        float: right;
        width: 560px;
    }

    @media only screen and (min-width: 1000px) and (max-width: 1199px) {
        .b-content__right_column {
            width: 470px;
        }
    }

    .b-content__left_column.small,
    .b-content__right_column.small {
        width: 350px;
    }

    @media only screen and (min-width: 1000px) and (max-width: 1199px) {
        .b-content__left_column.small,
        .b-content__right_column.small {
            width: 320px;
        }
    }

    .b-content__left_column.big,
    .b-content__right_column.big {
        width: 725px;
    }

    @media only screen and (min-width: 1000px) and (max-width: 1199px) {
        .b-content__left_column.big,
        .b-content__right_column.big {
            width: 620px;
        }
    }

    @media only screen and (min-width: 768px) and (max-width: 999px) {
        .b-content__left_column,
        .b-content__right_column {
            float: none !important;
            width: auto !important;
        }
    }

    @media only screen and (max-width: 767px) {
        .b-content__left_column,
        .b-content__right_column {
            float: none !important;
            width: auto !important;
        }
    }

    .b-social.big .b-social__item.engflag {
        width: 40px;
        height: 40px;
        background: url('/assets/img/desktop/social_big/eng.png') no-repeat left top;
    }

    @media (min--moz-device-pixel-ratio: 1.3),
    (-webkit-min-device-pixel-ratio: 1.3),
    (min-device-pixel-ratio: 1.3),
    (min-resolution: 1.3dppx) {
        .b-social.big .b-social__item.engflag {
            background-image: url('/assets/img/desktop/social_big/eng_x2.png');
            background-size: 40px 40px;
        }
    }

    .b-user_content ul {
        list-style: none;
        padding-left: 0;
        margin-bottom: 29px;
    }

    .b-user_content ul li {
        margin-bottom: 17px;
        position: relative;
    }

    .b-user_content ul li:before {
        content: "";
        width: 8px;
        height: 8px;
        border: 2px solid #da2254;
        border-radius: 50%;
        display: inline-block;
        vertical-align: middle;
        margin-top: -2px;
        margin-right: 10px;
    }

    .b-user_content ol {
        counter-reset: li;
        list-style: none;
        position: relative;
        overflow: hidden;
        padding: 0;
        margin-bottom: 29px;
    }

    .b-user_content ol li {
        position: relative;
        margin-bottom: 10px;
        padding-left: 0;
        line-height: 1.6em;
        margin-bottom: 13px;
    }

    .b-user_content ol li:before {
        font-size: 13px;
        content: counter(li);
        counter-increment: li;
        display: inline-block;
        vertical-align: middle;
        color: #da2254;
        width: 17px;
        height: 17px;
        line-height: 17px;
        text-align: center;
        border: 1px solid #da2254;
        border-radius: 50%;
        margin-right: 10px;
        position: relative;
        top: -2px;
    }

    .b-user_content img {
        margin-bottom: 0.5em;
        max-width: 100%;
        width: 100%;
        height: auto;
    }
    .our-clients-item img {
        aspect-ratio: 3/1;
        object-fit: contain;
    }
    .cases-item-image img {
        aspect-ratio: 1/1;
        object-fit: cover;
        border-radius: 15px;
    }
    .review-v2-image img {
        aspect-ratio: 45/38;
        object-fit: contain;
    }

    .b-user_content img.left {
        float: left;
        margin-right: 20px;
    }

    .b-user_content img.right {
        float: right;
        margin-left: 20px;
    }

    .b-user_content table {
        width: 100%;
        margin-bottom: 1.5em;
    }

    .b-user_content table th,
    .b-user_content table td {
        border: 1px solid #ccc;
        padding: 7px 15px 9px;
    }

    .b-user_content table td.right {
        text-align: right;
    }

    .b-user_content blockquote {
        border-left: 5px solid #da2254;
        font-style: italic;
        margin-left: 0;
        padding-left: 20px;
        line-height: 1.75em;
        margin-bottom: 1.6em;
    }

    @media only screen and (max-width: 767px) {
        .b-user_content blockquote {
            padding-left: 15px;
        }
    }

    .b-publication h2 {
        margin: 24px 0 10px;
    }

    .blog-article h3 {
        color: #da2254;
        font-style: italic;
    }

    .b-publication__data {
        color: #8e8e8e;
        margin-bottom: 35px;
    }

    .b-tags {
        margin-left: -7px;
    }

    .b-tags__item {
        font-size: 12px;
        display: inline-block;
        vertical-align: middle;
        background: #0c0d2b;
        text-decoration: none;
        color: white;
        height: 36px;
        line-height: 36px;
        padding: 0 18px;
        border-radius: 18px;
        margin-left: 7px;
        margin-bottom: 7px;
        -webkit-transition: background-color 0.3s ease !important;
        transition: background-color 0.3s ease !important;
        -webkit-transition: color 0.3s ease !important;
        transition: color 0.3s ease !important;
    }

    @media only screen and (min-width: 1000px) and (max-width: 1199px) {
        .b-tags__item {
            padding: 0 15px;
        }
    }

    @media only screen and (min-width: 768px) and (max-width: 999px) {
        .b-tags__item {
            padding: 0 15px;
        }
    }

    @media only screen and (max-width: 767px) {
        .b-tags__item {
            padding: 0 15px;
        }
    }

    .b-tags__item:before {
        content: '';
        width: 8px;
        height: 8px;
        background-color: white;
        border-radius: 50%;
        display: inline-block;
        margin-right: 10px;
    }

    .b-tags__item:hover {
        background: #171953;
        color: white;
    }

    .b-block {
        background-color: white;
        padding: 20px 30px 50px;
        margin-bottom: 25px;
        border-radius: 15px;
    }

    @media only screen and (min-width: 1000px) and (max-width: 1199px) {
        .b-block {
            padding: 15px 20px 45px;
        }
    }

    @media only screen and (min-width: 768px) and (max-width: 999px) {
        .b-block {
            padding: 15px 20px 45px;
        }
    }

    @media only screen and (max-width: 767px) {
        .b-block {
            padding: 15px 20px 45px;
        }
    }

    .to_first_screen {
        display: inline-block;
        font-size: 18px;
        text-decoration: none;
    }

    .to_first_screen:before {
        content: '';
        width: 26px;
        height: 34px;
        background: url('/assets/img/desktop/to_first_screen.png?1455841152') no-repeat left top;
        display: inline-block;
        vertical-align: middle;
        margin-right: 10px;
    }

    @media (min--moz-device-pixel-ratio: 1.3),
    (-webkit-min-device-pixel-ratio: 1.3),
    (min-device-pixel-ratio: 1.3),
    (min-resolution: 1.3dppx) {
        .to_first_screen:before {
            background-image: url('/assets/img/desktop/to_first_screen_x2.png?1455841154');
            background-size: 26px 34px;
        }
    }

    .to_first_screen-container {
        text-align: center;
        margin-bottom: 68px;
    }

    @media only screen and (min-width: 768px) and (max-width: 999px) {
        .to_first_screen-container {
            margin-bottom: 48px;
            display: none;
        }
    }

    @media only screen and (max-width: 767px) {
        .to_first_screen-container {
            margin-bottom: 48px;
            display: none;
        }
    }

    .b-block_with_border {
        border: 1px solid #d9d9d9;
        margin-top: 40px;
        text-align: center;
        padding-bottom: 20px;
        background-color: white;
        border-radius: 15px;
    }

    .b-block_with_border.no-title {
        margin-top: 0;
    }

    .b-block_with_border__title {
        display: inline-block;
        position: relative;
        margin-top: 0;
        top: -0.85em;
        padding: 0.2em 0.5em;
        background-color: white;
        margin-bottom: 0.4em;
    }

    .b-block_with_border__text {
        font-size: 16px;
        padding: 0 10px;
        margin: 0 0 10px;
        line-height: 1.5em;
        color: #8e8e8e;
    }

    .b-block_with_border__subtitle {
        font-size: 30px;
        font-weight: 300;
    }

    .b-block_with_border__btn {
        font-size: 18px;
        line-height: 60px;
        height: 60px;
        border-radius: 30px;
        min-width: 150px;
    }

    @media only screen and (max-width: 767px) {
        .b-block_with_border__btn {
            min-width: 150px;
        }
    }

    button.b-block_with_border__btn {
        min-width: 220px;
    }

    @media only screen and (max-width: 767px) {
        button.b-block_with_border__btn {
            min-width: 190px;
        }
    }

    .b-block_with_border__btn-container {
        margin-bottom: -70px;
        text-align: center;
        margin-top: 45px;
        padding-bottom: 20px;
    }

    @media only screen and (max-width: 767px) {
        .b-block_with_border__btn-container {
            margin-top: 25px;
        }
    }

    .b-block_with_border__btn-bg {
        display: inline-block;
        padding: 0 20px;
        background: white;
    }

    .b-block_with_border__hr {
        border-bottom: 1px solid #d9d9d9;
        margin-bottom: 100px;
        padding-bottom: 20px;
    }

    .b-block_with_border .b-user_content {
        text-align: left;
        padding: 0 30px;
    }

    .b-user_content .b-block_with_border__text {
        padding: 0;
        margin: 5px 0 0;
    }

    .b-related {
        margin-top: 50px;
        padding: 50px 0 60px;
        background-color: white;
    }

    @media only screen and (min-width: 768px) and (max-width: 999px) {
        .b-related {
            padding: 20px 0 10px;
            margin-top: 35px;
        }
    }

    @media only screen and (max-width: 767px) {
        .b-related {
            padding: 20px 0 30px;
            margin-top: 30px;
        }
    }

    .b-related .b-publication_list {
        margin-top: 42px;
        margin-left: -22px;
    }

    @media only screen and (min-width: 768px) and (max-width: 999px) {
        .b-related .b-publication_list {
            margin-top: 25px;
            margin-left: 25px;
            text-align: left;
        }
    }

    @media only screen and (max-width: 767px) {
        .b-related .b-publication_list {
            margin-left: 0;
            padding: 0 20px;
            margin-top: 15px;
        }
    }

    @media only screen and (min-width: 768px) and (max-width: 999px) {
        .b-related .b-publication_list__item {
            margin-bottom: 35px;
        }
    }

    @media only screen and (max-width: 767px) {
        .b-related .b-publication_list__item {
            display: block;
            width: auto;
            margin-left: 0;
            margin-bottom: 30px;
            border-bottom: 1px solid #d9d9d9;
            padding-bottom: 23px;
        }
        .b-related .b-publication_list__item:last-child {
            border-bottom: 0;
            padding-bottom: 0;
            margin-bottom: 10px;
        }
    }

    @media only screen and (min-width: 1200px) {
        .b-related .b-block {
            padding: 0;
        }
    }

    @media only screen and (min-width: 1000px) and (max-width: 1199px) {
        .b-related .b-block {
            padding: 0;
        }
    }

    .b-publication_list {
        margin-left: -50px;
        text-align: center;
        padding: 0;
        list-style: 0;
        overflow: hidden;
    }

    @media only screen and (min-width: 1000px) and (max-width: 1199px) {
        .b-publication_list {
            margin-left: -20px;
        }
    }

    .b-publication_list__item {
        vertical-align: top;
        text-align: left;
        width: 300px;
        margin-left: 22px;
        display: inline-block;
    }

    @media only screen and (min-width: 1000px) and (max-width: 1199px) {
        .b-publication_list__item {
            width: 285px;
            margin-left: 20px;
        }
    }

    .b-publication_list__item-img {
        display: block;
        width: 100%;
        margin-bottom: 15px;
        border-radius: 15px;
    }
    @media only screen and (max-width: 767px) {
      .b-publication_list__item-img {
        height: auto;
      }
    }

    .b-publication_list__item-date {
        color: #8e8e8e;
        margin-bottom: 14px;
    }

    .b-publication_list__item-title {
        font-size: 20px;
        line-height: 1.5em;
        margin-bottom: 22px;
    }

    .b-publication_list__item-title a {
        text-decoration: none;
    }

    .b-publication_list__block {
        margin-left: 0;
        padding-left: 0;
        text-align: left;
        margin-bottom: 30px;
        list-style: none;
        overflow: hidden;
    }

    @media only screen and (max-width: 767px) {
        .b-publication_list__block {
            margin: 0 0 20px;
        }
    }

    .b-publication_list__more {
        color: white;
        text-decoration: none;
        height: 80px;
        line-height: 80px;
        border-radius: 40px;
        font-size: 18px;
        text-align: center;
        display: inline-block;
        background: #0c0d2b;
        padding: 0 40px;
        margin-bottom: 75px;
        margin-top: 40px;
    }

    @media only screen and (max-width: 767px) {
        .b-publication_list__more {
            margin-bottom: 45px;
            margin-top: 23px;
        }
    }

    .b-publication_list__more:before {
        content: '';
        display: inline-block;
        vertical-align: middle;
        width: 22px;
        height: 24px;
        background: url('/assets/img/desktop/bg_loader.png?1455841153') no-repeat left top;
        margin-right: 30px;
    }

    @media (min--moz-device-pixel-ratio: 1.3),
    (-webkit-min-device-pixel-ratio: 1.3),
    (min-device-pixel-ratio: 1.3),
    (min-resolution: 1.3dppx) {
        .b-publication_list__more:before {
            background-image: url('/assets/img/desktop/bg_loader_x2.png?1455841154');
            background-size: 22px 24px;
        }
    }

    .b-publication_list__more:hover {
        color: white;
        background-color: #171953;
    }

    .b-publication_list.big {
        margin-left: -25px;
    }

    @media only screen and (min-width: 1000px) and (max-width: 1199px) {
        .b-publication_list.big {
            margin-left: -20px;
        }
    }

    @media only screen and (min-width: 768px) and (max-width: 999px) {
        .b-publication_list.big {
            margin-left: -20px;
        }
    }

    @media only screen and (max-width: 767px) {
        .b-publication_list.big {
            margin-left: 0;
        }
    }

    .b-publication_list.big .b-publication_list__item {
        width: 350px;
        margin-left: 25px;
        background-color: white;
        margin-bottom: 25px;
        padding-bottom: 30px;
        margin-top: 5px;
        float: left;
        display: block;
        border-radius: 15px;
    }

    @media only screen and (min-width: 1000px) and (max-width: 1199px) {
        .b-publication_list.big .b-publication_list__item {
            width: 305px;
            margin-left: 20px;
        }
    }

    @media only screen and (min-width: 768px) and (max-width: 999px) {
        .b-publication_list.big .b-publication_list__item {
            margin-left: 20px;
        }
    }

    @media only screen and (max-width: 767px) {
        .b-publication_list.big .b-publication_list__item {
            width: 300px;
            margin-left: 0;
            margin-bottom: 20px;
        }
    }

    .b-publication_list.big .b-publication_list__item:hover {
        box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.15);
    }

    .b-publication_list.big .b-publication_list__item-txt {
        padding: 0 30px;
    }

    @media only screen and (max-width: 767px) {
        .b-publication_list.big .b-publication_list__item-txt {
            padding: 0 20px;
        }
    }

    .b-publication_list.big .b-publication_list__item-img {
        margin-bottom: 30px;
    }

    @media only screen and (max-width: 767px) {
        .b-publication_list.big .b-publication_list__item-img {
            margin-bottom: 25px;
        }
    }

    .b-publication_list.big .b-publication_list__item-date {
        color: #8e8e8e;
        margin-bottom: 14px;
    }

    .b-publication_list.big .b-publication_list__item-title {
        font-size: 24px;
        line-height: 1.5em;
        margin-bottom: 22px;
    }

    @media only screen and (max-width: 767px) {
        .b-publication_list.big .b-publication_list__item-title {
            font-size: 20px;
            margin-bottom: 12px;
        }
    }

    .b-publication_list.big .b-publication_list__item-text {
        line-height: 1.85em;
        margin-bottom: 25px;
    }

    .b-publication_list .b-block {
        margin-bottom: 0;
    }

    .b-contact {
        background-color: white;
        overflow: hidden;
    }

    @media only screen and (min-width: 768px) and (max-width: 999px) {
        .b-contact {
            padding-bottom: 30px;
        }
    }

    .b-contact__info-contact {
        width: 430px;
        float: left;
        padding: 0 0 0 0;
        margin-top: 24px;
    }

    @media only screen and (max-width: 767px) {
        .b-contact__info-contact {
            float: none;
            width: auto;
            margin-top: 27px;
        }
    }

    .b-contact__contact,
    .b-contact__recall {
        margin-bottom: 23px;
    }

    .b-contact__contact {
        float: left;
        text-align: right;
        margin-right: 40px;
    }

    @media only screen and (max-width: 767px) {
        .b-contact__contact {
            float: none;
            text-align: left;
            margin-right: 0;
            width: auto;
            margin-bottom: 20px;
        }
    }

    .b-contact__recall {
        float: left;
        margin-top: 3px;
    }

    @media only screen and (max-width: 767px) {
        .b-contact__recall {
            display: block;
            float: none;
            margin-bottom: 34px;
        }
    }

    .b-contact__phone {
        font-size: 27px;
        text-decoration: none;
        text-align: right;
    }

    .b-contact__phone .code {
        font-size: 18px;
    }

    .b-contact__time {
        font-size: 14px;
        color: #8e8e8e;
    }

    .b-contact__address {
        background: url('/assets/img/desktop/map_marker.png?1455841153') no-repeat left top;
        min-height: 22px;
        padding-left: 26px;
        margin-bottom: 22px;
    }

    @media (min--moz-device-pixel-ratio: 1.3),
    (-webkit-min-device-pixel-ratio: 1.3),
    (min-device-pixel-ratio: 1.3),
    (min-resolution: 1.3dppx) {
        .b-contact__address {
            background-image: url('/assets/img/desktop/map_marker_x2.png?1455841153');
            background-size: 16px 22px;
        }
    }

    @media only screen and (max-width: 767px) {
        .b-contact__address {
            margin-bottom: 10px;
        }
    }

    .b-contact__social {
        margin-bottom: 25px;
        overflow: hidden;
    }

    @media only screen and (max-width: 767px) {
        .b-contact__social {
            margin-bottom: -20px;
        }
    }

    .b-contact__text {
        line-height: 1.5em;
        margin-bottom: 50px;
    }

    @media only screen and (max-width: 767px) {
        .b-contact__text {
            margin-bottom: 35px;
        }
    }

    .b-contact__map {
        height: 400px;
        background-color: #ccc;
    }

    .b-contact .b-block {
        margin-bottom: 0;
    }

    .b-post_form__fields {
        padding: 0 28px;
    }

    @media only screen and (max-width: 767px) {
        .b-post_form__fields {
            padding: 0 15px;
        }
    }

    .b-post_form__text {
        color: #8e8e8e;
        font-size: 16px;
        line-height: 1.4em;
        margin: 0 0 10px;
        margin-bottom: 40px;
    }

    @media only screen and (max-width: 767px) {
        .b-post_form__text {
            margin-bottom: 30px;
        }
    }

    .b-post_form__descr {
        font-size: 14px;
        color: #8e8e8e;
        margin: 20px 0 30px;
    }

    .b-post_form__input,
    .b-post_form__textarea {
        width: 100%;
        height: 60px;
        line-height: 60px;
        border-radius: 30px;
        border: 2px solid #e6e6e6;
        background: white;
        text-align: center;
        box-sizing: border-box;
        padding: 0 30px;
        margin-bottom: 9px;
        max-width: 380px;
        margin: 0 7px 15px;
        -webkit-transition: border-color 0.5s ease, color 0.5s ease;
        transition: border-color 0.5s ease, color 0.5s ease;
    }
    .b-post_form__textarea {
        line-height: 24px;
        padding: 10px 30px;
    }

    .b-post_form__input:focus,
    .b-post_form__textarea:focus {
        border-color: #c5c5c5;
    }

    .b-post_form__input.error,
    .b-post_form__textarea.error {
        border-color: red;
        color: red;
    }

    @media only screen and (min-width: 768px) and (max-width: 999px) {
        .b-post_form__input,
        .b-post_form__textarea {
            margin-left: 0;
            margin-right: 0;
        }
    }

    @media only screen and (max-width: 767px) {
        .b-post_form__input,
        .b-post_form__textarea {
            margin-left: 0;
            margin-right: 0;
        }
    }

    .b-post_form__textarea {
        resize: none;
        height: 120px;
    }

    .O_O {
        padding: 71px 0 1px;
    }

    @media only screen and (min-width: 768px) and (max-width: 999px) {
        .O_O {
            padding: 58px 0 1px;
        }
    }

    @media only screen and (max-width: 767px) {
        .O_O {
            padding: 42px 0 1px;
        }
    }

    .O_O__subtitle {
        font-size: 15px;
        color: #8e8e8e;
        text-align: center;
        text-transform: uppercase;
        margin-bottom: 16px;
    }

    @media only screen and (min-width: 768px) and (max-width: 999px) {
        .O_O__subtitle {
            font-size: 14px;
        }
    }

    @media only screen and (max-width: 767px) {
        .O_O__subtitle {
            font-size: 13px;
        }
    }

    @media only screen and (max-width: 767px) {
        .O_O__subtitle {
            padding: 0 20px;
        }
    }

    .O_O__title,
    .O_O__title h1 {
        font-size: 40px;
        text-transform: uppercase;
        font-weight: 900;
        text-align: center;
        padding: 0 100px;
        line-height: 1.25em;
        margin-bottom: 70px;
    }

    .O_O__title h2 {
        font-size: 36px;
        text-transform: uppercase;
        font-weight: 900;
        text-align: center;
        padding: 0 100px;
        line-height: 1.25em;
        margin-bottom: 70px;
    }

    @media only screen and (min-width: 768px) and (max-width: 999px) {
        .O_O__title,
        .O_O__title h1 {
            font-size: 32px;
            margin-bottom: 45px;
        }
        .O_O__title h2 {
            font-size: 28px;
            margin-bottom: 45px;
        }
    }

    @media only screen and (max-width: 767px) {
        .O_O__title,
        .O_O__title h1 {
            font-size: 20px;
            padding: 0 20px;
            margin-bottom: 25px;
        }
        .O_O__title h2 {
            font-size: 18px;
            padding: 0 20px;
            margin-bottom: 25px;
        }
    }

    .O_O__text {
        margin-bottom: 40px;
    }

    @media only screen and (max-width: 767px) {
        .O_O__text {
            margin-bottom: 20px;
            padding: 0 10px;
        }
    }

    @media only screen and (max-width: 767px) {
        .O_O__text p {
            font-size: 15px;
            line-height: 1.85em;
            text-align: justify;
        }
    }

    .O_O.dark {
        background-color: #0c0d2b;
        color: white;
    }

    .O_O.dark .O_O__subtitle {
        color: #8788ae;
    }

    .O_O.white {
        background-color: white;
    }

    .O_O.promo {
        background: url('/assets/img/promo_bg.png?1455841149') repeat center top #0e0e2c;
    }

    .b-service_list {
        overflow: hidden;
    }

    .b-service_list__block {
        margin-bottom: 50px;
        overflow: hidden;
        margin-left: -19px;
    }

    .b-service_list__block-list {
        display: inline;
    }

    @media only screen and (min-width: 768px) and (max-width: 999px) {
        .b-service_list__block {
            margin-left: -27px;
            margin-bottom: 35px;
        }
    }

    @media only screen and (max-width: 767px) {
        .b-service_list__block {
            margin-left: 0;
        }
    }

    .b-service_list__item {
        text-align: right;
        float: left;
        border: 1px solid white;
        border-top: 0;
        border-right: 0;
        width: 199px;
        height: 199px;
        position: relative;
        z-index: 1;
        margin-bottom: 20px;
        margin-left: 19px;
        text-decoration: none;
    }

    @media only screen and (min-width: 1000px) and (max-width: 1199px) {
        .b-service_list__item {
            width: 164px;
        }
    }

    @media only screen and (min-width: 768px) and (max-width: 999px) {
        .b-service_list__item {
            width: 221px;
            margin-left: 27px;
        }
    }

    @media only screen and (max-width: 767px) {
        .b-service_list__item {
            display: block;
            width: 298px;
            height: auto;
            margin-left: 0;
            border: none;
            border-bottom: 1px solid black;
            border-top: 1px solid #171953;
            margin-bottom: 0;
            text-align: left;
        }
        .b-service_list__item:first-child {
            border-top: 0;
        }
        .b-service_list__item:last-child {
            border-bottom: 0;
        }
    }

    .b-service_list__item:before {
        content: '';
        background-color: white;
        position: absolute;
        z-index: 2;
        left: 0;
        top: 0;
        height: 1px;
        width: 50%;
    }

    @media only screen and (max-width: 767px) {
        .b-service_list__item:before {
            display: none;
        }
    }

    .b-service_list__item:after {
        content: '';
        background-color: white;
        position: absolute;
        z-index: 2;
        right: 0;
        bottom: 0;
        width: 1px;
        height: 50%;
    }

    @media only screen and (max-width: 767px) {
        .b-service_list__item:after {
            width: 8px;
            height: 12px;
            background: url('/assets/img/arrow/white/left_arr.png?1455841195') no-repeat left top;
            top: 50%;
            margin-top: -6px;
            right: 10px;
        }
    }

    @media only screen and (max-width: 767px) and (min--moz-device-pixel-ratio: 1.3),
    only screen and (max-width: 767px) and (-webkit-min-device-pixel-ratio: 1.3),
    only screen and (max-width: 767px) and (min-device-pixel-ratio: 1.3),
    only screen and (max-width: 767px) and (min-resolution: 1.3dppx) {
        .b-service_list__item:after {
            background-image: url('/assets/img/arrow/white/left_arr_x2.png?1455841195');
            background-size: 8px 12px;
        }
    }

    .b-service_list__item.type_2 {
        border: none;
        float: right;
        width: 221px;
        height: auto;
    }

    @media only screen and (min-width: 768px) and (max-width: 999px) {
        .b-service_list__item.type_2 {
            height: 201px;
            overflow: hidden;
        }
    }

    @media only screen and (max-width: 767px) {
        .b-service_list__item.type_2 {
            display: none;
        }
    }

    .b-service_list__item.type_2:before {
        display: none;
    }

    .b-service_list__item.type_2:after {
        display: none;
    }

    .b-service_list__item-pic {
        width: 74px;
        height: 80px;
        background-position: center;
        background-repeat: no-repeat;
        display: inline-block;
        margin: 19px 0 17px 20px;
    }

    .b-service_list__item-pic.pic_1 {
        background-image: url('/assets/img/desktop/service_icon/ico_1.png?1455841160');
    }

    @media (min--moz-device-pixel-ratio: 1.3),
    (-webkit-min-device-pixel-ratio: 1.3),
    (min-device-pixel-ratio: 1.3),
    (min-resolution: 1.3dppx) {
        .b-service_list__item-pic.pic_1 {
            background-image: url('/assets/img/desktop/service_icon/ico_1_x2.png?1455841159');
            background-size: 74px 80px;
        }
    }

    .b-service_list__item-pic.pic_2 {
        background-image: url('/assets/img/desktop/service_icon/ico_2.png?1455841157');
    }

    @media (min--moz-device-pixel-ratio: 1.3),
    (-webkit-min-device-pixel-ratio: 1.3),
    (min-device-pixel-ratio: 1.3),
    (min-resolution: 1.3dppx) {
        .b-service_list__item-pic.pic_2 {
            background-image: url('/assets/img/desktop/service_icon/ico_2_x2.png?1455841160');
            background-size: 74px 80px;
        }
    }

    .b-service_list__item-pic.pic_3 {
        background-image: url('/assets/img/desktop/service_icon/ico_3.png?1455841159');
    }

    @media (min--moz-device-pixel-ratio: 1.3),
    (-webkit-min-device-pixel-ratio: 1.3),
    (min-device-pixel-ratio: 1.3),
    (min-resolution: 1.3dppx) {
        .b-service_list__item-pic.pic_3 {
            background-image: url('/assets/img/desktop/service_icon/ico_3_x2.png?1455841158');
            background-size: 74px 80px;
        }
    }

    .b-service_list__item-pic.pic_4 {
        background-image: url('/assets/img/desktop/service_icon/ico_4.png?1455841159');
    }

    @media (min--moz-device-pixel-ratio: 1.3),
    (-webkit-min-device-pixel-ratio: 1.3),
    (min-device-pixel-ratio: 1.3),
    (min-resolution: 1.3dppx) {
        .b-service_list__item-pic.pic_4 {
            background-image: url('/assets/img/desktop/service_icon/ico_4_x2.png?1455841160');
            background-size: 74px 80px;
        }
    }

    .b-service_list__item-pic.pic_5 {
        background-image: url('/assets/img/desktop/service_icon/ico_5.png?1455841159');
    }

    @media (min--moz-device-pixel-ratio: 1.3),
    (-webkit-min-device-pixel-ratio: 1.3),
    (min-device-pixel-ratio: 1.3),
    (min-resolution: 1.3dppx) {
        .b-service_list__item-pic.pic_5 {
            background-image: url('/assets/img/desktop/service_icon/ico_5_x2.png?1455841158');
            background-size: 74px 80px;
        }
    }

    .b-service_list__item-pic.pic_6 {
        background-image: url('/assets/img/desktop/service_icon/ico_6.png?1455841158');
    }

    @media (min--moz-device-pixel-ratio: 1.3),
    (-webkit-min-device-pixel-ratio: 1.3),
    (min-device-pixel-ratio: 1.3),
    (min-resolution: 1.3dppx) {
        .b-service_list__item-pic.pic_6 {
            background-image: url('/assets/img/desktop/service_icon/ico_6_x2.png?1455841159');
            background-size: 74px 80px;
        }
    }

    .b-service_list__item-pic.pic_7 {
        background-image: url('/assets/img/desktop/service_icon/ico_7.png?1455841161');
    }

    @media (min--moz-device-pixel-ratio: 1.3),
    (-webkit-min-device-pixel-ratio: 1.3),
    (min-device-pixel-ratio: 1.3),
    (min-resolution: 1.3dppx) {
        .b-service_list__item-pic.pic_7 {
            background-image: url('/assets/img/desktop/service_icon/ico_7_x2.png?1455841161');
            background-size: 74px 80px;
        }
    }

    .b-service_list__item-pic.pic_8 {
        background-image: url('/assets/img/desktop/service_icon/ico_8.png?1455841159');
    }

    @media (min--moz-device-pixel-ratio: 1.3),
    (-webkit-min-device-pixel-ratio: 1.3),
    (min-device-pixel-ratio: 1.3),
    (min-resolution: 1.3dppx) {
        .b-service_list__item-pic.pic_8 {
            background-image: url('/assets/img/desktop/service_icon/ico_8_x2.png?1455841158');
            background-size: 74px 80px;
        }
    }

    @media only screen and (max-width: 767px) {
        .b-service_list__item-pic {
            display: inline-block;
            vertical-align: middle;
            margin: 0;
            height: 60px;
            width: 60px;
            background-size: auto 60px;
        }
    }

    .b-service_list__item-svg {
        margin-bottom: 10px;
    }

    @media only screen and (max-width: 767px) {
        .b-service_list__item-svg {
            height: 50px;
            width: auto;
            margin-bottom: 0;
            vertical-align: middle;
            margin-right: 5px;
        }
    }

    .b-service_list__item-text {
        color: white;
        overflow: visible;
        display: inline-block;
        text-align: right;
        margin-right: 25px;
        word-spacing: 2000px;
    }

    @media only screen and (max-width: 767px) {
        .b-service_list__item-text {
            word-spacing: 0;
            display: inline-block;
            vertical-align: middle;
            font-size: 18px;
            padding: 20px 0 18px 5px;
        }
    }

    .b-calc {
        background-color: white;
        padding: 82px 0 1px;
        box-shadow: 0 0 5px #ccc;
        margin-bottom: 50px;
        position: relative;
        min-height: 200px;
    }

    @media only screen and (max-width: 767px) {
        .b-calc {
            margin-bottom: 30px;
            padding-top: 36px;
        }
    }

    .b-calc__fields {
        padding: 0 150px;
        position: relative;
    }

    @media only screen and (min-width: 1000px) and (max-width: 1199px) {
        .b-calc__fields {
            padding: 0 100px;
        }
    }

    @media only screen and (min-width: 768px) and (max-width: 999px) {
        .b-calc__fields {
            padding: 0 50px;
        }
    }

    @media only screen and (max-width: 767px) {
        .b-calc__fields {
            padding: 0;
        }
    }

    .b-calc__title {
        font-size: 30px;
        font-weight: 300;
        text-align: center;
        margin: 0 auto 30px;
    }

    @media only screen and (max-width: 767px) {
        .b-calc__title {
            padding: 0 20px;
        }
    }

    .b-calc__label {
        font-weight: 300;
        margin-bottom: 10px;
        margin-bottom: 25px;
    }

    @media only screen and (max-width: 767px) {
        .b-calc__label {
            padding: 0 20px;
        }
    }

    .b-calc__input {
        height: 30px;
        line-height: 30px;
        border: 2px solid #e6e6e6;
        border-radius: 15px;
        width: 170px;
        padding: 0 20px;
        background: white;
    }

    .b-calc__input:focus {
        border-color: #c5c5c5;
    }

    .b-calc__input.error {
        border-color: red;
        color: red;
    }

    @media only screen and (max-width: 767px) {
        .b-calc__input {
            width: 218px;
        }
    }

    .b-calc__input.right {
        text-align: right;
    }

    .b-calc__select {
        height: 34px;
        line-height: 30px;
        border: 2px solid #e6e6e6;
        border-radius: 17px;
        width: 214px;
        padding: 0 20px;
        background: white;
    }

    @media only screen and (max-width: 767px) {
        .b-calc__select {
            width: 258px;
        }
    }

    .b-calc__checkbox {
        position: absolute;
        opacity: 0;
    }

    .b-calc__checkbox-container {
        display: inline-block;
    }

    .b-calc__checkbox + label {
        height: 30px;
        border: 2px solid #e6e6e6;
        background: #e6e6e6;
        border-radius: 15px;
        width: 50px;
        padding: 0 20px;
        display: inline-block;
        vertical-align: middle;
        position: relative;
        z-index: 1;
        cursor: pointer;
    }

    @media only screen and (max-width: 767px) {
        .b-calc__checkbox + label {
            width: 214px;
        }
    }

    .b-calc__checkbox + label:before {
        content: '';
        position: absolute;
        display: block;
        width: 24px;
        height: 24px;
        left: 32px;
        margin-left: -28px;
        top: 3px;
        background-color: #bfbfbf;
        border-radius: 12px;
        z-index: 2;
        -webkit-transition: all 0.3s ease-in;
        transition: all 0.3s ease-in;
    }

    @media only screen and (max-width: 767px) {
        .b-calc__checkbox + label:before {
            width: 72px;
            left: 80px;
            margin-left: -76px;
        }
    }

    .b-calc__checkbox:checked + label:before {
        left: 100%;
        background-color: #da2254;
    }

    .b-calc__param {
        display: table;
        width: 100%;
        margin-bottom: 10px;
    }

    @media only screen and (max-width: 767px) {
        .b-calc__param {
            display: block;
            width: auto;
            margin-bottom: 25px;
            padding: 0 20px;
        }
    }

    .b-calc__param-name,
    .b-calc__param-val {
        display: table-cell;
        vertical-align: middle;
    }

    @media only screen and (max-width: 767px) {
        .b-calc__param-name,
        .b-calc__param-val {
            display: block;
            text-align: left;
            margin-bottom: 7px;
        }
    }

    .b-calc__param-name {
        font-weight: 300;
        text-align: left;
    }

    .b-calc__param-val {
        text-align: right;
    }

    @media only screen and (max-width: 767px) {
        .b-calc__param-val {
            text-align: left;
        }
    }

    .b-calc__param-help {
        display: inline-block;
        vertical-align: middle;
        margin-left: 5px;
        position: relative;
        width: 27px;
        height: 27px;
        background: url('/assets/img/ico_note.png?1455841148') no-repeat left top;
    }

    @media (min--moz-device-pixel-ratio: 1.3),
    (-webkit-min-device-pixel-ratio: 1.3),
    (min-device-pixel-ratio: 1.3),
    (min-resolution: 1.3dppx) {
        .b-calc__param-help {
            background-image: url('/assets/img/ico_note_x2.png?1455841149');
            background-size: 27px 27px;
        }
    }

    @media only screen and (max-width: 767px) {
        .b-calc__param-help {
            display: none;
        }
    }

    .b-calc__param-help_text {
        display: none;
        position: absolute;
        font-size: 14px;
        z-index: 100;
        width: 200px;
        padding: 7px 12px 8px;
        background: white;
        border: 1px solid #d9d9d9;
        left: 100%;
        margin-left: 12px;
        top: 0;
    }

    .b-calc__param-help_text:before {
        content: '';
        position: absolute;
        z-index: 2;
        left: -20px;
        top: 5px;
        border: 10px solid transparent;
        border-right: 10px solid #d9d9d9;
    }

    .b-calc__param-help_text:after {
        content: '';
        position: absolute;
        z-index: 3;
        left: -19px;
        top: 5px;
        border: 10px solid transparent;
        border-right: 10px solid white;
    }

    .b-calc__param-help:hover .b-calc__param-help_text,
    .b-calc__param-help.active .b-calc__param-help_text {
        display: block;
    }

    .b-calc__textarea {
        width: 90%;
        margin-bottom: 30px;
        text-align: center;
        border: none;
        resize: none;
    }

    .b-calc__textarea.error {
        color: red;
    }

    .b-calc__fullwidth_textarea {
        border: 2px solid #d9d9d9;
        border-radius: 15px;
        resize: none;
        width: 100%;
        height: 150px;
        box-sizing: border-box;
        padding: 10px 20px;
    }

    .b-calc__fullwidth_textarea:focus {
        border-color: #c5c5c5;
    }

    .b-calc__fullwidth_textarea.error {
        border-color: red;
        color: red;
    }

    .b-calc__btn_line {
        border-top: 1px solid #d9d9d9;
        text-align: center;
        padding-bottom: 50px;
        margin-bottom: -70px;
    }

    .b-calc__services {
        margin: 87px 0 83px;
        padding: 0 17px;
        position: relative;
    }

    @media only screen and (min-width: 768px) and (max-width: 999px) {
        .b-calc__services {
            margin: 37px 0 53px;
        }
    }

    @media only screen and (max-width: 767px) {
        .b-calc__services {
            margin: 27px 0 23px;
        }
    }

    .b-calc__services-list,
    .b-calc__services .flexMenu-popup {
        list-style: none;
        padding: 0;
        margin: 0;
        text-align: center;
    }

    .b-calc__services-item,
    .b-calc__services .flexMenu-viewMore {
        float: left;
        border-bottom: 1px solid #f3f3f3;
        position: relative;
        width: 210px;
        height: 100px;
        padding: 25px 0 0;
        margin: 0;
        cursor: pointer;
    }

    @media only screen and (min-width: 1000px) and (max-width: 1199px) {
        .b-calc__services-item,
        .b-calc__services .flexMenu-viewMore {
            width: 231px;
        }
    }

    @media only screen and (min-width: 768px) and (max-width: 999px) {
        .b-calc__services-item,
        .b-calc__services .flexMenu-viewMore {
            width: 227px;
        }
    }

    @media only screen and (max-width: 767px) {
        .b-calc__services-item,
        .b-calc__services .flexMenu-viewMore {
            width: 264px;
            height: 75px;
            padding-top: 5px;
            text-align: left;
        }
    }

    .b-calc__services-item:before,
    .b-calc__services .flexMenu-viewMore:before {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        height: 75%;
        width: 1px;
        background: #f3f3f3;
    }

    .b-calc__services-item:first-child:before,
    .b-calc__services .flexMenu-viewMore:first-child:before {
        display: none;
    }

    .flexMenu-popup .b-calc__services-item:before {
        display: none;
    }

    .b-calc__services-item.active {
        cursor: default;
    }

    .b-calc__services-item.active:after {
        content: '';
        position: absolute;
        height: 5px;
        width: 100%;
        bottom: -5px;
        left: 0;
        background-color: #da2254;
    }

    .b-calc__services .flexMenu-viewMore {
        text-align: center;
    }

    .b-calc__services-img,
    .b-calc__services-text {
        display: inline-block;
        vertical-align: middle;
    }

    @media only screen and (max-width: 767px) {
        .b-calc__services-img {
            width: 60px;
            height: auto;
            margin: 5px 10px 10px;
        }
    }

    .b-calc__services-text {
        width: 110px;
    }

    .b-calc__selects {
        width: 900px;
        margin: 0 auto 100px;
    }

    .b-calc__form {
        text-align: center;
        margin: 0 auto 50px;
    }

    @media only screen and (max-width: 767px) {
        .b-calc__form {
            margin-bottom: 0;
        }
    }

    .b-calc__slider,
    .b-calc__slide {
        text-align: center;
        margin-top: 70px;
    }

    @media only screen and (max-width: 767px) {
        .b-calc__slider,
        .b-calc__slide {
            padding-top: 0;
            margin-bottom: 0;
            margin-top: 30px;
        }
    }

    .b-calc__slider .f-info,
    .b-calc__slide .f-info {
        width: 310px;
        margin: 20px auto 30px;
        text-align: center;
        border: 1px solid #f2f2f2;
        padding: 17px 20px 14px;
        position: relative;
    }

    @media only screen and (max-width: 767px) {
        .b-calc__slider .f-info,
        .b-calc__slide .f-info {
            width: auto;
            margin: 0 20px;
        }
    }

    .b-calc__slider .f-info__title,
    .b-calc__slide .f-info__title {
        color: #8e8e8e;
        font-size: 14px;
        margin-bottom: 7px;
    }

    .b-calc__slider .f-info__summ,
    .b-calc__slide .f-info__summ {
        font-size: 24px;
    }

    .b-calc__slider .f-info__summ-val,
    .b-calc__slide .f-info__summ-val {
        font-size: 30px;
    }

    .b-calc__slider .f-info__point,
    .b-calc__slide .f-info__point {
        display: inline-block;
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: #e3e3e3;
    }

    .b-calc__slider .f-info__point-container,
    .b-calc__slide .f-info__point-container {
        background: white;
        width: 30px;
        height: 10px;
        position: absolute;
        left: 50%;
        margin-left: -15px;
        bottom: 0;
        text-align: center;
    }

    @media only screen and (max-width: 767px) {
        .b-calc__slider .f-info__point-container,
        .b-calc__slide .f-info__point-container {
            display: none;
        }
    }

    .b-calc__slider .f-slider,
    .b-calc__slide .f-slider {
        border: none;
        background: none;
    }

    .b-calc__slider .f-slider__container,
    .b-calc__slide .f-slider__container {
        background: #e3e3e3;
        height: 10px;
        border-radius: 5px;
        width: 400px;
        padding: 0 45px;
        position: relative;
        margin: 0 auto 30px;
    }

    @media only screen and (max-width: 767px) {
        .b-calc__slider .f-slider__container,
        .b-calc__slide .f-slider__container {
            display: none;
        }
    }

    .b-calc__slider .f-slider .ui-slider-range,
    .b-calc__slide .f-slider .ui-slider-range {
        background: none;
    }

    .b-calc__slider .f-slider .ui-slider-handle,
    .b-calc__slide .f-slider .ui-slider-handle {
        width: 20px;
        height: 20px;
        margin-left: -10px;
        border-radius: 50%;
        background: #da2254;
        border: none;
        cursor: pointer;
        outline: none;
    }

    .b-calc__slider .f-min_value,
    .b-calc__slider .f-max_value,
    .b-calc__slide .f-min_value,
    .b-calc__slide .f-max_value {
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background: #B3B3B3;
        position: absolute;
        left: 45px;
        right: 45px;
        text-align: center;
        top: 2px;
    }

    .b-calc__slider .f-min_value .val,
    .b-calc__slider .f-max_value .val,
    .b-calc__slide .f-min_value .val,
    .b-calc__slide .f-max_value .val {
        font-size: 18px;
        color: #8e8e8e;
        position: absolute;
        top: 15px;
        left: 50%;
        width: 150px;
        margin-left: -75px;
        display: block;
        text-align: center;
    }

    .b-calc__slider .f-max_value,
    .b-calc__slide .f-max_value {
        left: auto;
    }

    .b-calc__slider,
    .b-calc__slide {
        margin-bottom: 100px;
    }

    @media only screen and (min-width: 768px) and (max-width: 999px) {
        .b-calc__slider,
        .b-calc__slide {
            margin-bottom: 85px;
        }
    }

    .b-calc__slide {
        margin-bottom: 50px;
    }

    @media only screen and (min-width: 768px) and (max-width: 999px) {
        .b-calc__slide {
            margin-bottom: 35px;
        }
    }

    .b-calc .more {
        display: inline-block;
        margin-top: 59px;
    }

    @media only screen and (max-width: 767px) {
        .b-calc .more {
            margin-top: 30px;
        }
    }

    .b-calc .more:after {
        content: '';
        display: inline-block;
        width: 12px;
        height: 8px;
        background: url('/assets/img/arrow/black/bottom_arr.png?1455841196') no-repeat left top;
        margin-left: 10px;
    }

    @media (min--moz-device-pixel-ratio: 1.3),
    (-webkit-min-device-pixel-ratio: 1.3),
    (min-device-pixel-ratio: 1.3),
    (min-resolution: 1.3dppx) {
        .b-calc .more:after {
            background-image: url('/assets/img/arrow/black/bottom_arr_x2.png?1455841196');
            background-size: 12px 8px;
        }
    }

    .b-calc .flexMenu-viewMore {
        z-index: 999;
    }

    .b-calc .flexMenu-viewMore > a {
        display: block;
        position: absolute;
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
    }

    .b-calc .flexMenu-viewMore.active .more:after {
        width: 12px;
        height: 8px;
        background: url('/assets/img/arrow/black/top_arr.png?1455841196') no-repeat left top;
    }

    @media (min--moz-device-pixel-ratio: 1.3),
    (-webkit-min-device-pixel-ratio: 1.3),
    (min-device-pixel-ratio: 1.3),
    (min-resolution: 1.3dppx) {
        .b-calc .flexMenu-viewMore.active .more:after {
            background-image: url('/assets/img/arrow/black/top_arr_x2.png?1455841197');
            background-size: 12px 8px;
        }
    }

    .b-calc .flexMenu-popup {
        top: 100%;
        background-color: white;
        border: 1px solid #f3f3f3;
    }

    .b-clients {
        padding-bottom: 120px;
    }

    @media only screen and (min-width: 768px) and (max-width: 999px) {
        .b-clients {
            padding-bottom: 90px;
        }
    }

    @media only screen and (max-width: 767px) {
        .b-clients {
            padding-bottom: 60px;
        }
    }

    .b-clients__block {
        text-align: left;
        overflow-y: hidden !important;
        outline: none;
    }

    .b-clients__list {
        list-style: none;
        padding: 0;
        margin: 0;
        height: 65px;
        margin-left: -40px;
        padding-bottom: 50px;
        width: 10000px;
        overflow: hidden;
    }

    @media only screen and (max-width: 767px) {
        .b-clients__list {
            padding-bottom: 30px;
        }
    }

    .b-clients__item-img {
        height: 65px;
        width: auto;
        float: left;
        margin-left: 40px;
    }

    .b-clients .jspTrack,
    .b-clients .jspHorizontalBar {
        background: #07081e;
        border-radius: 5px;
        height: 10px;
    }

    .b-clients .jspVerticalBar {
        right: 10px;
    }

    .b-clients .jspDrag {
        width: 100px !important;
        height: 10px;
        border-radius: 5px;
        background: #14153d;
    }

    .b-clients .jspPane {
        outline: none;
    }

    .scroll-pane {
        width: 100%;
        height: 200px;
        overflow: auto;
    }

    .horizontal-only {
        height: auto;
        max-height: 200px;
    }

    .b-interesting {
        margin-bottom: 57px;
    }

    @media only screen and (max-width: 767px) {
        .b-interesting {
            margin-bottom: 40px;
        }
    }

    .b-interesting__block {
        margin-top: 88px;
    }

    @media only screen and (min-width: 768px) and (max-width: 999px) {
        .b-interesting__block {
            margin-top: 48px;
        }
    }

    @media only screen and (max-width: 767px) {
        .b-interesting__block {
            margin-top: 25px;
        }
    }

    .b-interesting__item {
        float: right;
        width: 450px;
        margin-bottom: 15px;
        background-color: white;
    }

    @media only screen and (min-width: 768px) and (max-width: 999px) {
        .b-interesting__item {
            float: none;
            width: auto;
            overflow: hidden;
            height: auto;
        }
    }

    @media only screen and (max-width: 767px) {
        .b-interesting__item {
            float: none;
            width: auto;
            overflow: hidden;
            height: auto;
        }
    }

    .b-interesting__item-img {
        float: left;
        width: 169px;
        height: auto;
    }

    @media only screen and (max-width: 767px) {
        .b-interesting__item-img {
            display: none;
        }
    }

    .b-interesting__item-txt {
        float: right;
        width: 230px;
        padding: 22px 21px 0 0;
    }

    @media only screen and (min-width: 768px) and (max-width: 999px) {
        .b-interesting__item-txt {
            width: 500px;
        }
    }

    @media only screen and (max-width: 767px) {
        .b-interesting__item-txt {
            float: none;
            padding: 22px 20px 20px;
            width: auto;
        }
    }

    .b-interesting__item-date {
        color: #8e8e8e;
        font-size: 12px;
        margin-bottom: 12px;
    }

    .b-interesting__item-title {
        font-size: 15px;
        line-height: 1.4em;
        overflow: hidden;
        height: 5.6em;
    }

    @media only screen and (max-width: 767px) {
        .b-interesting__item-title {
            font-size: 18px;
        }
    }

    .b-interesting__item-title a {
        text-decoration: none;
    }

    .b-interesting__item.big {
        float: left;
        width: 600px;
        height: 463px;
    }

    @media only screen and (min-width: 1000px) and (max-width: 1199px) {
        .b-interesting__item.big {
            width: 485px;
        }
    }

    @media only screen and (min-width: 768px) and (max-width: 999px) {
        .b-interesting__item.big {
            float: none;
            width: auto;
            overflow: hidden;
            height: auto;
            padding-bottom: 0;
        }
    }

    @media only screen and (max-width: 767px) {
        .b-interesting__item.big {
            float: none;
            width: auto;
            overflow: hidden;
            height: auto;
            padding-bottom: 0;
        }
    }

    .b-interesting__item.big .b-interesting__item-img {
        float: none;
        width: 100%;
    }

    @media only screen and (max-width: 767px) {
        .b-interesting__item.big .b-interesting__item-img {
            display: block;
        }
    }

    .b-interesting__item.big .b-interesting__item-txt {
        float: none;
        padding: 22px 30px 20px;
        width: auto;
    }

    @media only screen and (max-width: 767px) {
        .b-interesting__item.big .b-interesting__item-txt {
            padding: 22px 20px 20px;
        }
    }

    .b-interesting__item.big .b-interesting__item-date {
        font-size: 16px;
        margin-bottom: 17px;
    }

    .b-interesting__item.big .b-interesting__item-title {
        font-size: 24px;
        height: auto;
        margin-bottom: 14px;
    }

    @media only screen and (max-width: 767px) {
        .b-interesting__item.big .b-interesting__item-title {
            font-size: 20px;
        }
    }

    .b-interesting__item.big .b-interesting__item-text {
        line-height: 1.6em;
        overflow: hidden;
        height: 6.4em;
    }

    @media only screen and (max-width: 767px) {
        .b-interesting__item.big .b-interesting__item-text {
            height: auto;
        }
    }

    .b-popup_menu {
        font-family: "RobotoLight", sans-serif;
        color: white;
        font-weight: lighter;
        overflow: hidden;
    }

    @media only screen and (min-width: 1000px) and (max-width: 1199px) {
        .b-popup_menu {
            display: block !important;
        }
    }

    @media only screen and (min-width: 768px) and (max-width: 999px) {
        .b-popup_menu {
            display: block !important;
        }
    }

    .b-popup_menu__wrap {
        width: 1100px;
        margin-left: auto;
        margin-right: auto;
        overflow: hidden;
    }

    @media only screen and (min-width: 1000px) and (max-width: 1199px) {
        .b-popup_menu__wrap {
            width: 960px;
        }
    }

    @media only screen and (min-width: 768px) and (max-width: 999px) {
        .b-popup_menu__wrap {
            width: 720px;
        }
    }

    @media only screen and (max-width: 767px) {
        .b-popup_menu__wrap {
            width: 300px;
        }
    }

    .b-popup_menu__close {
        font-size: 20px;
        display: inline-block;
        vertical-align: middle;
        margin-left: 46px;
        margin-top: 10px;
        cursor: pointer;
    }

    @media only screen and (max-width: 767px) {
        .b-popup_menu__close {
            position: absolute;
            right: 10px;
            top: 10px;
            margin-top: 0;
        }
    }

    .b-popup_menu__close:before {
        content: '';
        display: inline-block;
        vertical-align: middle;
        width: 27px;
        height: 27px;
        background: url('/assets/img/ico_close.png?1455841150') no-repeat left top;
        margin-right: 4px;
    }

    @media (min--moz-device-pixel-ratio: 1.3),
    (-webkit-min-device-pixel-ratio: 1.3),
    (min-device-pixel-ratio: 1.3),
    (min-resolution: 1.3dppx) {
        .b-popup_menu__close:before {
            background-image: url('/assets/img/ico_close_x2.png?1455841149');
            background-size: 27px 27px;
        }
    }

    @media only screen and (max-width: 767px) {
        .b-popup_menu__close:before {
            display: none;
        }
    }

    @media only screen and (max-width: 767px) {
        .b-popup_menu__close:after {
            content: '';
            display: inline-block;
            vertical-align: middle;
            width: 27px;
            height: 27px;
            background: url('/assets/img/ico_close.png?1455841150') no-repeat left top;
            margin-left: 4px;
        }
    }

    @media only screen and (max-width: 767px) and (min--moz-device-pixel-ratio: 1.3),
    only screen and (max-width: 767px) and (-webkit-min-device-pixel-ratio: 1.3),
    only screen and (max-width: 767px) and (min-device-pixel-ratio: 1.3),
    only screen and (max-width: 767px) and (min-resolution: 1.3dppx) {
        .b-popup_menu__close:after {
            background-image: url('/assets/img/ico_close_x2.png?1455841149');
            background-size: 27px 27px;
        }
    }

    .b-popup_menu__header {
        padding: 90px 0 63px;
    }

    @media only screen and (max-width: 767px) {
        .b-popup_menu__header {
            padding: 25px 0 25px;
        }
    }

    .b-popup_menu__header-title {
        font-size: 48px;
        display: inline-block;
        vertical-align: middle;
    }

    @media only screen and (max-width: 767px) {
        .b-popup_menu__header-title {
            font-size: 32px;
            padding-left: 15px;
        }
    }

    @media only screen and (max-width: 767px) {
        .b-popup_menu__header .b-popup_menu__wrap {
            position: relative;
        }
    }

    @media only screen and (max-width: 767px) {
        .b-popup_menu__body .b-popup_menu__wrap {
            margin-bottom: 30px;
        }
    }

    @media only screen and (max-width: 767px) {
        .b-popup_menu__arr,
        .b-popup_menu__item .b-popup_menu__arr,
        .b-popup_menu__item .b-popup_menu__item .b-popup_menu__arr {
            background: url('/assets/img/arrow/white/bottom_arr.png?1455841194') no-repeat center;
            position: absolute;
            cursor: pointer;
            right: 0;
            top: 0;
            height: 100%;
            width: 45px;
        }
    }

    @media only screen and (max-width: 767px) and (min--moz-device-pixel-ratio: 1.3),
    only screen and (max-width: 767px) and (-webkit-min-device-pixel-ratio: 1.3),
    only screen and (max-width: 767px) and (min-device-pixel-ratio: 1.3),
    only screen and (max-width: 767px) and (min-resolution: 1.3dppx) {
        .b-popup_menu__arr,
        .b-popup_menu__item .b-popup_menu__arr,
        .b-popup_menu__item .b-popup_menu__item .b-popup_menu__arr {
            background-image: url('/assets/img/arrow/white/bottom_arr_x2.png?1455841195');
            background-size: 12px 8px;
        }
    }

    @media only screen and (max-width: 767px) {
        .opened .b-popup_menu__arr,
        .opened .opened .b-popup_menu__arr {
            background-image: url('/assets/img/arrow/white/top_arr.png?1455841194');
        }
    }

    @media only screen and (max-width: 767px) and (min--moz-device-pixel-ratio: 1.3),
    only screen and (max-width: 767px) and (-webkit-min-device-pixel-ratio: 1.3),
    only screen and (max-width: 767px) and (min-device-pixel-ratio: 1.3),
    only screen and (max-width: 767px) and (min-resolution: 1.3dppx) {
        .opened .b-popup_menu__arr,
        .opened .opened .b-popup_menu__arr {
            background-image: url('/assets/img/arrow/white/top_arr_x2.png?1455841195');
            background-size: 12px 8px;
        }
    }

    .b-popup_menu__list {
        list-style: none;
        padding: 0;
        display: inline-block;
        vertical-align: top;
        min-width: 193px;
        margin-bottom: 40px;
    }

    .b-popup_menu__list.w-1 {
        min-width: 217px;
    }

    .b-popup_menu__list.w-2 {
        min-width: 434px;
    }

    .b-popup_menu__list.w-3 {
        min-width: 651px;
    }

    .b-popup_menu__list.w-4 {
        min-width: 868px;
    }

    .b-popup_menu__list.w-5 {
        min-width: 1085px;
    }

    @media only screen and (min-width: 1000px) and (max-width: 1199px) {
        .b-popup_menu__list {
            min-width: 165px;
            margin-bottom: 20px;
        }
        .b-popup_menu__list.w-1 {
            min-width: 189px;
        }
        .b-popup_menu__list.w-2 {
            min-width: 378px;
        }
        .b-popup_menu__list.w-3 {
            min-width: 567px;
        }
        .b-popup_menu__list.w-4 {
            min-width: 756px;
        }
        .b-popup_menu__list.w-5 {
            min-width: 945px;
        }
    }

    @media only screen and (min-width: 768px) and (max-width: 999px) {
        .b-popup_menu__list {
            min-width: 210px;
            margin-bottom: 15px;
        }
        .b-popup_menu__list.w-1 {
            min-width: 210px;
        }
        .b-popup_menu__list.w-2 {
            min-width: 420px;
        }
        .b-popup_menu__list.w-3 {
            min-width: 630px;
        }
        .b-popup_menu__list.w-4 {
            min-width: 840px;
        }
        .b-popup_menu__list.w-5 {
            min-width: 1050px;
        }
    }

    @media only screen and (max-width: 767px) {
        .b-popup_menu__list {
            min-width: 0 !important;
            display: block;
            width: auto !important;
            margin: 0 !important;
            padding: 0 !important;
        }
    }

    .b-popup_menu__list .b-popup_menu__list {
        width: 193px;
        padding-right: 20px;
        margin-bottom: 10px;
    }

    @media only screen and (min-width: 1000px) and (max-width: 1199px) {
        .b-popup_menu__list .b-popup_menu__list {
            width: 165px;
        }
    }

    @media only screen and (min-width: 768px) and (max-width: 999px) {
        .b-popup_menu__list .b-popup_menu__list {
            width: 210px;
        }
    }

    @media only screen and (max-width: 767px) {
        .b-popup_menu__list .b-popup_menu__list {
            display: none;
        }
    }

    .b-popup_menu__item {
        padding: 0;
        font-size: 30px;
    }

    @media only screen and (max-width: 767px) {
        .b-popup_menu__item {
            font-size: 20px;
            display: block !important;
        }
    }

    .b-popup_menu__item a {
        text-decoration: none;
    }

    @media only screen and (max-width: 767px) {
        .b-popup_menu__item {
            border-top: 0;
        }
    }

    .b-popup_menu__item .b-popup_menu__a {
        margin-bottom: 29px;
        display: block;
        letter-spacing: normal;
        line-height: 1.3em;
    }

    .b-popup_menu__item .b-popup_menu__a.active {
        color: #da2254;
    }

    @media only screen and (max-width: 767px) {
        .b-popup_menu__item .b-popup_menu__a {
            position: relative;
            margin: 0 !important;
            display: block;
            padding: 10px 70px 11px 15px;
        }
    }

    .b-popup_menu__item .b-popup_menu__item {
        font-size: 20px;
        letter-spacing: normal;
        line-height: 1.3em;
    }

    @media only screen and (max-width: 767px) {
        .b-popup_menu__item .b-popup_menu__item {
            font-size: 18px;
            border-left: 0;
            border-right: 0;
        }
    }

    @media only screen and (max-width: 767px) {
        .b-popup_menu__item .b-popup_menu__item .b-popup_menu__a {
            padding-left: 35px;
        }
    }

    @media only screen and (max-width: 767px) {
        .b-popup_menu__item.opened {
            border-bottom: 0;
        }
        .b-popup_menu__item.opened .b-popup_menu__list {
            display: block;
        }
        .b-popup_menu__item .b-popup_menu__item.opened {
            border-bottom: 0;
        }
    }

    html.overlay-blue .fancybox-overlay {
        background: #0d0d2b !important;
    }

    html.overlay-blue .fancybox-wrap {
        background: none;
        opacity: 1;
    }

    html .fancybox-menu,
    html .fancybox-menu .fancybox-inner,
    html .fancybox-menu .fancybox-outer,
    html .fancybox-menu .fancybox-skin {
        width: 100% !important;
    }

    html .fancybox-menu {
        left: 0 !important;
    }

    html.fancybox-lock body,
    html.fancybox-lock .fancybox-overlay {
        overflow: hidden !important;
    }

    .b-popup_form {
        display: inline-block;
        overflow: hidden;
        background: white;
        padding: 20px 0 10px;
        position: relative;
    }

    .b-popup_form__close {
        position: absolute;
        right: 30px;
        top: 25px;
        cursor: pointer;
        width: 20px;
        height: 20px;
        background: url('/assets/img/btn_close.png?1455841150') no-repeat left top;
    }

    @media (min--moz-device-pixel-ratio: 1.3),
    (-webkit-min-device-pixel-ratio: 1.3),
    (min-device-pixel-ratio: 1.3),
    (min-resolution: 1.3dppx) {
        .b-popup_form__close {
            background-image: url('/assets/img/btn_close_x2.png?1455841150');
            background-size: 20px 20px;
        }
    }

    @media only screen and (min-width: 1000px) and (max-width: 1199px) {
        .b-popup_form__close {
            right: 20px;
        }
    }

    @media only screen and (min-width: 768px) and (max-width: 999px) {
        .b-popup_form__close {
            right: 20px;
        }
    }

    @media only screen and (max-width: 767px) {
        .b-popup_form__close {
            right: 20px;
        }
    }

    @media only screen and (min-width: 768px) and (max-width: 999px) {
        .b-popup_form__close {
            top: 25px;
        }
    }

    html .fancybox-form {
        text-align: center;
    }

    .b-404 {
        display: table;
        background: white;
        width: 100%;
        height: 100%;
        min-height: 600px;
    }

    .b-404 h1 {
        font-size: 212px;
        line-height: 1;
    }

    @media only screen and (max-width: 767px) {
        .b-404 h1 {
            font-size: 140px;
        }
    }

    .b-404 h2 {
        font-size: 36px;
        margin: 17px 0 0;
    }

    @media only screen and (max-width: 767px) {
        .b-404 h2 {
            font-size: 24px;
            margin-bottom: 20px;
        }
    }

    .b-404 p {
        margin-top: 0;
    }

    @media only screen and (max-width: 767px) {
        .b-404 p {
            line-height: 1.75em;
        }
    }

    .b-404__line {
        display: table-row;
    }

    .b-404__header,
    .b-404__body,
    .b-404__footer {
        display: table-cell;
    }

    @media only screen and (min-width: 768px) and (max-width: 999px) {
        .b-404__header,
        .b-404__body,
        .b-404__footer {
            text-align: center;
        }
    }

    .b-404__header {
        text-align: center;
        padding: 53px 0 15px;
        height: 73px;
    }

    @media only screen and (max-width: 767px) {
        .b-404__header {
            height: auto;
            padding: 23px 0 0;
        }
    }

    .b-404__header-logo {
        display: inline-block;
        width: 206px;
        height: 59px;
        background: url('/assets/img/desktop/logo.png?1455814544') no-repeat left top;
    }

    @media (min--moz-device-pixel-ratio: 1.3),
    (-webkit-min-device-pixel-ratio: 1.3),
    (min-device-pixel-ratio: 1.3),
    (min-resolution: 1.3dppx) {
        .b-404__header-logo {
            background-image: url('/assets/img/desktop/logo_x2.png?1455814576');
            background-size: 206px 59px;
        }
    }

    .b-404__body {
        vertical-align: middle;
    }

    @media only screen and (max-width: 767px) {
        .b-404__body {
            text-align: center;
        }
    }

    .b-404__body-title {
        float: left;
        margin: 0 66px 0 0;
    }

    @media only screen and (min-width: 768px) and (max-width: 999px) {
        .b-404__body-title {
            float: none;
            width: auto;
            margin: 0;
        }
    }

    @media only screen and (max-width: 767px) {
        .b-404__body-title {
            float: none;
            width: auto;
            margin: 0;
        }
    }

    .b-404__body-txt {
        float: left;
    }

    @media only screen and (min-width: 768px) and (max-width: 999px) {
        .b-404__body-txt {
            float: none;
            width: auto;
            margin-bottom: 30px;
        }
    }

    .b-404__services {
        margin-left: -30px;
    }

    @media only screen and (max-width: 767px) {
        .b-404__services {
            margin-bottom: 30px;
            display: none;
        }
    }

    .b-404__services-item {
        display: inline-block;
        vertical-align: middle;
        margin-left: 30px;
    }

    @media only screen and (max-width: 767px) {
        .b-404__services-item {
            margin-bottom: 12px;
        }
    }

    .b-404__services-img,
    .b-404__services-a {
        display: inline-block;
        vertical-align: middle;
    }

    .b-404__services-img {
        margin-right: 5px;
    }

    .b-404__services-a {
        color: #1f2167;
        text-decoration: none;
        border-bottom: 1px solid;
    }

    .b-404__footer {
        height: 125px;
    }

    @media only screen and (max-width: 767px) {
        .b-404__footer {
            height: auto;
        }
    }

    @media only screen and (max-width: 767px) {
        .b-404__footer {
            text-align: center;
        }
    }

    .b-404__footer-fields {
        padding: 35px 0 30px;
    }

    @media only screen and (max-width: 767px) {
        .b-404__footer-fields {
            padding: 25px 0 20px;
        }
    }

    .b-404__footer-social {
        float: right;
    }

    @media only screen and (min-width: 768px) and (max-width: 999px) {
        .b-404__footer-social {
            float: none;
        }
    }

    @media only screen and (max-width: 767px) {
        .b-404__footer-social {
            float: none;
        }
    }

    .b-404__contact {
        float: left;
        text-align: right;
        margin-right: 40px;
    }

    @media only screen and (max-width: 767px) {
        .b-404__contact {
            float: none;
            text-align: left;
            margin: 0 0 20px;
        }
    }

    .b-404__contact-block {
        float: left;
    }

    @media only screen and (min-width: 768px) and (max-width: 999px) {
        .b-404__contact-block {
            width: 390px;
        }
    }

    @media only screen and (min-width: 768px) and (max-width: 999px) {
        .b-404__contact-block {
            float: none;
            display: inline-block;
            margin-bottom: 30px;
        }
    }

    @media only screen and (max-width: 767px) {
        .b-404__contact-block {
            float: none;
            display: inline-block;
            margin-bottom: 30px;
        }
    }

    .b-404__phone {
        font-size: 27px;
        text-decoration: none;
        text-align: right;
    }

    .b-404__phone .code {
        font-size: 18px;
    }

    .b-404__time {
        font-size: 14px;
        color: #8e8e8e;
    }

    .b-404__btn {
        border: 1px solid #f2f2f2;
        text-decoration: none;
        height: 78px;
        line-height: 78px;
        border-radius: 39px;
        font-size: 18px;
        display: inline-block;
        padding: 0 50px;
    }

    .b-404__btn-container {
        text-align: center;
    }

    .b-portfolio {
        margin-bottom: 50px;
        text-align: center;
    }

    .b-portfolio__list {
        list-style: none;
        padding-left: 0;
        margin-left: -18px;
        text-align: left;
    }

    .b-portfolio__item {
        display: inline-block;
        vertical-align: top;
        width: 350px;
        background: white;
        margin: 0 0 20px 18px;
    }

    .b-portfolio__item:hover {
        box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.15);
    }

    @media only screen and (min-width: 1000px) and (max-width: 1199px) {
        .b-portfolio__item {
            width: 305px;
        }
    }

    @media only screen and (min-width: 768px) and (max-width: 999px) {
        .b-portfolio__item {
            width: 342px;
        }
    }

    @media only screen and (max-width: 767px) {
        .b-portfolio__item {
            width: 300px;
        }
    }

    .b-portfolio__item-img {
        width: 100%;
        height: auto;
    }

    .b-portfolio__item-txt {
        border-top: 1px solid #f2f2f2;
        padding: 28px 30px 29px;
    }

    .b-portfolio__item-name {
        font-size: 24px;
        font-weight: 300;
        margin-bottom: 5px;
    }

    .b-portfolio__item-name a {
        text-decoration: none;
    }

    .b-portfolio__item-type {
        color: #8e8e8e;
        font-weight: 300;
    }

    .b-portfolio__item img {
        display: block;
    }

    .b-portfolio__more {
        color: white;
        text-decoration: none;
        height: 80px;
        line-height: 80px;
        border-radius: 40px;
        font-size: 18px;
        text-align: center;
        display: inline-block;
        background: #0c0d2b;
        padding: 0 40px;
        margin-top: 10px;
    }

    @media only screen and (max-width: 767px) {
        .b-portfolio__more {
            margin-bottom: 45px;
            margin-top: 23px;
        }
    }

    .b-portfolio__more:before {
        content: '';
        display: inline-block;
        vertical-align: middle;
        width: 22px;
        height: 24px;
        background: url('/assets/img/desktop/bg_loader.png?1455841153') no-repeat left top;
        margin-right: 30px;
    }

    @media (min--moz-device-pixel-ratio: 1.3),
    (-webkit-min-device-pixel-ratio: 1.3),
    (min-device-pixel-ratio: 1.3),
    (min-resolution: 1.3dppx) {
        .b-portfolio__more:before {
            background-image: url('/assets/img/desktop/bg_loader_x2.png?1455841154');
            background-size: 22px 24px;
        }
    }

    .b-portfolio__more:hover {
        color: white;
        background-color: #171953;
    }

    .b-sert {
        padding: 20px 30px 21px;
        background: white;
        margin-bottom: 80px;
    }

    @media only screen and (min-width: 768px) and (max-width: 999px) {
        .b-sert {
            margin-bottom: 50px;
        }
    }

    @media only screen and (max-width: 767px) {
        .b-sert {
            text-align: center;
            margin-bottom: 30px;
        }
    }

    .b-sert__list {
        list-style: none;
        padding: 0;
        margin-left: -20px;
        margin-top: 45px;
    }

    .b-sert__item {
        display: inline-block;
        vertical-align: top;
        margin-left: 20px;
        margin-bottom: 20px;
    }

    .b-sert__item:hover {
        box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.15);
    }

    .b-sert__item-a {
        padding: 5px;
        border: 1px solid #f2f2f2;
        display: block;
    }

    .b-sert__item-img {
        display: block;
    }

    @media only screen and (max-width: 767px) {
        .b-sert__item-img {
            width: 100%;
            height: auto;
        }
    }

    .b-footer {
        background: #0c0d2b;
        overflow: hidden;
    }

    .b-footer__fields {
        background: white;
        margin-top: 80px;
        border-radius: 15px;
        margin-bottom: 80px;
        overflow: hidden;
    }

    @media only screen and (min-width: 768px) and (max-width: 999px) {
        .b-footer__fields {
            margin: 40px auto 30px;
        }
    }

    @media only screen and (max-width: 767px) {
        .b-footer__fields {
            margin: 30px auto 25px;
        }
    }

    .b-footer__contact,
    .b-footer__recall {
        margin-bottom: 23px;
    }

    .b-footer__contact {
        float: left;
        text-align: right;
        margin-right: 40px;
    }

    @media only screen and (max-width: 767px) {
        .b-footer__contact {
            float: none;
            text-align: left;
            margin: 0 0 20px;
        }
    }

    .b-footer__recall {
        float: left;
        margin-top: 3px;
    }

    @media only screen and (max-width: 767px) {
        .b-footer__recall {
            float: none;
            margin-bottom: 19px;
            display: block;
        }
    }

    .b-footer__phone {
        font-size: 27px;
        text-decoration: none;
        text-align: right;
    }

    .b-footer__phone .code {
        font-size: 18px;
    }

    .b-footer__time {
        font-size: 14px;
        color: #8e8e8e;
    }

    .b-footer__address {
        background: url('/assets/img/desktop/map_marker.png?1455841153') no-repeat left top;
        min-height: 22px;
        padding-left: 26px;
        margin-bottom: 28px;
    }

    @media (min--moz-device-pixel-ratio: 1.3),
    (-webkit-min-device-pixel-ratio: 1.3),
    (min-device-pixel-ratio: 1.3),
    (min-resolution: 1.3dppx) {
        .b-footer__address {
            background-image: url('/assets/img/desktop/map_marker_x2.png?1455841153');
            background-size: 16px 22px;
        }
    }

    .b-footer__map {
        width: 600px;
        height: 300px;
        background-color: #ccc;
        float: right;
        background-position: center center;
    }
    #footer_map_small {
        background-image: url('/assets/img/footer_map_small_v2.jpg');
        background-position: center center;
    }
    #footer_map_big {
        background-image: url('/assets/img/footer_map_big_v2.jpg');
        background-position: center center;
    }

    @media only screen and (min-width: 1000px) and (max-width: 1199px) {
        .b-footer__map {
            width: 500px;
        }
    }

    @media only screen and (min-width: 768px) and (max-width: 999px) {
        .b-footer__map {
            float: none;
            width: auto;
            margin-bottom: 20px;
        }
    }

    @media only screen and (max-width: 767px) {
        .b-footer__map {
            width: 300px;
            margin-left: 0;
            height: 230px;
        }
    }

    .b-footer__map:after {}

    @media only screen and (min-width: 768px) and (max-width: 999px) {
        .b-footer__map:after {
            display: none;
        }
    }

    @media only screen and (max-width: 767px) {
        .b-footer__map:after {
            display: none;
        }
    }


    @media only screen and (max-width: 767px) {
        .b-footer__copyright {
            font-size: 13px;
        }
    }

    .styler_small {
        height: 30px;
        line-height: 30px;
        border: 2px solid #e6e6e6;
        border-radius: 15px;
        padding: 0;
        background: #e6e6e6;
        position: relative;
        text-align: left;
    }

    .styler_small.focused .jq-selectbox__select {
        border: 0;
    }

    .styler_small.disabled .jq-selectbox__select {
        border: 0;
    }

    .styler_small .jq-selectbox {
        background: none;
    }

    .styler_small .jq-selectbox__select {
        background: none;
        border: none;
        width: 150px;
        padding: 0 40px 0 20px;
        box-shadow: none;
    }

    @media only screen and (max-width: 767px) {
        .styler_small .jq-selectbox__select {
            width: 198px;
        }
    }

    .styler_small .jq-selectbox__select-text {
        text-shadow: none;
        width: 100% !important;
    }

    .styler_small .jq-selectbox__trigger {
        width: 30px;
        height: 100%;
        right: 0;
        top: 0;
        border: 0;
        background: none;
        border-radius: 0 15px 15px 0;
    }

    .styler_small .jq-selectbox__trigger-arrow {
        width: 12px;
        height: 8px;
        background: url('/assets/img/arrow/gray/bottom_arr.png?1455841197') no-repeat left top;
        top: 50%;
        left: 50%;
        margin-top: -4px;
        margin-left: -6px;
        border: none;
        position: absolute;
    }

    @media (min--moz-device-pixel-ratio: 1.3),
    (-webkit-min-device-pixel-ratio: 1.3),
    (min-device-pixel-ratio: 1.3),
    (min-resolution: 1.3dppx) {
        .styler_small .jq-selectbox__trigger-arrow {
            background-image: url('/assets/img/arrow/gray/bottom_arr_x2.png?1455841197');
            background-size: 12px 8px;
        }
    }

    .styler_small .jq-selectbox__dropdown {
        margin-top: 0;
        border: none;
        background: none;
        box-shadow: none;
        left: auto;
        right: 0;
    }

    @media only screen and (max-width: 767px) {
        .styler_small .jq-selectbox__dropdown {
            max-width: 258px;
        }
    }

    .styler_small .jq-selectbox__search {
        margin: 3px 0;
    }

    .styler_small .jq-selectbox__search input[type="search"] {
        box-sizing: border-box;
        background-color: white;
        border: 1px solid #e6e6e6;
        border-radius: 9px;
        height: 30px;
        line-height: 30px;
        padding: 0 40px 0 20px;
        box-shadow: none;
    }

    .styler_small ul {
        background: white;
        overflow: hidden;
        border: 1px solid #e6e6e6;
        border-radius: 10px;
        margin: 2px 0;
        max-height: 180px;
    }

    .styler_small li {
        height: 30px;
        line-height: 30px;
        padding: 0 40px 0 20px;
    }

    .styler_small li.selected,
    .styler_small li:hover {
        color: white;
        background: #da2254;
    }
    /**
 * NEW
 */

    .O_O.advantages .O_O__title > span,
    .O_O.team .O_O__title > span,
    .O_O.cases .O_O__title > span,
    .O_O.reviews .O_O__title > span {
        display: block;
        text-transform: uppercase;
        text-align: center;
        margin-bottom: 70px;
    }
    /* Advantages */

    .O_O.advantages {
        padding-top: 38px;
        padding-bottom: 31px;
    }

    .O_O.advantages > .wrap-in:after {
        content: '';
        clear: both;
        display: block;
    }

    .O_O.advantages .O_O__title,
    .O_O.advantages .O_O__title span {
        margin-bottom: 30px;
    }

    .advantages-col {
        float: left;
        height: 125px;
        font-size: 18px;
        line-height: 24px;
        color: #282828;
        margin-bottom: 42px;
    }

    .advantages-col.years,
    .advantages-col.unlimited {
        width: 34%;
    }

    .advantages-col.companies,
    .advantages-col.tracking {
        width: 35%;
    }

    .advantages-col.fullcon,
    .advantages-col.callback {
        width: 31%;
    }

    .advantages-col:before {
        content: '';
        float: left;
        width: 125px;
        height: 125px;
        margin-right: 24px;
        background: url('/assets/img/advantages_125.png') no-repeat;
    }

    .advantages-col.years:before {
        background-position: -1px -1px;
    }

    .advantages-col.companies:before {
        background-position: -127px -1px;
    }

    .advantages-col.fullcon:before {
        background-position: -127px -127px;
    }

    .advantages-col.unlimited:before {
        background-position: -253px -1px;
    }

    .advantages-col.tracking:before {
        background-position: -1px -127px;
    }

    .advantages-col.callback:before {
        background-position: -253px -127px;
    }

    .advantages-col > span {
        display: block;
        padding-top: 37px;
    }

    .advantages-col.unlimited > span {
        padding-top: 21px;
    }
    /* Our team */

    .O_O.team {
        padding-top: 38px;
        padding-bottom: 31px;
        background: #11112e url('/assets/img/team.png') center bottom no-repeat;
    }

    .O_O.team > .wrap-in {
        min-height: 250px;
    }

    .O_O.team .O_O__title,
    .O_O.team .O_O__title span {
        margin-bottom: 19px;
    }

    .O_O.team > .wrap-in:after {
        content: '';
        clear: both;
        display: block;
    }

    .team-col {
        font-size: 18px;
        line-height: 30px;
        float: left;
        width: 33.33%;
        min-height: 40px;
    }

    .team-col:before {
        content: '';
        float: left;
        width: 34px;
        height: 33px;
        background: url('/assets/img/team_checkbox.png') no-repeat;
    }

    .team-col > span {
        padding-top: 5px;
        display: block;
        margin-left: 52px;
        overflow: hidden;
    }
    /* Cases */

    .O_O.cases {
        padding-top: 61px;
        padding-bottom: 66px;
    }

    .O_O.cases .O_O__title,
    .O_O.cases .O_O__title span {
        margin-top: 0;
        margin-bottom: 31px;
    }

    #cases-slider {
        width: 850px;
        margin: 0 auto;
        position: relative;
    }

    #cases-swiper {
        width: 850px;
    }

    .case-slide {
        margin: 0 auto;
        width: 830px;
        min-height: 327px;
        background-color: #fff;
        border-radius: 3px;
    }

    .case-slide:after {
        display: block;
        clear: both;
        content: '';
    }

    .case-slide.no-image {
        background: #fff url('/assets/img/cases_no_image.jpg') center center;
        background-size: cover;
    }

    .case-slide.with-image {
        background: #fff url('/assets/img/cases_no_image.jpg') center center;
    }

    #cases-prev,
    #cases-next {
        position: absolute;
        z-index: 10;
        cursor: pointer;
        width: 27px;
        height: 48px;
        top: 140px;
    }

    #cases-prev {
        background-image: url('/assets/img/cases_slider_arrow_left.png');
        left: -100px;
    }

    #cases-next {
        background-image: url('/assets/img/cases_slider_arrow_right.png');
        right: -100px;
    }

    .swiper-pagination-bullet {
        width: 12px;
        height: 12px;
        display: inline-block;
        border-radius: 50%;
        background: #fff;
        border: 1px solid #141430;
        opacity: 1;
    }

    .swiper-pagination-bullet-active {
        background: #141430;
    }

    .swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
        margin: 0 3px;
    }

    .swiper-container-horizontal > .swiper-pagination-bullets {
        bottom: 7px;
    }

    .cases-text {
        padding: 40px;
        color: #282828;
    }

    .no-image > .cases-text {
        text-align: center;
        padding-top: 96px;
    }

    .with-image > .cases-text {
        width: 200px;
        float: left;
    }

    .case-title {
        font-size: 24px;
        line-height: 24px;
        text-transform: uppercase;
    }

    .case-subtitle {
        font-size: 18px;
        line-height: 24px;
        text-transform: uppercase;
        padding-top: 8px;
        padding-bottom: 13px;
    }

    .case-description {
        font-size: 16px;
        line-height: 24px;
    }

    .case-description:before {
        content: '';
        display: block;
        width: 200px;
        height: 2px;
        background-color: #D62252;
        margin: 0 auto;
    }

    .no-image .case-description:before {
        margin-bottom: 10px;
    }

    .with-image .case-description:before {
        margin-bottom: 4px;
    }

    .case-image {
        width: 60%;
        height: 245px;
        float: right;
        border-radius: 5px;
        border: 1px solid #2A2A61;
        background-color: #fff;
        background-repeat: no-repeat;
        background-size: cover;
        margin: 40px 40px 0 0;
    }
    /* Reviews */

    .O_O.reviews {
        padding-top: 61px;
        padding-bottom: 66px;
        background-color: #fff;
    }

    .O_O.reviews .O_O__title,
    .O_O.reviews .O_O__title span {
        margin-top: 0;
        margin-bottom: 31px;
    }

    #reviews-slider {
        width: 800px;
        margin: 0 auto;
        position: relative;
    }

    #reviews-swiper {
        width: 800px;
    }

    .review-slide {
        margin: 0 auto;
        width: 780px;
        min-height: 310px;
        background-color: #fff;
    }

    .review-slide:after {
        display: block;
        clear: both;
        content: '';
    }

    .review-slide.no-image {}

    .review-slide.with-image {}

    #reviews-prev,
    #reviews-next {
        position: absolute;
        z-index: 10;
        cursor: pointer;
        width: 27px;
        height: 48px;
        top: 129px;
    }

    #reviews-prev {
        background-image: url('/assets/img/cases_slider_arrow_left.png');
        left: -100px;
    }

    #reviews-next {
        background-image: url('/assets/img/cases_slider_arrow_right.png');
        right: -100px;
    }

    .review-text {
        width: 485px;
        color: #282828;
        min-height: 269px;
        padding-top: 41px;
        background: url('/assets/img/review_bg.png') center 55px no-repeat;
    }

    .no-image > .review-text {
        margin: 0 auto;
    }

    .with-image > .review-text {
        float: right;
    }

    .review-descr {
        font-size: 18px;
        line-height: 36px;
        text-transform: uppercase;
    }

    .review-author {
        font-size: 18px;
        line-height: 24px;
        padding-top: 42px;
    }

    .review-image {
        width: 233px;
        height: 310px;
        float: left;
        border-radius: 5px;
        background-color: #d1d1d1;
        background-repeat: no-repeat;
        background-size: cover;
    }

    #reviews-all {
        clear: both;
        text-align: center;
        padding-top: 40px;
    }

    #reviews-all > a {
        font-size: 18px;
        font-weight: bold;
        color: #074183;
        -webkit-transition: color 0.5s ease, border-bottom-color 0.5s ease;
        -moz-transition: color 0.5s ease, border-bottom-color 0.5s ease;
        transition: color 0.5s ease, border-bottom-color 0.5s ease;
        text-decoration: none;
        border-bottom: 2px solid #074183;
    }

    #reviews-all > a:hover {
        color: #da2254;
        border-bottom-color: #da2254;
    }

    #reviews-all-white {
        clear: both;
        text-align: center;
        padding-top: 40px;
    }

    #reviews-all-white > a {
        font-size: 18px;
        font-weight: bold;
        color: #FFFFFF;
        -webkit-transition: color 0.5s ease, border-bottom-color 0.5s ease;
        -moz-transition: color 0.5s ease, border-bottom-color 0.5s ease;
        transition: color 0.5s ease, border-bottom-color 0.5s ease;
        text-decoration: none;
        border-bottom: 2px solid #FFFFFF;
    }

    #reviews-all-white > a:hover {
        color: #da2254;
        border-bottom-color: #da2254;
    }
    /* mobile */

    @media only screen and (max-width: 767px) {
        .advantages-col {
            height: 96px;
            margin-bottom: 24px;
        }
        .advantages-col:before {
            width: 96px;
            height: 96px;
            background: url('/assets/img/advantages_96.png') no-repeat;
        }
        .advantages-col.years:before {
            background-position: -1px -1px;
        }
        .advantages-col.companies:before {
            background-position: -98px -1px;
        }
        .advantages-col.fullcon:before {
            background-position: -98px -98px;
        }
        .advantages-col.unlimited:before {
            background-position: -195px -1px;
        }
        .advantages-col.tracking:before {
            background-position: -1px -98px;
        }
        .advantages-col.callback:before {
            background-position: -195px -98px;
        }
        .advantages-col.years,
        .advantages-col.fullcon,
        .advantages-col.tracking,
        .advantages-col.companies,
        .advantages-col.unlimited,
        .advantages-col.callback {
            width: 100%;
        }
        .advantages-col.years > span,
        .advantages-col.fullcon > span,
        .advantages-col.tracking > span,
        .advantages-col.companies > span,
        .advantages-col.callback > span {
            padding-top: 22px;
        }
        .advantages-col.unlimited > span {
            padding-top: 0;
        }
        /* Our team */
        .team-col {
            float: none;
            width: 95%;
            margin: 0 auto;
        }
        /* Cases */
        #cases-prev,
        #cases-next {
            top: 165px;
            width: 14px;
            height: 24px;
            background-size: 14px 24px;
        }
        #cases-slider {
            width: 280px;
        }
        #cases-swiper {
            width: 280px;
        }
        .case-slide {
            width: 260px;
        }
        #cases-prev {
            left: -14px;
        }
        #cases-next {
            right: -14px;
        }
        .no-image > .cases-text {
            padding: 96px 16px 0;
        }
        .with-image > .cases-text {
            text-align: center;
            padding: 20px 16px 0;
            width: auto;
            float: none;
        }
        .case-image {
            width: 226px;
            height: 180px;
            float: left;
            border-radius: 5px;
            margin: 20px 15px 35px;
        }
        /* Reviews */
        #reviews-prev,
        #reviews-next {
            top: 165px;
            width: 14px;
            height: 24px;
            background-size: 14px 24px;
        }
        #reviews-slider {
            width: 280px;
        }
        #reviews-swiper {
            width: 280px;
        }
        .review-slide {
            width: 260px;
        }
        #reviews-prev {
            left: -14px;
        }
        #reviews-next {
            right: -14px;
        }
        .review-text {
            width: 100%;
            float: none;
            text-align: center;
        }
        .review-image {
            width: 228px;
            margin: 0 auto;
            float: none;
        }
        .no-image > .review-text {
            padding-top: 0;
        }
    }
    /* tablet */

    @media only screen and (min-width: 768px) and (max-width: 999px) {
        .advantages-col.years,
        .advantages-col.fullcon,
        .advantages-col.tracking,
        .advantages-col.companies,
        .advantages-col.unlimited,
        .advantages-col.callback {
            width: 50%;
        }
        /* Cases */
        #cases-prev {
            left: -44px;
        }
        #cases-next {
            right: -44px;
        }
        /* Reviews */
        #reviews-prev {
            left: -44px;
        }
        #reviews-next {
            right: -44px;
        }
    }

    @media only screen and (min-width: 768px) and (max-width: 849px) {
        /* Cases */
        #cases-slider {
            width: 650px;
        }
        #cases-swiper {
            width: 650px;
        }
        .case-slide {
            width: 630px;
        }
        .case-image {
            width: 47%;
        }
        /* Reviews */
        #reviews-slider {
            width: 650px;
        }
        #reviews-swiper {
            width: 650px;
        }
        .review-slide {
            width: 630px;
        }
        .with-image > .review-text {
            width: 360px;
            padding-top: 35px;
        }
    }

    @media only screen and (min-width: 850px) and (max-width: 999px) {
        /* Cases */
        #cases-slider {
            width: 720px;
        }
        #cases-swiper {
            width: 720px;
        }
        .case-slide {
            width: 700px;
        }
        .case-image {
            width: 52%;
        }
        /* Reviews */
        #reviews-slider {
            width: 720px;
        }
        #reviews-swiper {
            width: 720px;
        }
        .review-slide {
            width: 700px;
        }
        .with-image > .review-text {
            width: 430px;
            padding-top: 35px;
        }
    }

    @media only screen and (min-width: 1000px) and (max-width: 1080px) {
        /* Cases */
        #cases-prev {
            left: -35px;
        }
        #cases-next {
            right: -35px;
        }
        /* Reviews */
        #reviews-prev {
            left: -35px;
        }
        #reviews-next {
            right: -35px;
        }
    }


    .ya-share2__badge {
        display: inline-block;
        vertical-align: middle;
        margin-right: 4px;
        -webkit-transition: opacity 0.5s ease;
        transition: opacity 0.5s ease;
        width: 40px;
        height: 40px;
        border-radius: 50% !important;
    }

    .ya-share2__badge:hover {
        opacity: 0.6;
    }

    .ya-share2__icon {
        margin-top: 8px;
    }

    /* .b-publication_list__item-img {
        height: 220px !important;
    } */


    .fancybox-skin,
    .fancybox-outer,
    .fancybox-inner,
    .fancybox-image,
    .fancybox-wrap iframe,
    .fancybox-wrap object,
    .fancybox-nav,
    .fancybox-nav span,
    .fancybox-tmp {
        padding: 0;
        margin: 0;
        border: 0;
        outline: none;
        vertical-align: top;
    }

    .fancybox-wrap {
        position: absolute;
        top: 0;
        left: 0;
        z-index: 8020;
    }

    .fancybox-skin {
        position: relative;
        background: #f9f9f9;
        color: #444;
        text-shadow: none;
        -webkit-border-radius: 4px;
        -moz-border-radius: 4px;
        border-radius: 4px;
    }

    .fancybox-opened {
        z-index: 8030;
    }

    .fancybox-opened .fancybox-skin {
        -webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
        -moz-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    }

    .fancybox-outer,
    .fancybox-inner {
        position: relative;
    }

    .fancybox-inner {
        overflow: hidden;
    }

    .fancybox-type-iframe .fancybox-inner {
        -webkit-overflow-scrolling: touch;
    }

    .fancybox-error {
        color: #444;
        font: 14px/20px "Helvetica Neue", Helvetica, Arial, sans-serif;
        margin: 0;
        padding: 15px;
        white-space: nowrap;
    }

    .fancybox-image,
    .fancybox-iframe {
        display: block;
        width: 100%;
        height: 100%;
    }

    .fancybox-image {
        max-width: 100%;
        max-height: 100%;
    }

    #fancybox-loading,
    .fancybox-close,
    .fancybox-prev span,
    .fancybox-next span {
        background-image: url('fancybox_sprite.png');
    }

    #fancybox-loading {
        position: fixed;
        top: 50%;
        left: 50%;
        margin-top: -22px;
        margin-left: -22px;
        background-position: 0 -108px;
        opacity: 0.8;
        cursor: pointer;
        z-index: 8060;
    }

    #fancybox-loading div {
        width: 44px;
        height: 44px;
        background: url('fancybox_loading.gif') center center no-repeat;
    }

    .fancybox-close {
        position: absolute;
        top: -18px;
        right: -18px;
        width: 36px;
        height: 36px;
        cursor: pointer;
        z-index: 8040;
    }

    .fancybox-nav {
        position: absolute;
        top: 0;
        width: 40%;
        height: 100%;
        cursor: pointer;
        text-decoration: none;
        background: transparent url('blank.gif');
        /* helps IE */
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
        z-index: 8040;
    }

    .fancybox-prev {
        left: 0;
    }

    .fancybox-next {
        right: 0;
    }

    .fancybox-nav span {
        position: absolute;
        top: 50%;
        width: 36px;
        height: 34px;
        margin-top: -18px;
        cursor: pointer;
        z-index: 8040;
        visibility: hidden;
    }

    .fancybox-prev span {
        left: 10px;
        background-position: 0 -36px;
    }

    .fancybox-next span {
        right: 10px;
        background-position: 0 -72px;
    }

    .fancybox-nav:hover span {
        visibility: visible;
    }

    .fancybox-tmp {
        position: absolute;
        top: -99999px;
        left: -99999px;
        visibility: hidden;
        max-width: 99999px;
        max-height: 99999px;
        overflow: visible !important;
    }
    /* Overlay helper */

    .fancybox-lock {
        overflow: hidden !important;
        width: auto;
    }

    .fancybox-lock body {
        overflow: hidden !important;
    }

    .fancybox-lock-test {
        overflow-y: hidden !important;
    }

    .fancybox-overlay {
        position: absolute;
        top: 0;
        left: 0;
        overflow: hidden;
        display: none;
        z-index: 8010;
        background: url('fancybox_overlay.png');
    }

    .fancybox-overlay-fixed {
        position: fixed;
        bottom: 0;
        right: 0;
    }

    .fancybox-lock .fancybox-overlay {
        overflow: auto;
        overflow-y: scroll;
    }
    /* Title helper */

    .fancybox-title {
        visibility: hidden;
        font: normal 13px/20px "Helvetica Neue", Helvetica, Arial, sans-serif;
        position: relative;
        text-shadow: none;
        z-index: 8050;
    }

    .fancybox-opened .fancybox-title {
        visibility: visible;
    }

    .fancybox-title-float-wrap {
        position: absolute;
        bottom: 0;
        right: 50%;
        margin-bottom: -35px;
        z-index: 8050;
        text-align: center;
    }

    .fancybox-title-float-wrap .child {
        display: inline-block;
        margin-right: -100%;
        padding: 2px 20px;
        background: transparent;
        /* Fallback for web browsers that doesn't support RGBa */
        background: rgba(0, 0, 0, 0.8);
        -webkit-border-radius: 15px;
        -moz-border-radius: 15px;
        border-radius: 15px;
        text-shadow: 0 1px 2px #222;
        color: #FFF;
        font-weight: bold;
        line-height: 24px;
        white-space: nowrap;
    }

    .fancybox-title-outside-wrap {
        position: relative;
        margin-top: 10px;
        color: #fff;
    }

    .fancybox-title-inside-wrap {
        padding-top: 10px;
    }

    .fancybox-title-over-wrap {
        position: absolute;
        bottom: 0;
        left: 0;
        color: #fff;
        padding: 10px;
        background: #000;
        background: rgba(0, 0, 0, .8);
    }
    /*Retina graphics!*/

    @media only screen and (-webkit-min-device-pixel-ratio: 1.5),
    only screen and (min--moz-device-pixel-ratio: 1.5),
    only screen and (min-device-pixel-ratio: 1.5) {
        #fancybox-loading,
        .fancybox-close,
        .fancybox-prev span,
        .fancybox-next span {
            background-image: url('fancybox_sprite@2x.png');
            background-size: 44px 152px;
            /*The size of the normal image, half the size of the hi-res image*/
        }
        #fancybox-loading div {
            background-image: url('fancybox_loading@2x.gif');
            background-size: 24px 24px;
            /*The size of the normal image, half the size of the hi-res image*/
        }
    }


    .jspContainer {
        overflow: hidden;
        position: relative;
    }

    .jspPane {
        position: absolute;
    }

    .jspVerticalBar {
        position: absolute;
        top: 0;
        right: 0;
        width: 16px;
        height: 100%;
        background: red;
    }

    .jspHorizontalBar {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 16px;
        background: red;
    }

    .jspCap {
        display: none;
    }

    .jspHorizontalBar .jspCap {
        float: left;
    }

    .jspTrack {
        background: #dde;
        position: relative;
    }

    .jspDrag {
        background: #bbd;
        position: relative;
        top: 0;
        left: 0;
        cursor: pointer;
    }

    .jspHorizontalBar .jspTrack,
    .jspHorizontalBar .jspDrag {
        float: left;
        height: 100%;
    }

    .jspArrow {
        background: #50506d;
        text-indent: -20000px;
        display: block;
        cursor: pointer;
        padding: 0;
        margin: 0;
    }

    .jspArrow.jspDisabled {
        cursor: default;
        background: #80808d;
    }

    .jspVerticalBar .jspArrow {
        height: 16px;
    }

    .jspHorizontalBar .jspArrow {
        width: 16px;
        float: left;
        height: 100%;
    }

    .jspVerticalBar .jspArrow:focus {
        outline: none;
    }

    .jspCorner {
        background: #eeeef4;
        float: left;
        height: 100%;
    }
    /* Yuk! CSS Hack for IE6 3 pixel bug :( */

    * html .jspCorner {
        margin: 0 -3px 0 0;
    }


.case {
  margin-bottom: 30px;
  display: flex;
  justify-content: space-between;
  background: #0e0d2c;

  font-family: 'Roboto', sans-serif;
  font-size: 0;
  color: white;
}

.case > * {
  width: 50%;
}

.case__info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;

  font-size: 16px;
}

.case__title {
  margin: 0 0 20px;

  line-height: 1.3em;
  font-size: 24px;
  font-weight: bold;
}

.case .case__descr-list {
  list-style: none;
  padding: 0 0 20px;
  margin: 0;
  flex-grow: 1;
}

.case .case__descr-list-item {
  margin-bottom: 10px;
  font-weight: 300;
}

.case .case__descr-list-item::before {
  display: none;
}

.case__descr-list--title {
  font-weight: 500;
}

.case__btn {
  height: auto;
  background: none;
  border-radius: 80px;
  border: 2px solid white;
  padding: 10px 50px 12px;
  align-self: flex-end;

  font-size: 18px;
  line-height: 1.5em;
  font-weight: normal;


  transition: 0.3s;
}

.case__btn:hover {
  border-color: #c41f4c;
}

.b-user_content img.case__img {
    height: 100%;
    object-fit: cover;
}

@media only screen and (max-width: 999px) {

}

@media only screen and (max-width: 767px) {
  .case__img {
    display: none;
  }

  .case__info {
    width: 100%;
    padding: 20px;

    font-size: 14px;
  }

  .case__title {
    font-size: 19px;
  }

  .case__btn {
    font-size: 14px;
    padding: 10px 40px 12px;
  }
}



@media screen and (max-width: 999px) {
#fixblock {display: none !important;}
#notfixblock {display: block !important;}
}

@media screen and (min-width: 1000px) {
#fixblock {display: block !important;}
#notfixblock {display: none !important;}
}

.page-heading-fullwidth {
    background: linear-gradient(92.65deg, #A9002E 20.67%, #E0003D 56.21%, #FF0045 100.63%);
    color: white;
    position: relative;
    padding: 40px 0;
}
.page-heading-fullwidth .b-breadcrumbs {
    color: white;
    background: transparent;
    margin: 0;
    padding: 0 0 40px;
}
.page-heading-fullwidth .b-breadcrumbs__a:after {
    filter: brightness(0) invert(1);
}
.page-heading-fullwidth .b-breadcrumbs .b-breadcrumbs__item {
    margin: 0;
}
.page-heading-h1 {
    margin: 0;
    font-weight: 700;
    font-size: 30px;
    padding-bottom: 40px;
}
.page-heading-description {
    font-weight: 400;
    font-size: 16px;
    line-height: 23px;
    max-width: 650px;
    padding-bottom: 40px;
}
.page-heading-fullwidth .header-triangles-container {
    position: absolute;
    right: 0;
    top: 0;
    overflow: hidden;
}
.uslugi-content-area {
    padding: 20px;
    overflow: auto;
}
.uslugi-content-area ul li:before {
    vertical-align: top;
    margin-top: 6px;
}
.uslugi-li-description {
    display: inline-block;
    width: 95%;
}
.uslugi-li-heading {
    margin: 0;
    font-family: Roboto;
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 23px;
    margin-bottom: 10px;
}
.uslugi-li-subheading {
    margin: 0;
    font-family: Roboto;
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 19px;
    color: rgba(0, 0, 0, 0.5);
    margin-bottom: 20px;
}
.page-heading {
    /*font-family: Journal SansSerif;*/
    font-style: normal;
    font-weight: bold;
    font-size: 30px;
    line-height: 43px;
}
.free-audit-form-fullwidth {
    position: relative;
    width: 100%;
    height: auto;
    background: linear-gradient(92.65deg, #A9002E 20.67%, #E0003D 51.47%, #860024 100.63%);
}
.free-audit-form-fullwidth .b-post_form__input {
    width: 273px;
    height: 50px;
    text-align: left;
}
.free-audit-form-fullwidth .btn {
    max-width: 380px;

    height: 50px;
}
.have-questions.free-audit-form-fullwidth .btn {
    width: 100%;
}
.free-audit-form-fullwidth .b-post_form_heading {
    font-style: normal;
    font-weight: bold;
    font-size: 30px;
    line-height: 43px;
    text-transform: uppercase;
    color: #FFFFFF;
    padding: 60px 0 20px 0;

}
.free-audit-form-fullwidth .b-post_form__text{
    font-family: Roboto;
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 23px;
    color: #FFFFFF;
}
.free-audit-form-fullwidth .b-post_form__descr {
    font-size: 14px;
    color: #ffffff;
    padding: 20px 0 60px;
    margin: 0;
}
.free-audit-form-fullwidth-image {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    text-align: right;
}
.free-audit-form-fullwidth-image img {
    height: 100%;
    max-width: 100%;
    width: 527px;
    height: 287px;
}
.cta.free-audit-form-fullwidth {
    text-align: center;
}
.cta-fullwidth-image {
    position: absolute;
    top: 0;
    left: 0;
}
.cta-fullwidth-image img{
    max-width: 100%;
    width: 362px;
    height: 302px;
}
.cta .b-post_form__fields {
    padding-bottom: 40px;
}
.order-seo.free-audit-form-fullwidth {
    text-align: center;
}
.order-seo.free-audit-form-fullwidth .wrap-in{
    position: relative;
    z-index: 2;
}
.order-seo.free-audit-form-fullwidth input, .order-seo.free-audit-form-fullwidth button {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 337px;
}
.form-order-seo-fullwidth-image {
    position: absolute;
    z-index: 1;
    top: 0;
    width: 100%;
    height: 100%;
    left: auto;
    right: auto;
}
.form-order-seo-fullwidth-image img {
    max-width: 100%;
    aspect-ratio: 1291/518;
    width: 1291px;
    height: auto;
}
.page-heading-advantages {
    text-align: center;
}
.advantages-item {
    width: 33%;
    float: left;
    display: flex;
    height: 50px;
    margin-bottom: 30px;
    align-items: center;
}
.advantages-item svg {
    margin-right: 20px;
    width: 50px;
    min-width: 50px;
}
.advantages-item p {
    margin: 0;
    line-height: 19px;
}
.text-center {
    text-align: center!important;
}
.pb0 {
    padding-bottom: 0!important;
}
.pt0 {
    padding-top: 0!important;
}
.p40 {
    padding: 40px;
}
.pb40 {
    padding-bottom: 40px!important;
}
.pt40 {
    padding-top: 40px!important;
}
.pb60 {
    padding-bottom: 60px!important;
}
.pl0 {
    padding-left: 0!important;
}
.pr0 {
    padding-right: 0!important;
}
.px100 {
    padding-left: 100px;
    padding-right: 100px;
}
.py60 {
    padding-top: 60px;
    padding-bottom: 60px;
}
.mt40 {
    margin-top: 40px!important;
}
.mb40 {
    margin-bottom: 40px!important;
}
.mt80 {
    margin-top: 80px!important;
}
.mb80 {
    margin-bottom: 80px!important;
}
.p-relative {
    position: relative;
}
.uslugi-content-area.list-3-in-row ol li {
    width: 31%;
    float: left;
    margin-bottom: 30px;
}
.uslugi-content-area.list-2-in-row ol li {
    width: 50%;
    float: left;
    margin-bottom: 30px;
}
.uslugi-content-area ol li p {
    margin: 0;
    padding-left: 60px;
}
.uslugi-content-area ol li:before {
    display:none;
}
.stages-block {
    padding: 20px;
    padding-top: 40px;
    background-color: white;
    border-radius: 15px;
}
.stages-block .b-user_content {
    margin: 0;
    border: 1px solid #E6E4E4;
    border-radius: 15px;
}
.stages-block .page-heading {
    margin-top: -35px;
    background-color: white;
    display: flex;
    width: fit-content;
    width: -moz-fit-content;
    padding: 10px;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 0;
}
.stages-block ol {
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.li-heading::before {
    position: static;
    top: 0;
    font-size: 16px;
    width: 35px;
    min-width: 35px;
    height: 35px;
    line-height: 35px;
    font-weight: 600;
    border: 2px solid #da2254;
    content: counter(li);
    counter-increment: li;
    display: inline-block;
    vertical-align: middle;
    color: #da2254;
    text-align: center;
    border-radius: 50%;
    margin-right: 20px;
}
.uslugi-content-area ol li p.li-heading {
    padding-left: 0;
    font-size: 18px;
    font-weight: 500;
    line-height: 21px;
    display: flex;
    align-items: center;
    margin-bottom: 5px;
    font-style: normal;
    font-weight: bold;
    font-size: 20px;
    line-height: 23px;
}
p.li-subheading {
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 23px;
    color: rgba(0, 0, 0, 0.5);
}
.tarif-list {
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}
.tarif-item {
    width: 30%;
    border: 2px solid red;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 150px;
    border-radius: 15px;
}
.tarif-item-heading {
    display: block;
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    margin-left: auto;
    padding: 0 10px;
    margin-right: auto;
    width: fit-content;
    width: -moz-fit-content;
    background: white;
    margin-top: -20px;
}
.tarif-item-description {
    padding: 30px;
}
.tarif-item-price {
    padding: 0px 30px 30px;
    font-weight: 900;
    font-size: 25px;
    line-height: 29px;
}
.tarif-item-button {
    text-align: center;
}
.tarif-price-area {
    position: absolute;
    display: block;
    bottom: 0;
    width: 100%;
    height: auto;
    padding-bottom: 40px;
}
.p-list {
    margin-top: 20px;
    padding-right: 20px;
}
.p-list-item {
    margin-left: 60px;
}
.p-list .p-list-item::before {
    content: "";
    width: 8px;
    height: 8px;
    border: 2px solid #da2254;
    border-radius: 50%;
    display: block;
    vertical-align: top;
    margin-top: 6px;
    margin-left: -47px;
    position: absolute;
}
#reviews-v2-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}
.reviews-v2-pagination,
.our_successes_swiper-pagination {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.reviews-v2-pagination .swiper-pagination-bullet,
.our_successes_swiper-pagination .swiper-pagination-bullet {
    border: none;
    background: rgba(255, 0, 69, 0.4);
}
.reviews-v2-pagination .swiper-pagination-bullet-active,
.our_successes_swiper-pagination .swiper-pagination-bullet-active {
    background: #FF0045;
    border: 1px solid #FF0045;
}
.review-v2-slide {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 0 0 40px 0;
}
.review-v2-image {
    width: 28%;
    text-align: center;
}
.review-v2-text {
    width: 67%;
}
.bordered-container-header {
    position: absolute;
    top: 10px;
    left: 0;
    z-index: 20;
    width: 100%;
    display: flex;
    justify-content: center;
}
.bordered-container-header h2 {
    padding: 0 20px;
    background-color: white;
}
.bordered-container {
    border: 1px solid lightgrey;
    position: relative;
    z-index: 10;
    border-radius: 15px;
}


#clients-slider {
    padding: 60px;
    margin: 0 auto;
    position: relative;
}
#reviews-v2-prev {
    background-image: url(/assets/img/cases_slider_arrow_left.png);
    left: -100px;
}
#reviews-v2-next {
    background-image: url(/assets/img/cases_slider_arrow_right.png);
    right: -100px;
}
#clients-slider-prev {
    background-image: url(/assets/img/cases_slider_arrow_left.png);
    left: -70px;
}
#clients-slider-next {
    background-image: url(/assets/img/cases_slider_arrow_right.png);
    right: -70px;
}
#clients-slider-prev, #clients-slider-next {
    position: absolute;
    z-index: 10;
    cursor: pointer;
    width: 27px;
    height: 48px;
    top: 129px;
}
#reviews-v2-prev, #reviews-v2-next {
    position: absolute;
    z-index: 10;
    cursor: pointer;
    width: 27px;
    height: 48px;
    top: 70px;
}
.cases-item {
    display: flex;
    gap: 20px;
}
.cases-item:not(:last-child) {
    margin-bottom: 80px;
}
.cases-item-image {
    width: 240px;
    min-width: 240px;
}
.cases-item-info {
    padding-left: 40px;
}
.cases-item-description {
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 23px;
    color: rgba(0, 0, 0, 0.7);
    margin: 40px 0;
}
.cases-item-heading {
    font-weight: bold;
    font-size: 22px;
    line-height: 26px;
    color: #000000;
}
.cases-item-heading::before {
    content: "";
    width: 8px;
    height: 8px;
    border: 2px solid #da2254;
    border-radius: 50%;
    display: block;
    vertical-align: top;
    margin-top: 6px;
    margin-left: -47px;
    position: absolute;
}
.cases-item-alert {
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    color: #FF0045;
}
.cases-item-numbers-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 80px;
    margin-top: 40px;
}
.cases-item-numbers-item-label {
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    color: #000000;
}
.cases-item-numbers-item-number {
    font-style: normal;
    font-weight: 900;
    font-size: 20px;
    line-height: 23px;
    color: #FF0045;
    margin-left: 20px;
}
.what-you-get-list {
    display: flex;
    flex-wrap: wrap;
    /*gap: 40px;*/
}
.what-you-get-item {
    /*gap: 40px; not supported on ios*/
    width: 47%;
    display: flex;
    margin-bottom: 40px;
    margin-right: 10px;
    margin-left: 10px;
}
.what-you-get-item-image {
    width: 100px;
    min-width: 100px;
    margin-right: 40px;
}
.what-you-get-item-image svg {
    width: 100%;
}
.what-you-get-item-heading {
    font-style: normal;
    font-weight: bold;
    font-size: 20px;
    line-height: 23px;
    color: #000000;
    margin-bottom: 20px;
}
.what-you-get-item-description {
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 19px;
    color: rgba(0, 0, 0, 0.5);
}
.form-have-questions-fullwidth-image {
    position: absolute;
    z-index: 1;
    top: 0;
    width: 100%;
    height: 100%;
    left: auto;
    right: auto;
    text-align: right;
}
.form-have-questions-fullwidth-image img {
    max-width: 100%;
    aspect-ratio: 684/611;
    width: 648px;
    height: auto;
}
.have-questions.free-audit-form-fullwidth .wrap-in {
    position: relative;
    z-index: 2;
}
.have-questions.free-audit-form-fullwidth input {
    display: block;
    margin-left: 0;
    width: 100%;
}
.have-questions.free-audit-form-fullwidth .b-post_form__textarea{
    margin-bottom: 0;
    margin-left: 0;
    text-align: left;
}
.have-questions .b-post_form__descr {
    padding: 10px;
}
.page-heading-fullwidth .wrap-in,
.free-audit-form-fullwidth .wrap-in
{
    position: relative;
    z-index: 2;
}
.free-audit-form-fullwidth-image,
.header-triangles-container
{
    z-index: 1;
}
.four-in-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.our-clients-item {
    width: 23%;
    text-align: center;
}
#clients-slider {
    display: block;
}
#clients-slider-mobile {
    display: none;
}
.blog-top-banner img,
.blog-side-banner img {
    aspect-ratio: 29/45;
    max-width:100%;
    width: 290px;
    height: auto;
    border-radius: 15px;
}
.blog-article .b-publication img {
    aspect-ratio: 19/10;
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 15px;
}
.auto_popup .b-popup_form__close {
    right: 0;
    top: 0;
    filter: grayscale(100%) sepia(100%) hue-rotate(260deg) saturate(1000%) brightness(1);
    padding: 10px;
    width: 30px;
    height: 30px;
    background: url('/assets/img/btn_close.png?1455841150') no-repeat center;
}
@media only screen and (max-width: 767px) {
    #clients-slider {
        display: none;
    }
    #clients-slider-mobile {
        display: block;
        padding: 20px 20px 10px 20px;
    }
    .our-clients-item {
        width: 100%;
    }
    .order-seo.free-audit-form-fullwidth input, .order-seo.free-audit-form-fullwidth button {
        max-width: 100%;
        width:100%;
    }
    .b-breadcrumbs {
        display: none;
    }
    .uslugi-content-area {
        padding: 0;
    }
    .uslugi-li-description {
        width: 90%;
    }
    .advantages-item {
        width: 100%;
    }
    .cta.free-audit-form-fullwidth .btn {
        margin: auto;
        max-width: 150px;
    }
    .free-audit.free-audit-form-fullwidth .btn {
        width: 100%;
    }
    .uslugi-content-area.list-3-in-row ol li {
        width: 100%;
    }
    .tarif-item {
        width: 100%;
    }
    .tarif-item-heading {
        font-size: 22px;
    }
    .tarif-item-button {
        padding: 0 40px;
    }
    .uslugi-content-area.list-2-in-row ol li {
        width: 100%;
    }
    .cases-item {
        flex-wrap: wrap;
        gap: 20px 0;
    }
    .cases-item-image {
        width: 100%;
        margin-top: 40px;
    }
    .what-you-get-item {
        width: 100%;
        /*gap: 20px; not supported on ios*/
    }
    .what-you-get-item-image {
        width: 60px;
        min-width: 60px;
        margin-right: 20px;
    }
    .review-v2-image {
        width: 100%;
    }
    .review-v2-text {
        width: 100%;
        margin-top: 40px;
    }
    #reviews-v2-prev, #reviews-v2-next {
        bottom: 0;
        top: auto;
        height: 20px;
        width: 11px;
        background-size: cover;
    }
    #reviews-v2-prev {
        left: 0;
    }
    #reviews-v2-next {
        right: 0;
    }
    .sm-mt-40 {
        margin-top: 40px;
    }
}
@media only screen and (max-width: 999px) {
    .page-heading {
        font-size: 25px;
    }
    .b-post_form_heading {
        font-size: 25px;
    }
    .uslugi-content-area ol li p.li-heading {
        font-size: 18px;
    }
    .li-heading::before {
        margin-left: 10px;
        width: 25px;
        min-width: 25px;
        height: 25px;
        line-height: 25px;
    }
    .p-list-item {
        margin-left: 40px;
    }
    .p-list .p-list-item::before {
        margin-left: -26px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 999px) {
    .uslugi-content-area.list-3-in-row ol li {
        width: 48%;
    }
    .tarif-item {
        width: 47%;
    }
    .uslugi-content-area.list-2-in-row ol li {
        width: 100%;
    }
}
@media only screen and (min-width: 768px) {
    .md-px100 {
        padding-left: 100px;
        padding-right: 100px;
    }
    .d-md-none {
        display: none;
    }
}
.b-user_content #table-of-contents ol > ul li::before {
    counter-reset: li;
    content: "";
    width: 8px;
    height: 8px;
    margin-left: 30px;
}
.b-user_content #table-of-contents li:last-child {
    margin-bottom: 0;
}
.b-user_content #table-of-contents ol > ul {
    margin-bottom: 13px;
}

.footer-menu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}
@media screen and (max-width:999px) {
    .desktop-only {
        display: none;
    }
}

.toc-heading {
    cursor: pointer;
    color: white;
    background-color: #da2254;
    padding: 10px 20px;
    user-select: none;
    margin-top: 20px;
    -webkit-transition: background-color 100ms linear;
    -ms-transition: background-color 100ms linear;
    transition: background-color 100ms linear;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
}
.toc-heading.opened {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}
.toc-heading:hover {
    background-color: #c41f4c;
    -webkit-transition: background-color 100ms linear;
    -ms-transition: background-color 100ms linear;
    transition: background-color 100ms linear;
}
.toc-items {
    padding: 20px;
    background-color: #fffafb;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
}
.toc-items ol {
    margin: 0;
}
.fade-enter-active, .fade-leave-active {
  transition: opacity 0.5s;
}
.fade-enter-from, .fade-leave-to {
  opacity: 0;
}
.b-footer__info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 30px;
}

.b-footer__copyright {
    color: white;
    text-align: center;
    padding-bottom: 57px;
}
@media screen and (max-width:999px) {
    .b-footer__info {
        grid-template-columns: 1fr;
    }
}
ul.footer-menu-items li:not(:last-child) {
    margin-bottom: 10px;
}
.footer-menu-items {
    list-style: none;
}
.footer-menu-items a {
    color: #0c0d2b;
}
.footer-menu-items a:hover {
    color: #da2254;
}
.service-themes {
    padding: 20px;
}
.service-themes ul {
    columns: 3;
    margin: 0;
}
@media screen and (max-width:767px) {
    .service-themes ul {
        columns: 1;
    }
}
.service-themes ul li {
  break-inside: avoid;
}
.show-hide-button-area {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100%;
}
.show-hide-button {
    text-align: center;
    color: #c41f4c;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    padding: 20px 0 10px 0;
    transition: color 0.3s ease;
    background: rgb(255,255,255);
    background: linear-gradient(0deg, rgba(255,255,255,1) 67%, rgba(255,255,255,0) 100%);
    margin-bottom: -1px;
}
.show-hide-button:hover {
    cursor: pointer;
    color: white;
    background: rgb(218,34,84);
    background: linear-gradient(0deg, rgba(218,34,84,1) 67%, rgba(255,255,255,0) 100%);
}
.relative {
    position: relative;
}
.footer-sitemap-link {
    font-size: 12px;margin-top: 10px;
}
.vue-quiz-container {
    margin: 0 0 40px;
    border: 1px solid #E6E4E4;
    border-radius: 15px;
    margin-bottom: 0;
}
.vue-quiz-container .page-heading {
    margin-top: -35px;
    background-color: white;
    display: flex;
    width: fit-content;
    width: -moz-fit-content;
    padding:10px;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 0;
}
.vue-quiz-tab {
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.vue-quiz-tab form {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
@media screen and (min-width: 768px) {
    .vue-quiz-tab form {
        width: 100%;
        max-width: 600px;
        padding-left: 15px;
        padding-right: 15px;
    }
}
.vue-quiz-tab-heading {
    margin:0;
    margin-bottom: 0px;
    font-family: Roboto;
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 23px;
    margin-bottom: 30px;
    text-align: center;
}
.vue-quiz-tab [type="radio"]:checked,
.vue-quiz-tab [type="radio"]:not(:checked) {
    position: absolute;
    left: -9999px;
}
.vue-quiz-tab [type="radio"]:checked + label,
.vue-quiz-tab [type="radio"]:not(:checked) + label
{
    position: relative;
    padding-left: 28px;
    cursor: pointer;
    line-height: 20px;
    display: inline-block;
    transition: color 0.3s ease;
}
.vue-quiz-tab [type="radio"]:not(:checked) + label:hover {
    color: #c41f4c;
}
.vue-quiz-tab [type="radio"]:checked + label {
    color: #da2254;
}
.vue-quiz-tab [type="radio"]:checked + label:before,
.vue-quiz-tab [type="radio"]:not(:checked) + label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 18px;
    height: 18px;
    border: 1px solid #ddd;
    border-radius: 100%;
    background: #fff;
}
.vue-quiz-tab [type="radio"]:checked + label:after,
.vue-quiz-tab [type="radio"]:not(:checked) + label:after {
    content: '';
    width: 12px;
    height: 12px;
    background: #F87DA9;
    position: absolute;
    top: 4px;
    left: 4px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
.vue-quiz-tab [type="radio"]:not(:checked) + label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}
.vue-quiz-tab [type="radio"]:checked + label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}
.vue-quiz-tab [type="tesx"] {
    border: 2px solid #e6e6e6;
    border-radius:10px;
}

.vue-quiz-nav {
    padding: 0 40px 40px;
    display: flex;
    justify-content: center;
    gap: 4px;
}
.vue-quiz-nav .button-next,
.vue-quiz-nav .button-prev {
    background-color: #da2254;
    color: white;
    border-radius: 7px;
    padding: 10px 20px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}
.vue-quiz-nav .button-next.disabled,
.vue-quiz-nav .button-prev.disabled {
    background-color: #da22546e;
    pointer-events: none;
}
.vue-quiz-nav .button-next:hover,
.vue-quiz-nav .button-prev:hover {
    background-color: #c41f4c;
}
.vue-quiz-input-wrap:not(:last-child) {
    margin-bottom: 10px;
}
.vue-quiz-thank-you {
    padding: 40px;
    display: flex;
    justify-content: center;
    font-size: 24px;
    text-align: center;
}
form.vue-quiz-lead-inputs {
    flex-direction: row;
    width: 100%;
    justify-content: center;
}
@media (max-width:767px) {
    .vue-quiz-container .page-heading {
        line-height: 25px;
    }
    .vue-quiz-tab {
        padding: 20px 10px;
        display: block;
    }
    .vue-quiz-nav {
        padding: 0 0 20px;
    }
    .vue-quiz-tab [type="radio"]:checked + label,
    .vue-quiz-tab [type="radio"]:not(:checked) + label {
        font-size: 14px;
    }
    .vue-quiz-container .page-heading {
        width: 80%;
        margin-top: -50px;
    }
    .sm-pt50 {
        padding-top: 50px!important;
    }
    form.vue-quiz-lead-inputs {
        flex-direction: column;
    }
    .vue-quiz-tab form {
        display: block;
    }
    .vue-quiz-tab form .b-calc__checkbox + label {
        width: 100%;
        display: block;
        padding: 0;
    }
    .vue-quiz-tab form .b-calc__checkbox-container {
        display: block;
        width: 100%;
        position: relative;
    }
}
.service-themes {
    padding: 20px;
}
.service-themes ul {
    columns: 3;
    margin: 0;
}
@media screen and (max-width:767px) {
    .service-themes ul {
        columns: 1;
    }
}
.service-themes ul li {
  break-inside: avoid;
}
.show-hide-button-area {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100%;
}
.show-hide-button {
    text-align: center;
    color: #c41f4c;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    padding: 20px 0 10px 0;
    transition: color 0.3s ease;
    background: rgb(255,255,255);
    background: linear-gradient(0deg, rgba(255,255,255,1) 67%, rgba(255,255,255,0) 100%);
    margin-bottom: -1px;
}
.show-hide-button:hover {
    cursor: pointer;
    color: white;
    background: rgb(218,34,84);
    background: linear-gradient(0deg, rgba(218,34,84,1) 67%, rgba(255,255,255,0) 100%);
}
.relative {
    position: relative;
}

.faq-item {
    border: 2px solid #da2254;
    border-radius: 30px;
    overflow: hidden;
}
.faq-item:hover .faq-question,
.faq-item.opened .faq-question {
    background-color: #da2254;
    color: #fff;
}
.faq-item:not(:last-child) {
    margin-bottom: 10px;
}
.faq-question {
    padding: 10px 20px;
    text-align: center;
    font-weight: 600;
    transition: color 0.3s ease;
    cursor: pointer;
}
.faq-question h2 {
    margin: 0;
    font-size: 18px;
}
.faq-answer {
    display: none;
    padding: 20px;
}
.faq-item.opened .faq-answer {
    display: block;
}
.employees_block {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 50px;
}
.employee {
    text-align: center;
    flex: 1 1 calc(20% - 40px);
    max-width: 200px;
    margin-bottom: 20px;
}
.employee-photo {
    width: 180px;
    height: 180px;
    overflow: hidden;
    margin: 0 auto;
}
.employee-photo img {
    border-radius: 50%;
    border: 3px solid #be3358;
    padding: 5px;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.employee-name {
    margin-top: 20px;
    font-weight: 600;
    font-size: 20px;
}
.employee-position {
    margin-top: 5px;
    font-size: 14px;
    color: gray;
}
.pb20 {
    padding-bottom: 20px;
}
.b-post_form__descr input[type="checkbox"] {
    appearance: checkbox;
}
.сertificates_fancybox img {
    max-width: 100%;
    aspect-ratio: 320/450;
    border-radius: 15px;
}