@import url('https://fonts.googleapis.com/css?family=Montserrat:400,500,600&amp;subset=cyrillic');
/* ЦВЕТА
===============================================================

yellow (рыжий)
-------------------
color: #e2a008
hover: #eeaa0c
active: #e2a008
-------------------

blue (синий)
-------------------
color: #4594c7
hover: #377eac
active: #43a1de
-------------------

darkblue (синий)
-------------------
color: #034f80
hover: #094268
active: #0964a1
-------------------

END ЦВЕТА ====================== */

@media (max-width: 575px) {
    .col-15 {
        max-width: 20%;
    }
}

@media (min-width: 576px) and (max-width: 767px) {
    .col-sm-15 {
        max-width: 20%;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .col-md-15 {
        max-width: 20%;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .col-lg-15 {
        max-width: 20%;
    }
}

@media (min-width: 1200px) {
    .col-xl-15 {
        max-width: 20%;
    }
}

/* ОБЩИЕ СТИЛИ
=============================================================== */

body,
html {
    min-height: 100vh;
}

body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    box-orient: vertical;
    -webkit-box-orient: vertical;
    box-direction: normal;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    line-height: 1.3;
    color: #343434;
    background-color: #fff;
}

p {
    line-height: 1.5;
}

a {
    color: #4594c7;
    -webkit-transition: 0.2s;
    transition: 0.2s;
}

a:hover {
    color: #4594c7;
}

.h1,
h1,
.h2,
h2,
.h3,
h3,
.h4,
h4 {
    line-height: 1.1;
    font-weight: normal;
    font-weight: 600;
}

@media (max-width: 991px) {
    .h1,
    h1 {
        font-size: 2.3rem;
    }
    .h2,
    h2 {
        font-size: 1.8rem;
    }
    .h3,
    h3 {
        font-size: 1.6rem;
    }
    .h4,
    h4 {
        font-size: 1.3rem;
    }
}

@media (max-width: 575px) {
    body {
        font-size: 14px;
    }
    .h1,
    h1 {
        font-size: 2.1rem;
    }
    .h2,
    h2 {
        font-size: 1.65rem;
    }
    .h3,
    h3 {
        font-size: 1.5rem;
    }
    .h4,
    h4 {
        font-size: 1.25rem;
    }
}

img {
    display: block;
    max-width: 100%;
    border-radius: 4px;
}

ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.site-body {
    background: #fff;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
    box-flex: 1;
    -webkit-box-flex: 1;
    -webkit-box-shadow: 0 3px 12px rgba(0, 0, 0, 0.25);
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.25);
}

.rtl {
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
    -webkit-filter: FlipH;
    filter: FlipH;
    -ms-filter: 'FlipH';
}

/* END ОБЩИЕ СТИЛИ ====================== */

/* КНОПКИ
=============================================================== */

.btn {
    height: 40px;
    line-height: 38px;
    padding: 0 16px;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    -webkit-transition: 0.2s;
    transition: 0.2s;
    text-decoration: none !important;
    font-weight: 500;
}

.btn i {
    font-weight: normal;
    line-height: 38px;
    vertical-align: bottom;
    margin-right: 4px;
}

.btn-lg {
    height: 54px;
    line-height: 52px;
    padding: 0 24px;
    font-size: 17px;
}

.btn-lg i {
    line-height: 52px;
}

.btn-sm {
    height: 32px;
    line-height: 30px;
    padding: 0 12px;
    font-size: 13px;
}

.btn-sm i {
    line-height: 30px;
    font-size: 22px;
}

.btn-yellow {
    background: #e2a008;
    border-color: #e2a008;
    color: #fff !important;
}

.btn-yellow:hover,
.btn-yellow:focus {
    background: #eeaa0c;
    border-color: #eeaa0c;
    color: #fff !important;
}

.btn-yellow:active {
    background: #e2a008 !important;
    border-color: #e2a008 !important;
    color: #fff !important;
}

.btn-outline-yellow {
    color: #343434;
    border-color: #e2a008;
}

.btn-outline-yellow:hover,
.btn-outline-yellow:focus {
    background: #eeaa0c;
    border-color: #eeaa0c;
    color: #fff;
}

.btn-outline-yellow:active {
    background: #e2a008 !important;
    border-color: #e2a008 !important;
    color: #fff !important;
}

.btn-blue {
    background: #4594c7;
    border-color: #4594c7;
    color: #fff !important;
}

.btn-blue:hover,
.btn-blue:focus {
    background: #377eac;
    border-color: #377eac;
    color: #fff !important;
}

.btn-blue:active {
    background: #43a1de !important;
    border-color: #43a1de !important;
    color: #fff !important;
}

.btn-outline-blue {
    color: #343434;
    border-color: #4594c7;
}

.btn-outline-blue:hover,
.btn-outline-blue:focus {
    background: #377eac;
    border-color: #377eac;
    color: #fff;
}

.btn-outline-blue:active {
    background: #43a1de !important;
    border-color: #43a1de !important;
    color: #fff !important;
}

.btn-darkblue {
    background: #034f80;
    border-color: #034f80;
    color: #fff !important;
}

.btn-darkblue:hover,
.btn-darkblue:focus {
    background: #094268;
    border-color: #094268;
    color: #fff !important;
}

.btn-darkblue:active {
    background: #0964a1 !important;
    border-color: #0964a1 !important;
    color: #fff !important;
}

.btn-outline-darkblue {
    color: #343434;
    border-color: #034f80;
}

.btn-outline-darkblue:hover,
.btn-outline-darkblue:focus {
    background: #094268;
    border-color: #094268;
    color: #fff;
}

.btn-outline-darkblue:active {
    background: #0964a1 !important;
    border-color: #0964a1 !important;
    color: #fff !important;
}

/* END КНОПКИ ====================== */

/* ЭЛЕМЕНТЫ ФОРМ
=============================================================== */

button {
    cursor: pointer;
    border: none;
    background-color: transparent;
    outline: none !important;
    padding: 0;
}

label {
    font-weight: 500;
}

.form-control {
    border-radius: 2px;
    padding: 0 16px;
    height: 40px;
    line-height: 40px;
    font-size: 14px;
}

.form-control::-webkit-input-placeholder {
    color: rgba(0, 0, 0, 0.25);
}

.form-control::-moz-placeholder {
    color: rgba(0, 0, 0, 0.25);
}

.form-control:-moz-placeholder {
    color: rgba(0, 0, 0, 0.25);
}

.form-control:-ms-input-placeholder {
    color: rgba(0, 0, 0, 0.25);
}

textarea.form-control {
    line-height: 1.3;
    padding-top: 16px;
    padding-bottom: 16px;
    min-height: 120px;
}

.select {
    position: relative;
}

.select::after {
    content: 'keyboard_arrow_down';
    font-family: 'Material Icons';
    font-weight: normal;
    font-style: normal;
    letter-spacing: normal;
    text-transform: none;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-feature-settings: 'liga';
    font-feature-settings: 'liga';
    position: absolute;
    top: 0;
    right: 16px;
    line-height: 40px;
    color: rgba(0, 0, 0, 0.5);
    font-size: 18px;
    z-index: 1;
}

.select select.form-control {
    cursor: pointer;
    height: 40px !important;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    padding-right: 42px;
}

.checkbox-item,
.radio-item {
    display: block;
    line-height: 1.3;
    cursor: pointer;
}

.checkbox-item:last-child,
.radio-item:last-child {
    margin-bottom: 0;
}

.checkbox-item .item-name,
.radio-item .item-name {
    position: relative;
    display: block;
}

.checkbox-item>i,
.radio-item>i {
    margin-top: -2px;
}

