/* reset */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
a {
    text-decoration: none;
    transition: all .5s;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
/*:focus-visible, :focus {*/
/*    outline: none !important;*/
/*}*/
/* reset end */
/* fonts */
@font-face {
    font-family: 'Nunito';
    src: url('../fonts/Nunito-Regular.woff2') format('woff2'), url('../fonts/Nunito-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'Nunito';
    src: url('../fonts/Nunito-Medium.woff2') format('woff2'), url('../fonts/Nunito-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: 'Nunito';
    src: url('../fonts/Nunito-SemiBold.woff2') format('woff2'), url('../fonts/Nunito-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
}
@font-face {
    font-family: 'Nunito';
    src: url('../fonts/Nunito-Bold.woff2') format('woff2'), url('../fonts/Nunito-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
}
@font-face {
    font-family: 'Nunito';
    src: url('../fonts/Nunito-ExtraBold.woff2') format('woff2'), url('../fonts/Nunito-ExtraBold.woff') format('woff');
    font-weight: 800;
    font-style: normal;
}
@font-face {
    font-family: 'Nunito';
    src: url('../fonts/Nunito-Black.woff2') format('woff2'), url('../fonts/Nunito-Black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
}
/* fonts end */

/* ==========  ========== */
* {
    box-sizing: border-box;
}
body, html {
    font-family: var(--main-fonts);
    color: var(--main-color);
    background: var(--body-bg);
    min-width: 320px;
}
.container {
    margin: 0 auto;
    padding: 0 15px;
    max-width: 100%;
    width: 100%;
}
/* ========== sec_hp_banner ========== */
.sec_hp_banner {
    height: 326px;
}
.sec_hp_banner > div {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: end;
}
.sec_hp_banner > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.sec_hp_banner_btn {
    width: 177px;
    padding: 10px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    background: var(--main-color);
    color: #FFF;
    font-family: var(--main-fonts);
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
}
.sec_hp_banner_btn:hover {
    background: var(--main-color-hover);
}
/**/
.sec_hp_banner_txt {
    padding: 0 9px 9px 9px;
    color: var(--white);
    position: relative;
    display: inline-block;
}
.sec_hp_banner_txt:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    background: rgba(1, 3, 51, 0.50);
    filter: blur(52px);
}
.sec_hp_banner_txt div {
    position: relative;
    z-index: 2;
}
.sec_hp_banner_txt div:first-child {
    font-size: 18px;
    font-weight: 700;
    font-style: normal;
    line-height: 140%; /* 50.4px */
    text-transform: uppercase;
}
.sec_hp_banner_txt div:nth-child(2) {
    font-size: 12px;
    font-weight: 500;
    font-style: normal;
    line-height: 140%; /* 50.4px */
    /*max-width: 675px;*/
}
/**/
.sec_hp_btn {
    border-radius: 42px;
    border: 2px solid var(--white);
    box-shadow: 0 0 25px 0 rgba(255, 255, 255, 0.25);
    padding: 9px 15px;
    display: inline-block;
    color: var(--main-color);
    background: var(--white);
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%; /* 25.2px */
    margin-top: 5px;
    text-align: center;
    /*min-width: 120px;*/
    position: relative;
    z-index: 2;
    transition: all .5s;
}
.sec_hp_btn:hover {
    background: var(--main-color);
    color: var(--white);
    border-color: var(--main-color);
}
/* ========== sec_hp2 ========== */
.sec_hp2 {
    padding: 15px 0 0;
}
.sec_hp_title {
    /*color: var(--main-color);*/
    font-size: 18px;
    font-style: normal;
    font-weight: 900;
    line-height: 140%;
}
.sec_hp2 .sec_hp_title {
    margin-bottom: 5px;
}
.sec_hp2_txt {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    margin-bottom: 8px;
}
.sec_hp2_container {
    margin: 0 auto;
    padding: 0 15px;
    max-width: 1210px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
}
.sec_hp2_item {
    width: calc((100%/2) - (12px/2));
    position: relative;
    border-radius: 20px;
    height: 186px;
    overflow: hidden;
    margin-bottom: 12px;
}
.sec_hp2_item {
    margin-left: 12px;
}
.sec_hp2_item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.sec_hp2_item_link {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 1;
}
/*.sec_hp2_item_link:after {*/
/*    content: '';*/
/*    position: absolute;*/
/*    top: 0;*/
/*    left: 0;*/
/*    right: 0;*/
/*    bottom: 0;*/
/*    background: rgba(1, 3, 51, 0.25);*/
/*    transition: all .5s;*/
/*}*/
/*.sec_hp2_item_link:hover:after {*/
/*    background: transparent;*/
/*}*/
.sec_hp2_item_descr {
    z-index: 2;
    color: #F8F8FF;
    text-align: center;
    margin-top: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sec_hp2_item_descr div {
    padding: 10px 17px;
    border-radius: 20px;
    position: relative;
}
.sec_hp2_item_descr div:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    background: rgba(1, 3, 51, 0.30);
    filter: blur(22px);
}
.sec_hp2_item_descr div p:first-child {
    font-size: 14px;
    font-weight: 700;
    position: relative;
    z-index: 3;
}
.sec_hp2_item_descr div p:nth-child(2) {
    display: none !important;
}
/**/
.sec_hp2_btnwrp {
    margin-top: 5px;
    justify-content: center;
    width: 100%;
    display: none;
}
.sec_hp2_btn {
    border-radius: 42px;
    border: 2px solid var(--main-color);
    box-shadow: 0 0 25px 0 rgba(255, 255, 255, 0.25);
    color: var(--main-color);
    width: 198px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 47px;
    transition: all .5s;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%; /* 25.2px */
}
.sec_hp2_btn:hover {
    border: 2px solid var(--neon-blue-color);
    color: var(--neon-blue-color);
}
/* ========== sec_hp3 ========== */
.sec_hp3 {
    padding-top: 15px;
    padding-bottom: 44px;
}
.sec_hp3 .sec_hp_title {
    padding-bottom: 15px;
}
.sec_hp3_container {
    /*max-width: 1320px;*/
    max-width: 1122px;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
}
/**/
.sec_hp3_item_wrp {
    /*width: 234px;*/
    /*height: 350px;*/
    position: relative;
}
.sec_hp3_item {
    background: #FFF;
    padding: 6px 4px 7px;
    position: relative;
    z-index: 1;
    border-radius: 10px;
    border: 1px solid #B7B7B7;
    height: 100%;
}
.sec_hp3_item_img {
    font-size: 0;
    /*height: 196px;*/
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1px;
}
.sec_hp3_item_img img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 100%;
}
.sec_hp3_item_status {
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%;
    margin-bottom: 1px;
}
/**/
._status_new {
    color: #7DCACA;
}
/**/
.sec_hp3_item_name {
    height: 54px;
    overflow: hidden;
    /*text-overflow: ellipsis;*/
    margin-bottom: 6px;
}
.sec_hp3_item_name a {
    display: block;
    color: var(--main-color);
    font-size: 13px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%;
    transition: all .5s;
}
.sec_hp3_item_name a:after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    content: "";
}
.sec_hp3_item_price {
    /*color: var(--main-color);*/
    font-size: 13px;
    font-style: normal;
    font-weight: 800;
    line-height: 140%; /* 22.4px */
    height: 18px;
}
.sec_hp3_item_more {
    color: var(--main-color);
    font-size: 12px;
    font-style: normal;
    font-weight: 800;
    line-height: 140%; /* 19.6px */
    transition: color .5s;
    display: none;
}
.sec_hp3_item_wrp:hover .sec_hp3_item_name a,
.sec_hp3_item_wrp:hover .sec_hp3_item_more {
    /*color: var(--main-color-hover);*/
    color: var(--neon-blue-color);
}
/**/
.sw-sec3-button-next, .sw-sec3-button-prev {
    z-index: 1;
    width: 32px;
    height: 32px;
    margin: auto 0;
    opacity: 1;
    transition: all .5s;
}
.swiper-button-disabled {
    opacity: 0.4;
}
.sw-sec3-button-next:not(.swiper-button-disabled), .sw-sec3-button-prev:not(.swiper-button-disabled) {
    cursor: pointer;
}
.sw-sec3-button-next:not(.swiper-button-disabled):hover, .sw-sec3-button-prev:not(.swiper-button-disabled):hover {
    opacity: 0.65;
}
.sw-sec3-button-next {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
}
.sw-sec3-button-prev {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
}
.sw-sec3-button-next, .sw-sec3-button-prev {
    display: none;
}
.swiper-pagination {
    /*display: none;*/
}
.swiper-scrollbar {
    bottom: -29px !important;
    top: auto !important;
    left: 0 !important;
    right: 0 !important;
    /*width: calc(100% - 30px) !important;*/
    width: 290px !important;
    border-radius: 20px;
    background: #FFF;
    height: 14px !important;
    overflow: hidden;
    margin: 0 auto;
}
.swiper-scrollbar-drag {
    border-radius: 20px !important;
    background: rgba(20, 12, 163, 0.60);
}
/* ========== sec_hp4 ========== */
.sec_hp4 {
    background: #FFF;
    padding: 22px 0;
}
.sec_hp4 .sec_hp_title {
    margin-bottom: 4px;
}
.sec_hp4_btn {
    color: var(--main-color);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%; /* 25.2px */
    position: relative;
    transition: all .5s;
    display: none;
}
.sec_hp4_btn:hover {
    color: var(--neon-blue-color);
}
.sec_hp4_btn:after {
    border-radius: 30px;
    background: var(--main-color);
    height: 2px;
    width: 100%;
    content: '';
    display: block;
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    transition: all .5s;
}
.sec_hp4_btn:hover:after {
    background: var(--neon-blue-color);
}
/**/
.sec_hp4_container {
    margin: 28px auto 0 auto;
    padding: 0 0 0 15px;
    max-width: 1210px;
    width: 100%;
}
.sec_hp4_item {
    /*width: 280px;*/
}
.sec_hp4_item_imgwrp {
    position: relative;
}
.sec_hp4_item_img {
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    height: 116px;
    border-radius: 12px;
    margin-bottom: 9px;
    z-index: 2;
    position: relative;
}
.sec_hp4_item_title a {
    color: var(--main-color);
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%; /* 28px */
    display: block;
    transition: all .5s;
}
.sec_hp4_item_title a:hover {
    color: var(--neon-blue-color);
}
.sec_hp4_btnwrp {
    display: flex;
    justify-content: center;
    margin-top: 15px;
}
.sec_hp4_btnbot {
    border-radius: 42px;
    border: 2px solid var(--main-color);
    color: var(--main-color);
    width: 148px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 43px;
    transition: all .5s;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%; /* 25.2px */
}
.sec_hp4_btnbot:hover {
    border: 2px solid var(--neon-blue-color);
    color: var(--neon-blue-color);
}
/* ========== sec_hp5 ========== */
.sec_hp5 {
    padding: 15px 0 48px 0;
}
.sec_hp5.pt_0 {
    padding-top: 0 !important;
}
.sec_hp5 .sec_hp_title {
    padding-bottom: 22px;
}
/* ========== play--works ========== */
.play--works {
    padding: 0 15px;
}
.play--works-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    grid-template-rows: repeat(4, 1fr);
    grid-gap: 10px;
}
.play--works-grid > * {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}
.play--works-grid > .item-1-2 {
    grid-row: span 2 / auto;
}
.play--works-grid > .item-2-1 {
    grid-column: span 2 / auto;
}
.play--works-grid > .heading {
    grid-row: span 2 / auto;
    grid-column: span 2 / auto;
    /*padding: 2rem 1.5rem;*/
    border-radius: 10px;
    background: #fff;
    /**/
    height: 148px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}
.play--works .play--section-title-heading {
    /*color: var(--main-color);*/
    font-size: 14px;
    font-style: normal;
    font-weight: 900;
    line-height: 140%; /* 30.8px */
    margin-bottom: 2px;
}
.play--works .play--section-title-subheading {
    /*color: var(--main-color);*/
    font-size: 12px;
    font-weight: 400;
    line-height: 140%; /* 25.2px */
    margin-bottom: 2px;
}
.play--works .play--link {
    color: var(--main-color);
    font-size: 10px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%; /* 25.2px */
    position: relative;
    transition: all .5s;
}
.play--works .play--link:hover {
    color: var(--neon-blue-color);
}
.play--works .play--link:after {
    border-radius: 30px;
    background: var(--main-color);
    height: 2px;
    width: 100%;
    content: '';
    display: block;
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    transition: all .5s;
}
.play--works .play--link:hover:after {
    background: var(--neon-blue-color);
}
.play--works img {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
/* ========== sec_hp6 ========== */
.sec_hp6 {
    padding: 15px 0 25px 0;
}
.sec_hp6 .sec_hp_title {
    text-align: center;
    margin-bottom: 5px;
}
.sec_hp6_ttop {
    text-align: center;
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%; /* 28px */
    margin: 0 auto;
    max-width: 710px;
}
.sec_hp6 .container {
    max-width: 812px !important;
    text-align: center;
}
.sec_hp6_tbot {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    /*padding-top: 14px;*/
}
.sec_hp6_tbot p:not(:last-child) {
    margin-bottom: 5px;
}
.sec_hp6_lbot {
    margin-top: 5px;
}
.sec_hp6_lbot a {
    color: var(--main-color);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%; /* 25.2px */
    position: relative;
    transition: all .5s;
}
.sec_hp6_lbot a:after {
    border-radius: 30px;
    background: var(--main-color);
    height: 2px;
    width: 100%;
    content: '';
    display: block;
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    transition: all .5s;
}
.sec_hp6_lbot a:hover {
    color: var(--neon-blue-color);
}
.sec_hp6_lbot a:hover:after {
    background: var(--neon-blue-color);
}
/**/
.sec_hp6_cwrp {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    margin-top: 15px;
}
.sec_hp6_item {
    width: 45%;
    margin-bottom: 12px;
}
.sec_hp6_item_num {
    font-size: 26px;
    font-style: normal;
    font-weight: 900;
    line-height: 140%; /* 58.8px */
    opacity: 0;
    transition: all .5s;
}
.sec_hp6_item_txt {
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%; /* 25.2px */
}
/* ========== sec_footer ========== */
.sec_footer {
    background: rgba(20, 12, 163, 0.05);
    padding: 29px 0 10px;
}
.sec_footer .container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.sec_footer_left {
    order: 2;
    width: 100%;
    text-align: center;
}
.sec_footer_left p:first-child {
    font-size: 12px;
    font-weight: 800;
}
.sec_footer_left p:first-child span {
    font-size: 12px;
    font-weight: 700;
    opacity: 0.75;
}
.sec_footer_left p:nth-child(2) {
    margin-top: 8px;
    font-size: 12px;
    font-weight: 700;
    opacity: 0.5;
}
.sec_footer_right {
    order: 1;
    display: flex;
    align-items: center;
    width: 100%;
    margin-bottom: 27px;
    justify-content: center;
}
.sec_footer_right a {
    font-size: 0;
    transition: all .5s;
}
.sec_footer_right a:hover {
    opacity: .65;
}
.sec_footer_right a:not(:last-child) {
    margin-right: 27px;
}
/* ========== sec_header ========== */
.sec_header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 23px 0 24px 0;
    transition: background .5s;
}
.sec_header:not(._scroll):after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 0;
    display: block;
    background: linear-gradient(197deg, rgba(2, 3, 51, 0.45) 16.24%, rgba(255, 255, 255, 0.60) 290.43%);
    filter: blur(25px);
}
.sec_header._scroll {
    background: var(--main-color);
}
.sec_header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}
.sec_header_left {
    width: 217px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.sec_header_left a {
    color: var(--main-color);
}
.sec_header._scroll .sec_header_left a {
    color: var(--white);
}
.sec_header_left svg {
    max-width: 100%;
    /*height: auto;*/
    width: 100%;
}
.sec_header_burg {
    font-size: 0;
    margin-right: 13px;
}
/**/
body:not(.body_pages) .sec_header_left a {
    color: var(--white);
}
body:not(.body_pages) .sec_header_search, body:not(.body_pages) .basket_head, body:not(.body_pages) .sec_header_phoner {
    color: var(--white);
}
body:not(.body_pages) .sech_lang_new a, body:not(.body_pages) .sech_lang_new span {
    color: var(--white);
}
/**/
.sec_header_center {
    display: none;
    width: calc(100% - 180px - 245px - 122px);
}
.sec_header_center ul {
    display: flex;
    align-items: center;
}
.sec_header_center li:not(:last-child) {
    margin-right: 6%;
}
.sec_header_center a {
    color: #FFF;
    font-size: 20px;
    font-weight: 600;
    line-height: 140%;
    display: block;
    transition: color .5s;
    position: relative;
}
.sec_header_center a:hover {
    opacity: 0.75;
}
.sec_header_center a.sec_header_menudrop {
    padding-right: 23px;
}
.sec_header_center a.sec_header_menudrop:after {
    content: '';
    width: 18px;
    height: 18px;
    background: url('../img/header/down.svg') no-repeat center;
    background-size: contain;
    position: absolute;
    top: -1px;
    right: 0;
    bottom: 0;
    margin: auto 0;
    transition: background .5s;
}
.sec_header_center a.sec_header_menudrop._active:after {
    transform: rotate(180deg);
}
/**/
.sec_header_right {
    width: 136px;
    display: flex;
    justify-content: end;
}
.sec_header_btns {
    display: flex;
    align-items: center;
}
.sec_header_btns a {
    margin-right: 18px;
    transition: all .5s;
    font-size: 0;
    position: relative;
}
.sec_header_btns a span {
    position: absolute;
    top: 0;
    right: -3px;
    width: 16px;
    height: 16px;
    border-radius: 100%;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--main-color);
    color: var(--white);
    z-index: 1;
    line-height: 1;
}
.sec_header._scroll .sec_header_btns a span {
    background: var(--white);
    color: var(--main-color);
}
.sec_header_btns a:hover {
    opacity: 0.75;
}
.sec_header_btns a:last-child {
    margin-right: 0;
}
.sec_header_btns img {

}
/**/
.sec_header_lang {
    display: none;
}
.sec_header_lang > *:first-child {
    margin-right: 5px;
}
.sec_header_lang span, .sec_header_lang a {
    display: flex;
    width: 44px;
    height: 29px;
    padding: 10px;
    justify-content: center;
    align-items: center;
    border-radius: 6px;
    color: #000;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}
.sec_header_lang span , .sec_header_lang a:hover {
    background: #FFF;
    color: #000;
}
.sec_header_lang a {
    background: rgba(255, 255, 255, 0.20);
    color: #fff;
    transition: all .5s;
}
/**/
.sec_header_search, .basket_head, .sec_header_phoner {
    color: var(--main-color);
}
.sec_header._scroll .sec_header_search,
.sec_header._scroll  .basket_head,
.sec_header._scroll  .sec_header_phoner {
    color: var(--white);
}
/**/
.sech_lang_new {
    display: none;
}
.sech_lang_new div {
    position: relative;
}
.sech_lang_new div:first-child {
    margin-right: 16px;
}
.sech_lang_new svg {
    position: absolute;
    z-index: 1;
    top: -6px;
    left: -8px;
}
.sech_lang_new a, .sech_lang_new span {
    display: flex;
    height: 29px;
    padding: 10px 15px;
    justify-content: center;
    align-items: center;
    border-radius: 6px;
    color: #000;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
}
.sec_header._scroll .sech_lang_new a {
    background: rgba(255, 255, 255, 0.20);
    color: #fff;
    transition: all .5s;
}
.sec_header._scroll .sech_lang_new span,
.sec_header._scroll .sech_lang_new a:hover {
    background: var(--white);
    color: var(--main-color);
}
.sech_lang_new span, .sech_lang_new a:hover {
    background: var(--main-color);
    color: var(--white);
}
/* ========== body_pages ========== */
.body_pages {
    padding-top: 76px;
}
.body_pages .sec_header:not(._scroll):after {
    display: none !important;
}
.body_pages .sec_header:not(._scroll) {
    background: #fff;
}
.body_pages .sec_header:not(._scroll) .sec_header_left path {
    fill: var(--main-color);
}
.body_pages .sec_header:not(._scroll) .sec_header_center a {
    color: var(--main-color);
}
.body_pages .sec_header:not(._scroll) .sec_header_center a:hover {
    color: var(--neon-blue-color);
}
.body_pages .sec_header:not(._scroll) .sec_header_center a.sec_header_menudrop:after {
    background: url('../img/header/down_white.svg') no-repeat center;
}
.body_pages .sec_header:not(._scroll) .sec_header_btns a:not(:first-child) path {
    fill: var(--main-color);
}
.body_pages .sec_header:not(._scroll) .sec_header_btns a:first-child path {
    stroke: var(--main-color);
}
.body_pages .sec_header:not(._scroll) .sec_header_lang span,
.body_pages .sec_header:not(._scroll) .sec_header_lang a:hover {
    background: var(--main-color);
    color: #ffffff;
}
.body_pages .sec_header:not(._scroll) .sec_header_lang a {
    background: rgba(1, 3, 51, 0.20);
    color: var(--main-color);
}
.body_pages .sec_header:not(._scroll) .sec_header_burg rect {
    fill: var(--main-color);
}
/* ========== sec_breadcrumbs ========== */
.sec_breadcrumbs {
    padding: 14px 0 17px 0;
    overflow-x: auto;
}
.sec_breadcrumbs ul {
    display: flex;
    align-items: center;
    flex-direction: row;
    flex-wrap: nowrap;
    width: 1180px;
}
.sec_breadcrumbs li {
    display: block;
    position: relative;
}
.sec_breadcrumbs a {
    display: block;
    color: var(--main-color);
    font-size: 12px;
    font-weight: 400;
    line-height: normal;
    transition: all .5s;
    position: relative;
}
.sec_breadcrumbs a:hover {
    color: var(--neon-blue-color);
}
.sec_breadcrumbs span {
    display: block;
    color: var(--main-color, #010333);
    font-size: 12px;
    font-weight: 700;
    line-height: normal;
}
.sec_breadcrumbs li:not(:first-child):after {
    content: '';
    width: 8px;
    height: 10px;
    position: absolute;
    top: 0;
    left: -19px;
    background: url("../img/catalog/bread/after.svg") no-repeat center;
    background-size: contain;
    bottom: 0;
    margin: auto 0;
    opacity: 0.7;
}
.sec_breadcrumbs li:last-child:after {
    opacity: 0.9;
}
.sec_breadcrumbs li:not(:first-child) {
    margin-left: 31px;
}
/* ========== sec_h1 ========== */
.sec_h1 {
    padding: 0 0 8px;
}
.sec_h1 .h1 {
    color: var(--main-color);
    font-size: 20px;
    font-weight: 900;
    line-height: normal;
}
/* ========== sec_hp7 ========== */
.sec_hp7 {
    padding: 0 0 0;
}
.sec_hp7_container {
    margin: 0 auto;
    padding: 0 15px;
    max-width: 1210px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: start;
}
/**/
.sec_hp7_item {
    width: calc((100%/3) - (14px/3));
    position: relative;
    border-radius: 10px;
    height: 117px;
    overflow: hidden;
    margin-bottom: 7px;
    margin-left: 7px;
}
.sec_hp7_item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.sec_hp7_item_link {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 1;
}
.sec_hp7_item_link:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(1, 3, 51, 0.25);
    transition: all .5s;
}
.sec_hp7_item_link:hover .sec_hp7_item_descr {
    bottom: calc(50% - 47px);
    background: rgba(1, 3, 51, 0.50);
}
.sec_hp7_item_link:hover:after {
    background: transparent;
}
.sec_hp7_item_descr {
    background: rgba(1, 3, 51, 0.50);
    z-index: 2;
    padding: 3px 4px 4px;
    color: #F8F8FF;
    text-align: center;
    height: 100px;
    transition: all .5s;
    margin-top: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
}
/* ========== sec_hp8 ========== */
.sec_hp8 {
    padding-top: 15px;
}
/* ========== sec_hp9 ========== */
.sec_hp9 {
    padding: 0 0 15px;
}
.sec_hp9 .sec_hp_title {
    margin-bottom: 12px;
}
.sec_accordion {
    font-size: 16px;
}
.sec_accordion_item {
    border-radius: 10px;
    overflow: hidden;
}
.sec_accordion_item:not(:last-child) {
    margin-bottom: 10px;
}
.sec_accordion_head {
    background: #FFF;
    padding: 10px 30px 10px 10px;
    position: relative;
    color: var(--main-color);
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    display: flex;
    width: 100%;
    transition: all .5s;
    cursor: pointer;
}
.sec_accordion_head:after {
    width: 18px;
    height: 18px;
    position: absolute;
    top: 0;
    right: 8px;
    bottom: 0;
    margin: auto 0;
    content: '';
    background: url("../img/catalog/sec9/down.svg") no-repeat center;
    background-size: contain;
}
.sec_accordion_item._active .sec_accordion_head:after {
    transform: rotate(180deg);
    /*top: 5px;*/
}
.sec_accordion_body {
    background: #FAFAFA;
    padding: 10px 10px;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%; /* 25.2px */
    display: none;
    width: 100%;
    flex-wrap: wrap;
}
.sec_accordion_item._active .sec_accordion_body {
    display: flex;
}
.sec_accordion_body a {
    color: var(--neon-blue-color);
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%; /* 25.2px */
    transition: all .5s;
}
.sec_accordion_body a:hover {
    color: var(--main-color-hover);
}
/* ========== sec_hp10 ========== */
.sec_hp10 {
    overflow: hidden;
    padding: 15px 0 0 0;
}
.sec_hp10 .sec_hp_title {
    margin-bottom: 5px;
}
.sec_hp_title.fw700 {
    font-weight: 700;
}
.sec_hp10_descr {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%; /* 25.2px */
    margin-bottom: 10px;
    display: flex;
    flex-wrap: wrap;
}
.sec_hp10_showmore {
    margin-top: 10px;
    margin-bottom: 22px;
    display: flex;
    flex-wrap: wrap;
}
.sec_hp10_showmore a {
    color: var(--main-color);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%; /* 25.2px */
    transition: all .5s;
    position: relative;
}
.sec_hp10_showmore a:after {
    border-radius: 30px;
    background: var(--main-color);
    height: 2px;
    width: 100%;
    content: '';
    display: block;
    position: absolute;
    bottom: -3px;
    left: 0;
    right: 0;
    transition: all .5s;
}
.sec_hp10_showmore a:hover {
    color: var(--neon-blue-color);
}
.sec_hp10_showmore a:hover:after {
    background: var(--neon-blue-color);
}
/**/
.sec_hp10_seo {
    display: none;
    /*margin-top: 15px;*/
}
.sec_hp10_seo._show {
    display: block;
}
.sec_hp10_blue {
    background: var(--main-color);
    padding: 10px 0 17px;
    /*margin-top: 19px;*/
    margin-bottom: 15px;
}
.sec_hp10_blue_title {
    color: var(--white);
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%; /* 36.4px */
}
.sec_hp10_blue_title900 {
    font-weight: 900;
}
.sec_hp10_bblock {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
    margin: 8px auto 0 auto;
}
.bblock_item {
    border-radius: 10px;
    background: #FFF;
    box-shadow: 1px 2px 4px 0 rgba(255, 255, 255, 0.15);
    margin-bottom: 7px;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%; /* 25.2px */
    width: 100%;
}
.bblock_item img {
    margin-right: 3px;
}
/**/
.sec_hp10_big {
    padding-bottom: 15px;
}
.sec_hp10_big .mt_40 {
    margin-top: 15px;
}
.sec_hp10_big .sec_hp_title {
    margin-bottom: 10px;
}
.big_item {
    border-radius: 20px;
    background: #E1E1E2;
    overflow: hidden;
    margin-bottom: 12px;
    /*display: flex;*/
    /*min-height: 360px;*/
    position: relative;
}
.big_item_left {
    width: 100%;
    font-size: 0;
}
.big_item_left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.big_item_right {
    padding: 5px 8px 10px;
    display: flex;
}
.big_item_right_title {
    font-size: 15px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%; /* 28px */
    margin-bottom: 3px;
}
.big_item_right_txt {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%; /* 25.2px */
    margin-bottom: 8px;
}
.big_item_right_btn {
    transition: all .5s;
    border: 2px solid var(--main-color);
    border-radius: 18px;
    box-shadow: 0 0 10.169px 0 rgba(255, 255, 255, 0.25);
    width: 105px;
    height: 27px;
    color: var(--main-color);
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%; /* 25.2px */
    display: flex;
    align-items: center;
    justify-content: center;
}
.big_item_right_btn:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
.big_item_right_btn:hover {
    color: var(--neon-blue-color);
    border-color: var(--neon-blue-color);
}
.big_item_reverse .big_item_left {
    order: 2;
}
.big_item_reverse .big_item_right {
    order: 1;
}
/**/
.sec_hp10_info {
    padding: 10px 0;
    background: #FFF;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%; /* 25.2px */
    display: flex;
    flex-wrap: wrap;
}
.sec_hp10_info .sec_hp_title {
    padding-left: 21px;
    position: relative;
}
.sec_hp10_info .sec_hp_title:before {
    content: '';
    width: 18px;
    height: 18px;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    margin: auto 0;
    background: url("../img/catalog/sec10/info.svg") no-repeat center;
    background-size: contain;
}
.sec_hp10 ul {
    /*margin-bottom: 10px;*/
    padding-left: 26px;
}
.sec_hp10 li {
    display: block;
    position: relative;
}
.sec_hp10 li:before {
    content: '';
    display: block;
    background: var(--main-color);
    width: 5px;
    height: 5px;
    border-radius: 100%;
    position: absolute;
    top: 7px;
    left: -17px;
}
/**/
.sec_hp10_descr_pt {
    padding-top: 15px;
    padding-bottom: 20px;
}
/**/
.sec_hp10_imglist {
    color: #fff;
    background: url('../img/catalog/sec10/imglist/bg.png') no-repeat center;
    background-size: cover;
    padding: 15px 0;
}
.sec_hp10_imglist_title {
    font-size: 18px;
    font-style: normal;
    font-weight: 900;
    line-height: 140%; /* 39.2px */
    margin-bottom: 5px;
}
.sec_hp10_imglist_mtitle {
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
    margin-bottom: 5px;
}
.imglist {
    margin-bottom: 8px;
    display: flex;
    flex-wrap: wrap;
}
.imglist div {
    position: relative;
    padding: 4px 0;
    display: flex;
    align-items: center;
    width: 100%;
}
.imglist div:first-child {
    padding-top: 0;
}
.imglist div:last-child {
    padding-bottom: 0;
}
.imglist div:not(:last-child):after {
    content: '';
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.40);
    height: 1px;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
}
.imglist div img {
    margin-right: 4px;
}
.imglist div p {
    font-size: 15px;
    font-weight: 400;
}
.sec_hp10_imglist_ttxt {
    font-size: 14px;
    font-weight: 400;
}
/**/
.sec_hp10_hidemore {
    margin-top: 5px;
    margin-bottom: 5px;
    display: flex;
    flex-wrap: wrap;
}
.sec_hp10_hidemore a {
    color: var(--main-color);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
    transition: all .5s;
    position: relative;
}
.sec_hp10_hidemore a:after {
    border-radius: 30px;
    background: var(--main-color);
    height: 2px;
    width: 100%;
    content: '';
    display: block;
    position: absolute;
    bottom: -3px;
    left: 0;
    right: 0;
    transition: all .5s;
}
/* ========== prod_scroller ========== */
.prod_scroller {
    background: var(--white);
    /*padding: 8px 0 16px;*/
    padding: 16px 0 16px;
    position: sticky;
    top: 72px;
    z-index: 50;
    overflow: auto;
}
.prod_scroller._stick {
    box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.15);
}
.prod_scroller_list {
    display: flex;
    align-items: center;
    width: 1180px;
}
.prod_scroller_list li:not(:last-child) a {
    margin-right: 20px;
}
.prod_scroller_list a {
    color: var(--main-color);
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    transition: all .5s;
    position: relative;
    display: block;
}
.prod_scroller_list a:after {
    border-radius: 30px;
    background: var(--neon-blue-color);
    height: 2px;
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: all .5s;
}
.prod_scroller_list a:hover:after {
    background: var(--neon-blue-color);
    opacity: 1;
}
.prod_scroller_list a:hover {
    color: var(--neon-blue-color);
}
/* ========== prod_block ========== */
.prod_block {
    background: #ffffff;
    padding: 15px 0 25px;
}
.prod_block_top {
    padding-left: 15px;
    padding-right: 15px;
}
.prod_block_right {
    width: 100%;
}
/*.prod_block_right > div {*/
/*    position: sticky;*/
/*    top: 155px;*/
/*}*/
.prod_block_h1 {
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 10px;
}
.prod_block_data {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.prod_block_changer, .prod_block_changer_mob {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 13px;
}
.prod_block_art {
    border-radius: 20px;
    background: var(--art-bg);
    padding: 4px 11px;
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    display: inline-block;
    /*margin-bottom: 15px;*/
}
.prod_block_art span {
    font-weight: 700;
    margin-right: 4px;
}
.prod_block_dang {
    color: #E95152;
    font-size: 14px;
    font-weight: 700;
    line-height: 140%; /* 19.6px */
    display: flex;
    padding-left: 20px;
    position: relative;
    margin-bottom: 14px;
}
.prod_block_dang:before {
    content: '';
    width: 16px;
    height: 16px;
    background: url("../img/product/danger.svg") no-repeat center;
    background-size: contain;
    position: absolute;
    top: 1px;
    left: 0;
    /*bottom: 0;*/
    /*margin: auto 0;*/
}
/**/
.prod_docs {
    margin-bottom: 13px;
}
.prod_docs_title {
    font-size: 14px;
    font-weight: 700;
    line-height: 140%; /* 19.6px */
    margin-bottom: 5px;
}
.prod_docs_min {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}
.prod_docs_min a,
.prod_docs_big a {
    height: 34px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    border: 1px solid var(--main-color);
    transition: all .5s;
    color: var(--main-color);
    margin-bottom: 8px;
}
.prod_docs_min a {
    width: calc(50% - 4px);
}
.prod_docs_big a:hover,
.prod_docs_min a:hover {
    color: var(--neon-blue-color);
    border-color: var(--neon-blue-color);
}
.prod_docs_big a svg,
.prod_docs_min a svg {
    margin-right: 5px;
}
.prod_docs_big a span,
.prod_docs_min a span {
    font-size: 14px;
    font-weight: 600;
    line-height: 140%; /* 19.6px */
}
.prod_docs_big a {
    width: 100%;
    margin-bottom: 8px;
}
/**/
.prod_materials {
    margin-bottom: 13px;
}
.prod_materials_title {
    font-size: 14px;
    font-weight: 700;
    line-height: 140%;
    margin-bottom: 5px;
}
.prod_materials_txt {
    border-radius: 5px;
    border: 1px solid var(--neon-blue-color);
    padding: 7px 11px;
    color: var(--neon-blue-color);
    font-size: 14px;
    font-weight: 600;
    line-height: 140%;
    display: inline-block;
    transition: all .5s;
}
.prod_materials_list .prod_materials_txt {
    margin-right: 3px;
    margin-bottom: 3px;
}
.prod_materials_txt._active, .prod_materials_txt:not(._active):hover {
    background: var(--neon-blue-color);
    color: var(--white);
}
.prod_materials_txt:not(._active) {
    cursor: pointer;
}
/**/
.prod_colors {
    margin-bottom: 13px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}
.prod_colors_item {
    width: auto;
    min-width: 38%;
    padding-right: 20px;
}
.prod_colors_title {
    font-size: 14px;
    font-weight: 700;
    line-height: 140%;
    margin-bottom: 4px;
}
.prod_colors_list {
    display: flex;
    flex-wrap: wrap;
}
.prod_colors_list a {
    margin-right: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    position: relative;
    border-radius: 100%;
    border: 2px solid transparent;
    transition: all .5s;
}
.prod_colors_list a:hover,
.prod_colors_list a._active {
    border: 2px solid var(--main-color);
}
.prod_colors_list a span {
    display: block;
    width: 28px;
    height: 28px;
    border-radius: 100%;
    background: var(--list-item-color);
}
.prod_colors_list a:hover span,
.prod_colors_list a._active span {
    display: block;
    width: 26px;
    height: 26px;
    border-radius: 100%;
    background: var(--list-item-color);
}


/**/
.prod_block_status {
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%; /* 16.8px */
    display: inline-block;
}
.prod_block_status.in_stock {
    color: var(--in-stock);
}
.prod_block_status.not_available {
    color: var(--out-of-stock);
}
.prod_block_status.under_the_order {
    color: var(--under-stock);
}
.prod_block_price {
    font-size: 26px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    /*margin-top: 50px;*/
    display: flex;
    align-items: center;
}
.prod_block_price span {
    font-size: 30px;
    margin-right: 6px;
}
.prod_block_buy {
    margin-top: 5px;
    border-radius: 10px;
    background: var(--main-color);
    padding: 10px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    transition: all .5s;
}
.prod_block_buy img {
    margin-right: 10px;
}
.prod_block_buy:hover {
    background: var(--main-color-hover);
}
/**/
.prod_block_left {
    width: 100%;
    position: relative;
}
.product_swiper {
    /*height: 580px;*/
    /*width: 580px;*/
}
.product_swiper .swiper-slide {
    position: relative;
    border-radius: 5px;
    overflow: hidden;
}
.product_swiper .swiper-slide._video:before {
    content: '';
    display: block;
    width: 60px;
    height: 60px;
    background: url("../img/product/video.svg") no-repeat center;
    background-size: contain;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    z-index: 3;
    pointer-events: none;
}
.product_swiper .swiper-slide._video:after {
    content: '';
    display: block;
    background: rgba(0, 0, 0, 0.70);
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 1;
    pointer-events: none;
}
.product_swiper .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/**/
.product_swthumbs {
    width: 80px;
    height: 365px;
    order: 1;
}
.product_swthumbs .swiper-slide {
    width: 80px;
    height: 80px;
    border-radius: 5px;
    border: 1px solid rgba(20, 12, 163, 0);
    overflow: hidden;
    position: relative;
    transition: border .5s;
}
.product_swthumbs .swiper-slide._video:before {
    content: '';
    display: block;
    width: 30px;
    height: 30px;
    background: url("../img/product/video.svg") no-repeat center;
    background-size: contain;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    z-index: 3;
}
.product_swthumbs .swiper-slide._video:after {
    content: '';
    display: block;
    background: rgba(0, 0, 0, 0.70);
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 1;
}
.product_swthumbs .swiper-slide.swiper-slide-thumb-active {
    border: 1px solid rgba(20, 12, 163, 0.60);
}
.product_swthumbs .swiper-slide:not(.swiper-slide-thumb-active) {
    cursor: pointer;
}
.product_swthumbs .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/**/
.product_swiper_prev {
    position: absolute;
    top: 64px;
    left: 26px;
    width: 28px;
    height: 28px;
    cursor: pointer;
    transition: all .5s;
}
.product_swiper_next {
    width: 28px;
    height: 28px;
    position: absolute;
    bottom: 95px;
    left: 26px;
    cursor: pointer;
    transition: all .5s;
}
.product_swiper_next:hover,
.product_swiper_prev:hover {
    opacity: 0.65;
}
/**/
.product_swiper_pagination {
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.product_swiper_pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    border-radius: 100%;
    background: var(--bullet-bg);
    margin-right: 6px !important;
    margin-left: 6px !important;
    margin-bottom: 6px !important;
}
.product_swiper_pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: var(--bullet-bg-active);
}
/* ========== prod_description ========== */
.prod_description {
    padding: 20px 0 0;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%; /* 25.2px */
}
.prod_description_anons {
    margin-bottom: 10px;
}
.prod_titler {
    margin-bottom: 5px;
    font-size: 18px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
}
/**/
.prod_description_detail {

}
.prod_description_detail strong, .prod_description_detail b {
    font-weight: bold;
}
.prod_descr_det_btn {
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
    position: relative;
    display: inline-block;
    color: var(--main-color);
}
.prod_descr_det_btn:after {
    content: '';
    border-radius: 20px;
    background: var(--main-color);
    height: 2px;
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
}
.prod_descr_det_show {
    display: none;
}
.prod_description_anons > *:not(:last-child),
.prod_descr_det_show > *:not(:last-child) {
    margin-bottom: 10px;
}
.prod_description_detail h4,
.prod_description_detail h3,
.prod_description_detail h2 {
    color: #010333;
    font-size: 15px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%; /* 25.2px */
    margin-bottom: 4px;
}
.prod_description ul {
    padding-left: 16px;
    width: 100%;
}
.prod_description li {
    display: block;
    position: relative;
    margin-bottom: 3px;
}
.prod_description li:before {
    width: 5px;
    height: 5px;
    border-radius: 100%;
    /*background: #6B79C5;*/
    background: #302F56;
    content: '';
    position: absolute;
    top: 0;
    left: -15px;
    bottom: 0;
    margin: auto 0;
}
/**/
.prod_descr_det_show figure img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 10px 0;
}
.prod_descr_btn {
    display: inline-flex;
    border-radius: 10px;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--main-color);
    padding: 8px 20px;
    color: var(--main-color);
    transition: all .5s;
}
.prod_descr_btn svg {
    margin-right: 5px;
}
.prod_descr_btn:hover {
    border-color: var(--neon-blue-color);
    background: var(--neon-blue-color);
    color: var(--white);
}
/**/
.prod_descr_mfsk {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}
.prod_descr_mfsk > div {
    width: calc(100% / 2);
    margin-bottom: 10px;
    padding: 5px;
}
.prod_descr_mfsk > div > div {

}
.prod_descr_mfsk > div > div img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
}
/**/
.prod_description_detail blockquote {
    border-radius: 20px;
    border: 2px solid var(--danger);
    background: #FFF;
    padding: 20px 19px 19px;
    color: var(--danger-light);
    margin-top: 10px;
    font-size: 14px;
}
.prod_description_detail blockquote h5,
.prod_description_detail blockquote h4 {
    font-size: 18px;
    font-style: normal;
    font-weight: 900;
    line-height: 140%;
    position: relative;
    padding-left: 30px;
    margin-bottom: 4px;
    color: var(--danger-light);
}
.prod_description_detail blockquote h5:before,
.prod_description_detail blockquote h4:before {
    content: '';
    width: 22px;
    height: 22px;
    background: url('../img/product/danger.svg') no-repeat center;
    background-size: contain;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    margin: auto 0;
}
.prod_description_detail blockquote p {
    margin-bottom: 5px;
}
.prod_description_detail blockquote h6 {
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
    margin-top: 10px;
    margin-bottom: 4px;
}
.prod_description_detail :last-child {
    margin-bottom: 0;
}
/* ========== prod_character ========== */
.prod_character {
    padding: 20px 0 0;
}
.prod_character_list {
    /*padding: 20px 19px 20px;*/
    padding: 20px 19px 0;
    background: var(--white);
    border-radius: 20px;
    border: 2px solid rgba(1, 3, 51, 0.70);
    margin-top: 12px;
}
.prod_character_item {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    margin-bottom: 20px;
}
.prod_character_item span {
    display: block;
    background: var(--white);
    position: relative;
    z-index: 1;
    font-size: 14px;
    font-style: normal;
    line-height: 140%; /* 25.2px */
}
.prod_character_item span:first-child {
    white-space: nowrap;
    padding-right: 10px;
    font-weight: 400;
}
.prod_character_item span:last-child {
    text-align: right;
    padding-left: 10px;
    font-weight: 600;
}
.prod_character_item:after {
    content: "";
    display: block;
    width: 100%;
    height: 0;
    border-radius: 10px;
    border-top: 1px solid rgba(1, 3, 51, 0.20);
    position: absolute;
    top: 50%;
    left: 0;
}
.prod_character_item:last-child {
    /*margin-bottom: 0 !important;*/
}
/* ========== prod_raller ========== */
.prod_raller {
    padding: 20px 0 0;
    overflow: hidden;
}
.prod_raller_txt {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%; /* 25.2px */
}
.raller_swiper {
    margin-top: 12px;
    position: relative;
}
.raller_swiper:after {
    content: '';
    position: absolute;
    top: -30px;
    right: -92px;
    bottom: -30px;
    display: block;
    background: #F2F2F4;
    filter: blur(12px);
    width: 123px;
    z-index: 1;
}
.prod_raller_item {
    border-radius: 15px;
    height: 200px;
    position: relative;
    overflow: hidden;
}
.prod_raller_item:after {
    content: '';
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.30);
    transition: background 1s, opacity .5s;
    opacity: 1;
}
.prod_raller_item:hover:after {
    opacity: .75;
}
.raller_item_top {
    position: absolute;
    z-index: 3;
    top: 10px;
    left: 5px;
    right: 5px;
    width: calc(100% - 10px);
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-around;
}
.raller_item_top:after {
    content: '';
    display: block;
    background: rgba(0, 0, 0, 0.40);
    filter: blur(27px);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
.raller_item_top > * {
    position: relative;
    z-index: 2;
}
.raller_item_brush {
    color: var(--raller-color);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.raller_item_brush svg {
    width: 40px;
    height: auto;
}
.raller_item_brush img {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
}
.raller_item_txt {
    width: calc(100% - 40px);
    color: var(--white);
    opacity: 0;
    transition: all 1s;
    display: none;
}
.raller_item_ral {
    text-shadow: 4px 2px 6px rgba(0, 0, 0, 0.75);
    font-size: 15px;
    font-style: normal;
    font-weight: 800;
    line-height: 140%; /* 28px */
    white-space: nowrap;
}
.raller_item_title {
    text-shadow: 4px 2px 6px rgba(0, 0, 0, 0.75);
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%; /* 25.2px */
    white-space: nowrap;
}
.prod_raller_item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/**/
.raller_swiper .swiper-slide {
    width: 60px;
    transition: width 1s;
}
.raller_swiper .swiper-slide.swiper-slide-active {
    width: 200px !important;
}
.raller_swiper .swiper-slide:not(.swiper-slide-active) {
    cursor: pointer;
}
.raller_swiper .swiper-slide.swiper-slide-active .raller_item_txt {
    opacity: 1;
    display: block;
}
.raller_swiper .swiper-slide.swiper-slide-active .prod_raller_item:after {
    background: rgba(0, 0, 0, 0);
}
/* ========== prod_plastic ========== */
.prod_plastic {
    padding: 20px 0 0;
}
.plastic_palet {
    /*display: flex;*/
    /*justify-content: center;*/
    /*align-items: center;*/
    /*flex-wrap: wrap;*/
    margin-top: 12px;
    position: relative;
}
.plastic_palet_item {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0 auto;
    /*width: 31%;*/
    /*margin: 0 1% 10px;*/
}
.plastic_palet_item svg {
    color: var(--plastic-color);
    width: 76px;
    height: 76px;
}
.plastic_palet_item div {
    color: var(--black);
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%; /* 25.2px */
    width: 100%;
}
.plastic_palet_item span {
    color: var(--main-color);
    text-align: center;
    font-size: 17px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%; /* 23.8px */
}
/**/
.swiper_plastic_prev, .swiper_plastic_next {
    width: 35px;
    height: 35px;
    display: none;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto 0;
    transition: all .5s;
    z-index: 2;
}
.swiper_plastic_prev:not(.swiper-button-disabled),
.swiper_plastic_next:not(.swiper-button-disabled) {
    cursor: pointer;
}
.swiper_plastic_prev {
    left: 0;
}
.swiper_plastic_next {
    right: 0;
}
/**/
/* ========== prod_gallery ========== */
.prod_gallery {
    padding: 15px 0 25px;
    background: var(--white);
    margin-top: 20px;
}
.prod_raller_txt {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%; /* 25.2px */
    margin-bottom: 12px;
}
.prod_gallery_wrp {
    position: relative;
}
.gallery_swiper .swiper-slide {
    width: 136px;
    height: 136px;
}
.prod_gallery_item {
    width: 136px;
    height: 136px;
    position: relative;
    border-radius: 12px;
    border: 1px solid rgba(1, 3, 51, 0.20);
    overflow: hidden;
}
.prod_gallery_item a {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transition: all .5s;
    opacity: 1;
}
.prod_gallery_item a:hover {
    opacity: .65;
}
.prod_gallery_item_video a:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.70);
    z-index: 1;
}
.prod_gallery_item_video a:after {
    content: '';
    width: 68px;
    height: 68px;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: url('../img/product/gallery/play.svg') no-repeat center;
    background-size: contain;
    z-index: 2;
    margin: auto;
}
.prod_gallery_item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/**/
.sw-pg-button-next, .sw-pg-button-prev {
    z-index: 1;
    width: 32px;
    height: 32px;
    margin: auto 0;
    opacity: 1;
    transition: all .5s;
}
.swiper-button-disabled {
    opacity: 0.4;
}
.sw-pg-button-next:not(.swiper-button-disabled), .sw-pg-button-prev:not(.swiper-button-disabled) {
    cursor: pointer;
}
.sw-pg-button-next:not(.swiper-button-disabled):hover, .sw-pg-button-prev:not(.swiper-button-disabled):hover {
    opacity: 0.65;
}
.sw-pg-button-next {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
}
.sw-pg-button-prev {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
}
.sw-pg-button-next, .sw-pg-button-prev {
    display: none;
}
/* ========== hdesc_menu ========== */
.hdesc_menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    max-height: calc(100vh - 72px);
    overflow: auto;
    z-index: 1;
}
.hdesc_menu._hide {
    display: none;
}
.hdesc_menu_row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
}
.hdesc_menu_left {
    width: 280px;
    padding-right: 25px;
    border-right: 1px solid #EDEDED;
}
.hdesc_menu_list {
    padding: 20px 0 25px;
    min-height: 555px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.hdesc_menu_list li {

}
.hdesc_menu_list a {
    color: var(--main-color);
    display: flex;
    align-items: center;
    position: relative;
    padding: 5px 0;
    font-size: 16px;
    font-weight: 600;
    transition: all .5s;
}
.hdesc_menu_list a svg {
    margin-right: 12px;
}
.hdesc_menu_list a span {
    width: calc(100% - 32px);
}
.hdesc_menu_list a._empty:after {
    opacity: 0 !important;
}
.hdesc_menu_list a:after {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    background: url('../img/header/menu/right.svg') no-repeat center;
    background-size: contain;
}
.hdesc_menu_list a:hover {
    color: var(--neon-blue-color);
}
.hdesc_menu_list a:hover:after {
    background: url('../img/header/menu/right_hover.svg') no-repeat center;
    background-size: contain;
}
/**/
.hdesc_menu_right {
    padding: 0 15px 30px 15px;
    width: 100%;
}
.hdesc_menu_menu {
    display: none;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: baseline;
    width: 100%;
    height: max-content;
}
.hdesc_menu_menu._active {
    display: flex;
}
.hdesc_menu_cat {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    width: 100%;
    margin-bottom: 25px;
}
.hdesc_menu_cat_img {
    width: 36px;
    height: 36px;
    border-radius: 100%;
    background: var(--grayf2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}
.hdesc_menu_cat_img img {
    max-width: 95%;
    max-height: 95%;
    width: auto;
    height: auto;
}
.hdesc_menu_cat_name {
    color: var(--main-color);
    display: block;
    font-size: 16px;
    font-weight: 600;
    transition: all .5s;
    max-width: calc(100% - 46px);
}
.hdesc_menu_cat_name:hover {
    color: var(--neon-blue-color);
}
/**/
.menu_overlay {
    background: rgba(1, 3, 51, 0.25);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 90;
}
.menu_overlay_buy {
    background: rgba(1, 3, 51, 0.25);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 110;
}
.menu_overlay._hide,
.menu_overlay_buy._hide {
    display: none !important;
}
/* ========== sec7 ========== */
.sec7 {
    padding: 7px 0 0;
}
.sec7_item {
    border-radius: 10px;
    width: 100%;
    /*height: 187px;*/
    height: 288px;
    position: relative;
    overflow: hidden;
}
.sec7_item_img {
    position: relative;
    z-index: 1;
    height: 100%;
}
.sec7_item_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.sec7_item_overlay {
    background: linear-gradient(0deg, rgba(1, 3, 51, 0.50) 0%, rgba(1, 3, 51, 0.50) 100%);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
}
.sec7_item_bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 4;
    padding: 10px 15px;
}
.sec7_item_title {
    color: #FFF;
    font-size: 14px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    text-transform: uppercase;
    /*margin-bottom: 2px;*/
    margin-bottom: 10px;
}
.sec7_item_txt {
    color: #FFF;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%; /* 25.2px */
    margin-bottom: 6px;
    display: none !important;
}
.sec7_item_btn {
    transition: all .5s;
    display: flex;
    padding: 4px 14px;
    justify-content: center;
    align-items: center;
    border-radius: 40px;
    color: #ffffff;
    background: #1507E1;
    font-size: 15px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%; /* 25.2px */
    width: 100%;
}
.sec7_item_btn img {
    margin-left: 3px;
}
.sec7_item_btn:hover {
    background: var(--main-color-hover);
}
/**/
.sec7_swiper_wrp {
    position: relative;
    padding-bottom: 29px;
}
.sec7_swiper_wrp .swiper-scrollbar {
    bottom: 0 !important;
}
.sec7_swiper .swiper-slide-active .sec7_item_bottom {
    background: rgba(1, 3, 51, 0.80);
}
/* ========== sec8 ========== */
.sec8 {
    margin-bottom: 20px;
}
.sec8_banner, .sec8_banner_mob {
    border-radius: 5px;
    overflow: hidden;
    font-size: 0;
}
.sec8 img {
    width: 100%;
    height: auto;
}
.sec8_banner {
    display: none;
}
/* ========== sec9 ========== */
.sec9 {
    padding: 0 0 18px 0;
}
.sec9_row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
.sec9_left_mob {
    width: 50%;
}
.sec9_left {
    width: 50%;
    display: flex;
    align-items: center;
}
.sec9_sort {
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    display: none;
    align-items: center;
    margin-right: 20px;
}
.sec9_sort img {
    margin-right: 3px;
}
.sec9_sorter {
    position: relative;
    width: 100%;
}
.sec9_sorter_block {
    max-width: 232px;
    width: 100%;
    height: 40px;
    border-radius: 8px;
    border: 1px solid #C2C2CD;
    background: var(--white);
    padding: 5px 42px 5px 10px;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
}
.sec9_sorter_block {
    white-space: nowrap;
    width: 100%;
    overflow: hidden;
}
.sec9_sorter_block img {
    position: absolute;
    top: 0;
    right: 10px;
    bottom: 0;
    margin: auto 0;
}
.sec9_sorter_drop {
    max-width: 232px;
    width: 100%;
    background: var(--white);
    border-left: 1px solid #C2C2CD;
    border-right: 1px solid #C2C2CD;
    border-bottom: 1px solid #C2C2CD;
    border-radius: 0 0 8px 8px;
    display: none;
    position: absolute;
    top: 100%;
    z-index: 2;
}
.sec9_sorter_drop a {
    color: var(--main-color);
    display: block;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    padding: 5px 10px;
    margin: 5px 0;
    transition: all .5s
}
.sec9_sorter_drop a:hover {
    background: var(--main-color);
    color: var(--white);
}
.sec9_sorter_drop a:first-child {
    margin-top: 0;
}
.sec9_sorter_block._active {
    border-bottom: 0;
    border-radius: 8px 8px 0 0;
}
.sec9_sorter_block._active img {
    transform: rotate(180deg);
}
.sec9_sorter_block._active+.sec9_sorter_drop {
    display: block;
}
/**/
.sec9_right {
    width: 50%;
    display: none;
}
.sec9_find {
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
.sec9_find span {
    font-weight: 600;
    display: inline-block;
    margin-left: 5px;
}
/**/
.sec9_mob_btn {
    width: 50%;
    max-width: 100%;
}
.sec9_mob_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 150px;
    height: 40px;
    border-radius: 10px;
    background: var(--main-color);
    color: var(--white);
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
.sec9_mob_btn img {
    margin-right: 5px;
}
/* ========== sec10 ========== */
.sec10 {

}
.sec10_row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}
.sec10_left {
    display: none;
}
/**/
.sec10_right {
    width: 100%;
}
.sec10_right_list {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}
/**/
.sec10_showmore {
    display: flex;
    border-radius: 10px;
    background: var(--main-color);
    width: 100%;
    height: 50px;
    padding: 10px;
    justify-content: center;
    align-items: center;
    color: var(--white);
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%; /* 25.2px */
    transition: all .5s;
    margin-bottom: 18px;
}
.sec10_showmore:hover {
    background: var(--main-color-hover);
}
.sec10_lister {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.sec10_before {
    content: '';
    display: block;
    width: 32px;
    height: 32px;
    background: url("../img/sec10/right.svg") no-repeat center;
    transform: rotate(180deg);
    opacity: 0.8;
    transition: all .5s;
    top: 2px;
    position: relative;
}
span.sec10_before, span.sec10_after {
    opacity: 0.5;
}
.sec10_after {
    content: '';
    display: block;
    width: 32px;
    height: 32px;
    background: url("../img/sec10/right.svg") no-repeat center;
    opacity: 0.8;
    transition: all .5s;
}
.sec10_before:hover, .sec10_after:hover {
    opacity: 0.5;
}
.sec10_list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}
.sec10_list a, .sec10_list span {
    display: flex;
    width: 32px;
    height: 32px;
    padding: 2px;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    border: 1px solid #302F56;
    margin: 0 5px;
    color: var(--main-color);
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%; /* 25.2px */
    transition: all .5s;
}
.sec10_list span, .sec10_list a:hover {
    background: var(--main-color);
    color: var(--white);
}
/* ========== elk_filter ========== */
.elk_filter {

}
.elk_filter_item {
    border-radius: 8px;
    margin-bottom: 10px;
    overflow: hidden;
}
.elk_filter_title {
    padding: 14px 42px 14px 20px;
    position: relative;
    color: var(--main-color);
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    background: var(--white);
    cursor: pointer;
}
.elk_filter_title img {
    position: absolute;
    top: 0;
    right: 11px;
    bottom: 0;
    margin: auto 0;
    z-index: 1;
}
.elk_filter_list {
    display: none;
    background: #FAFAFA;
    padding: 14px 20px;
}
.elk_filter_item._active .elk_filter_list {
    display: block;
}
.elk_filter_item._active .elk_filter_title img {
    transform: rotate(180deg);
}
.elk_filter_list > div:not(:last-child) {
    margin-bottom: 10px;
}
.elk_filter_list label {
    padding-left: 21px;
    color: var(--main-color);
    font-family: var(--main-fonts);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    position: relative;
    transition: all .5s;
    cursor: pointer;
    display: block;
}
.elk_filter_list label a {
    color: var(--main-color);
}
.elk_filter_list label:hover, .elk_filter_list label a:hover {
    color: var(--main-color-hover);
}

.elk_filter_list label span {
    display: inline-block;
    color: var(--main-color);
    opacity: 0.7;
    font-family: var(--main-fonts);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-left: 3px;
}
.elk_filter_list input {
    display: none;
}
.elk_filter_list div input~label:before {
    content: '';
    display: block;
    width: 14px;
    height: 14px;
    background: url('../img/filter/check.svg') no-repeat center;
    background-size: contain;
    position: absolute;
    bottom: 0;
    left: 0;
    top: 0;
    margin: auto 0;
}
.elk_filter_list div input:checked~label:before {
    content: '';
    display: block;
    width: 14px;
    height: 14px;
    background: url('../img/filter/check_on.svg') no-repeat center;
    background-size: contain;
    position: absolute;
    bottom: 0;
    left: 0;
    top: 0;
    margin: auto 0;
}
.elk_filter_btn {
    display: flex;
    width: 100%;
    height: 42px;
    padding: 10px;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    background: rgba(1, 3, 51, 0.60);
    color: var(--white);
    font-family: var(--main-fonts);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    transition: all .5s;
}
.elk_filter_btn:hover {
    background: var(--main-color);
}
.elk_filter_btn:active {
    background: var(--main-color-hover);
}
/**/
.elk_mfilter {
    top: 72px;
    height: calc(100vh - 72px);
}
.elk_filter_insert {

}
.elk_filter_insert > div:first-child {
    border-radius: 8px;
    border: 1px solid #C2C2CD;
    background: var(--white);
    padding: 14px 11px;
    margin-bottom: 10px;
}
.elk_filter_insert_item {
    margin-bottom: 10px;
}
.elk_filter_insert_item a {
    display: inline-flex;
    align-items: center;
    border-radius: 30px;
    background: rgba(20, 12, 163, 0.20);
    padding: 5px 10px;
    color: var(--main-color);
    font-family: var(--main-fonts);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    transition: all .5s;
}
.elk_filter_insert_item a:hover {
    background: rgba(20, 12, 163, 0.10);
}
.elk_filter_insert_item img{
    margin-left: 3px;
}
.elk_filter_insert_rem {
    display: inline-flex;
    align-items: center;
    border-radius: 30px;
    background: var(--danger-light);
    color: var(--white);
    font-family: var(--main-fonts);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    padding: 5px 10px;
    transition: all .5s;
}
.elk_filter_insert_rem:hover {
    background: var(--danger-light-hover);
}
.elk_filter_insert_rem img {
    margin-left: 3px;
}
/* ========== sec11 ========== */
.sec11 {
    padding: 0 0 30px;
}
.sec11_second {
    display: none;
}
.sec11_second._show {
    display: block;
}
.sec11_second > .container {
    padding-left: 0;
    padding-right: 0;
}
.sec11_btn_first._hide {
    display: none !important;
}
/**/
.sec11_seo {

}
.sec11_seo h2, .sec11_seo h3, .sec11_seo h4, .sec11_seo h5 {
    font-size: 18px;
    font-style: normal;
    font-weight: 900;
    line-height: 140%; /* 30.8px */
    margin-bottom: 5px;
}
.sec11_seo p {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%; /* 25.2px */
    margin-bottom: 10px;
}
.sec11_seo ul, .sec11_seo ol {
    list-style-type: none;
    padding: 0;
    margin-bottom: 10px;
}
.sec11_seo li {
    position: relative;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%; /* 25.2px */
    padding-left: 30px;
}
.sec11_seo li:before {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 100%;
    background: var(--main-color);
    position: absolute;
    top: 0;
    left: 12px;
    bottom: 0;
    margin: auto 0;
}
.sec11_btn {
    margin-top: 10px;
    color: var(--main-color);
    font-family: var(--main-fonts);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
    position: relative;
    transition: all .5s;
}
.sec11_btn:after {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    bottom: -2px;
    background: var(--main-color);
    height: 2px;
    transition: all .5s;
}
.sec11_seo a:not(.sec11_btn) {
    color: var(--neon-blue-color);
}
.sec11_seo a:not(.sec11_btn):hover {
    color: var(--main-color-hover);
}
.sec11_btn:hover {
    color: var(--main-color-hover);
}
.sec11_btn:hover:after {
    background: var(--main-color-hover);
}
/* ========== hdesc_clients ========== */
.hdesc_clients {
    padding: 25px 0;
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}
.hdesc_clients_left {
    width: 66.666%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
}
.hdesc_clients_item {
    /*width: calc(100% / 3);*/
    /*padding-right: 20px;*/
}
.hdesc_clients_item:first-child {
    width: 25%;
}
.hdesc_clients_item:nth-child(2) {
    width: 37.5%;
    padding-left: 20px;
    padding-right: 20px;
}
.hdesc_clients_item:nth-child(3) {
    width: 37.5%;
    padding-left: 20px;
}
.hdesc_clients_title {
    color: #000;
    font-size: 18px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    margin-bottom: 22px;
}
.hdesc_clients_link {
    margin-bottom: 20px;
}
.hdesc_clients_link a {
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    display: inline-block;
    transition: all .5s;
}
.hdesc_clients_link a:hover {
    color: var(--main-color-hover);
}
/**/
.hdesc_clients_right {
    width: 25%;
    display: flex;
    align-items: center;
    justify-content: right;
    font-size: 0;
}
.hdesc_clients_right img {
    width: auto;
    height: auto;
    border-radius: 10px;
}
/* ========== sec_buy ========== */
.sec_buy {
    border-radius: 10px;
    background: var(--white);
    position: fixed;
    top: 40px;
    left: 12px;
    right: 12px;
    margin: 0 auto;
    max-width: 864px;
    z-index: 999;
    width: calc(100% - 24px);
    overflow: hidden;
}
.sec_buy._hide {
    display: none !important;
}
.sec_buy_top {
    padding: 8px 16px;
    background: #F2F2F4;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
}
.sec_buy_top_title {
    color: var(--main-color);
    font-family: var(--main-fonts);
    font-size: 16px;
    font-style: normal;
    font-weight: 900;
    line-height: 140%; /* 30.8px */
}
.sec_buy_top_close {
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0;
    transition: all .5s;
}
.sec_buy_top_close img {
    width: 22px;
    height: 22px;
}
.sec_buy_top_close:hover {
    opacity: .75;
}
.sec_buy_body {
    padding: 10px 16px;
    max-height: calc(100vh - 39px - 80px);
    overflow-y: auto;
}
/**/
.sec_buy_clear {
    display: flex;
    width: 100%;
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
}
.sec_buy_clear img {
    margin-bottom: 10px;
    max-width: 100%;
    width: auto;
    height: auto;
}
.sec_buy_clear_b1 {
    width: 100%;
    text-align: center;
    color: #000;
    font-family: var(--main-fonts);
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%; /* 28px */
    margin-bottom: 3px;
}
.sec_buy_clear_b2 {
    width: 100%;
    text-align: center;
    color: #000;
    font-family: var(--main-fonts);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%; /* 25.2px */
}
/**/
.sec_buy_item {
    border-radius: 10px;
    border: 1px solid rgba(1, 3, 51, 0.20);
    padding: 10px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 10px;
}
.sec_buy_item_left {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}
.sec_buy_item_img {
    width: 53px;
    height: 53px;
}
.sec_buy_item_img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
/**/
.sec_buy_item_block {
    width: calc(100% - 53px - 4px);
    display: flex;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}
.sec_buy_item_block > div {
    width: 100%;
}
.sec_buy_item_title a {
    display: inline-block;
    color: var(--main-fonts);
    font-family: var(--main-fonts);
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
.sec_buy_item_title a:hover {
    color: var(--main-color-hover);
}
.sec_buy_item_data {
    display: flex;
    align-items: center;
}
.sec_buy_item_num {
    border-radius: 5px;
    border: 1px solid #CCCDD6;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 7px;
    width: 107px;
}
.sec_buy_minus {
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sec_buy_plus {
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sec_buy_minus img, .sec_buy_plus img {
    transition: all .5s;
}
.sec_buy_minus:hover img, .sec_buy_plus:hover img{
    opacity: 0.4;
}
.sec_buy_item_num input {
    border: 0;
    color: var(--main-color-hover);
    font-family: var(--main-fonts);
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    display: block;
    max-width: calc(100% - 44px);
    text-align: center;
    outline: none;
    padding: 0;
}
.sec_buy_item_num input::-webkit-inner-spin-button,
.sec_buy_item_num input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
/* Firefox */
.sec_buy_item_num input[type=number] {
    -moz-appearance: textfield;
}
.sec_buy_item_price {
    margin-left: 12px;
    color: var(--main-color);
    font-family: var(--main-fonts);
    font-size: 18px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    display: flex;
    align-items: center;
    justify-content: start;
}
.sec_buy_item_price span {
    display: inline-block;
    margin-left: 5px;
    font-size: 16px;
}
/**/
.sec_buy_item_right {
    width: 32px;
    display: flex;
    align-items: center;
}
.sec_buy_item_right a {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .5s;
    width: 32px;
    height: 32px;
}
.sec_buy_item_right a:hover {
    opacity: .65;
}
.sec_buy_item_right img {
    width: 32px;
    height: 32px;
}
/**/
.sec_buy_bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
}
.sec_buy_btn1 {
    display: flex;
    width: 186px;
    padding: 10px;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    border: 1px solid var(--main-color);
    font-family: var(--main-fonts);
    color: var(--main-color);
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%; /* 19.6px */
    transition: all .5s;
}
.sec_buy_btn1:hover {
    border: 1px solid var(--main-color);
    background: var(--main-color);
    color: var(--white);
}
.sec_buy_bottom_btns {
    display: flex;
    flex-direction: row;
    align-items: center;
}
.sec_buy_bottom_price {
    color: var(--main-color);
    font-family: var(--main-fonts);
    font-size: 30px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    display: flex;
    align-items: center;
}
.sec_buy_bottom_price div:nth-child(2) {
    margin-left: 5px;
    font-size: 26px;
}
.sec_buy_btn2 {
    border-radius: 10px;
    background: #30B15C;
    display: flex;
    min-width: 242px;
    padding: 10px 25px;
    justify-content: center;
    align-items: center;
    color: var(--white);
    font-family: var(--main-fonts);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%; /* 22.4px */
    margin-left: 20px;
    transition: all .5s;
}
.sec_buy_btn2:hover {
    background: #3FC56D;
}
.sec_buy_btn2:active {
    background: rgba(48, 177, 92, 0.30);
}
/* ========== sec12 ========== */
.sec12 {
    padding: 0 0 20px;
}
.sec12_left {
    overflow: hidden;
    background: #FFF;
}
.sec12_big_title {
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%; /* 25.2px */
    padding: 5px 10px;
    background: var(--main-color);
    color: var(--white);
}
.sec12_adr {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%; /* 25.2px */
    position: relative;
    padding: 10px 33px 10px 33px;
}
.sec12_adr:before {
    content: '';
    width: 20px;
    height: 20px;
    position: absolute;
    top: 0;
    left: 10px;
    bottom: 0;
    margin: auto 0;
    background: url('../img/sec12/ico.svg') no-repeat center;
    background-size: contain;
}
.sec12_mail {
    padding: 10px 33px 10px 33px;
    position: relative;
}
.sec12_mail:before {
    content: '';
    width: 20px;
    height: 15px;
    position: absolute;
    top: 0;
    left: 10px;
    bottom: 0;
    margin: auto 0;
    background: url('../img/sec12/mail.svg') no-repeat center;
    background-size: contain;
}
.sec12_mail a {
    color: var(--main-color);
    font-family: var(--main-fonts);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%; /* 25.2px */
    transition: all .5s;
}
.sec12_mail a:hover {
    color: var(--main-color-hover);
}
.sec12_hr {
    height: 1px;
    border-radius: 10px;
    background: #C2C2CD;
}
.sec12_phone_title {
    color: #000;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%; /* 25.2px */
    padding: 10px 33px 10px 33px;
    position: relative;
}
.sec12_phone_title:before {
    content: '';
    width: 20px;
    height: 20px;
    position: absolute;
    top: 0;
    left: 10px;
    bottom: 0;
    margin: auto 0;
    background: url('../img/sec12/phone.svg') no-repeat center;
    background-size: contain;
}
.sec12_phones {
    padding: 10px 33px 10px 33px;
}
.sec12_phones div {}
.sec12_phones div a {
    display: inline-block;
    color: var(--main-color);
    font-family: var(--main-fonts);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%; /* 25.2px */
    transition: all .5s;
}
.sec12_phones div a:hover {
    color: var(--main-color-hover);
}
/**/
.sec12_rem_title {
    color: #000;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%; /* 25.2px */
    padding: 0 33px 2px 33px;
}
.sec12_phones_pb {
    padding-bottom: 10px;
    padding-top: 0;
}
.sec12_dates {
    padding: 10px 33px 10px 33px;
    position: relative;
}
.sec12_dates:before {
    content: '';
    width: 20px;
    height: 20px;
    position: absolute;
    top: -4px;
    left: 11px;
    bottom: 0;
    margin: auto 0;
    background: url('../img/sec12/clock.svg') no-repeat center;
    background-size: contain;
}
.sec12_dates div {
    margin-bottom: 5px;
    color: #000;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%; /* 25.2px */
}
.sec12_dates div:last-child {
    margin-bottom: 0;
}
.sec12_dates div span {
    font-weight: 400;
    display: inline-block;
    margin-left: 5px;
}
/**/
.sec12_right iframe {
    width: 100% !important;
    height: 296px !important;
    border-radius: 0 0 10px 10px;
    overflow: hidden;
}
/* ========== sec_search ========== */
.sec_search {
    border-radius: 10px;
    background: #FFF;
    position: fixed;
    top: 40px;
    left: 12px;
    right: 12px;
    z-index: 999;
    width: 864px;
    max-width: calc(100% - 24px);
    margin: 0 auto;
    overflow: hidden;
}
.sec_search._hide {
    display: none !important;
}
.sec_search_form {
    display: block;
    width: 100%;
}
.sec_search_close {
    padding: 8px 16px;
    background: #F2F2F4;
    display: flex;
    width: 100%;
    justify-content: space-between;
}
.sec_search_close span {
    color: var(--main-color);
    font-family: var(--main-fonts);
    font-size: 16px;
    font-style: normal;
    font-weight: 900;
    line-height: 140%; /* 22.4px */
}
.sec_search_close a {
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .5s;
}
.sec_search_close a:hover {
    opacity: .4;
}
.sec_search_close a img {
    width: 22px;
    height: 22px;
}
/**/
.sec_search_inp {
    padding: 10px 16px;
}
.sec_search_ico {
    border-radius: 10px;
    border: 1px solid rgba(1, 3, 51, 0.20);
    position: relative;
    overflow: hidden;
}
.sec_search_ico svg{
    width: 20px;
    height: 22px;
    position: absolute;
    top: 0;
    left: 6px;
    bottom: 0;
    margin: auto 0;
    z-index: 1;
}
.sec_search_ico path {
    stroke: var(--main-color);
}
.sec_search_inp input {
    display: block;
    width: 100%;
    color: var(--main-color);
    font-family: var(--main-fonts);
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    padding: 10px 32px 10px 30px;
    border: 0;
    outline: none !important;
}
.sec_search_inp a {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto 0;
    width: 32px;
    height: 33px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    transition: all .5s;
}
.sec_search_inp a img {
    width: 22px;
    height: 26px;
}
.sec_search_inp a:hover {
    opacity: .4;
}
/**/
.sec_search_result {
    max-height: calc(100vh - 38px - 61px - 40px);
    overflow-y: auto;
}
.sec_search_list {
    padding: 8px 16px;
}
.sec_search_item {
    border-bottom: 1px solid rgba(1, 3, 51, 0.20);
    margin-bottom: 10px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    padding-bottom: 10px;
}
.sec_search_img {
    width: 70px;
    height: 70px;
}
.sec_search_img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.sec_search_caption {
    width: calc(100% - 90px);
    margin-left: 20px;
}
.sec_search_caption a {
    color: var(--main-color);
    font-family: var(--main-fonts);
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    transition: all .5s;
}
.sec_search_caption a:hover {
    color: var(--main-color-hover);
}
.sec_search_price {
    margin-top: 5px;
    color: var(--main-color);
    font-family: var(--main-fonts);
    font-size: 14px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    display: flex;
    align-items: end;
}
.sec_search_price span {
    display: inline-block;
    font-size: 13px;
    margin-left: 3px;
}
.sec_search_all {

}
.sec_search_all a {
    border-radius: 10px;
    color: var(--main-color);
    border: 1px solid var(--main-color);
    padding: 8px 15px;
    font-family: var(--main-fonts);
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%; /* 19.6px */
    display: inline-block;
    transition: all .5s;
}
.sec_search_all a:hover {
    background: var(--main-color);
    color: var(--white);
}
/* ========== sec13 ========== */
.sec13 {
    padding: 7px 0 1px;
}
.sec13_item {
    margin-bottom: 15px;
    width: 100%;
    position: relative;
}
.sec13_img_wrp {
    position: relative;
    height: 226px;
    margin-bottom: 5px;
}
.sec13_img {
    height: 226px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    z-index: 2;
}
.sec13_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.sec13_item_date {
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%; /* 19.6px */
    margin-bottom: 3px;
}
.sec13_item_title a {
    color: var(--main-color);
    font-family: var(--main-fonts);
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%; /* 25.2px */
    transition: all .5s;
}
.sec13_item_title a:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 4;
}
.sec13_item:hover .sec13_item_title a {
    color: var(--main-color-hover);
}
/* ========== sec14 ========== */
.sec14 {
    display: flex;
    flex-direction: row;
    font-size: 0;
    position: relative;
    margin-bottom: 30px;
}
.sec14_left {
    width: 400px;
    /*position: absolute;*/
    /*bottom: 0;*/
    /*left: 0;*/
    /*top: 0;*/
    border-radius: 10px 0 0 10px;
    overflow: hidden;
}
.sec14_left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.sec14 > .container {
   position: relative;
    z-index: 2;
}
/**/
.sec14_form {
    color: var(--white);
    padding: 15px 0;
}
.sec14_form_titler {
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%; /* 33.6px */
    text-transform: uppercase;
    margin-bottom: 5px;
}
.sec14_form_title {
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 10px;
}
.sec14_form_label {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%; /* 22.4px */
    padding-left: 8px;
    margin-bottom: 3px;
}
.sec14_form_label span,
.sec14_form_descr span {
    color: #F75834;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%; /* 22.4px */
    position: relative;
    top: -4px;
}
.sec14_form_inp, .sec14_form_txtar {
    border-radius: 10px;
    background: var(--white);
    border: 1px solid var(--white);
    padding: 10px 8px;
    display: block;
    width: 100%;
    color: var(--main-color);
    font-family: var(--main-fonts);
    font-size: 14px;
    font-style: normal;
    font-weight: 250;
    line-height: 140%; /* 19.6px */
    margin-bottom: 7px;
    outline: none !important;
}
.sec14_need_valid._danger {
    border: 1px solid var(--danger);
}
.sec14_form_txtar {
    height: 80px;
    margin-bottom: 3px;
}
.sec14_form_descr {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%; /* 19.6px */
}
.sec14_form_btn {
    margin-top: 10px;
    display: flex;
    width: 100%;
    padding: 10px;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    background: var(--white);
    color: var(--main-color);
    font-family: var(--main-fonts);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    transition: all .5s;
}

/* ========== play--blog-detail ========== */
.play--blog-detail {
    padding: 22px 0 30px;
}
.play--blog-detail-posted {
    font-weight: bold;
    opacity: .6;
    margin-bottom: 15px;
}
.play--blog-detail-content {
    color: #000;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%; /* 25.2px */
}
.play--blog-detail-content strong, .play--blog-detail-content b {
    font-weight: bold;
}
.play--blog-detail-content em em {
    font-style: italic;
}
.play--blog-detail-content .container > * {
    margin-bottom: 15px;
}
.play--blog-detail-content .row {
    margin: 15px 0 0;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}
.play--blog-detail-content .row .col-1 {
    width: 100%;
}
.play--blog-detail-content .row .col-2 {
    width: 100%;
}
.play--blog-detail-content .row .col-3 {
    width: 100%;
    /*margin-bottom: 15px;*/
}
.play--blog-detail-content .row .col-4 {
    width: 100%;
    /*margin-bottom: 15px;*/
}
.play--blog-detail-content .row > div figure {
    height: 100%;
    padding-bottom: 15px;
}
.play--blog-detail-content img {
    border-radius: 15px;
    width: 100%;
    height: auto;
    display: block;
    cursor: zoom-in;
    transition: all .5s;
}
.play--blog-detail-content img:hover {
    opacity: .75;
}
.play--blog-detail-content .row > div figure img {
    height: 100%;
    object-fit: cover;
}
.play--blog-detail-content a {
    transition: all .5s;
    color: var(--neon-blue-color);
    font-size: 14px;
}
.play--blog-detail-content a:hover {
    color: var(--main-color-hover);
}
/**/
.play--blog-detail-next {
    padding: 30px 0;
    text-align: center;
}
.play--blog-detail-next span {
    font-weight: bold;
    display: block;
    margin-bottom: 15px;
}
.play--blog-detail-next a {
    transition: all .5s;
    color: var(--neon-blue-color);
    font-size: 14px;
}
.play--blog-detail-next a:hover {
    color: var(--main-color-hover);
}
/* ========== play--blog-detail-gallery ========== */
.play--blog-detail-gallery {
    padding: 22px 0 0;
}
.pbgpdg_title {
    font-weight: bold;
    text-align: center;
    margin-bottom: 22px;
    color: var(--neon-blue-color);
}
.pbgpdg_title span {
    display: inline-block;
    position: relative;
}
.pbgpdg_title span:after {
    content: '';
    display: block;
    position: absolute;
    bottom: -2px;
    left: -5px;
    right: -5px;
    height: 1px;
    background: var(--neon-blue-color);
}
/**/
.pbgpdg_list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}
.pbgpdg_list > div {
    height: 200px;
    width: 100%;
}
.pbgpdg_list > div {
    margin-bottom: 15px;
    overflow: hidden;
    border-radius: 12px;
}
.pbgpdg_list > div a {
    transition: all .5s;
    cursor: zoom-in;
}
.pbgpdg_list > div a:hover {
    opacity: .75;
}
.pbgpdg_list > div img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
/**/
.sec_content_player {
    height: 160px;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
}
.sec_content_player > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.sec_content_play_btn {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sec_content_play_btn svg {
    width: 42px;
    height: 42px;
    transition: all .5s;
}
.sec_content_player:hover .sec_content_play_btn svg {
    opacity: .65;
}
/* ========== sec15 ========== */
.sec15 {
    padding: 22px 0;
    background: var(--main-color);
    color: var(--white);
}
.sec15_title {
    font-size: 18px;
    font-style: normal;
    font-weight: 900;
    line-height: 140%; /* 30.8px */
    margin-bottom: 5px;
}
.sec15_txt {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%; /* 25.2px */
    max-width: 980px;
    margin-bottom: 10px;
}
/**/
.sec15_wrp {
    /*padding: 0 30px;*/
    margin-bottom: 10px;
}
.sec15_item {
    width: 196px;
    height: 150px;
    background: var(--white);
    border-radius: 10px;
    border: 3px solid #FFF;
}
.sec15_item_img {
    height: 118px;
    display: block;
    border-radius: 10px 10px 0 0;
    overflow: hidden;
}
.sec15_item_img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.sec15_item_bottom {
    padding: 7px 7px;
    color: var(--main-color);
    font-size: 10px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%; /* 20.632px */
    display: flex;
    align-items: center;
    justify-content: center;
    height: 25px;
}
/**/
.swiper_sec15 .swiper-wrapper {
    align-items: center;
}
.sec15_item.swiper-slide-active {
    width: 219px;
    height: 172px;
}
.sec15_item.swiper-slide-active .sec15_item_img {
    height: 132px;
}
.sec15_item.swiper-slide-active .sec15_item_bottom {
    font-size: 12px;
    height: 34px;
}
.swiper_sec15_prev, .swiper_sec15_next {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .5s;
}
.swiper_sec15_prev:not(.swiper-button-disabled),
.swiper_sec15_next:not(.swiper-button-disabled) {
    cursor: pointer;
}
.swiper_sec15_prev:not(.swiper-button-disabled):hover,
.swiper_sec15_next:not(.swiper-button-disabled):hover {
    opacity: .65;
}
.swiper_sec15_prev svg {
    transform: rotate(180deg);
    position: relative;
    top: 1px;
}
.swiper_sec15_next {
    width: 32px;
    height: 32px;
}
.swiper_sec15_next svg {
    position: relative;
    top: -1px;
}
/**/
.sec15_bottom {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
.sec15_btn {
    display: flex;
    width: 100%;
    height: 43px;
    justify-content: center;
    align-items: center;
    border-radius: 40px;
    border: 3px solid #FFF;
    opacity: 0.8;
    color: #FFF !important;
    font-family: var(--main-fonts);
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
    transition: all .5s;
    order: 2;
}
.sec15_btn:hover {
    opacity: 1;
    border-radius: 40px;
    box-shadow: -2px -2px 4px 0 rgba(255, 255, 255, 0.25);
}
.sec15_nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    order: 1;
    margin-bottom: 20px;
}
.swiper_sec15_pagin {
    /*font-size: 18px;*/
    font-style: normal;
    font-weight: 700;
    line-height: 140%; /* 25.2px */
    margin: 0 10px;
}
/**/
.sec15_item:not(.swiper-slide-active) {
    opacity: .5;
    transition: opacity .5s;
}
.sec15_item:not(.swiper-slide-active):hover {
    opacity: 1;
}
/* ========== sec_phoner ========== */
.sec_phoner {
    border-radius: 10px;
    background: #FFF;
    position: fixed;
    top: 40px;
    left: 12px;
    right: 12px;
    z-index: 999;
    width: 380px;
    max-width: calc(100% - 24px);
    margin: 0 auto;
    overflow: hidden;
}
.sec_phoner._hide {
    display: none !important;
}
.sec_phoner_form {
    display: block;
    width: 100%;
}
.sec_phoner_close {
    padding: 8px 16px;
    background: #F2F2F4;
    display: flex;
    width: 100%;
    justify-content: space-between;
}
.sec_phoner_close span {
    color: var(--main-color);
    font-family: var(--main-fonts);
    font-size: 16px;
    font-style: normal;
    font-weight: 900;
    line-height: 140%; /* 22.4px */
}
.sec_phoner_close a {
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .5s;
}
.sec_phoner_close a:hover {
    opacity: .4;
}
.sec_phoner_close a img {
    width: 22px;
    height: 22px;
}
/**/
.sec_phoner_body {
    padding: 10px 16px;
}
.sec_phoner_titler {
    color: var(--black);
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%; /* 25.2px */
    margin-bottom: 3px;
}
.sec_phoner_ph._b10 {
    margin-bottom: 10px;
}
.sec_phoner_ph a {
    display: inline-block;
    color: var(--main-color);
    font-family: var(--main-fonts);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
}
.sec_phoner_ph a:hover {
    color: var(--main-color-hover);
}
/* ========== sec_kit ========== */
.sec_kit {
    padding: 20px 0;
    background: var(--white);
    margin-bottom: 20px;
}
.sec_kit .sec_hp_title {
    padding-bottom: 22px;
}
/**/
.sec_kit_left {
    margin-bottom: 15px;
    border: 1px solid var(--main-color);
    border-radius: 15px;
    padding: 15px;
}
.sec_kit_left_img {
    height: 266px;
    margin-bottom: 10px;
}
.sec_kit_left_img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.sec_kit_status span {
    display: inline-block;
    font-style: normal;
    font-weight: 600;
    line-height: 140%;
    font-size: 14px;
}
.sec_kit_status.in_stock {
    color: var(--in-stock);
}
.sec_kit_status.not_available {
    color: var(--out-of-stock);
}
.sec_kit_status.under_the_order {
    color: var(--under-stock);
}
.sec_kit_name {
    margin-top: 10px;
    font-weight: bold;
    font-size: 14px;
}
.sec_kit_name a {
    color: var(--main-color);
}
.sec_kit_name a:hover {
    color: var(--neon-blue-color);
}
.sec_kit_price {
    margin-top: 10px;
    font-size: 14px;
    font-style: normal;
    font-weight: 800;
    line-height: 140%;
}
/**/
.sec_kit_right_item {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    border: 1px solid var(--main-color);
    border-radius: 15px;
    padding: 15px;
    align-items: center;
}
.sec_kit_right_item:not(:last-child) {
    margin-bottom: 15px;
}
.sec_kit_right_img {
    height: 100px;
    width: 100px;
}
.sec_kit_right_img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.sec_kit_right_item > div:nth-child(2) {
    width: calc(100% - 115px);
    margin-left: 15px;
}
/* ==========  ========== */
/* ==========  ========== */

/* макет 1440 pix perfect */











