@font-face {
    font-family: 'Gotham Pro';
    src: url('../fonts/GothamPro.woff') format('woff');
    font-display: swap;
    font-weight: normal;
}

@font-face {
    font-family: 'Gotham Pro';
    src: url('../fonts/GothamPro-Medium.woff') format('woff');
    font-display: swap;
    font-weight: 500;
}

@font-face {
    font-family: 'Gotham Pro';
    src: url('../fonts/GothamPro-Bold.woff') format('woff');
    font-display: swap;
    font-weight: bold;
}

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

.svg-sprite {
    position: absolute;
    left: -9999px;
    top: -9999px;
    height: 0;
    width: 0;
    visibility: hidden;
    opacity: 0;
}

.icon {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    flex-shrink: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

html.behavior-auto {
    scroll-behavior: auto;
}

html,
body {
    display: flex;
    flex-direction: column;
}

body {
    font-family: 'Gotham Pro', Helvetica, Arial, sans-serif;
    font-feature-settings: 'pnum' on, 'lnum' on;
    font-size: 16px;
    line-height: 1.6;
    background: #fff;
    color: var(--black);
    min-width: 320px;
    min-height: 100vh;
    margin: 0;
}

html.is-noscroll body {
    position: fixed !important;
    left: 0;
    right: 0;
    margin-right: var(--scrollbarWidth);
}

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

button,
input {
    overflow: visible;
}

button,
select {
    text-transform: none;
}

button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
}

button::-moz-focus-inner {
    border-style: none;
    padding: 0;
}

:hover,
:active,
:focus {
    outline: none;
}

img {
    vertical-align: middle;
    border-style: none;
}

b, strong {
    font-weight: bold;
}

.has-scrollbar {
    overflow: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
}

hr {
    box-sizing: content-box;
    height: 0;
    margin: 40px 0;
    border: 0;
    border-top: 1px solid var(--line);
    clear: both;
}

textarea {
    max-width: 100%;
    min-width: 100%;
    overflow: auto;
    resize: vertical;
}

a,
button {
    transition: 0.15s ease-in-out;
    transition-property: color, border-color, background-color, opacity, box-shadow;
}

a {
    background-color: transparent;
    text-decoration: none;
    color: var(--primary);
}

a:hover {
    color: var(--primary-light);
}

h1 a, h2 a, h3 a, h4 a, h5 a, h6 a,
.h1 a, .h2 a, .h3 a, .h4 a, .h5 a, .h6 a {
    color: inherit;
    text-decoration: none;
}

h1 a:hover, h2 a:hover, h3 a:hover, h4 a:hover, h5 a:hover, h6 a:hover,
.h1 a:hover, .h2 a:hover, .h3 a:hover, .h4 a:hover, .h5 a:hover, .h6 a:hover {
    color: var(--primary);
}

p,
ul,
ol,
dl,
pre,
table,
figure,
address,
fieldset,
blockquote {
    margin: 0 0 16px 0;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: inherit;
    font-weight: 500;
    line-height: 1.4;
    color: inherit;
    margin: 0 0 16px 0;
}

h1, .h1 {
    font-size: 32px;
    margin-bottom: 32px;
}

h2, .h2 {
    font-size: 24px;
}

h3, .h3 {
    font-size: 18px;
}

h4, .h4 {
    font-size: 16px;
}

h5, .h5 {
    font-size: 14px;
}

h6, .h6 {
    font-size: 12px;
}

.text ul,
.text ol,
.text dl,
.text img,
.text table,
.text figure,
.text blockquote {
    margin-bottom: 40px;
}

.text * + h2,
.text * + h3,
.text * + h4,
.text * + h5,
.text * + h6,
.text * + blockquote {
    margin-top: 80px;
}

.text ul,
.text ol {
    padding: 0;
    list-style: none;
}

.text li {
    position: relative;
    margin-bottom: 12px;
    padding-left: 24px;
    overflow: hidden;
}

.text ol {
    counter-reset: li;
}

.text ol li {
    counter-increment: li;
}

.text li ul,
.text li ol {
    margin-top: 12px;
    margin-bottom: 12px;
}

.text ul li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
}

.text ol li:before {
    content: counter(li)'.';
    position: absolute;
    left: 0;
    font-weight: 500;
    color: var(--primary);
}

.text table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    line-height: 1.4;
}

.text th,
.text td {
    padding: 16px 24px;
}

.text th {
    text-align: left;
    vertical-align: top;
    background: var(--primary);
    border-left: 1px solid var(--primary-light);
    font-weight: 500;
    color: #fff;
}

.text td {
    border-left: 1px solid var(--line);
}

.text tr:nth-child(even) td {
    background: var(--bg);
}

.text th:first-child,
.text td:first-child {
    border-left: none;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}

.text th:last-child,
.text td:last-child {
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}

blockquote {
    position: relative;
    font-size: 18px;
    line-height: 29px;
    font-weight: 500;
    padding: 58px 0 40px;
    border-bottom: 2px solid var(--primary);
}

blockquote:after {
    content: '';
    position: absolute;
    left: 128px;
    top: 16px;
    right: 0;
    border-bottom: 2px solid var(--primary);
}

blockquote:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 34px;
    background-image: url("data:image/svg+xml,%3Csvg width='40' height='34' fill='%230055BD' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M17 0H1L0 1v16l1 1h11L6 33v1h5l7-17V1l-1-1ZM39 0H23l-1 1v16l1 1h11l-6 15v1h6l6-17V1l-1-1Z'/%3E%3C/svg%3E");
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

.text img {
    display: block;
    max-width: 100%;
    height: auto;
    border-radius: 4px;
}

.text figure img {
    margin: 0;
}

.gallery {
    margin-bottom: 40px;
}

.gallery a {
    display: block;
    position: relative;
}

.gallery a:before,
.gallery a:after {
    content: '';
    position: absolute;
    opacity: 0;
    visibility: hidden;
    transition: 0.15s ease-in-out;
}

.gallery a:hover:before,
.gallery a:hover:after {
    opacity: 1;
    visibility: visible;
}

.gallery a:before {
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 4px;
    background: rgba(0, 0, 0, 0.5);
}

