#transition_disabled * {
    -webkit-transition: none !important;
    -moz-transition: none !important;
    -ms-transition: none !important;
    transition: none !important;
}

/*------------------
    Reset styles
------------------*/
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;

    scroll-margin-top: var(--cont_padding);
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;

    overscroll-behavior: none;
    -webkit-tap-highlight-color: transparent;
    -webkit-overflow-scrolling: touch;
    text-rendering: optimizeLegibility;
    text-decoration-skip: objects;
}

img {
    border-style: none;
}

textarea {
    overflow: auto;
}

input,
textarea,
input:active,
textarea:active,
button {
    margin: 0;

    -webkit-border-radius: 0;
    border-radius: 0;
    outline: none transparent !important;
    box-shadow: none;

    -webkit-appearance: none;
    appearance: none;
    -moz-outline: none !important;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    margin: 0;

    -webkit-appearance: none;
}

input[type=number] {
    -moz-appearance: textfield;
}

:focus {
    outline: 0;
}

:hover,
:active {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-touch-callout: none;
}


::-ms-clear {
    display: none;
}

/*
@font-face {
    font-family: 'Neue Haas Unica W1G';
    src: url('../fonts/Neue Haas Unica W1G.eot');
    src: url('../fonts/Neue Haas Unica W1G.eot?#iefix') format('embedded-opentype'),
    url('../fonts/Neue Haas Unica W1G.woff2') format('woff2'),
    url('../fonts/Neue Haas Unica W1G.woff') format('woff'),
    url('../fonts/Neue Haas Unica W1G.svg#Neue Haas Unica W1G') format('svg');
    font-weight: bold;
    font-style: normal;
    font-stretch: normal;
    unicode-range: U+0020-00FE;
}

@font-face {
    font-family: 'Neue Haas Unica W1G';
    src: url('../fonts/Neue Haas Unica W1G.eot');
    src: url('../fonts/Neue Haas Unica W1G.eot?#iefix') format('embedded-opentype'),
    url('../fonts/Neue Haas Unica W1G.woff2') format('woff2'),
    url('../fonts/Neue Haas Unica W1G.woff') format('woff'),
    url('../fonts/Neue Haas Unica W1G.svg#Neue Haas Unica W1G') format('svg');
    font-weight: 400;
    font-style: normal;
    font-stretch: normal;
    unicode-range: U+0020-00FE;
}
*/