.checkbox-item>i::before,
.radio-item>i::before {
    font-family: 'Material Icons';
    font-weight: normal;
    font-style: normal;
    letter-spacing: normal;
    text-transform: none;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: 'liga';
    font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
    color: #343434;
    font-size: 22px;
    line-height: 20px;
}

.checkbox-item input+i::before {
    content: 'check_box_outline_blank';
}

.checkbox-item input:checked+i::before {
    content: 'check_box';
    color: #4594c7;
}

.radio-item input+i::before {
    content: 'radio_button_unchecked';
}

.radio-item input:checked+i::before {
    content: 'radio_button_checked';
    color: #4594c7;
    color: #e7f1f8;
}

.validation-desc {
    display: block;
    color: rgba(0, 0, 0, 0.5);
    line-height: 1.3;
}

.add-file {
    margin: 0;
}

.delete-file {
    margin-left: 8px;
    cursor: pointer;
    color: #d63317;
    -webkit-transition: 0.2s;
    transition: 0.2s;
    opacity: 0.8;
}

.delete-file:hover {
    opacity: 1;
}

/* END ЭЛЕМЕНТЫ ФОРМ ====================== */

/* ВАЛИДАЦИЯ
=============================================================== */

.validation_block {
    border: 1px solid transparent;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 2px;
    overflow: hidden;
}

.has-warning .form-control,
.has-error .form-control,
.invalid {
    border-color: #d63317 !important;
}

.has-warning .help-block,
.has-error .help-block {
    display: block;
    margin-top: 6px;
    font-size: 13px;
    color: #d63317;
}

.form-messages .alert {
    margin: 0 0 8px;
    font-size: 14px;
    padding: 8px 16px;
    font-weight: 500;
    line-height: 1.4;
}

/* END ВАЛИДАЦИЯ ====================== */

/* КОНТЕНТ MODX
=============================================================== */

.modx {
    background: #fff;
    font-size: inherit;
}

.modx h1 {
    font-size: 200%;
}

.modx h2 {
    font-size: 170%;
}

.modx h3 {
    font-size: 130%;
}

.modx h4 {
    font-size: 110%;
}

.modx h5,
.modx h6 {
    font-size: 100%;
}

.modx img[style*='float: left'] {
    display: block;
    margin-right: 24px;
    margin-bottom: 16px;
}

.modx img[style*='float: right'] {
    display: block;
    margin-left: 24px;
    margin-bottom: 16px;
}

@media (max-width: 575px) {
    .modx img[style*='float: left'] {
        margin-right: 0;
        float: none !important;
    }
    .modx img[style*='float: right'] {
        margin-left: 0;
        float: none !important;
    }
}

.modx img {
    max-width: 100%;
    height: auto;
}

.modx table {
    margin-bottom: 16px;
    border: none !important;
}

.modx .bigtable {
    position: relative;
    border: 1px solid transparent;
}

.modx .bigtable .big-body {
    overflow: auto;
}

.modx .bigtable table {
    margin-bottom: 0;
}

.modx .bigtable .open {
    position: absolute;
    right: 10px;
    top: 10px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    background: #4594c7;
    border-radius: 2px;
    color: #fff;
    z-index: 1;
    opacity: 0;
    -webkit-transition: 0.2s;
    transition: 0.2s;
    cursor: pointer;
    font-size: 18px;
}

.modx .bigtable:hover {
    border-color: #4594c7;
}

.modx .bigtable:hover .open {
    opacity: 0.7;
}

@media (max-width: 991px) {
    .modx .bigtable {
        border-color: rgba(0, 0, 0, 0.1);
    }
    .modx .bigtable .open {
        opacity: 0.7;
    }
}

.modx .bigtable:hover .open:hover {
    opacity: 1;
}

.modx .bigtable .open::after {
    content: 'zoom_out_map';
    font-family: 'Material Icons';
    font-weight: normal;
    font-style: normal;
    letter-spacing: normal;
    text-transform: none;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: 'liga';
    font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
}

.table-opened {
    overflow: hidden;
}

.modx .back-table {
    position: fixed;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
    opacity: 0;
    visibility: hidden;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.75);
    -webkit-transition: 0.2s;
    transition: 0.2s;
}

.modx .bigtable.opened+.back-table {
    opacity: 1;
    visibility: visible;
}

.modx .bigtable.opened {
    position: fixed;
    z-index: 10000;
    right: 15px;
    left: 15px;
    top: 15px;
    bottom: 15px;
    background: #fff;
    overflow: auto;
}

.modx .bigtable.opened .open {
    position: fixed;
    right: 40px;
    top: 40px;
    opacity: 0.5;
    background: #d63317;
    width: 40px;
    height: 40px;
    line-height: 40px;
}

.modx .bigtable.opened .open:after {
    content: 'close';
}

.modx .bigtable.opened table {
    min-width: 100% !important;
}

@media (min-width: 992px) {
    .modx .bigtable.opened table {
        width: 100% !important;
    }
}

.modx tr {
    height: auto !important;
    width: auto !important;
}

.modx td,
.modx th {
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 15px;
    background: #fff;
    height: auto !important;
    width: auto !important;
}

.modx th,
.modx thead td,
.modx tfoot td {
    background: rgba(0, 0, 0, 0.03);
    font-weight: bold;
}

.modx thead td {
    border-bottom: none;
}

.modx caption {
    caption-side: top;
    color: initial;
    font-size: 120%;
    font-weight: 500;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: none;
    padding: 15px;
    background: #fff;
}

.modx tfoot td {
    border-top: none;
}

.modx h1,
.modx h2,
.modx h3 {
    margin: 0 0 16px;
    line-height: 1.3;
}

.modx *+h1,
.modx *+h2,
.modx *+h3 {
    margin-top: 32px;
}

.modx ol {
    list-style-type: decimal;
}

.modx ul {
    list-style-type: disc;
}

.modx ol,
.modx ul {
    margin: 0 0 24px;
    padding: 0 0 0 20px;
    list-style-position: initial;
}

.modx hr {
    margin: 32px 0;
    background-color: rgba(0, 0, 0, 0.1);
    height: 1px;
    border: none;
}

.modx a {
    text-decoration: underline;
    color: #4594c7;
}

.modx a:hover,
.modx a:focus {
    text-decoration: none;
}

.modx iframe {
    display: block;
    max-width: 100%;
    max-height: 50vw;
    border: none;
}

.modx li {
    line-height: 1.3;
    margin-bottom: 6px;
}

.modx p {
    line-height: 1.5;
    margin-bottom: 16px;
}

.modx>*:last-child {
    margin-bottom: 0;
}

.modx .container,
.modx .row,
.modx [class*='col-'] {
    display: block !important;
    float: none !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
}

.modx h1::after,
.modx h2::after,
.modx h3::after,
.modx h4::after,
.modx h5::after,
.modx h6::after,
.modx h1::before,
.modx h2::before,
.modx h3::before,
.modx h4::before,
.modx h5::before,
.modx h6::before,
.modx table::after,
.modx table::before {
    content: '';
    display: table;
    clear: both;
}

/* END КОНТЕНТ MODX ====================== */

/* ТЕЛЕФОНЫ
=============================================================== */

.phone-link {
    position: relative;
    text-decoration: none !important;
    white-space: nowrap;
}

.phone-link span,
.phone-link img {
    display: block;
}

.phones .operator {
    margin-right: 6px;
}

.phone-link .operator {
    margin-right: 6px;
    border-radius: 2px;
    overflow: hidden;
    border-radius: 3px;
}

.phone-link .code {
    font-size: 90%;
    margin-right: 6px;
}