.gallery a:after {
    left: 0;
    top: 0;
    width: 46px;
    height: 46px;
    left: 50%;
    top: 50%;
    margin: -23px;
    background-image: url("data:image/svg+xml,%3Csvg width='46' height='46' viewBox='0 0 46 46' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M40.2504 40.2499L31.9129 31.9124M21.084 15.3335V26.8335M15.334 21.0835H26.834M36.4167 21.0833C36.4167 29.5517 29.5517 36.4167 21.0833 36.4167C12.615 36.4167 5.75 29.5517 5.75 21.0833C5.75 12.615 12.615 5.75 21.0833 5.75C29.5517 5.75 36.4167 12.615 36.4167 21.0833Z' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

.gallery img {
    margin: 0 !important;
    display: block;
    width: 100%;
    height: auto;
    border-radius: 4px;
}

.gallery .row {
    --bs-gutter-x: 16px;
    --bs-gutter-y: 16px;
}

.tabs {

}

.tabs__nav {
    margin: 0 0 60px;
    padding: 0;
    list-style: none;
    display: flex;
    border-bottom: 1px solid var(--line);
}

.tabs__nav-item {
    margin-right: 32px;
    margin-bottom: -1px;
}

.tabs__nav-btn {
    display: block;
    padding: 16px 0;
    line-height: 1.4;
    font-weight: 500;
    color: var(--black);
    position: relative;
}

.tabs__nav-btn.is-active:after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    border-bottom: 2px solid var(--primary);
}

.tabs__content {

}

.tabs__item:not(.is-active) {
display: none;
}

.data-list {
    display: table;
    width: 100%;
}

.data-list > div {
    display: table-row;
}

.data-list dt,
.data-list dd {
    display: table-cell;
    vertical-align: baseline;
    padding: 0 0 12px 0;
}

.data-list dt {
    width: 58.6%;
    color: var(--gray);
    padding-right: 12px;
    background-image: linear-gradient(to right, var(--line) 50%, transparent 50%);
    background-size: 4px 1px;
    background-position: left 17px;
    background-repeat: repeat-x;
}

.data-list dd {
    padding-left: 12px;
}

.data-list dt > span {
    background: #fff;
    padding-right: 6px;
}

.form-check {
    font-size: 14px;
    line-height: 18px;
    margin: 24px 0;
    color: var(--gray-light);
}

.form-check a {
    color: inherit;
    text-decoration: underline;
}

.form-check__label {
    display: inline-block;
    position: relative;
    cursor: pointer;
}

.form-check__input {
    position: absolute;
    opacity: 0;
}

.form-check__text {
    display: block;
    position: relative;
    padding: 1px 0 1px 32px;
}

.form-check__input:disabled + .form-check__text {
    opacity: 0.5;
}

.form-check__text:before,
.form-check__text:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    transition: 0.15s ease-in-out;
}

.form-check__text:before {
    width: 20px;
    height: 20px;
    background: var(--secondary);
    border-radius: 4px;
}

.form-check__input[type=radio] + .form-check__text:before {
    border-radius: 50%;
}

.form-check__input[type=radio] + .form-check__text:after {
    width: 10px;
    height: 10px;
    margin: 5px 0 0 5px;
    background: var(--black);
    border-radius: 50%;
    opacity: 0;
}

.form-check__input[type=checkbox] + .form-check__text:after {
    width: 11px;
    height: 6px;
    margin: 5px 0 0 5px;
    border-style: solid;
    border-color: var(--black);
    border-width: 0 0 2px 2px;
    opacity: 0;
    transform: rotate(-45deg);
}

.form-check__input:checked + .form-check__text:after {
    opacity: 1;
}

.form-check:hover .form-check__text:before,
.form-check:active + .form-check__text:before {
    background-color: var(--secondary-light);
}

.form-check__input:focus + .form-check__text:before {
    background-color: var(--secondary-lighter);
}

.form-check__input.error + .form-check__text:before {
    background-color: var(--error);
}

.form-check__input:disabled + .form-check__text {
    cursor: default;
    cursor: not-allowed;
}

.form-group {
    margin-bottom: 20px;
}

.form-group__label {
    display: block;
    font-size: 14px;
    line-height: 1.2;
    color: var(--gray);
    margin-bottom: 12px;
}

.form-group__label[for] {
    cursor: pointer;
}

.form-control {
    display: block;
    box-shadow: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    appearance: none;
    transition: 0.15s ease-in-out;
    transition-property: color, border-color, background-color, opacity, box-shadow;
    width: 100%;
    height: 54px;
    font-size: 16px;
    line-height: 26px;
    padding: 13px 19px;
    border: 1px solid var(--line);
    border-radius: 4px;
    background-color: #fff;
    color: var(--black);
}
.form-control-textarea {
	display: block;
    box-shadow: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    appearance: none;
    transition: 0.15s ease-in-out;
    transition-property: color, border-color, background-color, opacity, box-shadow;
    width: 100%;
    height: 120px;
    font-size: 16px;
    line-height: 26px;
    padding: 13px 19px;
    border: 1px solid var(--line);
    border-radius: 4px;
    background-color: #fff;
    color: var(--black);
	 resize: none;
}

.form-control-textarea:hover {
	border-color: var(--gray);
}

.form-control-textarea:focus {
	border-color: var(--primary);
}
.form-block .form-control-textarea {
	border-color: #fff;
}
.form-control-textarea.error {
	border-color: var(--error);
}
.form-control:hover {
    border-color: var(--gray);
}

.form-control:focus {
    border-color: var(--primary);
}

.form-control.error {
    border-color: var(--error);
}

label.error {
    display: block;
    color: var(--error);
    font-size: 12px;
    line-height: 18px;
    margin-bottom: -18px;
}

.form-control::placeholder {
    color: var(--gray);
}

.form-control:focus::placeholder {
    color: transparent;
}

select.form-control {
    max-width: 100%; 
    margin: 0;
    padding-right: 52px;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 7.5L10 12.5L15 7.5' stroke='%23656974' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 20px 20px;
}

select.form-control::-ms-expand {
    display: none;
}

.jq-selectbox {
    padding: 0 !important;
}

.jq-selectbox.focused,
.jq-selectbox.opened {
    border-color: var(--primary);
}

.jq-selectbox.opened {
    border-radius: 4px 4px 0 0;
}

.jq-selectbox__select {
    padding: 13px 19px;
    padding-right: 52px;
    cursor: pointer;
}

.jq-selectbox__trigger {
    position: absolute;
    width: 20px;
    height: 20px;
    right: 15px;
    top: 50%;
    margin-top: -10px;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 7.5L10 12.5L15 7.5' stroke='%23656974' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: 0 0;
    background-size: 100% 100%;
}