@font-face {
    font-family: 'Neue Haas Unica';
    src: url('../fonts/transfonter/NeueHaasUnica-Bold.woff2') format('woff2'),
    url('../fonts/transfonter/NeueHaasUnica-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Neue Haas Unica Med';
    src: url('../fonts/transfonter/NeueHaasUnica-Medium.woff2') format('woff2'),
    url('../fonts/transfonter/NeueHaasUnica-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Neue Haas Unica';
    src: url('../fonts/transfonter/NeueHaasUnica-Regular.woff2') format('woff2'),
    url('../fonts/transfonter/NeueHaasUnica-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}



@font-face {
    font-family: 'Neue Haas Unica';
    src: url('../fonts/Neue Haas Unica W1G Light.eot');
    src: url('../fonts/Neue Haas Unica W1G Light.eot?#iefix') format('embedded-opentype'),
    url('../fonts/Neue Haas Unica W1G Light.woff2') format('woff2'),
    url('../fonts/Neue Haas Unica W1G Light.woff') format('woff'),
    url('../fonts/Neue Haas Unica W1G Light.svg#Neue Haas Unica W1G Light') format('svg');
    font-weight: 300;
    font-style: normal;
    font-stretch: normal;
    unicode-range: U+0020-00FE;
}

/*
@font-face {
    font-family: 'Neue Haas Unica W1G';
    src: url('../fonts/Neue Haas Unica W1G Medium.eot');
    src: url('../fonts/Neue Haas Unica W1G Medium.eot?#iefix') format('embedded-opentype'),
    url('../fonts/Neue Haas Unica W1G Medium.woff2') format('woff2'),
    url('../fonts/Neue Haas Unica W1G Medium.woff') format('woff'),
    url('../fonts/Neue Haas Unica W1G Medium.svg#Neue Haas Unica W1G Medium') format('svg');
    font-weight: 500;
    font-style: normal;
    font-stretch: normal;
    unicode-range: U+0020-00FE;
}
*/

/*-------------------
    Global styles
-------------------*/
:root {
    --bg: #f4f4f5;
    --content_width: 1580px;
    --cont_padding: 24px;
    --cont_padding_double: calc(var(--cont_padding) * 2);
    --cont_padding_half: calc(var(--cont_padding) * .5);
    --scroll_width: 17px;
    --accent_color: #740000;
    --accent_color2: #E20E18;
    --text_color: #000;
    --font_size: 16px;
    --font_size_title: 30px;
    --font_family: 'Neue Haas Unica', 'Arial', sans-serif;
}


::selection {
    color: #fff;
    background: var(--accent_color);
}

::-moz-selection {
    color: #fff;
    background: var(--accent_color);
}


html {
    height: 100%;
    min-height: -moz-available;
    min-height: -webkit-fill-available;
    min-height: fill-available;
}


html.custom_scroll ::-webkit-scrollbar {
    width: 10px;
    height: 10px;

    background-color: var(--bg);
}


html.custom_scroll ::-webkit-scrollbar-thumb {
    background-color: var(--accent_color);
}


body {
    height: 100%;
    min-height: -moz-available;
    min-height: -webkit-fill-available;
    min-height: fill-available;

    font-family: var(--font_family);
    font-size: var(--font_size);
    font-weight: 400;
    line-height: normal;

    color: var(--text_color);
}


body.lock {
    overflow: hidden;
}


button {
    display: inline-block;

    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;

    cursor: pointer;
    vertical-align: top;

    color: inherit;
    border: none;
    background: none;
}


.wrap {
    position: relative;
    z-index: 9;

    display: flex;
    overflow: clip;
    flex-direction: column;

    min-height: 100%;

    background: var(--bg);
}


.wrap > .main {
    position: relative;

    display: flex;
    flex: 1 0 auto;
    flex-direction: column;
}


.cont {
    width: 100%;
    max-width: calc(var(--content_width) + var(--cont_padding_double));
    margin-inline: auto;
    padding-inline: var(--cont_padding);
}


.row {
    display: flex;
    align-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    justify-content: flex-start;
}


.block {
    margin-bottom: 60px;
}


.overlay {
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;

    display: none;

    width: 100%;
    height: 100lvh;

    opacity: .65;
    background: var(--text_color);
}


/*------------
    Header
------------*/
header {
    position: absolute;
    z-index: 101;
    top: 0;
    left: 0;

    width: 100%;
    padding-block: 50px;
}


header.inner-page {
    position: relative;
}

header .data {
    position: relative;

    display: flex;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;

    height: 84px;
    padding-inline: 50px 150px;

    border-radius: 8px;
    background: #fff;
}


header .logo {
    display: block;

    text-decoration: none;

    color: currentColor;
}


header .logo img {
    display: block;

    width: 200px;
    height: 45px;
}


header .menu {
    gap: 70px;
}


header .menu_item > a {
    display: block;

    font-size: 18px;
    line-height: calc(100% + 4px);
    font-weight: bold;

    transition: color .2s linear;
    text-decoration: none;

    color: currentColor;
    text-transform: uppercase;
}


header .menu_item > a:hover,
header .menu_item > a.active {
    color: var(--accent_color);
}


header .mob_menu_btn {
    display: none;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;

    width: 68px;
    height: 68px;

    color: currentColor;
}


header .mob_menu_btn span {
    position: relative;

    display: block;

    width: 24px;
    height: 2px;

    transition: background .2s linear;

    background: currentColor;
}


header .mob_menu_btn span:before,
header .mob_menu_btn span:after {
    position: absolute;
    top: -8px;
    left: 0;

    display: block;

    width: 100%;
    height: 100%;

    content: '';
    transition: .2s linear;

    background: currentColor;
}


header .mob_menu_btn span:after {
    top: 8px;
}


header .mob_menu_btn.active span {
    background: transparent;
}


header .mob_menu_btn.active span:before {
    top: 0;

    transform: rotate(45deg);
}


header .mob_menu_btn.active span:after {
    top: 0;

    transform: rotate(-45deg);
}


header .search_btn {
    position: absolute;
    top: 0;
    right: 0;

    display: flex;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;

    width: 85px;
    height: 100%;

    color: #fff;
    border-radius: 8px;
    background: #333839;
}


header .search_btn .icon {
    display: block;

    width: 48px;
    height: 48px;
}


/*----------------
    Block head
----------------*/
.block_head {
    position: relative;

    margin-bottom: 80px;
}

/*
.block_head.center {
    text-align: center;
}
*/

.block_head .logo {
    position: absolute;
    top: 30px;
}


.block_head .logo img {
    display: block;

    width: 142px;
    height: 32px;
}


.block_head .title {
    position: relative;

    display: block;

    padding-bottom: 18px;

    font-size: var(--font_size_title);
    font-weight: bold;
    line-height: calc(100% + 6px);
    text-transform: uppercase;
}

.block_head .title span {
    display: inline-block;
    border-bottom: 2px solid var(--accent_color);
    padding-bottom: 10px;;
}

/*
.block_head .title:after
{
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;

    display: block;

    width: 225px;
    max-width: 100%;
    height: 1px;
    margin-inline: auto;

    content: '';

    background: currentColor;
}
*/


.block_head .desc {
    margin-top: 8px;

    font-size: 22px;
    line-height: calc(100% + 4px);
}


/*----------------
    Typography
----------------*/
.text_block {
    font-size: 16px;
    line-height: 24px;
}


.text_block > *,
.text_block .cols .col > * {
    margin-bottom: 24px;
}


.text_block > :last-child,
.text_block .cols .col > :last-child {
    margin-bottom: 0 !important;
}

.text_block > :first-child,
.text_block .cols .col > :first-child {
    margin-top: 0 !important;
}


.text_block .big {
    font-size: var(--font_size);
    line-height: calc(100% + 10px);
}


.text_block h2 {
    font-size: var(--font_size_title);
    line-height: 1.35em;
    font-weight: bold;
    margin-bottom: 1em;
    display: inline-block;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--accent_color);
}

.text_block h3 {
    font-size: calc(var(--font_size_title) * 0.8);
    font-weight: bold;
    line-height: 100%;
    margin-bottom: 1em;
}


.text_block * + h2,
.text_block * + h3 {
    margin-top: 2em;
}

.text_block h2 + *,
.text_block h3 + * {
    margin-top: 0 !important;
}


.text_block img {
    display: block;

    max-width: 100%;
}

.text_block img.loaded {
    height: auto !important;
}


.text_block .columns {
    column-gap: 40px;
    column-count: 2;
}

.text_block .columns > * {
    transform: translateZ(0);

    --webkit-column-break-inside: avoid;
    page-break-inside: avoid;
    break-inside: avoid;
}

.text_block .columns > * + * {
    margin-top: 24px;
}


.text_block .cols {
    display: flex;

    justify-content: space-between;
    align-items: flex-start;
    align-content: flex-start;
    flex-wrap: wrap;
}

.text_block .cols .col {
    width: calc(50% - 20px);
}


.text_block ul li {
    position: relative;

    display: block;
    overflow: hidden;

    padding-left: 28px;

    list-style-type: none;
}

.text_block ul li + li {
    margin-top: 20px;
}

.text_block ul li:before {
    position: absolute;
    top: 14px;
    left: 0;

    display: block;

    width: 12px;
    height: 1px;

    content: '';

    background: var(--accent_color);
}


.text_block ol {
    counter-reset: li;
}

.text_block ol li {
    position: relative;

    display: block;
    overflow: hidden;

    padding-left: 28px;

    list-style-type: none;
}

.text_block ol li + li {
    margin-top: 12px;
}

.text_block ol li:before {
    color: #ef7f1a;
    font-weight: 700;

    position: absolute;
    top: 0;
    left: 0;

    content: counter(li);
    counter-increment: li;
}


.text_block a {
    color: var(--text_color);
}

.text_block a:hover {
    text-decoration: none;
}

.text_block .table_wrap {
    overflow: auto;
    max-width: 100%;
}

.text_block table {
    width: 100%;

    /*table-layout: fixed;*/
    border-spacing: 0;
    border-collapse: collapse;
    border: 0;
}

.text_block table td,
.text_block table th {
    font-size: 0.875em;
    /*padding: 0.65em 1em;*/
    padding: 10px;
    border: 1px solid #e0e5ea;
    vertical-align: top;
    color: #000;
}

/*
.text_block tr:last-child td,
.text_block tbody tr:last-child th {
	border-bottom: none;
}
*/
.text_block table th {
    text-align: center;
    font-weight: 500;
}

.text_block th,
.text_block td.header {
    font-size: 0.93rem;
    text-align: left;
    font-weight: 500;
    color: #fff !important;
    border-top: none;
    border: 1px solid #fff;
    background-color: #444 !important;
    padding: 10px;
}

.text_block tbody tr:nth-child(2n) td,
.text_block tbody tr:nth-child(2n) th {
    background: #f6f6f6;
}


/*------------------
    Form elements
------------------*/
.form {
    --form_border_color: #000;
    --form_focus_color: var(--accent_color);
    --form_error_color: red;
    --form_border_radius: 3px;
    --form_bg_color: #fff;
    --form_placeholder_color: #999;
}


.form ::-webkit-input-placeholder {
    color: var(--form_placeholder_color);
}

.form :-moz-placeholder {
    color: var(--form_placeholder_color);
}

.form ::-moz-placeholder {
    color: var(--form_placeholder_color);

    opacity: 1;
}

.form :-ms-input-placeholder {
    color: var(--form_placeholder_color);
}


.form .columns {
    margin-left: calc(var(--form_columns_offset) * -1);

    --form_columns_offset: 40px;
}

.form .columns > * {
    width: calc(50% - var(--form_columns_offset));
    margin-left: var(--form_columns_offset);
}


.form .line {
    margin-bottom: 40px;
}


.form .field {
    position: relative;
}


.form .input {
    color: #333;
    font-family: var(--font_family);
    font-size: 18px;

    display: block;

    width: 100%;
    height: 60px;
    padding: 0 26px;

    transition: border-color .2s linear;

    border: 1px solid var(--form_border_color);
    border-radius: var(--form_border_radius);
    background: var(--form_bg_color);
}

.form textarea.input {
    height: 100px;
    padding-top: 15px;
    padding-bottom: 15px;
    line-height: 1.2;
}

.form .input:-webkit-autofill {
    -webkit-box-shadow: inset 0 0 0 50px var(--form_bg_color) !important;
}


.form .input:focus {
    border-color: var(--form_focus_color);
}

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

.form p.error {
    color: var(--form_error_color);
    font-size: 14px;
    margin-top: 5px;
}


.form .submit_btn {
    color: #fff;
    font-size: 24px;
    font-weight: 500;
    line-height: 100%;

    padding: 20px 30px;

    transition: background .2s linear;

    border-radius: 8px;
    background: var(--accent_color);
}

.form .submit_btn:hover {
    background: var(--accent_color2);
}


.form .agree label {
    color: #333;
    font-size: 14px;
    line-height: 20px;

    position: relative;

    display: flex;

    min-height: 24px;
    padding-left: 38px;

    cursor: pointer;

    justify-content: flex-start;
    align-items: center;
    align-content: center;
}


.form .agree label input {
    display: none;
}


.form .agree label .check {
    color: var(--accent_color);

    position: absolute;
    top: 0;
    left: 0;

    display: flex;

    width: 24px;
    height: 24px;

    border: 1px solid var(--accent_color);

    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

.form .agree label .check .icon {
    display: block;

    width: 14px;
    height: 11px;

    transition: opacity .2s linear;

    opacity: 0;
}


.form .agree label a {
    color: var(--accent_color);

    transition: color .2s linear;
    text-decoration: none;
}

.form .agree label a:hover {
    color: var(--accent_color2);
}


.form .agree label input:checked + .check .icon {
    opacity: 1;
}


.form .bottom {
    display: flex;

    justify-content: space-between;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}


.form .bottom .agree {
    width: 335px;
    max-width: 100%;
    margin-left: auto;
}


.ajax_contener {
    position: relative;
}

.spec_field {
    display: none;
}

/*-----------------
    Main slider
-----------------*/
.main_slider {
    position: relative;

    background: #ddd;
    box-shadow: 0 6px 10px 4px rgba(0, 0, 0, .15), 0 2px 3px 0 rgba(0, 0, 0, .30);
}


.main_slider .swiper {
    position: absolute;
    z-index: 1;

    pointer-events: none;

    inset: 0;
}


.main_slider .swiper-slide {
    position: relative;

    overflow: hidden;
}


.main_slider .swiper .img {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;

    display: block;

    width: 100%;
    height: 100%;

    pointer-events: none;

    object-fit: cover;
}


.main_slider .cont {
    position: relative;
    z-index: 3;

    display: flex;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-start;

    height: 100lvh;
    min-height: 650px;
    padding-block: 344px 184px;
}


.main_slider .data {
    width: 475px;
    max-width: 100%;
    min-height: 417px;
    padding: 35px;

    color: #fff;
    border-radius: 5px;
    /*background: color(srgb 0.56 0 0 / 0.8);*/
    background: rgba(116, 0, 0, 0.8);
    box-shadow: -6px 7px 11.5px 3px rgba(0, 0, 0, .55);

    mix-blend-mode: multiply;
}


.main_slider .pre_title {
    position: relative;

    margin-bottom: 33px;
    padding-bottom: 2px;

    font-size: 22px;
    line-height: 32px;

    text-transform: uppercase;
}
.main_slider .pre_title span {
    display: inline-block;
    border-bottom: 1px solid #fff;
    padding-bottom: 8px;
}


/*
.main_slider .pre_title:after {
    position: absolute;
    bottom: 0;
    left: 0;

    display: block;

    width: 295px;
    max-width: 100%;
    height: 1px;

    content: '';

    background: currentColor;
}
*/

.main_slider .title {
    font-size: var(--font_size_title);
    font-weight: 400;
    line-height: calc(100% + 6px);
}


.main_slider .desc {
    margin-top: 27px;

    font-size: 20px;
    line-height: calc(100% + 4px);
}


/*-------------
    Catalog
-------------*/
.main_catalog_categ_head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--cont_padding);
}
.main_products + .main_catalog_categ_head {
    margin-top: var(--cont_padding_double);
}
.main_catalog_categ_head .link_all {
    display: inline-block;
    background: #E6E6E6;
    border-radius: 8px;
    font-weight: 500;
    font-size: 14px;
    line-height: 28px;
    color: #000000;
    text-decoration: none;
    padding: 0 15px;
    transition: all 0.2s linear;
    white-space: nowrap;
}

.main_catalog_categ_head .link_all:hover {
    color: #fff;
    background: var(--accent_color);
}
.main_catalog_categ_head .page_big_title {
    margin-bottom: 0;
}

.page_big_title span {
    display: inline-block;
    border-bottom: 2px solid var(--accent_color);
    padding-bottom: 10px;;
}


.catalog .row {
    align-content: stretch;
    align-items: stretch;
    justify-content: flex-start;

    margin-bottom: -28px;
    margin-left: -28px;
}


.catalog .row > * {
    width: calc(25% - 28px);
    margin-bottom: 28px;
    margin-left: 28px;
}


.catalog .item {
    display: flex;
    overflow: hidden;
    flex-direction: column;

    text-decoration: none;

    color: var(--text_color);
    border-radius: 8px;
    background: #e6e6e6;
}


.catalog .item .thumb {
    /*
    display: flex;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;

    height: 420px;
     */

    background: #ddd;

    position: relative;
    display: block;
    overflow: hidden;
    padding-bottom: 66.57%;
}


.catalog .item .thumb img {
    /*
    display: block;

    max-width: 100%;
    max-height: 100%;

     */

    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    object-fit: contain;
}


.catalog .item .name {
    padding: 7px 8px;

    font-size: calc(var(--font_size_title) * 0.8);
    font-weight: 500;
    line-height: calc(100% + 4px);

    text-align: center;

    color: #fff;
    border-radius: 8px 8px 0 0;
    background: var(--accent_color);
}


.catalog .item .info {
    display: flex;
    flex: 1 0 auto;
    flex-direction: column;

    padding: 20px 32px 32px;

    border-radius: 0 0 8px 8px;
    background: #fff;
}


.catalog .item .features {
    display: flex;
    flex-direction: column;

    gap: 4px;
    margin-bottom: 24px;
}


/*
.catalog .item .features > *
{
    display: flex;
    align-content: center;
    align-items: center;
    flex-wrap: nowrap;
    justify-content: space-between;

    font-size: 17px;
    font-weight: 300;
    line-height: calc(100% + 3px);

    gap: 10px;
}
 */

.catalog .item .features table {
    width: 100%;
    border-collapse: collapse;
}

.catalog .item .features table td {
    font-size: 16px;
    font-weight: 400;
    line-height: calc(100% + 3px);
    padding: 0 0 5px;
}

.catalog .item .features table td:first-child {
    font-weight: bold;
}

.catalog .item .features table td:last-child {
    text-align: right;
    padding-left: 20px;
}

.catalog .item .link {

}

.catalog .item .link a {
    display: inline-block;
    background: #E6E6E6;
    border-radius: 8px;
    font-weight: 500;
    font-size: 18px;
    line-height: 34px;
    color: #000000;
    text-decoration: none;
    padding: 0 15px;
    transition: all 0.2s linear;
}

.catalog .item .link a:hover {
    color: #fff;
    background: var(--accent_color);
}

.catalog .full_link {
    display: flex;

    margin-top: 60px;
}


.catalog .full_link a {
    display: flex;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;

    margin-inline: auto;

    font-size: var(--font_size_title);
    line-height: calc(100% + 6px);

    text-align: center;
    white-space: nowrap;
    text-decoration: none;

    color: currentColor;

    gap: 64px;

    transition: color 0.2s linear;
}

.catalog .full_link a:hover {
    color: var(--accent_color);
}


.catalog .full_link .icon {
    display: flex;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;

    width: 72px;
    height: 72px;

    color: #fff;
    border-radius: 8px;
    background: var(--text_color);
}


.catalog .full_link .icon svg {
    display: block;

    width: 48px;
    height: 48px;
}


.catalog .full_link span {
    width: calc(100% - 136px);
}


/*----------------
    Conditions
----------------*/
.conditions .grid {
    display: grid;

    gap: 60px;
    grid-template-columns: repeat(3, 1fr);
}


.conditions .grid .big_h {
    min-height: 512px;

    grid-row: span 2;
}


.conditions .item {
    position: relative;

    display: flex;
    overflow: hidden;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;

    min-height: 226px;
    padding: var(--cont_padding);

    text-align: center;
    text-decoration: none;

    color: #fff;
    border-radius: 8px;
}


.conditions .item .thumb {
    position: absolute;
    z-index: 1;

    background: #ddd;

    inset: 0;
}


.conditions .item .thumb:before {
    position: absolute;
    z-index: 2;

    display: block;

    content: '';

    opacity: .7;
    background: #333;

    inset: 0;
}


.conditions .item .thumb img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}


.conditions .item .name {
    position: relative;
    z-index: 2;

    font-size: 24px;
    line-height: calc(100% + 4px);
}


/*-------------
    Support
-------------*/
.support {
    position: relative;

    padding-block: 40px 68px;

    background: #fff;
    box-shadow: 0 6px 10px 4px rgba(0, 0, 0, .15), 0 2px 3px 0 rgba(0, 0, 0, .30);
}


.support .cont {
    position: relative;
    z-index: 3;
}


.support .data {
    width: 640px;
    max-width: 100%;
}


.support .title {
    position: relative;

    padding-bottom: 12px;

    font-size: var(--font_size_title);
    line-height: calc(100% + 6px);
    text-transform: uppercase;
    font-weight: bold;
}

.support .title span {
    display: inline-block;
    border-bottom: 2px solid var(--accent_color);
    padding-bottom: 10px;
}

/*
.support .title:after
{
    position: absolute;
    bottom: 0;
    left: 0;

    display: block;

    width: 404px;
    max-width: 100%;
    height: 1px;

    content: '';

    background: currentColor;
}
*/

.support .desc {
    margin-top: var(--cont_padding);

    font-size: 22px;
    line-height: calc(100% + 4px);
}


.support .icons {
    display: flex;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-start;

    margin-top: 40px;

    gap: 44px;
}


.support .icons img {
    display: block;

    max-width: 72px;
    max-height: 72px;

    mix-blend-mode: multiply;
}


.support .bg {
    position: absolute;
    z-index: 1;
    top: 0;
    right: 0;

    display: block;

    height: 100%;

    pointer-events: none;
}


.support .bg img {
    display: block;

    width: auto;
    height: 100%;
}


/*---------------
    Solutions
---------------*/
.solutions .row {
    align-content: stretch;
    align-items: stretch;
    justify-content: center;

    margin-bottom: -42px;
    margin-left: -42px;
}


.solutions .row > * {
    width: calc(33.333% - 42px);
    margin-bottom: 42px;
    margin-left: 42px;
}


.solutions .item {
    display: flex;
    overflow: hidden;
    flex-direction: column;

    border-radius: 8px;
    background: #fff;
}


.solutions .item .image {
    position: relative;
}


.solutions .item .thumb {
    position: relative;

    display: block;

    padding-bottom: 92.696%;

    background: #ddd;
}


.solutions .item .thumb img {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;

    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}


.solutions .item .name {
    position: absolute;
    z-index: 2;
    bottom: 0;
    left: 0;

    width: 100%;
    padding: 7px 8px 8px;

    font-size: var(--font_size_title);
    line-height: calc(100% + 6px);

    text-align: center;

    color: #fff;
    border-radius: 8px 8px 0 0;
    background: var(--accent_color);
}


.solutions .item .desc {
    padding-block: 72px 102px;
    padding-inline: 32px 20px;

    font-size: 20px;
    line-height: calc(100% + 4px);
}


/*-----------------
    Info blocks
-----------------*/


.info_blocks .list {
    display: flex;
    flex-direction: column;

    gap: 65px;
}


.info_blocks .item {
    display: flex;
    overflow: hidden;
    align-content: stretch;
    align-items: stretch;
    flex-wrap: wrap;
    justify-content: space-between;

    border-radius: 8px;
    background: #fff;
    box-shadow: 0 0 12px rgba(0, 0, 0, .3);
}


.info_blocks .item .data {
    width: calc(100% - 475px);
    padding: 52px 40px;
}


.info_blocks .item .title {
    font-size: var(--font_size_title);
    line-height: calc(100% + 6px);
}


.info_blocks .item .desc {
    width: 701px;
    max-width: 100%;
    margin-top: 26px;
}


.info_blocks .item .image {
    position: relative;

    overflow: hidden;

    width: 475px;
    max-width: 100%;
    min-height: 290px;
}


.info_blocks .item .image:before {
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;

    width: 55px;
    max-width: 50%;
    height: 100%;

    content: '';

    opacity: .91;
    background: var(--accent_color);
    box-shadow: 0 4px 4px rgba(0, 0, 0, .25);

    mix-blend-mode: hard-light;
}


.info_blocks .item .image img {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;

    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}


/*------------
    Footer
------------*/
footer {
    padding-block: 40px;

    color: #fff;
    background: #3b3b3b;
}


footer .cont {
    /*gap: 152px;*/
    justify-content: space-between;
}


footer .logo {
    display: block;

    text-decoration: none;

    color: currentColor;
}


footer .logo img {
    display: block;

    width: 142px;
    height: 32px;
}


footer .contacts {
    /*margin-top: 40px;*/
    line-height: 30px;
    display: flex;
    justify-content: flex-end;
    gap: 100px;
    align-items: center;
}

footer .contacts a {
    transition: color 0.2s linear;
}

footer .contacts a:hover {
    color: var(--accent_color2);
}


footer .phone {
    font-size: 18px;
    font-weight: 700;

    white-space: nowrap;
    letter-spacing: .05em;
    text-transform: uppercase;
}

/*
footer .phone + .phone {
    margin-top: 5px
}
 */

footer .phone a {
    color: currentColor;

    display: inline-block;

    vertical-align: top;
    text-decoration: none;
}


footer .email {
    font-size: 18px;
    line-height: 100%;

    /*margin-top: 16px;*/

    white-space: nowrap;
}

footer .email a {
    color: currentColor;

    display: inline-block;

    vertical-align: top;
    text-decoration: none;
}


footer .socials {
    display: flex;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-start;

    margin-top: 65px;

    gap: 29px;
}


footer .socials a {
    text-decoration: none;

    color: currentColor;
}


footer .socials img {
    display: block;

    width: 44px;
    height: 44px;
}


footer .title {
    font-size: var(--font_size_title);
    line-height: calc(100% + 4px);
}


footer .links {
    display: flex;
    flex-direction: column;

    gap: 20px;
}


footer .links .items {
    display: flex;
    flex-direction: column;

    font-size: 20px;

    gap: 12px;
}


footer .links .items a {
    display: inline-block;

    vertical-align: top;
    text-decoration: none;

    color: currentColor;
    transition: color 0.2s linear;
}

footer .links .items a:hover {
    color: var(--accent_color2);
}


.breadcrumbs {
    margin-bottom: 1.2em;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.2em;
    color: #333333;
}

.breadcrumbs .breadcrumb_item > a {
    text-decoration: none;
    color: currentColor;
    transition: color 0.2s linear;
}

.breadcrumbs .breadcrumb_item > a:hover,
.breadcrumbs .breadcrumb_item > span {
    color: var(--accent_color);
}

.page_head {
    padding-bottom: 60px;
}

.page_title {
    font-style: normal;
    font-weight: bold;
    font-size: var(--font_size_title);
    line-height: 1.35em;
    color: #000000;
    padding: 0;
    margin: 0;
    text-transform: uppercase;
}
.page_title span {
    display: inline-block;
    border-bottom: 2px solid var(--accent_color);
    padding-bottom: 10px;
}

.list_categories {
    margin-bottom: 80px;
}

.list_categories .row {
    align-items: stretch;
    gap: 35px;
}

.list_categories_item {
    background: #FFFFFF;
    border-radius: 8px;
    font-weight: 500;
    font-size: 20px;
    line-height: 46px;
    text-decoration: none;
    color: #000000;
    padding: 0 25px;
    transition: all 0.2s linear;
}

.list_categories_item:hover,
.list_categories_item.active {
    background: var(--accent_color);
    color: #fff;
}

.catalog_booklet {
    background: #414243;
    border-radius: 8px;
    color: #fff;
    padding: 60px 0 55px 58px;
    margin-bottom: 80px;
    position: relative;
}

.catalog_booklet .info {
    position: relative;
    z-index: 10;
}

.catalog_booklet .title {
    font-weight: 500;
    font-size: 40px;
    line-height: 1.1em;
    margin-bottom: 0.75em;
}

.catalog_booklet .desc {
    font-size: 24px;
    line-height: 1.21em;
    margin-bottom: 3.17em
}

.catalog_booklet .link {
    display: inline-block;
    background: #FFFFFF;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 30px;
    line-height: 60px;
    padding: 0 34px;
    color: #000000;
    transition: all 0.2s linear;
}

.catalog_booklet .link:hover {
    color: #fff;
    background: var(--accent_color);
}

.catalog_booklet .bg {
    position: absolute;
    z-index: 1;
    top: 0;
    right: 0;

    display: block;

    height: 100%;
    width: 100%;

    pointer-events: none;
}


.catalog_booklet .bg img {
    display: block;

    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: right center;
}


.page-inner {
    margin-bottom: 100px;
}

.page_big_title {
    font-weight: bold;
    font-size: var(--font_size_title);
    line-height: 1.35em;
    color: #000000;
    margin: 0 0 0.67em;
    padding: 0;
}

.category_desc {
    font-size: 20px;
    line-height: 1.5;
    color: #000000;
}

.list-products {
    margin-top: 44px;
}

.product-page-info {
    background: #FFF;
    border-radius: 8px;
    padding: 70px 100px 80px 60px;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    margin-bottom: 80px;
}

.product-page-info .wrap-product-images {
    width: 44%;
    flex: 0 0 44%;
}

.product-page-info .wrap-product-info {
    width: calc(56.97% - 50px);
    flex: 0 0 calc(56.97% - 50px);
}

.product-page-info .wrap-product-images .images {
    position: sticky;
    top: 0;
}

.product-page-info .wrap-product-images .image {
    position: relative;
    display: block;
    overflow: hidden;
    padding-bottom: 66.57%;
}

.product-page-info .wrap-product-images .image img {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    object-fit: contain;
}

.product-page-info .wrap-product-images .wrap-swiper-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
    width: 100%;
    gap: 94px;
}