.phone-link .number {
    font-weight: 600;
}

.phone-link .messanger {
    margin-left: 6px;
    border-radius: 2px;
    overflow: hidden;
}

/* END ТЕЛЕФОНЫ ====================== */

/* КОНТАКТНЫЕ ДАННЫЕ
=============================================================== */

.contacts li {
    position: relative;
}

.contacts i {
    margin-right: 6px;
    font-size: 18px;
    color: #727272;
}

.contacts img {
    margin-right: 6px;
    border-radius: 2px;
    display: block;
}

.contacts a {
    text-decoration: none;
}

/* END КОНТАКТНЫЕ ДАННЫЕ ====================== */

/* ЦЕНЫ
=============================================================== */

.price .old {
    font-size: 90%;
    text-decoration: line-through;
    color: rgba(0, 0, 0, 0.5);
}

.price .new {
    font-size: 110%;
    font-weight: 600;
    color: #343434;
}

/* END ЦЕНЫ ====================== */

/* СТАТУСЫ
=============================================================== */

.status>span {
    height: 30px;
    border: 1px solid transparent;
    display: inline-block;
    border-radius: 15px;
    padding: 0 12px;
    white-space: nowrap;
}

.status>span span {
    font-weight: 500;
}

.status i {
    font-size: 18px;
    margin-right: 6px;
}

.status .yes {
    color: #74ab34;
    border-color: #74ab34;
}

.status .no {
    color: rgba(0, 0, 0, 0.5);
    border-color: rgba(0, 0, 0, 0.5);
}

/* END СТАТУСЫ ====================== */

/* СТИКЕРЫ
=============================================================== */

.labels {
    position: absolute;
    left: 0;
    top: 6px;
    z-index: 1;
}

.labels span {
    display: block;
    width: auto;
    text-align: center;
    height: 24px;
    line-height: 24px;
    padding: 0 12px;
    font-size: 11px;
    color: #fff;
    margin: 0 0 6px;
    font-weight: 500;
    float: left;
    clear: both;
    position: relative;
    -webkit-box-shadow: 6px 3px 25px -5px #000000;
    box-shadow: 6px 3px 25px -5px #000000;
}

.labels span::before {
    content: '';
    width: 0;
    height: 0;
    position: absolute;
    top: 0;
    right: -12px;
    z-index: 1;
    border: 12px solid transparent;
}

.labels span::after {
    content: '';
    position: absolute;
    width: 0;
    top: 0;
    bottom: -4px;
    left: -8px;
    border: 4px solid transparent;
    border-top: 1px solid transparent;
}

.labels span.sale {
    background: #e75c00;
}

.labels span.sale::before {
    border-bottom-color: #e75c00;
    border-top-color: #e75c00;
}

.labels span.sale::after {
    border-right-color: #e75c00;
}

.labels span.new {
    background: #1aa05f;
}

.labels span.new::before {
    border-bottom-color: #1aa05f;
    border-top-color: #1aa05f;
}

.labels span.new::after {
    border-right-color: #1aa05f;
}

.labels span.hit {
    background: #e2a008;
}

.labels span.hit::before {
    border-bottom-color: #e2a008;
    border-top-color: #e2a008;
}

.labels span.hit::after {
    border-right-color: #e2a008;
}

.labels span.soon {
    background: #4594c7;
}

.labels span.soon::before {
    border-bottom-color: #4594c7;
    border-top-color: #4594c7;
}

.labels span.soon::after {
    border-right-color: #4594c7;
}

/* END СТИКЕРЫ ====================== */

/* DROPLIST
=============================================================== */

.drop-list li {
    line-height: 1.2;
    margin: 0;
}

.drop-list li a {
    display: block;
    color: #343434;
    padding: 8px 0;
    font-weight: 500;
}

.drop-list li a span {
    display: block;
}

.drop-list li a span:not(.arrow):hover,
.drop-list li:not(.drop)>a:hover {
    color: #4594c7;
}

.drop-list li.active>a,
.drop-list li.active>a span {
    color: #4594c7 !important;
}

.drop-list li.drop>a {
    position: relative;
    padding-right: 32px;
}

.drop-list li.drop>a .arrow {
    font-family: 'Material Icons';
    font-weight: normal;
    font-style: normal;
    letter-spacing: normal;
    text-transform: none;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: 'liga';
    font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
    position: absolute;
    top: 50%;
    right: 0;
    bottom: 0;
    width: 24px;
    height: 24px;
    margin-top: -13px;
    line-height: 24px;
    text-align: center;
    color: #343434;
    border-radius: 2px;
    overflow: hidden;
    -webkit-transition: 0.2s;
    transition: 0.2s;
}

.drop-list li.drop>a .arrow::before {
    content: 'keyboard_arrow_down';
}

.drop-list li.drop>a.opened .arrow::before {
    content: 'keyboard_arrow_up';
}

.drop-list li.drop.active>a {
    padding-right: 0;
}

.drop-list li.drop.active>a .arrow {
    display: none;
}

.drop-list li.drop>a .arrow:hover {
    background: rgba(0, 0, 0, 0.05);
}

.drop-list li.drop>a.opened .arrow {
    background: #e2a008;
    color: #fff;
}

.drop-list li.drop>ul {
    padding: 4px 0 12px;
    position: relative;
    z-index: 1;
    font-size: 13px;
}

.drop-list li.drop>ul>li>a {
    padding-left: 16px;
    position: relative;
}

.drop-list li.drop>ul>li>a::before {
    content: 'keyboard_arrow_right';
    font-family: 'Material Icons';
    font-weight: normal;
    font-style: normal;
    letter-spacing: normal;
    text-transform: none;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: 'liga';
    font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
    color: #4594c7;
    font-size: 14px;
    vertical-align: middle;
    margin-left: -3px;
    position: absolute;
    left: 0;
}

.drop-list li.drop>ul>li>ul>li>a::before {
    display: none;
}

.drop-list li.drop.active>ul {
    display: block !important;
}

/* END DROPLIST ====================== */

/* FANCYBOX
=============================================================== */

.fancybox-link {
    display: block;
    position: relative;
    background: #fff;
}

.fancybox-link i {
    position: absolute;
    display: block;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    font-size: 20px;
    text-align: center;
    line-height: 40px;
    margin-top: -20px;
    margin-left: -20px;
    opacity: 0;
    color: #fff;
    background: #4594c7;
    -webkit-transition: 0.2s;
    transition: 0.2s;
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
    border-radius: 2px;
    overflow: hidden;
    z-index: 1;
}

.fancybox-link img {
    -webkit-transition: opacity 0.5s;
    transition: opacity 0.5s;
}

.fancybox-link:hover img {
    opacity: 0.25;
}

.fancybox-link:hover i {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}

/* END FANCYBOX ====================== */

/* HEADER
=============================================================== */

header {
    position: relative;
    z-index: 4;
}

.header-body {
    position: relative;
    padding: 10px 0;
    padding-top: 28px;
    background-image: url(/assets/images/eight_horns_75.png);
    background-repeat: repeat;
    background-size: 124px;
}

.header-body::before {
    z-index: 1;
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    height: 16px;
    background-color: #ffffff;
    background-image: url(/assets/images/arnamient.png);
    background-position: top;
    background-repeat: repeat-x;
    background-size: contain;
    -webkit-box-shadow: 0 0 15px -5px #000;
    box-shadow: 0 0 15px -5px #000;
}

.header-body .logo {
    display: block;
    text-decoration: none;
}

.header-body a {
    color: #343434;
}

.header-title {
    color: #034f80;
    font-weight: 600;
}