.jq-selectbox.opened .jq-selectbox__trigger {
    transform: rotate(180deg);
}

.jq-selectbox__dropdown {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    border: 1px solid var(--primary);
    margin: 0 -1px;
    width: auto !important;
    background: #fff;
    border-radius: 0 0 4px 4px;
}

.jq-selectbox__dropdown ul {
    margin: 0;
    padding: 0 19px;
    list-style: none;
}

.jq-selectbox li {
    cursor: pointer;
    font-size: 16px;
    line-height: 1.2;
    color: var(--gray);
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
}

.jq-selectbox li:last-child {
    border-bottom: none;
}

.jq-selectbox li:hover,
.jq-selectbox li.sel {
    color: var(--primary);
}

textarea.form-control {
    height: auto;
}

.form-control[disabled],
.form-control.disabled {
    background-color: #f5f5f5;
    border-color: var(--line);
    color: #888;
    cursor: default;
    cursor: not-allowed;
}

.btn {
    display: inline-block;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    text-decoration: none;
    cursor: pointer;
    height: 54px;
    font-size: 14px;
    font-weight: 500;
    line-height: 26px;
    padding: 13px 31px;
    border-radius: 4px;
    text-transform: uppercase;
    border: 1px solid var(--secondary);
    background-color: var(--secondary);
    color: var(--black);
}

.btn:hover {
    background-color: var(--secondary-light);
    border-color: var(--secondary-light);
    color: var(--black);
}

.btn:active,
.btn:focus {
    background-color: var(--secondary-lighter);
    border-color: var(--secondary-lighter);
    color: var(--black);
}

.btn[disabled],
.btn.is-disabled {
    opacity: .55;
    cursor: default;
    cursor: not-allowed;
}

.close-btn {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    border: none;
    background: none;
    padding: 0;
    width: 40px;
    height: 40px;
    color: var(--gray);
}

.close-btn:hover {
    color: var(--black);
}

.close-btn:before,
.close-btn:after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 20px;
    border-bottom: 2px solid;
    margin: -1px 0 0 -10px;
    transform: rotate(45deg);
}

.close-btn:after {
    transform: rotate(-45deg);  
}

.fancybox-close-btn {
    position: absolute;
    right: 0;
    top: 0;
}

.popup-window {
    background: var(--bg);
    border-radius: 4px;
    padding: 40px;
    overflow: visible;
    width: 450px;
}

.popup-window.form-block {
    margin: 0;
}

.popup-window:not(.fancybox-content) {
    display: none;
}

body:not(.compensate-for-scrollbar) .compensate-for-scrollbar {
    margin-right: 0 !important;
}

.slick-dots {
    margin: 0;
    padding: 0;
    list-style: none;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10;
    text-align: center;
}

.slick-dots li {
    display: inline-block;
}

.slick-dots li button {
    width: 22px;
    height: 22px;
    border: none;
    background: none;
    padding: 0;
    position: relative;
    cursor: pointer;
    text-indent: -9999px;
    opacity: .6;
}

.slick-dots li.slick-active button {
    opacity: 1;
}

.slick-dots li button:before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 10px;
    height: 10px;
    margin: -5px;
    border-radius: 50%;
    background: var(--line);
}

.slick-arrow {
    border: 1px solid var(--line);
    padding: 0;
    background-color: #fff;
    color: var(--gray-light);
    border-radius: 50%;
    position: absolute;
    text-indent: -9999px;
    z-index: 11;
    top: 50%;
    width: 42px;
    height: 42px;
    margin-top: -21px;
}

.slick-arrow:hover {
    border-color: var(--secondary);
    background-color: var(--secondary);
    color: var(--black);
}

.slick-prev {
    left: 0;
}

.slick-next {
    right: 0;
}

.slick-arrow:before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 10px;
    height: 10px;
    border-style: solid;
    border-width: 0 2px 2px 0;
    margin: -5px;
}

.slick-prev:before {
    transform: translateX(2px) rotate(135deg);
}

.slick-next:before {
    transform: translateX(-2px) rotate(-45deg);
}

.slick-arrow.slick-disabled {
    opacity: 0.5;
    cursor: default;
    pointer-events: none;
}

.slick-slider {
    display: block;
}

.slick-slide > div > * {
    width: auto;
    vertical-align: top;
}

.container {
    --bs-gutter-x: 20px;
}

.row {
    --bs-gutter-x: 40px;
}

.header {

}

.header__main {

}

.header__main-inner {
    display: flex;
    align-items: center;
    padding: 20px 0 10px;
    height: 120px;
}

.header__logo {
    flex: 0 0 auto;
    width: 180px;
    margin-right: 32px;
}

.logo {

}

.logo img {

}

.header__search-wrapper {
    flex-grow: 1;
    min-width: 1px;
    position: relative;
    padding-right: 70px;
}

.header__logo-desc {
    position: relative;
    z-index: 1;
}

html.is-search-open .header__logo-desc {
    visibility: hidden;
}

.logo-desc {
    display: block;
    font-size: 18px;
    line-height: 1.4;
    font-weight: 500;
    text-decoration: none;
    max-width: 26em;
    color: var(--primary);
}

.header__search {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    margin-top: -25px;
}

.search {
    position: relative;
}

.search__form {
    display: flex;
}

.search__control-wrapper {
    flex-grow: 1;
    min-width: 1px;
    visibility: hidden;
}

.search__control {
    border-color: var(--primary);
    border-radius: 4px 0 0 4px;
    border-right: none;
    height: 50px;
    padding: 11px 19px;
}

html.is-search-loading .search__control {
    background-image: url('../images/spinner.gif');
    background-repeat: no-repeat;
    background-position: right 8px center;
    padding-right: 48px;
}

.search__btn-wrapper {

}