.product-page-info .wrap-product-images .swiper-button-next,
.product-page-info .wrap-product-images .swiper-button-prev {
    position: relative;
    border-radius: 0;
    background: transparent;
    color: #303030;
    transition: color 0.2s linear;
    width: auto;
    height: auto;
}

.product-page-info .wrap-product-images .swiper-button-next:hover,
.product-page-info .wrap-product-images .swiper-button-prev:hover {
    color: var(--accent_color);
}

.product-page-info .wrap-product-images .swiper-button-prev {
    left: 0;
}

.product-page-info .wrap-product-images .swiper-button-next {
    right: 0;
}

.product-page-info .wrap-product-images .swiper-button-next .icon,
.product-page-info .wrap-product-images .swiper-button-prev .icon {
    width: 24px;
    height: 47px;
}

.product-page-info .wrap-product-images .swiper-button-prev .icon {
    transform: rotate(180deg);
}

.product-page-info .wrap-product-images .swiper-button-next .icon {
    transform: rotate(0);
}

.product-page-info .product-title {
    font-weight: bold;
    font-size: var(--font_size_title);
    line-height: 1.2;
    color: #000000;
    padding: 0;
    margin: 0 0 32px;
}

.product-page-info .product-title span {
    display: inline-block;
    padding-bottom: 5px;
    border-bottom: 2px solid var(--accent_color);
}