.header-col {
    padding: 0 42px 0 24px;
}

@media (max-width: 1199px) {
    .header-body .logo {
        width: 220px;
    }
    .header-col {
        padding: 0 24px 0 0;
    }
    .header-col:last-child {
        padding-right: 0;
    }
}

@media (max-width: 991px) {
    .header-col {
        padding: 0 15px;
    }
    .header-col:last-child {
        padding-right: 15px;
    }
    .header-body .logo {
        width: 100%;
    }
    .header-body .logo img {
        margin: 0 auto;
    }
}

@media (max-width: 575px) {
    .header-col {
        padding: 0;
        text-align: center;
    }
}

/* END HEADER ====================== */

/* ВЕРХНЕЕ МЕНЮ
=============================================================== */

.header-menu {
    background: #034f80;
    z-index: 3;
    position: relative;
    -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}

.header-menu.fixed {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
}

.header-menu .menu {
    position: static;
}

#topMenu>li {
    display: block;
    float: left;
    position: relative;
}

#topMenu>li:last-child {
    margin-right: 0;
}

#topMenu a {
    display: block;
    text-decoration: none;
    -webkit-transition: 0.2s;
    transition: 0.2s;
    font-size: 15px;
    font-weight: 500;
}

#topMenu>li>a {
    height: 48px;
    line-height: 48px;
    color: #fff;
    font-size: 14px;
    position: relative;
    padding-right: 10px;
    padding-left: 10px;
}

#topMenu li.drop>ul {
    opacity: 0;
    visibility: hidden;
    margin-top: 10px;
    position: absolute;
    top: 100%;
    left: -10px;
    background: #fff;
    -webkit-transition: 0.2s;
    transition: 0.2s;
    min-width: 300px;
    padding: 10px 10px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-top: none;
    border-radius: 0 0 2px 2px;
}

#topMenu li.drop>ul {
    font-size: 95%;
}

#topMenu li.drop>ul a {
    color: #343434;
    line-height: 1.3;
    padding: 6px 10px;
    border-radius: 2px;
    font-size: inherit;
}

#topMenu li.drop li.active>a {
    color: #4594c7 !important;
}

#topMenu li.drop>ul li {
    margin-bottom: 2px;
}

#topMenu li.drop>ul li:last-child {
    margin-bottom: 0;
}

#topMenu li.drop>ul>li.drop {
    position: relative;
}

#topMenu li.drop>ul li.drop>a {
    margin: 0;
    padding-right: 30px;
}

#topMenu li.drop li.drop>a::after {
    color: inherit;
    line-height: 30px;
    height: 30px;
    right: 0;
}

#openMenu {
    height: 48px;
    color: #fff;
    padding: 0 16px;
    display: none;
    text-align: center;
    background: #eeaa0c;
}

#openMenu i {
    line-height: 48px;
}

#openMenu.active {
    background: #fff;
    color: #e2a008;
}

@media (min-width: 992px) {
    #topMenu {
        display: block !important;
    }
    #topMenu>li:hover>a {
        -webkit-box-shadow: inset 0px -3px 0px 0px #4594c7;
        box-shadow: inset 0px -3px 0px 0px #4594c7;
    }
    #topMenu>li.active>a {
        -webkit-box-shadow: inset 0px -3px 0px 0px #e2a008;
        box-shadow: inset 0px -3px 0px 0px #e2a008;
    }
    #topMenu li.drop>a {
        padding-right: 24px;
        position: relative;
    }
    #topMenu li.drop>a::after {
        content: 'keyboard_arrow_down';
        font-family: 'Material Icons';
        font-weight: normal;
        font-style: normal;
        letter-spacing: normal;
        text-transform: none;
        white-space: nowrap;
        word-wrap: normal;
        direction: ltr;
        -webkit-font-feature-settings: 'liga';
        font-feature-settings: 'liga';
        -webkit-font-smoothing: antialiased;
        position: absolute;
        top: 0;
        right: 6px;
        width: 16px;
        height: 48px;
        line-height: 48px;
        text-align: center;
        text-transform: none;
    }
    #topMenu li.drop:hover>a::after {
        content: 'keyboard_arrow_up';
    }
    #topMenu li.drop>ul {
        display: block !important;
        max-width: 360px;
    }
    #topMenu li.drop:hover>ul {
        opacity: 1;
        visibility: visible;
        margin-top: 0;
    }
    #topMenu li.drop>ul li:hover>a {
        color: #4594c7;
    }
    #topMenu li.drop>ul>li.drop>ul {
        top: -10px;
        left: 100%;
        background: #fff;
        border: 1px solid rgba(0, 0, 0, 0.1);
        border-radius: 2px;
        overflow: hidden;
    }
    #topMenu li.drop>ul>li.drop>a::after {
        content: 'keyboard_arrow_right';
        padding-right: 0;
    }
    #topMenu li.drop>ul>li.drop:hover>a::after {
        content: 'keyboard_arrow_left';
    }
    #topMenu li.drop>ul {
        border: 1px solid rgba(0, 0, 0, 0.1);
        border-top: none;
    }
}

@media (max-width: 1199px) {
    #topMenu>li>a {
        font-size: 14px;
        padding-left: 8px;
        padding-right: 8px;
    }
}

@media (max-width: 991px) {
    #openMenu {
        display: block;
    }
    .menu-opened {
        overflow: hidden;
    }
    .menu-opened .site-body {
        z-index: 4;
    }
    #topMenu {
        position: absolute;
        left: 0;
        right: 0;
        top: 100%;
        background: #fff;
        border: 1px solid rgba(0, 0, 0, 0.1);
        border-top: none;
        padding: 15px;
        max-height: 60vh;
        overflow: auto;
    }
    #topMenu li {
        float: none;
        margin: 0 0 4px;
    }
    #topMenu li:last-child {
        margin-bottom: 0;
    }
    #topMenu li a {
        color: #343434;
        position: relative;
        z-index: 1;
        height: auto;
        padding: 16px;
        line-height: 1.2;
        border-radius: 2px;
        overflow: hidden;
    }
    #topMenu>li.active>a {
        color: #4594c7 !important;
        font-weight: 600;
    }
    #topMenu>li>a::before {
        display: none;
    }
    #topMenu li.drop>a {
        padding-right: 48px;
    }
    #topMenu li.drop>a>span.arrow {
        display: block;
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        width: 36px;
        z-index: 1;
    }
    #topMenu li.drop>a::after {
        content: 'keyboard_arrow_down';
        font-family: 'Material Icons';
        font-weight: normal;
        font-style: normal;
        letter-spacing: normal;
        text-transform: none;
        white-space: nowrap;
        word-wrap: normal;
        direction: ltr;
        -webkit-font-feature-settings: 'liga';
        font-feature-settings: 'liga';
        -webkit-font-smoothing: antialiased;
        position: absolute;
        top: 50%;
        right: 6px !important;
        width: 24px;
        height: 24px !important;
        line-height: 24px !important;
        margin-top: -12px;
        color: inherit !important;
        text-align: center;
        text-transform: none;
        font-size: 18px;
    }
    #topMenu li.drop>a.opened::after {
        content: 'keyboard_arrow_up';
    }
    #topMenu li.drop>ul {
        position: relative;
        left: 0;
        -webkit-transition: none;
        transition: none;
        min-width: 0;
        opacity: 1;
        visibility: visible;
        overflow: hidden;
        padding: 6px 0;
        border: 1px solid rgba(0, 0, 0, 0.1);
        margin: 0 -1px;
    }
    #topMenu li.drop>ul li {
        margin-bottom: 5px;
    }
    #topMenu li.drop>ul li a {
        white-space: normal;
        line-height: 1.2;
        height: auto;
        padding: 8px 0 8px 16px;
        margin-bottom: 5px !important;
    }
}