.search__btn {
    width: 50px;
    height: 50px;
    border: none;
    padding: 0;
    background: var(--bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    transition: none;
}

html.is-search-open .search__control-wrapper {
    visibility: visible;
}

html.is-search-open .search__btn {
    border-radius: 0 4px 4px 0;
    background-color: var(--primary);
    color: #fff;
}

.search__results {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    margin-top: 4px;
    background: #FFFFFF;
    box-shadow: 0px 12px 32px rgb(0 0 0 / 8%), 0px 8px 8px rgb(0 0 0 / 5%);
    border-radius: 4px;
    z-index: 500;
    padding: 8px 20px;
    max-height: 375px;
    display: none;
}

html.is-search-show .search__results {
    display: block;
}

.search__item {
    border-bottom: 1px solid var(--line);
}

.search__item:last-child {
    border-bottom: none;
}

.search__item-wrapper {
    display: flex;
    padding: 16px 0 15px;
    font-size: 14px;
    line-height: 19px;
    color: inherit;
    text-decoration: none;
}

.search__item-wrapper:hover {
    color: inherit;
    background: var(--bg);
}

.search__item-image {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
}

.search__item-image img {
    flex-shrink: 0;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    border-radius: 4px;
}

.search__item-content {

}

.search__item-title {

}

.search__item-price {
    font-size: 16px;
    font-weight: bold;
    margin-top: 8px;
}

.header__contacts {
    display: flex;
    line-height: 20px;
    margin-left: 22px;
}

.header__contacts-item {
    margin-left: 61px;
}

.header__address {
    white-space: nowrap;
    margin-bottom: 4px;
}

.header__phone {
    white-space: nowrap;
    font-size: 20px;
    font-weight: bold;
    display: flex;
    align-items: center;
    line-height: 24px;
}

.header__phone .icon {
    color: var(--primary);
    margin-right: 8px;
}

.header__phone a {
    color: var(--black);
}

.header__phone a:hover {
    color: var(--primary);
}

.header__link {
    display: inline-block;
    border: none;
    padding: 0;
    background: none;
    white-space: nowrap;
    color: var(--primary);
    font-weight: 500;
    font-size: 14px;
    border-bottom: 1px dashed;
    margin-top: 3px;
    margin-bottom: 2px;
}

.header__link:hover {
    color: var(--primary-light);
}

.header__phone + .header__link {
    margin-left: 26px;
}

.header__nav {

}

.nav {
    font-size: 13px;
    line-height: 18px;
    font-weight: 500;
    text-transform: uppercase;
    background: var(--bg);
    border-radius: 4px;
}

.nav ul {
    display: flex;
    margin: 0;
    padding: 0;
    justify-content: space-between;
    list-style: none;
    padding: 21px 60px;
}

.nav li {

}

.nav a {
    color: var(--black);
}

.nav a:hover,
.nav a.is-active {
    color: var(--primary);
}

.mob-header {
    display: none;
}

.mob-header__inner {

}

.mob-header__logo {

}

.mob-header__btn {

}

.nav-btn {

}

.mob-footer {
    display: none;
}

.mob-footer__btn {

}

.mob-footer__catalog-btn {

}

.mob-footer__phone-btn {

}

.mob-footer__search-btn {

}

.mob-footer__btn .իցօն {

}

.footer {
    background: #0D1122;
    color: #fff;
    line-height: 1.4;
}

.footer__main {
    padding: 140px 0 100px;
}

.footer__logo {
    margin-bottom: 40px;
}

.footer__logo a {

}

.footer__logo img {

}

.footer__desc {
    max-width: 15em;
    line-height: 1.6;
    margin-bottom: 40px;
}

.footer__title {
    font-size: 18px;
    font-weight: 500;
    border-bottom: 1px solid var(--primary-light);
    padding-bottom: 16px;
    margin-bottom: 39px;
}

.footer__title a {
    color: inherit;
    text-decoration: none;
}

.footer__nav {
    margin-bottom: 40px;    
}

.footer__nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer__nav li {
    margin-bottom: 20px;
}

.footer__nav a {
    color: var(--gray-light);
}

.footer__nav a:hover,
.footer__nav a.is-active {
    color: #fff;
}

.footer__contacts {
    font-size: 18px;
    line-height: 1.2;
    margin-bottom: 40px;
}

.footer__contacts-item {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
}

.footer__contacts-item .icon {
    color: var(--primary-light);
    margin-right: 13px;
}

.footer__contacts-item-content {
    flex-grow: 1;
    min-width: 1px;
}

.footer__contacts a {
    color: inherit;
}

.footer__phone {
    font-size: 20px;
    font-weight: bold;
}

.footer__btn {
    background-color: transparent;
    color: var(--secondary);
    margin-bottom: 16px;
    padding: 9px 25px;
    height: auto;
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    padding: 54px 0;
    color: var(--gray-light);
}

.footer__bottom a {
    color: inherit;
}

.footer__bottom a:hover {
    color: var(--primary-light);
}

.footer__bottom-row {
    display: flex;
    margin: 0 -15px;
    justify-content: space-between;
}

.footer__bottom-item {
    padding: 0 15px;
}

.footer__dashed-link {
    color: inherit;
    border-bottom: 1px dashed;
}

.footer__dev {
    color: #fff;
}

.footer__dev a {
    color: inherit;
}

.footer__dev a:hover {
    color: inherit;
}

.footer__dev img {
    margin: 0 2px;
}

.footer__dev span {
    text-transform: uppercase;
}

.footer__dev a:hover span {
    color: var(--primary-light);
}

.content {
    flex-grow: 1;
    min-height: 1px;
    padding: 40px 0 100px;
}

.catalog-nav {
    font-size: 16px;
    line-height: 1.4;
    font-weight: 500;
    position: relative;
    z-index: 100;
}

.catalog-nav__menu {
    background: var(--primary);
    color: #fff;
}

.catalog-nav__list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.catalog-nav__item {
    border-bottom: 1px solid var(--primary-light);
}

.catalog-nav__submenu .catalog-nav__item {
    border-bottom-color: var(--line);
}

.catalog-nav__row {
    display: flex;
    position: relative;
}

.catalog-nav__link {
    flex-grow: 1;
    min-width: 1px;
    color: inherit;
    display: block;
    padding: 23.5px 24px 23px;
}

.catalog-nav__link:hover {
    color: inherit;
    background: var(--primary-light);
}

.catalog-nav__submenu .catalog-nav__link:hover {
    background: var(--bg);
}

.catalog-nav__next-arrow ~ .catalog-nav__link {
    padding-right: 0;
}

.catalog-nav__next-arrow {
    display: block;
    border: none;
    padding: 0;
    background: none;
    position: relative;
    flex-shrink: 0;
    width: 68px;
    order: 1;
}

.catalog-nav__next-arrow:hover {
    background: var(--primary-light);
}

.catalog-nav__next-arrow:before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 10px;
    height: 10px;
    border-style: solid;
    border-width: 0 2px 2px 0;
    margin: -5px;
    transform: translateX(-2px) rotate(-45deg);
}