.product-page-info .wrap-product-info .desc {
    font-size: 20px;
    line-height: 1.5em;
    margin-bottom: 1.5em;
}

.product-page-info .wrap-product-info .order_btn {
    background: var(--accent_color);
    border-radius: 8px;
    font-weight: 500;
    font-size: 26px;
    line-height: 48px;
    color: #FFFFFF;
    display: inline-block;
    text-decoration: none;
    padding: 0 30px;
    margin-top: 10px;
    transition: background-color 0.2s linear;
}

.product-page-info .wrap-product-info .order_btn:hover {
    background: var(--accent_color2);
}

.product-page-info .product-icons {
    font-size: 20px;
    line-height: 1.2em;
    margin-bottom: 1.5em;
}

.product-page-info .product-icons .product-icons-item {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.product-page-info .product-icons .product-icons-item + .product-icons-item {
    margin-top: 10px;
}

.product-page-info .product-icons .product-icons-item .icon {
    width: 60px;
    flex: 0 0 60px;
    margin-right: 15px;
    padding-top: 0;
}

.product-page-info .product-icons .product-icons-item .icon img {
    max-width: 100%;
}

.full-desc-product {
    font-size: 20px;
    margin-bottom: 60px;
}

.wrap-main-form {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.wrap-main-form .form .agree label,
.wrap-main-form .form .bottom {
    justify-content: center;
}

.wrap-main-form .form .agree label .check {
    position: relative;
    margin-right: 10px;
    flex: 0 0 24px
}

.wrap-main-form .form .input {
    text-align: center;
}


.modal {
    visibility: visible !important;

    width: 790px;
    max-width: 100%;
    padding: 50px 40px 40px;

    border-radius: 5px;
    background: #fff;
    box-shadow: 0 4px 30px rgba(46, 80, 108, .1);
}

.modal_title {
    display: block;
    margin-bottom: 30px;
    font-size: var(--font_size_title);
    font-weight: 500;
    line-height: calc(100% + 6px);
}

.principles .block_head {
    margin-bottom: var(--cont_padding_double);
}

.principles .row {
    gap: 40px;
    flex-wrap: wrap;
    align-items: stretch;
}

.principles-item {
    width: calc(50% - 20px);
    flex: 0 0 calc(50% - 20px);
    background-color: #fff;
    border-radius: 30px 0 30px 0;
    padding: 20px 30px 40px;
}

/*
.principles-item:nth-child(3n) {
    width: 100%;
    flex: 0 0 100%;
}
 */

.principles-item .number {
    font-size: 90px;
    font-weight: 500;
    color: var(--accent_color);
    line-height: 1em;
    margin-bottom: 0.2em;
}

.principles-item .name {
    font-size: 30px;
    margin-bottom: 0.7em;
    font-weight: 500;
}

.principles-item .desc {
    font-size: 18px;
}

.kfu {

}

.kfu .block_head {
    margin-bottom: var(--cont_padding_double);
}

.kfu .row {
    gap: 21px;
    flex-wrap: wrap;
    align-items: stretch;
}

.kfu-item {
    width: calc(100% / 3 - 14px);
    flex: 0 0 calc(100% / 3 - 14px);
    border-radius: 15px;
    padding: 20px 20px 30px;
    background-color: #414243;
    color: #fff;
}

.kfu-item:first-child {
    border-radius: 30px 0 30px 0;
    width: calc(100% / 3 * 2 - 7px);
    flex: 0 0 calc(100% / 3 * 2 - 7px);
    background-color: var(--accent_color);
}

.kfu-item .name {
    font-size: 24px;
    margin-bottom: 0.7em;
    font-weight: bold;
}

.kfu-item .desc {
    font-size: 18px;
    line-height: 1.5em;
}

.kfu-item:first-child .name {
    font-size: 30px;
}

.suggestions-wrapper {
    text-align: left;
}

.float-btn {
    background: var(--accent_color);
    border-radius: 8px;
    font-weight: 500;
    font-size: 18px;
    line-height: 2em;
    color: #FFFFFF;
    display: inline-block;
    text-decoration: none;
    padding: 0 15px;
    transition: background-color 0.2s linear;

    position: fixed;
    left: var(--cont_padding);
    bottom: var(--cont_padding);
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, .25);
    z-index: 50;
}
.float-btn:hover {
    background: var(--accent_color2);
}