@media (max-width: 575px) {
    #topMenu {
        border-right: none;
        border-left: none;
        border-radius: 0;
    }
}

/* END ВЕРХНЕЕ МЕНЮ ====================== */

/* ПОИСК
=============================================================== */

#openSearch {
    height: 48px;
    padding: 0 16px;
    color: #fff;
    background: #e2a008;
    display: block;
    float: left;
}

#openSearch i {
    line-height: 48px;
}

#openQuestion {
    height: 48px;
    padding: 0 12px;
    color: #fff;
    display: block;
    float: left;
}

#openQuestion i {
    line-height: 48px;
}

.search-form {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1;
    background: #034f80;
    padding: 4px 15px;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: .5s;
    transition: .5s;
}

@media (min-width: 992px) {
    #openSearch:hover+.search-form,
    .search-form:hover {
        opacity: 1;
        visibility: visible;
    }
}

.search-form.opened {
    opacity: 1;
    visibility: visible;
}

.search-form .form-control {
    border-radius: 2px 0 0 2px;
}

.search-form .btn {
    border: none;
    border-radius: 0 2px 2px 0;
}

@media (max-width: 991px) {
    #openSearch {
        background: transparent;
        padding-right: 0;
    }
    .search-form {
        padding: 4px;
    }
    .search-form .btn {
        padding: 0 11px;
    }
}

/* END ПОИСК ====================== */

/* PAGETITLE
=============================================================== */

.pagetitle {
    padding: 12px 0;
    font-size: 13px;
    font-weight: 500;
    background: #e7f1f8;
}

.pagetitle h1 {
    position: relative;
    margin-top: 0;
    margin-bottom: 8px;
}

.pagetitle .crumbs li {
    padding: 2px 8px 2px 0;
}

.pagetitle .crumbs li a {
    text-decoration: underline;
    color: #343434;
}

.pagetitle .crumbs li a:hover {
    text-decoration: none;
}

.pagetitle .crumbs li:not(:last-child)::after {
    content: '/';
    margin-left: 8px;
}

.page-title {
    position: relative;
    margin: 42px 0 36px;
}

.page-title+[class*='-section'] {
    padding-top: 0;
}

.page-title h1 {
    display: inline-block;
    padding-right: 24px;
    background: #ffffff;
    position: relative;
    z-index: 1;
    font-size: 34px;
    margin: 0;
}

.excel-template .page-title::after {
    content: '';
    position: absolute;
    top: 19px;
    left: 0;
    right: 0;
    height: 0px;
    background: rgba(0, 0, 0, 0.1);
    z-index: 0;
}

.page-title::after {
    content: '';
    position: absolute;
    top: 19px;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(0, 0, 0, 0.1);
    z-index: 0;
}

.sort-form {
    z-index: 1;
    padding-left: 24px;
    background: #ffffff;
    min-width: 220px;
    margin-top: 4px;
}

@media (max-width: 1199px) {
    .sort-form {
        padding-left: 0;
        margin: 16px 0 0 auto;
        max-width: 220px;
    }
}

@media (max-width: 767px) {
    .page-title h1 {
        font-size: 28px;
    }
}

@media (max-width: 575px) {
    .page-title h1 {
        font-size: 24px;
    }
    .sort-form {
        max-width: 100%;
    }
}

/* END PAGETITLE ====================== */

/* SIDEBARS
=============================================================== */

.sidebar {
    margin: 0 0 30px;
}

.sidebar:last-child {
    margin-bottom: 0;
}

.sidebar>h4 {
    position: relative;
    padding: 0;
    margin: 0 0 8px;
}

.sidebar>h4::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(0, 0, 0, 0.1);
    z-index: 0;
}

.sidebar>h4 span {
    padding-right: 24px;
    background: #ffffff;
    position: relative;
    z-index: 1;
}

.home-section .sidebar>h4 span {
    background: #e7f1f8;
}

.sidebar .sidebar-body {
    padding: 8px 0;
}

.sidebar .sidebar-footer {
    padding: 8px 0 0;
}

/* END SIDEBARS ====================== */

/* SECTIONS
=============================================================== */

[class*='-section'] {
    padding: 48px 0;
}

[class*='-section']+[class*='-section'].background-image {
    margin-top: 64px;
}

[class*='-section'].background-image {
    padding: 42px 0;
    position: relative;
    color: #fff;
}

[class*='-section'].background-image .back {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

[class*='-section'].background-image .back::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.section-title {
    margin-bottom: 32px;
}

.section-title h2 {
    margin-bottom: 0;
    display: inline-block;
    font-size: 28px;
}

.site-body .section-title {
    position: relative;
}

.site-body .section-title::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 1px;
    background: rgba(0, 0, 0, 0.1);
    z-index: 0;
}

.site-body .section-title h2 {
    padding: 0 24px 0 0;
    background: #ffffff;
    position: relative;
    z-index: 1;
}

.site-body .section-title.text-center h2 {
    padding: 0 24px;
}

.section-title p {
    margin: 16px 0 0;
}

@media (max-width: 767px) {
    [class*='-section'].background-image {
        padding: 48px 0;
    }
    [class*='-section']+[class*='-section'].background-image {
        margin-top: 48px;
    }
}

/* END SECTIONS ====================== */

/* LEFT MENU
=============================================================== */

#leftMenu a {
    -webkit-transition: 0.2s;
    transition: 0.2s;
}

#leftMenu a:hover {
    text-decoration: none;
}

#openLeft {
    display: none;
    position: fixed;
    left: 8px;
    bottom: 8px;
    width: 42px;
    height: 42px;
    text-align: center;
    color: #fff;
    background: #e2a008;
    -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.15);
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.15);
    z-index: 3;
}

#openLeft i {
    line-height: 42px;
}

.back-left {
    opacity: 0;
    visibility: hidden;
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.75);
    background-image: url('/assets/templates/qmedia/images/close.png');
    background-position: top right;
    background-repeat: no-repeat;
    -webkit-transition: 0.2s;
    transition: 0.2s;
    z-index: 998;
    display: none;
}

.back-left.opened {
    opacity: 1;
    visibility: visible;
    display: block;
}

#leftMenu .drop-list {
    margin-top: -8px;
    margin-bottom: -8px;
}

@media (min-width: 992px) {
    .back-left {
        display: none !important;
    }
    .left-site {
        margin-top: 48px;
        margin-bottom: 48px;
    }
}

@media (max-width: 991px) {
    #openLeft {
        display: block;
    }
    #leftMenu {
        position: fixed;
        top: 0;
        bottom: 0;
        left: -270px;
        right: 0;
        width: 270px;
        max-width: 100%;
        padding: 16px;
        z-index: 999;
        background: #fff;
        margin: 0;
        overflow: auto;
        -webkit-transition: 0.5s;
        transition: 0.5s;
    }
}

/* END LEFT MENU ====================== */

/* FOOTER
=============================================================== */

.consultation-section::before,
.consultation-section::after {
    z-index: 1;
    content: '';
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    height: 16px;
    background-color: #ffffff;
    background-image: url(/assets/images/arnamient.png);
    background-position: top;
    background-repeat: repeat-x;
    background-size: contain;
}

.consultation-section::before {
    top: -16px;
    -webkit-box-shadow: 0 10px 20px -10px #000;
    box-shadow: 0 10px 20px -10px #000;
}

.consultation-section::after {
    bottom: -16px;
    -webkit-box-shadow: 0 -10px 20px -10px #000;
    box-shadow: 0 -10px 20px -10px #000;
}