.catalog-nav__submenu .catalog-nav__next-arrow {
    color: var(--gray-light);
}

.catalog-nav__submenu .catalog-nav__next-arrow:hover {
    background: var(--bg);
}

.catalog-nav__text {
    flex-grow: 1;
    min-width: 1px;
}

.catalog-nav__submenu {
    color: var(--black);
    font-weight: normal;
}

.catalog-nav__back {
    background: var(--primary);
    color: #fff !important;
    cursor: pointer;
    display: flex;
}

.catalog-nav__back-arrow {
    display: block;
    border: none;
    padding: 0;
    background: none;
    position: relative;
    flex-shrink: 0;
    width: 68px;
}

.catalog-nav__back-arrow:before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 10px;
    height: 10px;
    border-style: solid;
    border-width: 0 2px 2px 0;
    margin: -5px;
    transform: translateX(2px) rotate(135deg);
}

.catalog-nav__back-text {
    flex-grow: 1;
    min-width: 1px;
    padding: 24px 24px 24px 0;
}

.breadcrumbs {
    margin: 0 0 46px;
    padding: 0;
    list-style: none;
    font-size: 14px;
    line-height: 1;
    color: var(--gray);
}

.breadcrumbs li {
    display: inline;
}

.breadcrumbs li:not(:last-child):after {
    content: ' >';
    color: var(--black);
    margin: 0 4px;
}

.breadcrumbs a {
    color: var(--black);
}

.breadcrumbs a:hover {
    color: var(--primary);
}

.page-nav {
    margin: 0 0 40px;
    padding: 0;
    list-style: none;
    font-size: 14px;
    line-height: 1.4;
    position: sticky;
    top: 24px;
}

.page-nav li {
}

.page-nav li:not(:last-child) {
    margin-bottom: -1px;
}

.page-nav a {
    display: block;
    padding: 16px 20px;
    color: inherit;
    text-decoration: none;
    border: 1px solid var(--line);
    background: #fff;
}

.page-nav li:first-child a {
    border-radius: 4px 4px 0 0;
}

.page-nav li:last-child a {
    border-radius: 0 0 4px 4px;
}

.page-nav a:hover,
.page-nav a.is-active {
    color: inherit;
    background: var(--bg);
}

.clients {
    padding: 100px 0;
    background: var(--bg);
    overflow: hidden;
}

.clients__header {
    margin-bottom: 40px;
    line-height: 1.4;
}

.clients__title {
    display: inline;
    font-size: 32px;
    margin-right: 16px;
}

.clients__more-btn {
    display: inline;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    border-bottom: 1px dashed;
}

.clients__slider {
    display: flex;
    margin: 0 -8px;
}

.clients__slider.slick-slider {
    display: block;
}

.clients__slider .slick-arrow {
    left: auto;
    right: 8px;
    top: -83px;
    margin: 0;
}

.clients__slider .slick-prev {
    margin-right: 58px;
}

.clients__item {
    flex: 0 0 auto;
    width: 16.66%;
    padding: 0 8px;
}

.clients__logo {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 4px;
    padding: 8px;
}

.clients__item img {
    flex-shrink: 0;
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
}

.main {
    margin-bottom: 100px;
}

.main-slider .slick-arrow {
    width: 32px;
    height: 32px;
    margin-top: -16px;
}

.main-slider .slick-prev {
    left: 12px;
}

.main-slider .slick-next {
    right: 12px;
}

.main-slider .slick-arrow:before {
    width: 8px;
    height: 8px;
    margin: -4px;
}

.main-slider .slick-prev:before {
    transform: translateX(1px) rotate(135deg);
}

.main-slider .slick-next:before {
    transform: translateX(-1px) rotate(-45deg);
}

.main-slider .slick-dots {
    bottom: 2px;
}

.main-slider .slick-dots li button:before {
    background: #fff;
}

.main-slider {
    margin-bottom: 40px;
}

.main-slider__item {

}

.main-slider__item + .main-slider__item {
    display: none;
}

.main-banner {
    height: 378px;
    border-radius: 4px;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    padding: 37px 70px;
}

.main-banner__title {
    font-size: 36px;
    line-height: 1.4;
    margin-bottom: 18px;
}

.main-banner_3 .main-banner__title {
    max-width: 5em;
}

.main-banner_4 .main-banner__title {
    max-width: 7em;
}

.main-banner_5 .main-banner__title {
    max-width: 7em;
}

.main-banner__title strong {
    white-space: nowrap;
    font-weight: bold;
}

.main-banner__title em {
    font-style: normal;
    background-color: var(--secondary);
    padding: 0 5px;
}

.main-banner_5 .main-banner__title em {
    background-color: var(--primary);
    color: #fff;
}

.main-banner__text {
    font-size: 18px;
    line-height: 1.4;
    color: var(--gray);
    margin-bottom: 32px;
}

.main-banner_1 .main-banner__text {
    max-width: 17em;
}

.main-banner_2 .main-banner__text {
    max-width: 19em;
}

.main-banner_4 .main-banner__text {
    max-width: 15em;
}

.main-banner_5 .main-banner__text {
    max-width: 18em;
    margin: 0;
    color: inherit;
}

.main-banner__btn {
    min-width: 210px;
}

.main-banner__line {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: space-between;
    border-top: 2px solid var(--secondary);
    font-weight: 500;
    line-height: 1.4;
}

.main-banner__line li {
    position: relative;
    padding-top: 20px;
    padding-right: 10px;
}

.main-banner__line li:last-child {
    padding-right: 0;
}

.main-banner__line li:before {
    content: '';
    position: absolute;
    left: 0;
    top: -9px;
    width: 16px;
    height: 16px;
    background: #edf0f7;
    border: 2px solid var(--secondary);
    border-radius: 50%;
}

.news-widget {
    border: 1px solid var(--line);
    border-radius: 4px;
    margin-bottom: 40px;
}

.news-widget__header {
    border-radius: 4px 4px 0 0;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    background: var(--bg);
    padding: 13px 16px;
}

.news-widget__title {
    font-size: 22px;
    line-height: 1.2;
}

.news-widget__more-btn {
    font-size: 13px;
    line-height: 1.4;
    font-weight: 500;
    text-transform: uppercase;
    border-bottom: 1px dashed;
}

.news-widget__content {

}

.news-widget__item {
    padding: 17px 16px;
}