footer {
    color: #fff;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.footer-body {
    padding: 42px 0 24px;
    position: relative;
    -webkit-box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.25);
    box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.25);
    background-color: #ffffff;
    color: #343434;
    font-size: 13px;
    background-image: url(/assets/images/eight_horns_75.png);
    background-repeat: repeat;
    background-size: 124px;
}

footer .logo {
    display: block;
}

footer h5 {
    color: #034f80;
    margin-bottom: 16px;
    font-weight: 600;
}

footer p {
    margin-bottom: 8px;
}

footer li {
    margin-bottom: 12px;
    line-height: 1.6;
}

footer li img {
    margin-top: 1px;
}

footer a {
    color: #343434;
}

footer a:hover {
    text-decoration: none;
    color: #343434;
}

footer .phone-link .number {
    font-size: 100%;
    font-weight: 400;
}

footer .phone-link .code {
    font-size: 100%;
    font-weight: 400;
}

footer .social-link {
    margin-right: -8px;
    border-radius: 2px;
    overflow: hidden;
    display: block;
    margin-right: 8px;
    opacity: 0.9;
}

footer .social-link img {
    border-radius: 0;
}

footer .social-link:hover {
    opacity: 1;
}

footer .copyright {
    padding: 8px 0;
    background: #0a3c5d;
    position: relative;
}

footer .banner-link {
    display: block;
    margin-right: 8px;
    overflow: hidden;
    opacity: 0.9;
}

footer .banner-link:hover {
    opacity: 1;
}

@media (max-width: 575px) {
    footer {
        text-align: center;
    }
    footer .logo {
        width: 100%;
        max-width: 100%;
    }
    footer .logo img {
        margin: 0 auto;
    }
    footer li img {
        display: none !important;
    }
    footer img {
        margin: 0 auto;
    }
}

/* END FOOTER ====================== */

#toTop {
    opacity: 0;
    visibility: hidden;
    position: fixed;
    right: 50%;
    bottom: 8px;
    margin-right: -21px;
    width: 42px;
    height: 42px;
    text-align: center;
    color: #fff;
    background: #4594c7;
    -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.15);
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.15);
    z-index: 2;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    border-radius: 2px;
}

#toTop:hover {
    background: #377eac;
}

#toTop:active {
    background: #43a1de;
}

#toTop.active {
    opacity: 1;
    visibility: visible;
}

#toTop i {
    line-height: 42px;
}

@media (max-width: 575px) {
    #toTop {
        right: 8px;
        margin-right: 0;
    }
}

/* MODALS
=============================================================== */

.modal-content {
    padding: 16px 32px;
}

.modal-header,
.modal-body,
.modal-footer {
    padding-left: 0;
    padding-right: 0;
}