.news-widget__item:not(:last-child) {
    border-bottom: 1px solid var(--line);
}

.news-widget__item-date {
    font-size: 14px;
    line-height: 1;
    color: var(--gray-light);
    margin-bottom: 14px;
}

.news-widget__item-title {
    font-size: 16px;
    line-height: 1.4;
    font-weight: 500;
}

.news-widget__item-title a {
    color: inherit;
}

.news-widget__item-title a:hover {
    color: var(--primary);
}

.form-block {
    background: var(--bg);
    border-radius: 4px;
    padding: 40px;
    margin-bottom: 40px;
}

.form-block__inner {

}

.form-block__header {
    margin-bottom: 24px;
}

.form-block__title {
    font-size: 32px;
    line-height: 1.2;
    margin-bottom: 16px;
}

.form-block__desc {
    line-height: 1.5;
    color: var(--gray);
}

.form-block__content {

}

.form-block__content .row {
    --bs-gutter-x: 20px;
}

.form-block__footer {

}

.form-block__check-field {

}

.form-block__btn-field {

}

.form-block__btn {
    width: 180px;
}

.form-block .form-control {
    border-color: #fff;
}

.form-block .form-control:hover {
    border-color: var(--line);
}

.form-block .form-control:focus {
    border-color: var(--primary);
}

.form-block .form-control.error {
    border-color: var(--error);
}
.form-block .form-control-textarea:hover {
	border-color: var(--line);
}

.form-block .form-control-textarea:focus {
	border-color: var(--primary);
}

.form-block .form-control-textarea.error {
	border-color: var(--error);
}

.main-about {

}

.main-about__lead {
    line-height: 1.4;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 20px;
}

.main-about__head-col,
.main-about__content-col,
.main-about__list-col,
.main-about__image-col {
    margin-bottom: 40px;
}

.main-about h1 {
    margin: 0;
}

.main-about__content-col {
    color: var(--gray);
}

.main-about__list-col {

}

.main-about__list {
    background: var(--primary);
    color: #fff;
    border-radius: 4px;
    display: flex;
    flex-wrap: wrap;
}

.main-about__list-item {
    flex: 0 0 auto;
    width: 50%;
    border: 1px solid var(--primary-light);
    border-width: 1px 1px 0 0;
    padding: 32px 60px;
}

.main-about__list-item:nth-child(1),
.main-about__list-item:nth-child(2) {
    border-top: none;
}

.main-about__list-item:nth-child(2n) {
    border-right: none;
}

.main-about__list-icon {
    width: 70px;
    height: 70px;
    border: 1px solid var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.main-about__list-icon img {
    width: auto;
    height: auto;
    max-width: 34px;
    max-height: 34px;
}

.main-about__list-text {
    font-weight: 500;
    line-height: 1.5;
}

.main-about__image-col {

}

.main-about__image-col img {
    display: block;
    border-radius: 4px;
    width: 100%;
    height: 0;
    min-height: 100%;
    object-fit: cover;
}

.catalog-sort {
    line-height: 1.4;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--line);
    margin-bottom: 24px;
}

.catalog-sort__title {
    display: inline;
    font-weight: 500;
    margin-right: 19px;
}

.catalog-sort__list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: inline;
}

.catalog-sort__list li {
    display: inline;
    margin-right: 12px;
}

.catalog-sort__list a {
    color: var(--gray);
}

.catalog-sort__list a:hover {
    color: var(--primary);
}

.catalog-sort__list a.is-active {
    color: var(--black);
}

.catalog-wrapper {

}

.catalog {
    --bs-gutter-x: 24px;
    --bs-gutter-y: 24px;
    margin-bottom: 40px;
}

.catalog__item {
    display: flex;
}

.catalog-slider {
    --bs-gutter-x: 24px;
}

.catalog-slider__item {
    display: flex !important;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
}

.catalog-slider .slick-list {
padding: 10px 0 90px;
    margin: -10px 0 -90px;
}

.catalog-slider .slick-track,
.catalog-slider .slick-slide,
.catalog-slider .slick-slide > div {
    display: flex;
}

.catalog-slider .slick-slide {
    height: auto;
}

.item {
    width: 100%;
    background: #fff;
    border: 1px solid #D0D6E0;
    border-radius: 4px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.item:hover {
    border-color: #fff;
    z-index: 100;
}

.item:hover:before {
    content: '';
    position: absolute;
    z-index: -1;
    left: -1px;
    right: -1px;
    top: -1px;
    bottom: -62px;
    background: #fff;
    border: 1px solid #fff;
    box-shadow: 0px 12px 32px rgba(0, 0, 0, 0.08), 0px 8px 8px rgba(0, 0, 0, 0.05);
    border-radius: 4px;
    padding: 15px;
}

.item__image {
    position: relative;
    margin-bottom: 16px;
}

.item__image:before {
    content: '';
    display: block;
    padding-top: 100%;
}

.item__image a {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.item__image img {
    flex-shrink: 0;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    margin: auto;
}

.item__title {
    font-size: 16px;
    line-height: 1.4;
    margin-bottom: 18px;
}

.item__title a {
    color: inherit;
}

.item__title a:hover {
    color: var(--primary);
}

.item__price {
    margin-top: auto;
    font-weight: bold;
    font-size: 22px;
    line-height: 1.2;
    color: var(--black);
}

.item__btn-wrapper {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    padding: 0 15px;
    z-index: 1;
    display: none;
}

.item:hover .item__btn-wrapper {
    display: block;
}

.item__btn {
    height: 46px;
    padding: 9px 0;
    width: 100%;
}

.catalog-more-btn {
    width: 100%;
    margin-bottom: 40px;
}

.categories {
    --bs-gutter-x: 24px;
    --bs-gutter-y: 24px;
    margin-bottom: 40px;
}

.categories__item {
    display: flex;
}

.category-item {
    display: block;
    width: 100%;
    background: #fff;
    border: 1px solid #D0D6E0;
    border-radius: 4px;
    padding: 39px;
    text-align: center;
}

.category-item:hover {
    border-color: #fff;
    box-shadow: 0px 12px 32px rgba(0, 0, 0, 0.08), 0px 8px 8px rgba(0, 0, 0, 0.05);
}

.category-item__image {
    width: 84px;
    height: 84px;
    margin: 0 auto 31px;
}

.category-item__image img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
}

.category-item__title {
    line-height: 1.4;
    font-weight: 500;
    color: var(--black);
}

.contacts {
    border: 1px solid var(--line);
    border-radius: 4px;
    margin-bottom: 40px;
    display: flex;
}

.contacts__header {
    flex: 0 0 auto;
    width: 403px;
    padding: 58px 40px;
}

.contacts h1 {
    margin-bottom: 41px;
}

.contacts__phones {
    font-size: 24px;
    line-height: 1.2;
    font-weight: 500;
    margin-bottom: 42px;
}

.contacts__phones-item {
    margin-bottom: 12px;
}

.contacts__phones a {
    color: inherit;
}

.contacts__phones a:hover {
    color: var(--primary);
}

.contacts__list {
    font-size: 18px;
    line-height: 1.2;
}

.contacts__list-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.contacts__list-item:last-child {
    margin-bottom: 0;
}

.contacts__list-item .icon {
    color: var(--primary);
    margin-right: 13px;
}

.contacts__list-item-content {
    flex-grow: 1;
    min-width: 1px;
}

.contacts__list a {
    color: inherit;
}

.contacts__list a:hover {
    color: var(--primary);
}

.contacts__map {
    background: var(--bg);
    border-radius: 0 4px 4px 0;
    overflow: hidden;
    flex-grow: 1;
    min-width: 1px;
    min-height: 300px;
}

ymaps[class^="ymaps-"][class$="-copyrights-pane"],
ymaps[class^="ymaps-"][class$="-controls-pane"] {
    display: none !important;
}

.product {
    margin-bottom: 130px;
}

.product__main {
    background: var(--bg);
    border-radius: 4px;
    padding: 32px;
    margin-bottom: 40px;
}

.product__main-row {
    display: flex;
    margin: 0 -30px;
}

.product__gallery-col {
    flex: 0 0 auto;
    padding: 0 30px;
    width: 48.264%;
}

.product__gallery {

}

.product__image {
    display: block;
    position: relative;
}

.product__image:before {
    content: '';
    display: block;
    padding-top: 100%;
}

.product__image-wrapper {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
    background: #fff;
}

.product__image-wrapper img {
    display: block;
    flex-shrink: 0;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    border-radius: 2px;
}

.product__content-col {
    flex: 0 0 auto;
    padding: 0 30px;
    width: 51.736%;
}

.product__back-btn {
    display: inline-block;
    vertical-align: top;
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 22px;
}

.product__back-btn .icon {
    top: -1px;
    margin-right: 4px;
}

.product__title {
    font-size: 28px;
    line-height: 1.4;
    margin-bottom: 40px;
}

.product__options {
    margin-bottom: 36px;
}

.product__option-control {
    width: 189px;
    height: 44px;
}

.product__option-control,
.product__option-control .jq-selectbox__select {
    padding-top: 8px;
    padding-bottom: 8px;
}

.product__price {
    font-weight: bold;
    font-size: 32px;
    line-height: 1.2;
    margin-bottom: 24px;
}

.product__btn {
    min-width: 256px;
}

.product__content {
    margin-bottom: 40px;
}

.catalog-slider-section {
    margin-bottom: 40px;
}

.catalog-slider-header {

}

.catalog-slider-title {
    margin-bottom: 36px;
    line-height: 1.2;
}

.catalog-slider-nav {
    position: relative;
    flex-shrink: 0;
    width: 100px;
    height: 42px;
}

.catalog-slider-nav .slick-arrow {
    top: 0;
    margin-top: 0;
}

.catalog-slider-nav .slick-prev {

}

.catalog-slider-nav .slick-next {

}

.catalog-slider-content {

}
/* New pages 08.07.2022 */
.news-filter {
	padding: 0px 0px 12px 0px;
	border-bottom: 1px solid #D0D6E0;
	margin: 0px 0px 24px 0px;
}
.news-filter__list {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
}
.news-filter__list li {
	font-size: 16px;
	line-height: 140%;
	color: #656974;
	cursor: pointer;
}
.news-filter__list li:not(:last-child) {
	margin: 0px 16px 0px 0px;
}
.news-filter__list li:hover {
	color: #060915;
}
.news-filter__list li.active {
	color: #060915;
}

.news-row {
	--bs-gutter-x: 24px;
	--bs-gutter-y: 24px;
	margin-bottom: 40px;
}
.item-news {
	
}
.item-news__content {
	position: relative;
	background: #FFFFFF;
	border: 1px solid #D0D6E0;
	border-radius: 4px;
	transition: all 0.3s ease 0s;
	height: 100%;
	display: flex;
	flex-direction: column;
}
.item-news__content:hover {
	box-shadow: 0px 12px 32px rgba(0, 0, 0, 0.08), 0px 8px 8px rgba(0, 0, 0, 0.05);
	border-color: #F4F4F4;
}
.item-news__top {
	position: relative;
}
.item-news__img {
	width: 100%;
	height: 200px;
	overflow: hidden;
	position: relative;
	display: block;
	border-radius: 4px 4px 0 0;
}
.item-news__img img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.item-news__label {
	font-family: 'Gotham Pro';
	font-weight: 500;
	position: absolute;
	font-size: 13px;
	line-height: 100%;
	text-align: center;
	text-transform: uppercase;
	color: #FFFFFF;
	padding: 11px 10px 8px 10px;
	background: #0055BD;
	border-radius: 4px;
	bottom: 12px;
	right: 12px;
	display: block;
	transition: background 0.3s ease 0s;
	cursor: pointer;
}
.item-news__label:hover {
	background: #003a81;
}
.item-news__text {
	padding: 20px 16px;
	display: flex;
	flex-direction: column;
	flex: 1;
}
.item-news__title {
	font-weight: 500;
	font-size: 16px;
	line-height: 140%;
	color: #060915;
	margin: 0px 0px 12px 0px;
	flex: 1;
}
.item-news__date {
	font-size: 14px;
	line-height: 120%;
	color: #7A7F8C;
}

.one-news-info {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0px 0px 12px 0px;
	border-bottom: 1px solid #D0D6E0;
	margin: 0px 0px 24px 0px;
}
.one-news-info__date {
	font-size: 14px;
	line-height: 120%;
	color: #7A7F8C;
}
.one-news-info__label {
	font-size: 13px;
	line-height: 100%;
	text-align: center;
	text-transform: uppercase;
	color: #FFFFFF;
	padding: 11px 10px 8px 10px;
	background: #0055BD;
	border-radius: 4px;
	display: block;
	transition: background 0.3s ease 0s;
	cursor: pointer;
}
.one-news-info__label:hover {
	background: #003a81;
 }
.one-news__img {
	border-radius: 4px;
	height: 420px;
	overflow: hidden;
	margin: 0px 0px 40px 0px;
}

.one-news-product {
	display: flex;
	padding: 16px;
	background: #FFFFFF;
	border: 1px solid #D0D6E0;
	border-radius: 4px;
	margin: 32px 0;
}
.one-news-product__img {
	width: 160px;
	height: 160px;
	flex: 0 0 160px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0px 32px 0px 0px;
}
.one-news-product__img img {
	margin: 0 !important;
	width: 100%;
}
.one-news-product__title {
	font-size: 16px;
	line-height: 140%;
	color: #060915;
	margin: 0px 0px 16px 0px;
}
.one-news-product__price {
	font-weight: 700;
	font-size: 22px;
	line-height: 120%;
	color: #060915;
	margin: 0px 0px 24px 0px;
}
.one-news-product__link {
	width: 188px;
	height: 46px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.gallery-row {
	--bs-gutter-x: 24px;
	--bs-gutter-y: 24px;
	margin-bottom: 40px;
}
.item-gallery {
}
.item-gallery__content {}
.item-gallery__top {}
.item-gallery__img {
	display: block;
	height: 280px;
	border-radius: 4px;
	overflow: hidden;
	position: relative;
	margin: 0px 0px 16px 0px;
}
.item-gallery__img img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.item-gallery__text {}
.item-gallery__title {
	font-size: 16px;
	line-height: 140%;
	color: #060915;
	font-weight: 500;
	margin: 0px 0px 12px 0px;
}
.item-gallery__bottom {
	display: flex;
	align-items: center;
}
.item-gallery__date {
	font-size: 14px;
	line-height: 120%;
	color: #7A7F8C;
}
.item-gallery__label {
	font-size: 14px;
	line-height: 120%;
	color: #0055BD;
	transition: color 0.3s ease 0s;
	position: relative;
	cursor: pointer;
}
.item-gallery__label:before {
	content: '/';
	font-size: 14px;
	line-height: 120%;
	color: #7A7F8C;
	padding: 0 8px;
}
.item-gallery__label:hover {
	color: #003e8a;
}
.form-block-faq .form-block__title {
	font-weight: 500;
	font-size: 32px;
	line-height: 140%;
	color: #060915;
}
.faq-block {
}
.faq-block__left {}
.faq-block__title {
	font-weight: 400;
	font-size: 28px;
	line-height: 140%;
	color: #060915;
}
.faq-block__right {}
.item-faq-block {
	background: #FFFFFF;
	border: 1px solid #D0D6E0;
	border-radius: 4px;
}
.item-faq-block:not(:last-child) {
	margin: 0px 0px 12px 0px;
}
.item-faq-block__title {
	font-size: 16px;
	line-height: 140%;
	color: #060915;
	font-weight: 500;
	padding: 20px 24px;
	cursor: pointer;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.item-faq-block__title::after {
	content: '';
	display: block;
	background: url('../images/faq-icon.svg') 0 0 no-repeat;
	width: 20px;
	height: 20px;
	transition: transform 0.3s ease 0s;
}
.item-faq-block__title.active::after {
	transform: rotate(180deg);
}
.item-faq-block__content {
	display: none;
}
.item-faq-block__text {
	font-size: 14px;
	line-height: 140%;
	color: #656974;
	padding: 0px 24px 20px 24px
}

.header-lang {
	width: 70px;
	flex: 0 0 70px;
	height: 34px;
}
.header-lang__select {
	height: 34px;
	border: none;
	background: transparent;
	border-left: 1px solid #D0D6E0;
	border-radius: unset;
}
.header-lang__select.form-control:hover {
	border-color: #D0D6E0;
}
.header-lang select.form-control {
	height: 34px;
	/* padding: 0; */
	padding: 0px 0px 0px 24px;
	font-weight: 500;
	font-size: 13px;
	line-height: 140%;
	text-transform: uppercase;
	color: #060915;
	background-size: 20px 4px;
}
.jq-selectbox__dropdown ul {
	display: block;
	padding: 0 19px;
	flex: unset;
}
.header-lang .jq-selectbox__select {
	/* height: 34px; */
	padding: 0;
	padding: 8px 14px 8px 24px;
	font-weight: 500;
	font-size: 13px;
	line-height: 140%;
	text-transform: uppercase;
	color: #060915;
}
.header-lang .jq-selectbox__trigger {
	background: url('../images/lang-icon.svg') 0 0 no-repeat;
	width: 14px;
	height: 14px;
	margin: 0;
	right: 0;
	transform: translate(0, -50%);
}
.header-lang__select.jq-selectbox.opened {
	border-radius: unset;
}
.header-lang__select.jq-selectbox.opened .jq-selectbox__trigger {
	transform: translate(0, -50%) rotate(180deg);
}
.popup-thk:not(.fancybox-content) {
	display: none;
}
.popup-thk {
	max-width: 410px;
	padding: 40px;
	border-radius: 4px;
}
.popup-thk__content {
	display: flex;
	flex-direction: column;
	align-items: center;
}
.popup-thk__img {
	width: 100px;
	height: 100px;
	flex: 0 0 100px;
	margin: 0px 0px 32px 0px;
}
.popup-thk__title {
	font-weight: 500;
	font-size: 32px;
	line-height: 120%;
	text-align: center;
	color: #060915;
	margin: 0px 0px 16px 0px;
}
.popup-thk__subtitle {
	font-weight: 400;
	font-size: 16px;
	line-height: 150%;
	text-align: center;
	color: #656974;
	max-width: 330px;
}

@media (min-width: 1220px) {
	.header__nav .nav {
		display: flex;
		align-items: center;
		height: 60px;
		padding: 0px 24px 0px 0px;
	}
	.header__nav .nav ul {
		flex: 1;
	}
}
@media (max-width:767px){
	.news-filter__list {
		flex-wrap: wrap;
	}
	.popup-thk {
		padding: 30px;
	}
}
@media (max-width:600px){
	.one-news-product {
		flex-wrap: wrap;
		justify-content: center;
	}
	.one-news-product__img {
		margin: 0px 0px 15px 0px;
	}
	.one-news-product__link {
		width: 100%;
	}
	.one-news__img {
		height: 300px;
	}
}
/* New pages 08.07.2022 */