.modal-header {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.modal-header .close {
    padding: 12px 16px;
}

.modal-header .modal-title {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.1;
}

.modal-body {
    padding-top: 24px;
    padding-bottom: 16px;
}

.modal-footer {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 24px;
    padding-bottom: 0;
    margin-top: 24px;
}

.modal form {
    display: block;
    width: 100%;
}

@media (min-width: 578px) {
    .modal-dialog {
        max-width: 420px;
    }
}

@media (max-width: 575px) {
    .modal-content {
        padding: 12px 24px;
    }
}

/* END MODALS ====================== */

.home-section {
    background: #e7f1f8;
    -webkit-box-shadow: inset 0 -4px 8px -6px rgba(0, 0, 0, 0.25);
    box-shadow: inset 0 -4px 8px -6px rgba(0, 0, 0, 0.25);
}

.home-menu li.level1>a {
    display: block;
    color: #343434;
    padding: 5px 34px 5px 0;
    font-weight: 500;
    position: relative;
    font-size: 13px;
}

.home-submenu {
    position: absolute;
    left: 100%;
    top: -8px;
    width: 100%;
    min-width: 300px;
    max-width: 360px;
    background: #f5f5f5;
    visibility: hidden;
    opacity: 0;
    z-index: 2;
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 8px 24px;
    font-size: 95%;
}

.home-menu li:hover>a {
    color: #4594c7 !important;
}

.home-menu li.level1 {
    position: relative;
}

.home-menu li.level1>a .arrow::after {
    content: 'keyboard_arrow_right';
}

.home-menu li.level1:hover>a .arrow::after {
    content: 'keyboard_arrow_left';
}

.home-menu li.level1>a .arrow {
    content: 'keyboard_arrow_down';
    font-family: 'Material Icons';
    font-weight: normal;
    font-style: normal;
    letter-spacing: normal;
    text-transform: none;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: 'liga';
    font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
    position: absolute;
    top: 0;
    right: 6px;
    width: 16px;
    height: 28px;
    line-height: 28px;
    font-size: 16px;
    text-align: center;
    text-transform: none;
}

.home-menu li:hover .home-submenu {
    visibility: visible;
    opacity: 1;
}

.home-menu li.level2>a {
    display: block;
    color: #343434;
    padding: 5px 0;
    font-size: 13px;
    font-weight: 500;
    position: relative;
}

.home-slider {
    border-radius: 4px;
    overflow: hidden;
}

.home-slider,
.home-slider .owl-stage-outer,
.home-slider .owl-stage,
.home-slider .owl-item {
    height: 540px;
    position: relative;
}
@media (max-width: 991px) {
    .home-slider,
    .home-slider .owl-stage-outer,
    .home-slider .owl-stage,
    .home-slider .owl-item {
        height: 100%;
    }
}

.home-slider .slider-item {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.home-slider .slider-item::before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.home-slider .item-body {
    padding: 16px 72px;
    color: #ffffff;
    position: relative;
    z-index: 2;
}

.home-slider .item-title {
    font-weight: 500;
    margin-bottom: 16px;
}

.home-slider .item-desc {
    font-size: 16px;
}

@media (max-width: 991px) {
    .home-slider .owl-item {
        height: 400px;
    }
}

.about-section {
    background: #e7f1f8;
    -webkit-box-shadow: inset 0 4px 8px -6px rgba(0, 0, 0, 0.25);
    box-shadow: inset 0 4px 8px -6px rgba(0, 0, 0, 0.25);
}

h1.about-title {
    margin-bottom: 16px;
}

.owl-arrows-out .owl-nav {
    opacity: 1;
    visibility: visible;
    top: 40%;
    left: -15px;
    right: -15px;
}

.owl-arrows-out .owl-nav [class*='owl-'] {
    border-radius: 2px;
    background: #e2a008;
    opacity: 1;
    -webkit-box-shadow: 0 3px 20px -5px #000000;
    box-shadow: 0 3px 20px -5px #000000;
}

.owl-arrows-out .owl-nav [class*='owl-']:hover {
    background: #eeaa0c;
}

@media (max-width: 575px) {
    .owl-arrows-out .owl-nav {
        left: -7px;
        right: -7px;
    }
    .owl-arrows-out .owl-nav [class*='owl-']::before {
        width: 32px;
        height: 32px;
        background-size: 16px;
    }
}

.book-image {
    display: block;
    opacity: 0.95;
    overflow: hidden;
    border-radius: 4px;
}

.book-item {
    position: relative;
    margin-left: auto;
    margin-right: auto;
    max-width: 210px;
}

.book-item:hover .book-image {
    opacity: 1;
}

.book-title::before {
    content: '\00AB';
}

.book-title::after {
    content: '\00BB';
}

.book-title {
    display: block;
    margin-top: 8px;
    font-weight: 600;
    font-size: 15px;
    color: #343434;
}

.book-author {
    color: rgba(0, 0, 0, 0.5);
    margin-top: 4px;
    font-size: 13px;
}

@media (max-width: 991px) {
    .book-title {
        font-size: 14px;
    }
    .book-author {
        font-size: 12px;
    }
}

.category-section .book-item {
    margin-bottom: 30px;
}

@media (max-width: 575px) {
    .category-section .row {
        margin: 0 -7.5px;
    }
    .category-section [class*="col-"] {
        padding: 0 7.5px;
    }
}

.pagination span,
.pagination a {
    display: block;
    width: 32px;
    height: 32px;
    text-align: center;
    line-height: 32px;
    border-radius: 2px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    font-weight: 500;
    margin: 0 8px 8px 0;
}

.pagination span {
    background: #eeaa0c;
    color: #ffffff;
    border-color: #eeaa0c;
}

.pagination a {
    color: #343434;
    text-decoration: none;
    background: #e7f1f8;
    border-color: transparent;
}

.pagination a:hover {
    background: #4594c7;
    color: #ffffff;
}

.product-title {
    font-size: 28px;
    margin-top: 44px;
    margin-bottom: 12px;
}

.product-title::before {
    content: '\00AB';
}

.product-title::after {
    content: '\00BB';
}

.product-author {
    position: relative;
    font-size: 16px;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.5);
}

.product-author span {
    display: inline-block;
    padding-right: 16px;
    background: #ffffff;
    position: relative;
    z-index: 1;
}

.product-author::after {
    content: '';
    position: absolute;
    top: 10px;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(0, 0, 0, 0.1);
    z-index: 0;
}

.product-image {
    position: relative;
    margin-top: 42px;
    margin-bottom: 48px;
}

.product-image a {
    max-width: 300px;
}

.product-section {
    padding-top: 24px;
}

.product-rate {
    color: #e2a008;
    margin-bottom: 12px;
}

.product-rate .star::after {
    content: 'star';
}

.product-rate .star_border::after {
    content: 'star_border';
}

[class*="rating-symbol"] {
    display: block !important;
}

.product-list {
    margin-bottom: 24px;
    font-size: 13px;
}

.product-list li {
    margin-bottom: 4px;
}

.product-list span {
    font-weight: 500;
    color: rgba(0, 0, 0, 0.5);
}

.product-list strong {
    font-weight: 500;
}

.product-posttitle {
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
}

.product-shop {
    margin-top: 12px;
}

.product-shop a {
    color: #343434;
}

.product-shop a span {
    font-size: 13px !important;
}

.product-address {
    font-weight: 600;
    color: #034f80;
}

.product-description {
    padding-top: 24px;
    margin-top: 32px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    font-size: 13px;
}

.small-item {
    padding-bottom: 20px;
    margin-bottom: 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.small-item img {
    min-width: 70px;
    width: 70px;
}

.small-body {
    margin-left: 24px;
}

.small-title {
    font-size: 14px;
    margin-bottom: 2px;
    font-weight: 600;
}

.small-author {
    position: relative;
    font-size: 13px;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.5);
    margin-bottom: 16px;
}

.small-author::after {
    content: '';
    position: absolute;
    top: 9px;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(0, 0, 0, 0.1);
    z-index: 0;
}

.small-author span {
    display: inline-block;
    padding-right: 12px;
    background: #ffffff;
    position: relative;
    z-index: 1;
}

.small-list {
    font-size: 12px;
}

.small-list li {
    margin-bottom: 4px;
}

.small-list span {
    font-weight: 500;
    color: rgba(0, 0, 0, 0.5);
}

.small-list strong {
    font-weight: 500;
}

.small-title::before {
    content: '\00AB';
}

.small-title::after {
    content: '\00BB';
}

@media (max-width: 1199px) {
    .product-image {
        margin-top: 0;
        margin-bottom: 0;
    }
    .product-posttitle {
        margin-top: 24px;
    }
}

@media (max-width: 575px) {
    .product-image {
        max-width: 200px;
        margin-bottom: 24px;
    }
}

.partner-item+.partner-item {
    margin-top: 30px;
}

.partner-image {
    display: block;
    opacity: 0.95;
}

.partner-image:hover {
    opacity: 1;
}

.partner-image img {
    min-width: 150px;
}

.partner-body {
    margin-left: 24px;
}

.partner-title {
    display: block;
    font-size: 15px;
    margin-bottom: 8px;
    font-weight: 600;
    color: #343434;
}

.partner-desc {
    font-size: 13px;
}

@media (max-width: 575px) {
    .partner-image {
        margin-bottom: 12px;
    }
    .partner-body {
        margin-left: 0;
    }
    .partner-image img {
        min-width: 150px;
    }
}

.info-template .modx-section {
    padding-top: 0;
}

.info-template [class*='-section']+.modx-section {
    padding-top: 48px;
}

.news-item {
    margin-bottom: 30px;
}

.news-image {
    display: block;
    opacity: 0.95;
}

.news-image:hover {
    opacity: 1;
}

.news-image img {
    min-width: 150px;
}

.news-body {
    margin-left: 24px;
}

.news-title {
    display: block;
    font-size: 15px;
    margin-bottom: 8px;
    font-weight: 600;
    color: #343434;
}

.news-date {
    font-size: 13px;
    color: rgba(0, 0, 0, 0.5);
    margin-bottom: 8px;
}

.news-desc {
    font-size: 13px;
    margin-bottom: 8px;
}

@media (max-width: 575px) {
    .news-image {
        margin-bottom: 12px;
    }
    .news-body {
        margin-left: 0;
    }
    .news-image img {
        min-width: 150px;
    }
}

.news-template .news-date {
    font-size: 14px;
    font-weight: 500;
    margin: 10px 0 0 0;
    padding-left: 24px;
    background: #ffffff;
    z-index: 1;
}

.news-template .modx {
    margin-bottom: 32px;
}

.news-share {
    font-size: 16px;
    font-weight: 600;
}

@media (max-width: 1199px) {
    .news-template .news-date {
        padding-left: 0;
        margin-top: 12px;
    }
}

@media (max-width: 767px) {
    .news-template .news-image {
        width: 100%;
        max-width: 260px;
        margin-bottom: 24px;
    }
}

.library-nav {
    padding: 12px 24px;
    font-size: 15px;
    color: rgba(0, 0, 0, 0.5);
    background: #e7f1f8;
    font-weight: 500;
    margin-right: 8px;
    border-radius: 2px 2px 0 0 !important;
    white-space: nowrap;
}

.nav-tabs {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.nav-tabs .library-nav.active {
    border-color: rgba(0, 0, 0, 0.1);
    border-bottom-color: #ffffff;
    color: #343434;
}

.library-tab {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-top: none;
    padding: 24px 0;
    overflow: hidden;
}

.library-tab>.row {
    margin: 0 -1px;
}

.library-item {
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    padding: 6px 24px;
}

.library-download {
    display: block;
    min-width: 20px;
    max-width: 20px;
    margin-right: 6px;
}

.library-title {
    font-weight: 600;
    color: #343434;
}

.library-desc {
    font-size: 12px;
    color: rgba(0, 0, 0, 0.5);
    margin-top: 2px;
    font-weight: 500;
}

@media (max-width: 991px) {
    .nav-tabs {
        overflow-x: auto;
    }
    .nav-tabs .nav-item {
        margin-bottom: 0;
        padding-bottom: 8px;
    }
    .library-nav {
        border-radius: 2px !important;
        padding: 8px 16px;
        font-size: 14px;
    }
    .nav-tabs .library-nav.active {
        background: #eeaa0c;
        border-color: #eeaa0c;
        color: #ffffff;
    }
    .library-item {
        padding-left: 16px;
        padding-right: 16px;
    }
    .library-tab {
        padding: 12px 0;
    }
}

.excel-template .page-title .btn {
    position: relative;
    z-index: 1;
}

.excel-template .page-title .btn::before {
    content: '';
    position: absolute;
    left: -25px;
    top: 0;
    bottom: 0;
    width: 24px;
    background: #ffffff;
}

.excel-item:hover .excel-th {
    background: #e7f1f8;
}

.excel-item+.excel-item {
    margin-top: 16px;
}

.excel-th {
    background: #f5f5f5;
    color: #343434;
    padding: 8px 16px;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.excel-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 2px;
}

.excel-title::before {
    content: '\00AB';
}

.excel-title::after {
    content: '\00BB';
}

.excel-author {
    font-size: 13px;
}

.excel-td {
    padding: 8px 16px;
    font-size: 13px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-top: none;
    border-right: none;
}

.excel-td:last-child {
    border-right: 1px solid rgba(0, 0, 0, 0.1);
}

.excel-list span {
    display: block;
    font-weight: 500;
    margin-bottom: 2px;
    color: rgba(0, 0, 0, 0.5);
}

.excel-list strong {
    display: block;
    font-weight: 500;
}

@media (max-width: 991px) {
    .excel-td {
        width: 25% !important;
    }
    .excel-td:nth-child(4) {
        border-right: 1px solid rgba(0, 0, 0, 0.1);
    }
    .excel-td:last-child {
        width: 50% !important;
    }
}

@media (max-width: 767px) {
    .excel-td {
        width: 50% !important;
    }
    .excel-td:nth-child(2n+2) {
        border-right: 1px solid rgba(0, 0, 0, 0.1);
    }
    .excel-td:last-child {
        width: 100% !important;
    }
}

@media (max-width: 575px) {
    .excel-template .page-title .btn i {
        display: none;
    }
    .excel-td {
        width: 100% !important;
    }
    .excel-td {
        border-right: 1px solid rgba(0, 0, 0, 0.1);
    }
}

.contacts-title {
    position: relative;
    color: #034f80;
    margin-bottom: 12px;
    font-weight: 600;
    font-size: 16px;
}

.contacts-title.left-blue,
.contacts-title.left-yellow {
    padding-left: 24px;
}

.contacts-title.left-blue::before,
.contacts-title.left-yellow::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid transparent;
    margin-top: -8px;
}

.contacts-title.left-blue::before {
    border-color: #4594c7;
}

.contacts-title.left-yellow::before {
    border-color: #e2a008;
}

.contacts-section {
    font-size: 13px;
}

.contacts-section a {
    color: #343434;
}

.contacts-section li {
    margin-bottom: 12px;
    line-height: 1.6;
}

.contacts-section li img {
    margin-top: 1px;
}

.contacts-section .phone-link .code,
.contacts-section .phone-link .number {
    font-size: 100%;
}

#contactsMap {
    height: 100%;
    overflow: hidden;
    border-radius: 4px;
}

.baloon {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    line-height: 1.3;
    color: #343434;
}

.baloon-title {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 4px;
    color: #034f80;
}

.baloon-address {
    margin-bottom: 4px;
}

@media (max-width: 991px) {
    #contactsMap {
        height: 50vw;
        margin-top: 32px;
    }
}

@media (max-width: 575px) {
    #contactsMap {
        height: 75vw;
    }
}

/* SITEMAP
=============================================================== */

#sitemap {
    list-style: none;
    padding: 0;
}

#sitemap ul {
    list-style: none;
    padding-left: 15px;
}

#sitemap>li {
    display: block;
}

#sitemap a:not(.plus-link) {
    display: block;
    padding: 5px 10px;
}

#sitemap a:hover {
    background: rgba(92, 133, 190, 0.1);
    color: #333;
}

#sitemap a.plus-link {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    margin: 0;
    padding: 0;
    overflow: visible;
    margin-top: 0;
    z-index: 2;
    width: 20px;
    text-align: center;
    color: #5c85be;
}

#sitemap a.plus-link i {
    position: absolute;
    right: 0;
    left: 0;
    width: 10px;
    height: 10px;
    text-align: center;
    display: inline-block;
    top: 50%;
    margin: -6px auto 0;
}

#sitemap a.plus-link.collapsed i.fa-caret-down,
#sitemap a.plus-link:not(.collapsed) i.fa-caret-up {
    opacity: 1;
}

#sitemap a.plus-link.collapsed i.fa-caret-up,
#sitemap a.plus-link:not(.collapsed) i.fa-caret-down {
    opacity: 0;
}

#sitemap.panel-group .panel {
    margin: 0;
}

#sitemap div[role="tab"] {
    padding-left: 20px;
}

#sitemap div[role="tab"].nofolder {
    padding-left: 5px;
}

#sitemap div[role="tab"].nofolder a.plus-link {
    display: none;
}

#sitemap .level1 a:not(.plus-link) {
    font-weight: 600;
    color: #222;
    font-size: 15px;
}

#sitemap .level2 a:not(.plus-link) {
    font-weight: 600;
    font-size: 14px;
    color: #333;
}

#sitemap .level3 a:not(.plus-link) {
    font-weight: 500;
    color: #444;
    font-size: 14px;
}

#sitemap .level4 a:not(.plus-link) {
    font-size: 13px;
}

#sitemap .level5 a:not(.plus-link) {
    color: #777;
}

@media (max-width: 767px) {
    #sitemap ul {
        padding-left: 0;
    }
}

/* END
=============================================================== */

.footer-link a {
    text-decoration: underline;
}

.info-template .category-section {
    /* padding: 48px 15px; */
}

.info-template .search-category-section {
    padding: 16px 0px 48px;
}

.evoSearch_info {
    padding-bottom: 15px;
}
.evoSearch_highlight {
    background: #fff3cd;
}

@media (max-width: 575px) {
    .mobile-block {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: start;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .mobile-block .product-image {
        width: 120px;
    }
    .mobile-block .body {
        width: calc(100% - 120px);
        width: -webkit-calc(100% - 120px);
        padding-left: 16px;
    }
    .product-list span {
        display: block;
        margin: 0 !important;
    }
    .product-list li {
        margin-bottom: 6px;
    }
}

.book_search {
    position: unset;
    visibility: visible;
    opacity: 1;
    padding: 0;
    background: transparent;
    margin-bottom: 15px;
}

.output_title {
    margin-bottom: 15px;
    font-weight: bold;
}

.output_title span {
    font-weight: 100;
    font-style: oblique;
    text-decoration: underline;
}

.languages {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 0 4px;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.languages .lang-link {
    line-height: 1;
    margin: 0 0 0 12px;
    font-size: 12px;
    font-weight: 600;
    padding: 3px;
    border-bottom: 2px solid transparent;
    color: #034f80;
}

.languages .lang-link:hover {
    text-decoration: none;
    border-color: #034f80;
}

.languages .lang-link.active {
    border-color: #e2a008;
}

@media (max-width: 991px) {
    .languages {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    .languages .lang-link {
        margin: 0 6px;
    }
}

.section_header-offer p{
	margin-bottom: 0;
	text-align: center;
	font-size: 20px;
	font-weight: 600; }

.section_header-offer a{
	color: #e95156; }

@media(max-width: 1200px){
	.section_header-offer p{
		font-size: 17px; }
}

@media(max-width: 992px){
	.section_header-offer p{
		margin: 1rem 0; }
}

.cart-btn-container{
	display: flex;
	flex-direction: column;
	align-items: baseline; }

.btn-link-shop{
	margin-top: 16px; }