

:root{
    --corporate: #2A4C5D;
    --corporate-hover: #295f7a;
    --accent:#BB4A4C;
    --accent-hover:#b95859;
    --beige1:#A69A91;
    --beige2:#CBC0B6;
    --beige3:#F2EBE3;
    --beige4:#F9F6F3;
    --grey1:#E5E0DC;
    --grey2:#F2EDE8;
    --grey-new:#F9F9F9;
    --gray-dark:#8D8D91;

}
body{
    font-family: 'Montserrat'!important;
    font-style: normal;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    --color-buttom: var(--grey2);
    --color-buttom-hover: var(--grey1);

}
body.tema_white  {
    --color-buttom: var(--grey-new);
    --color-buttom-hover: #e8e8e8;;
}

main{
    flex-grow:1;
}
.conteiner_cover{padding: 0 96px}
main .conteiner_cover{padding-bottom: 50px}
a, a:hover {
    color: black;
    text-decoration: none;
    cursor: pointer;
}
a:focus {
    outline:none;
    text-decoration: none;
}
::-webkit-input-placeholder {
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: var(--beige1);
}
:-moz-placeholder {
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: var(--beige1);
}

input:hover, input:focus, input:focus-visible{outline: none !important;}
.btn:focus, .btn:active:focus, .btn.active:focus, .btn.focus, .btn:active.focus, .btn.active.focus {
   outline: none !important;
    outline-offset: 0;
}
button:focus-visible, li:focus-visible {outline: none}
h1{
    font-family: 'Podkova';
    font-style: normal;
    font-weight: 400;
    font-size: 60px;
    line-height: 60px;
    color: var(--corporate);
    margin-bottom: 0;
}
h2{
    font-family: 'Podkova';
    font-style: normal;
    font-weight: 400;
    font-size: 48px;
    line-height: 48px;
    color: var(--corporate);
}
h3{
    font-family: 'Podkova';
    font-style: normal;
    font-weight: 400;
    font-size: 32px;
    line-height: 32px;
    color: var(--corporate);
}
p{
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
}
.mb-24{margin-bottom: 24px}
.mb-20{margin-bottom: 20px}
.mb-40{margin-bottom: 40px}
.mt-40{margin-top: 40px}
.not-highlight{
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
    -khtml-user-select: none; /* Konqueror HTML */
    -moz-user-select: none; /* Old versions of Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none; /
}
.black_cover{
    position: fixed;
    z-index: 10;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.22);

}
/*ICON*/
i.icon.vk{
    content: url("../icon/vk.svg");
}
i.icon.ok{
    content: url("../icon/ok.svg");
}
i.icon.vk-subscribe{
    content: url("../icon/vk-subscribe.svg");
}
i.icon.ok-subscribe{
    content: url("../icon/ok-subscribe.svg");
}
i.icon.arrow_small{
    content: url("../icon/small_arrows_firm.svg");
}
i.icon.arrow_small_black{
    content: url("../icon/small_arrows_black.svg");
}
i.icon.white_arrow{
    content: url("../icon/white_arrow.svg");
    margin-left: 20px;
}
i.icon.filter{
    content: url("../icon/filter.svg");
    margin-right: 10px;
}
i.icon.triangle{
    content: url("../icon/triangle.svg");
}
i.icon.close{
    content: url("../icon/close.svg");
}

/*HEADER MENNU*/
body, .header, footer, .modil-menu{background: var(--beige4)}
body.tema_white, body.tema_white .header, body.tema_white footer, body.tema_white .modil-menu{background: white}
.header_menu{
    display: flex;
    list-style: none;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0px;
}
.header_menu li{
    border-bottom: 2px solid var(--grey2);
    width: 100%;
    text-align: center;
    position: relative;

}
.header_menu li:not(:last-child){
    border-right: 2px solid var(--grey2);
}
.header_menu li a{
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    display: block;
    padding: 18px 0px;
}
.header_menu li a span{
    position: relative;
}
.header_menu li a span:after{
    content: "";
    display: block;
    visibility: hidden;
    position: absolute;
    height: 4px;
    background: var(--accent);
    border-radius: 4px;
    width: 100%;
    left: 0px;
    bottom: -24px;
}
.header_menu li a.select span:after{
    visibility: visible;
}
.header_menu li a:hover span:after{
    visibility: visible;
}
.header_menu-child{
    visibility: hidden;
    opacity: 0;
    position: absolute;
    list-style: none;
    padding: 20px 30px;
    background: white;
    box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    z-index: 10;
    top: 110%;
    left: calc(50% - var(--width_menu-child)/2);
    --width_menu-child:233px;
    width: var(--width_menu-child);
    transition: all .25s ease .25s ;
}
.header_menu li:hover .header_menu-child{
    visibility: visible;
    opacity: 1;
}
.header_menu-child li{
    border-right: none !important;
}
.header_menu-child li:last-child{border-bottom: none}
.img_logo{height: 56px}
.top_header{
    padding: 28px ;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}
.top_header .flex{
   gap: 20px;
    justify-content: center;
    align-items: center;
}
.header_tel{
    font-weight: 600;
    font-size: 24px;
    line-height: 24px;
    color: var(--corporate);
    white-space:nowrap;

}
.logo_text{
    font-family: 'Podkova';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 18px;
    color: var(--beige1);
    white-space:nowrap;
}
.btn-corparate{
    color: white;
    background: var(--corporate);
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    padding: 16px 24px;
    border-radius: 10px;
    transition: background-color 250ms;
    border: none;
}
.btn-corparate.actent{background: var(--accent)}
.btn-corparate.grey{background: var(--grey2); color: var(--corporate)}
.btn-corparate:hover{
    color: white;
    background: var(--corporate-hover);
}
.btn-corparate.actent:hover{
    background:var(--accent-hover) ;
}
.btn-corparate span.modil{display: none}

/*SEARCH*/
.search-cover{flex-grow: 1;}
.search{
    position: relative;
    display: flex;
    gap: 3px;
    justify-content: space-between;
}
.search input{
    border-radius: 10px;
    background: var( --color-buttom);
    padding: 16px 30px 16px 76px;
    font-size: 14px;
    border: none;
    width: 100%;
}
.search:before{
    content: url("../icon/search.svg");
    position: absolute;
    top: 35%;
    left: 30px;
}
.btn-corparate_search{
    color: var(--corporate);
    background:var( --color-buttom);
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    padding: 16px 35px;
    border-radius: 10px;
    border: none;
}
.btn-corparate_search i.icon.search{display: none}
.btn-corparate_search.open-search{display: none}
.search-page{margin-top: 50px}
.search-cover__close{display: none;}
/*BREADCRUMB*/
.breadcrumb{
    background: none;
    margin-top: 24px;
    margin-bottom: 0px;
    padding-left: 0px;
}
.breadcrumb-item {
    display: flex;
    gap: 20px;
    align-items: center;
}
.breadcrumb-item:before{display: none}
.breadcrumb-item:after{
    content: " ";
    display: block;
    width: 2px;
    height: 16px;
    background:var(--grey1);
    transform: matrix(0.97, 0.26, 0.26, -0.97, 0, 0);
    margin-right: 20px;
}
.breadcrumb-title{
    font-weight: 600;
    font-size: 12px;
    line-height: 24px;
    color: var(--beige1);
    padding: 6px 0px;
    border-bottom: 2px solid var(--grey1);

}

/*CATALOG*/
.catalog-title{
    margin: 24px 0;
}
.bx-catalog-element{
    margin-top: 24px;
}
.bx-catalog-element .breadcrumb{
    margin-top: 0px;
    margin-bottom: 24px;
}
/*CARD CATALOG*/
.product-item-small-card{margin-bottom: 40px}
.product-item-container{height: 100%}
.product-item{
    background: transparent !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 !important;
    position: relative;
    border: none;
    justify-content: space-between;
    height: 100%;
}
.product-item_img{
    position: relative;
    height: 320px;
    display: flex;
    text-align: center;
    margin-top: 20px;
    padding: 10px;
    align-items: flex-end;
    cursor: pointer;
}

.product-item_img img{
   width: 100%;
   height: 300px;
    object-fit: contain;
    z-index: 4;
}
.product-item_img:before{
    content: " ";
    display: block;
    position: absolute;
    width: 150px;
    height: 40px;
    background: #000000;
    opacity: 0.7;
    filter: blur(37.5px);
    bottom: 0px;
    left: 50%;
    border-radius: 50%;
    transform: translateX(-50%);
}
.product-item_img:hover:after{
    position: absolute;
    content: url("../icon/zoom-arrow.svg");
    left: calc(50% - 60px/2);
    top: calc(50% - 60px/2);
    padding: 19px;
    border-radius: 50%;
    background: white;
    cursor: pointer;
    z-index: 5;
}
.product-item_discript{
    padding: 70px 24px 24px;
    background: var(--beige3);
    border: 1px solid var(--beige3);
    border-radius: 10px;
    width: 100%;
    margin-top: -70px;
    display: block;
    height: 100%;
}
.product-item_name{
    font-family: 'Podkova';
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 16px;
    position: relative;
    z-index: 3;
    display: flex;
    gap: 16px;
}
.product-item_name:after{
    visibility: hidden;
    content: url("../icon/arrows.svg");
}
.product-item_price{
    font-weight: 600;
    font-size: 32px;
    line-height: 24px;
    color: var(--corporate);
    margin-bottom: 16px;
    white-space: nowrap;
    margin-right: 12px;
}
.product-item_old-price{
    font-weight: 600;
    font-size: 24px;
    line-height: 24px;
    color: var(--beige1);
    position: relative;
    white-space: nowrap;
    margin-bottom: 16px;
}
.product-item_old-price:before {
    content: " ";
    display: block;
    background:  var(--accent);
    width: 100%;
    height: 2px;
    transform: rotate(345deg);
    position: absolute;
    top: 40%;
}
.product-item_size{
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: var(--beige1);
}
.product-item:hover {
    background: var(--beige3) !important;
    border-radius: 10px;
}
.product-item_link:hover .product-item_name {
    color: var(--accent);
}
.product-item_link:hover .product-item_name:after{visibility:visible;}
.product-item_option_cover{
    position: absolute;
    top:20px;
    left: 20px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    z-index: 5;
}
.product-item_option{
    font-weight: 600;
    font-size: 12px;
    line-height: 24px;
    color: white;
    background: #59B364;
    margin-bottom: 2px;
    padding: 0 8px;
}
.product-item_option.option_NEW{ background: #362C85;}
.product-item_option.option_SALE{ background: var(--accent);}
.product-item_option.option_LIDER{ background: #FF912C;}
.product-item_artist{
    font-weight: 600;
    font-size: 12px;
    line-height: 24px;
    background: white;
    padding: 0 8px;
    position: absolute;
    left: 24px;
    bottom: 10px;
    display: none;
    z-index: 5;
}
.product-item:hover .product-item_artist{display: block}
.product-item_price-cover{
    display: flex;
    gap:24px;
    align-items: center;
    flex-wrap: wrap;
}
.product-item_price-cover .product-item_price, .product-item_price-cover .product-item_old-price{margin-bottom: 0}
.catalog-element_text{
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
}
.catalog-element_small-text{
    font-weight: 600;
    font-size: 12px;
    line-height: 24px;
    color: var(--beige1);
}
.catalog-element_buttoms{
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}
.catalog-element_buttom{
    background: var(--beige3);
    padding: 16px 24px;
    border-radius: 10px;
    display: flex;
    gap: 20px;
    white-space:nowrap;
}
.catalog-element_tex-cover{
    display: flex;
    gap: 12px;
}
.catalog-element_dots{
    flex: 1 0;
    border-bottom: 2px dotted var(--beige2);
    height:24px;
    margin: 0 10px ;
}
.catalog-element_text-table{

    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}
.catalog-element_text.firm{
    color: var(--corporate);
    font-weight: 600;
}
.catalog-element_text.accent{
    color: white;
    background: var(--accent);
    padding: 12px 24px;
    font-weight: 600;
    border-radius: 10px;
}
.catalog-element_text.underline{
  border-bottom: 2px solid var(--grey1);
}
.slider-for{width: 100%}
.slider-for-img{position: relative}
.slider-nav-img{
    padding: 5px;
    border-radius: 10px;
    margin-right: 5px;
    height: 83px !important;
    border: 1px solid transparent;
}
.slider-for img{
    width: 100%;
    object-fit: contain;
    height: 700px;
}
.slider-nav-img.slick-current{border:1px solid var(--accent) }
.slider-nav img{
    width: 100%;
    border-radius: 6px;
    cursor: pointer;
    height: 100%;
    object-fit: contain;
}


.logo_catalog{
    width: 100%;
    padding-right: 5px;
    margin-top: 10px;
}
.bx-catalog-element .product-item_option{
    font-size: 18px;
    line-height: 36px;
    margin-bottom: 10px;
}
.popelular_news_header_cover_button{
    margin-top: 60px;
    text-align: center;
    height: 56px;
}
.popelular_news_header{
    display: flex;
    gap: 24px;
    justify-content: center;
    margin-bottom: 40px;
}
.popelular_news_header .header{
    font-family: 'Podkova';
    font-style: normal;
    font-weight: 400;
    font-size: 48px;
    line-height: 48px;
    color: var(--beige1);
    border-bottom: 2px solid var(--grey1);
}
.popelular_news_header .header.active{
    border-bottom: none;
    color: var(--corporate);
}
.popelular_news_footer {
    padding: 40px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    border-top: 2px solid var(--grey1);
    border-bottom: 2px solid var(--grey1);
    margin: 40px 25% 0;
}
/*SELECTION SLLIDER*/
.catalog-slider_header{
    display: flex;
    align-items: center;
    gap: 40px;
    margin: 40px 0;
}
.catalog-slider_header hr{
    width: 100%;
    flex: 1;
}
.product-item-small-card.slick-slide{
    margin:0 20px 20px;

}
.catalog-section.section_slider  .slick-track{margin-left: 0; display: flex}
.catalog-section.section_slider  .slick-slide{height: auto}
.artist_detail-catalog .catalog-section.section_slider  .slick-track{margin-left: auto}
.artist-news-detail_portfolio{
    display: flex;
    gap: 40px;
    margin: 50px 0 40px;
    align-items: center;
    justify-content: center;
}
.artist-news-detail_portfolio hr{
    width: 100%;
    flex: 1;
}
.slick-dots{
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    justify-content: center;
}

.slick-dots li{cursor: pointer}
.slick-dots li button{
    width: 8px;
    height: 8px;
    border: none;
    margin: 0px 8px;
    background: var(--grey1);
    color: transparent;
    border-radius: 50%;
    padding: 0;
}
.slick-dots li.slick-active button{background: var(--accent)}
.slick-arrow{
    content: url("../icon/sort-arrow.svg");
    position: absolute;
    border-radius: 78px;
    background: var(--grey1);
    padding: 8px;
    text-align: center;
    z-index: 10;
    top: 30%;
}
.slick-arrow.slick-next{
    transform: rotate(270deg);
    right: 10px;
}
.slick-arrow.slick-prev{
    transform: rotate(90deg);
    left: 10px;
}
.slick-arrow.slick-disabled{display: none !important;}
/*LASYLOAD*/
.lasyload{
    width: 100%;
    flex: 1;
    display: flex;
    gap: 12px;
    justify-content: center;
}
.lasyload:before{
    content: url("../icon/plus_white.svg");
}
.separator-page{
    text-align: center;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: var(--beige1);
    display: flex;
   align-items: center;
    margin-bottom: 20px;
}
.separator-page:after, .separator-page:before{
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    margin: 0px 5%;
    background: var(--beige3);
}

.sort-cover{
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: var(--beige1);
    min-width: 100px;
}
.sort-cover select{
    color: var(--corporate);
    background: transparent;
    border: none;
    margin-left: 10px;
    appearance: none;

}
.ui-button.ui-selectmenu-button, .ui-button.ui-selectmenu-button:link, .ui-selectmenu-button.ui-button:visited, .ui-selectmenu-button.ui-button:hover, .ui-selectmenu-button.ui-button:active
{
    border: none;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: var(--corporate);
    background: transparent;
    width: auto;
}
.ui-button{margin-right: 0}
.ui-selectmenu-menu{
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: var(--corporate);
}
.ui-selectmenu-text{
    border-bottom: 2px solid var(--grey1);
    margin-right: 30px;
}
.ui-button .ui-icon , .ui-button:hover .ui-icon, .ui-button:focus .ui-icon{
    background-image: url(../icon/sort-arrow.svg);
    margin-top: 3px;
    transition: transform .25s;
}
.ui-selectmenu-button.ui-selectmenu-button-open .ui-selectmenu-icon{
    transform: rotate(180deg);
}
.ui-icon-triangle-1-s {
    background-position: initial;
}
.ui-widget.ui-widget-content{
    border: none;
    background: var(--grey-new);
    box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
}
.ui-menu .ui-menu-item-wrapper{
    text-align: center;
    padding:16px 0;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: var(--corporate);
    margin: 0 10px;
}
.ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active, a.ui-button:active, .ui-button:active, .ui-button.ui-state-active:hover {
   border: none;
    background: var(--beige3);
    margin: 0;
}
.ui-menu li:not(:last-child) .ui-menu-item-wrapper{
    border-bottom: 2px solid var(--beige3);
}
    /*SMART FILTER*/
.smartfilter_item-name{
    font-family: 'Podkova';
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 20px;
    color: var(--corporate) !important;
    border-bottom: none !important;
    display: flex;
    gap: 10px;
    align-items: center;
}
.smartfilter-sidebar-block{margin-right:20px}
.bx-filter .bx-filter-section{padding-top: 0; padding-left: 0}
.bx-filter .bx-filter-parameters-box-title{padding-bottom: 20px}
/* W3C standard
    Firefox */
.smartfilter_checkbox-cover{
    scrollbar-width: thin;
    scrollbar-color: var(--beige2) var(--grey2);
}

/* ��� Chrome/Edge/Safari */
.smartfilter_checkbox-cover::-webkit-scrollbar {
    width: 4px;
}
.smartfilter_checkbox-cover::-webkit-scrollbar-track {
    background: var(--grey2);
}
.smartfilter_checkbox-cover::-webkit-scrollbar-thumb {
    background-color: var(--beige2);
    border-radius: 6px;
}

/* W3C standard
   сейчас только для Firefox */
.bx-filter {
    scrollbar-width: thin;
    scrollbar-color: var(--beige2) var(--grey2);
}

/* для Chrome/Edge/Safari */
.bx-filter::-webkit-scrollbar {
    width: 4px;
}
.bx-filter ::-webkit-scrollbar-track {
    background: var(--grey2);
}
.bx-filter::-webkit-scrollbar-thumb {
    background-color: var(--beige2);
    border-radius: 6px;
}

.smartfilter_checkbox-cover{
    max-height: 145px;
    overflow-y: auto;
    margin-right: 20px;
}
.bx-filter .checkbox{margin-bottom: 15px; }
.filter-input-checkbox input{
    visibility: hidden;
    z-index: 0;
}

.filter-param-label{
    padding-left: 0px !important;
}


.filter-param-text{
    font-weight: 400;
    font-size: 14px;
    line-height: 120%;
    display: flex !important;
    gap: 10px;
}
.filter-param-text:before{
    content: url("");
    width: 20px;
    min-width: 20px;
    height: 20px;
    border: 2px solid var(--beige2);
    border-radius: 4px;
}

.filter-input-checkbox input:checked + .filter-param-text:before{
    background:var(--accent);
    content: url("../icon/check.svg");
    border-color: var(--accent);
    text-align: center;
}
.filter-param-label.disabled .filter-param-text:before{
    border-color:var(--beige3) !important;
    content: url("") !important;
    background: transparent !important;
}
 i.icon.icon-down{
    content: url("../icon/minus.svg");
     padding: 9px 4px;
     background: var(--grey1);
     border-radius: 4px;
}
i.icon.icon-up{
    content: url("../icon/plus.svg");
    padding: 4px 4px;
    background: var(--grey1);
    border-radius: 4px;

}
.smartfilter_number-with-slider{

    width: 100%;
    margin:0 20px;
}
.checked-count{
    font-weight: 400;
    font-size: 14px;
    line-height: 120%;
    color: var(--accent);
    cursor: pointer;
    gap:10px;
    align-items: center;
}
.checked-count-close{
    font-weight: 400;
    font-size: 14px;
    line-height: 120%;
    color: var(--accent);
    margin-left: 20px;
    cursor: pointer;
    display: flex;
    gap:10px;
    margin-top: 20px;
}
.checked-count-close:before {
    content: url(../icon/accent-dagger.svg);
}
.checked-count:before {
    content: url(../icon/accent-dagger.svg);
    transform: rotate(45deg);
}
.checked-count:after{
    content: "Ещё " attr(data-count);
}
.smartfilter_checkbox-cover.show .checked-count:before{
    content: url(../icon/minus_actent.svg);
    transform: rotate(0deg);
}
.smartfilter_checkbox-cover.show .checked-count:after{
    content: "Скрыть";
}
.smartfilter_number-with-slider-container{
    display: flex;
    gap: 24px;
    padding: 20px;
    justify-content: space-between;
    border: 2px solid var(--grey1);
    border-radius: 10px;
    align-items: center;
}
.bx-filter .bx-ui-slider-pricebar-vd{background: var(--corporate); }

.del_filter-cover{
    margin-top: 20px;
    width: 100%;
    display: flex;
    align-items: center;
    text-align: left;
    font-weight: 400;
    font-size: 14px;
    line-height: 120%;
    color: var(--accent);
    gap: 10px;
    padding: 0;
}
.del_filter-cover:hover{color: var(--accent)}
.del_filter-cover:focus{box-shadow: none; }
.del_filter-cover:before{
    content: url("../icon/accent-dagger.svg");

}
#del_filter:hover{text-decoration: none}
.filter-restangle{
    width: 10px;
    height: 1px;
    background: black;
}
.smartfilter_number-with-slider-container input::-webkit-input-placeholder {
    font-weight: 400;
    font-size: 14px;
    line-height: 120%;
    color: black;
}
.smartfilter_number-with-slider-container input:-moz-placeholder {
    font-weight: 400;
    font-size: 14px;
    line-height: 120%;
    color: black;
}

/*KHUDOZHNIKI*/
.khudozniki_title, .khudozniki_title p{
    font-weight: 400;
    font-size: 20px;
    line-height: 26px;
}
.khudozniki_banner{
    position: relative;
    margin-bottom: 50px;
}
.khudozniki_banner:after{
    background: linear-gradient(180deg, rgba(30, 30, 30, 0) 53.12%, #1E1E1E 100%);
    opacity: 0.8;
    width: 100%;
    height: 100%;
    content: "";
    position: absolute;
    display: block;
    top: 0;
}
.khudozniki_banner h1{
    position: absolute;
    bottom: 48px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    z-index: 3;
}
/*FOOTER*/
.footer{
    padding: 100px 0;
}
.footer_cover{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap:40px;
    margin-bottom: 50px;
}

.footer_cover hr{
    border-color: var(--grey1);
    width: 100%;
    border-width: 2px;
}
.footer_discript{
    padding: 0px 48px;
}
.footer_text{
    display: flex;
    flex-direction: column;
}
.footer_text p{
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: var(--corporate);
    margin-bottom: 8px;
}
.footer_text a.contact{
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: var(--corporate);
    margin-top: 8px;
    text-decoration: underline;
}
.work-itj {
    width: 20%;
    text-align: end;
}
.work-itj .text{
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: var(--beige2);
    margin-right: 10px;
}
.gost-img{
    height: 80px;
    margin-right: 30px
}

/*MOBIL MENU*/
.modil-menu{
    display: none;
    position: fixed;
    bottom: 0px;
    list-style: none;
    justify-content: space-around;
    width: 100%;
    box-shadow: 0px -10px 40px -11px rgba(0, 0, 0, 0.1);
    border-bottom: 4px solid var(--beige2);
    z-index: 10;
}
.modil-menu li{width: 100%}
.modil-menu a{
    font-weight: 600;
    font-size: 10px;
    line-height: 12px;
    width: 100%;
    display: block;
    text-align: center;
    padding: 10px 0;
}

.modil-menu a span{
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}
.modil-menu a.select span:after{
    content: "";
    display: block;
    border-radius: 4px;
    transform: matrix(-1, 0, 0, 1, 0, 0);
    height: 4px;
    width: 50px;
    background: var(--accent);
    position: absolute;
    bottom: -14px;
}

.modil-menu a.select{
    color: var(--accent);
}
.modil-menu_modal{
    display: none;
    position: fixed;
    bottom:58px;
    background: var(--grey-new);
    width: 100%;
    box-shadow: 0px -10px 40px -11px rgba(0, 0, 0, 0.1);
    padding: 16px 24px 28px;
    z-index: 9;
}
.modil-menu_modal.open{display: block}
.modil-menu_modal__header{
    font-size: 32px;
    line-height: 32px;
    color: #A69A91;
}
.modil-menu_modal__list {margin-top: 5px}
.modil-menu_modal__list li{text-align: center; list-style: none; padding-top: 15px}
.modil-menu_modal__list li:not(:last-child){
    padding-bottom: 15px;
    border-bottom: 2px solid var(--beige3);
}
.modil-menu_modal__list li a{
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
}
/*PRELOOAD ELEMENT*/
.preloadElement .fancybox__thumbs{display: none}
.preloadElement .fancybox__content {background: var(--beige4);max-width: 1200px;     min-width: 1000px;}
.preloadElement .catalog-element_dots {
    border-bottom: 3px dotted var(--beige2);
    margin: 0 10px 5px;
}
.preloadElement .slider-for-img{
    display: flex;
    position: relative;
    justify-content: center;
    width: 100%;
}
.preloadElement .product-item_option_cover{top:0}
/*.preloadElement .catalog-element_text-table { align-items: flex-end;}*/
.follow-flex{
    display: flex;
    gap: 20px;
}
.fancybox__content :focus:not(.carousel__button.is-close){outline: none}
.preloadElement .catalog-element_buttom{justify-content: center}
.preloadElement .product-item_old-price{margin-left: 0}
.preloadElement  .bx-catalog-element { margin-top: 0;}
.preloadElement .fancybox__nav .carousel__button{
    padding: 8px;
    background: var(--grey1);
    border-radius: 78px;
}
.preloadElement .fancybox__nav .carousel__button.is-next{right: 5%}
.preloadElement .fancybox__nav .carousel__button.is-prev{left: 5%}
.carousel__button.is-close{
    top:24px !important;
    right: 24px !important;
}
.preloadElement  .fancy_img{
    object-fit: contain;
    height: 550px;
    width: 600px;
}
/*APPLICATION FORM*/
.application-form_cover{
    padding: 0;
    max-width: 100%;
}
.application-form_cover .cover_img{padding-left: 0;padding-right: 0; height: 100%}
.application-form_cover .cover_img img{object-fit: cover; max-height: 1000px}
.application-form_cover .form_cover{
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 20px;
    align-items: center;
    padding: 40px 48px;
}

.application-form_cover .form_cover form{
    gap: 8px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}
.application-form_cover .form_cover input, .application-form_cover .form_cover textarea{
    border-radius: 10px;
    border: none;
    background: var(--grey2);
    padding: 16px 30px 10px;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
}
.application-form_cover .form_cover span{
    font-weight: 500;
    font-size: 14px;
    line-height: 120%;
    color: var(--gray-dark);
}
.application-form_cover .form_cover input{height: 56px; width: 100%}
.application-form_cover .form_cover .input-cover{
    position: relative;
    width: 49%;
}
.application-form_cover .form_cover .input-cover label{
    position: absolute;
    left: 30px;
    top: -10px;
    font-size: 14px;
    display: none;
}
.application-form_cover .form_cover .input-cover input:not(:placeholder-shown)+label{
    display: block;
}
.application-form_cover .form_cover textarea{width: 100%}
.application-form_cover .form_cover button{margin-top: 20px}
.application-form_cover .form_cover img.logo{max-width: 400px;}

.popup-message.fancybox__content{
    background: var(--beige4);
    backdrop-filter: blur(50px);
    padding: 40px;
    border-radius: 10px;
    width: 756px;
}
.popup-message img{
    position: absolute;
    left: 50%;
    top:-75px;
    border: 4px solid white;
    filter: drop-shadow(0px 10px 15px rgba(0, 0, 0, 0.15));
    border-radius: 86.496px;
    transform: translate(-50%);
}
.popup-message.fancybox__content button{width: 200px}
.popup-message_cover{
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 80px 0 50px;
    align-items: center;
}
.popup-message_header{
    font-family: 'Podkova';
    font-style: normal;
    font-weight: 400;
    font-size: 32px;
    line-height: 32px;
    color: var(--corporate);
}
.popup-message_message{
    font-weight: 600;
    text-align: center;
}
.popup-message .footer_btn{
    display: flex;
    gap: 20px;
    width: 100%;
    justify-content: center;
}
#TEMA-button, #TEMA_FEEDBACK-button{
    width: 49%;
    background: var(--grey2);
    height: 56px;
    padding: 16px 30px 10px;
    border-radius: 10px;
    border: 2px solid transparent;
}
#TEMA-button .ui-selectmenu-text,  #TEMA_FEEDBACK-button .ui-selectmenu-text{
    border: none;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: var(--corporate);
}
#TEMA-button.ui-selectmenu-button-open, #TEMA_FEEDBACK-button.ui-selectmenu-button-open{
    background: var(--grey2);
    border-color: var(--beige2);
}
#TEMA-button.ui-selectmenu-button-open .ui-selectmenu-icon.ui-icon, #TEMA_FEEDBACK-button.ui-selectmenu-button-open .ui-selectmenu-icon.ui-icon{
    transform: rotate(180deg);
}
.ui-front{z-index: 10000}

/*KONTACTS*/
.kontacts{
    margin: 20px 0px 70px -20px;
}
.p-text{
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
}


.kontact-el_time{
   display: flex;
    gap: 20px;
    white-space: nowrap;
    margin-left: 10px;
}
.kontact-el_time.disable{opacity: 0.3;}
.kontact-carts{
    margin-top: -70px;
}
.kontact-details{
    margin-top: 80px;
    padding: 40px 96px;
    background: var(--grey2);
    border-radius: 10px;
}
.kontact-details_text{
    margin-top: 20px;
    margin-left: -20px ;

}
.kontact-el{padding: 20px 0;border-bottom: 2px solid var(--grey1); }
.kontact-el:first-child{padding-top: 0}
.kontact-details_text .kontact-el{
    display: flex;
    gap: 40px;
    padding: 20px 0;
}
.kontact-details_text .kontact-el div.title{
    color:var(--beige1);
    min-width: 200px;
    width: 200px;
}
.feedback-form_cover .cover_img{
    position:relative;
    height: 600px;
}
.feedback-form_cover .cover_img img{
    height: auto;
    max-height:initial;
}
.feedback_people_img{
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    height: auto;
    max-height:initial;
    object-fit: contain;
}
.feedback_people_img.kontacty{bottom: 0px}
/*SUBSCRIBE*/
.subscribe{
    width: 260px;
    padding: 24px;
    margin-left: auto;
    background: var(--grey-new);
    border-radius: 10px;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
}
.href-subscribe{
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}
.href-subscribe:first-child{margin-top: 16px}

/*NEWS*/
i.icon.curcle{
    width: 16px;
    height: 16px;
    background: #000000;
    border-radius: 120px;
}
.news-list__count-page{
    padding-bottom: 50px;
    margin-bottom: 50px;
    text-align: center;
    border-bottom: 1px solid var(--grey2);
    font-weight: 600;
    color: var(--grey2);
}
.news-list{
    padding-bottom: 50px;
    margin-bottom: 50px;
    border-bottom: 1px solid var(--grey2);
}
.news-list img{
    width: 100%;
    margin-bottom: 20px;
    height: 430px;
    object-fit: cover;
}
.news-list__title{margin-bottom: 16px; display: block}
.news-list__discript{
    margin-bottom: 20px;
    font-weight: 400;
    font-size: 20px;
    line-height: 26px;
}
.news-list__href{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.news-list__href-share{
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: var(--grey-new);
    border-radius: 10px;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
}
.news-list__other{
    display: flex;
    gap: 16px;
    align-items: center;
    margin-bottom: 16px;
}
.news-list__date-time{
    display: flex;
    gap: 10px;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: var(--beige1);
}
.news-list__date-time div{
    display: flex;
    gap: 10px;
    align-items: center;
}
.news-list__date-time div:before{
    content: " ";
    display: block;
    width: 3px;
    height: 3px;
    background: var(--beige1);
    border-radius: 50%;
}
.news-list__section{
    display: flex;
    align-items: center;
    padding: 8px 16px;
    gap: 10px;
    background: var(--grey-new);
    border-radius: 10px;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
}
.news-list__adjacent{
    margin-top: 16px;
}
.news-list__adjacent .news-list__title{
    font-family: 'Podkova';
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 24px;
}
.news-list__adjacent .news-list__date-time div:before{display: none}
.news-list__adjacent .news-list__section{padding: 0; background: transparent}
.news-list__adjacent .news-list__discript{
    font-size: 16px;
    line-height: 24px;
    -webkit-line-clamp: 5;
    margin: 0;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.button-beg{
    padding: 8px 16px;
    font-weight: 600;
    font-size: 12px;
    line-height: 24px;
    background: var(--beige3);
    border-radius: 10px;
}
.news-list__pagination .bx-pagination_number{flex-direction: column}
.slick-initialized .news-list__adjacent.slick-slide{margin-right: 45px; margin-bottom: 40px}
.news-list__adjacent img{width: 100%; margin-top: 20px}


/*PORTFOLIO*/
.portfolio-list__cover{
    margin-top: 40px;
    display: grid;
    gap:2px;
    grid-template-columns: repeat(4, 1fr);
}
.portfolio-list__img{width: 100%}
.portfolio-list__cover.center{grid-template-columns: repeat(auto-fit, 500px); justify-content: center;}

/*TAGIL PODNOS*/
.tagil-podnos, .tagil-podnos p{
    font-size: 20px;
    line-height: 26px;
    font-weight: 400;
}
.tagil-podnos, .tagil-podnos p,.tagil-podnos h3{margin-bottom: 20px}
.tagil-podnos h2, .tagil-podnos h1, .tagil-podnos div{ margin-bottom: 40px;}
.tagil-podnos div div{margin-bottom: 0}
.tagil-podnos .text-column{display: flex;gap: 40px; align-items: flex-start;}
.tagil-podnos img{width: 100%; object-fit: contain;max-height: 543px }
.tagil-podnos .passage{padding: 20px 0px 20px 40px;border-left: 4px solid var(--accent);}

.tagil-podnos .passage.little{padding: 0px 0px 0px 40px;}
.tagil-podnos iframe{width: 100%; height: 620px; object-fit: contain; }
.tagil-podnos div iframe{ height: 380px; }
.tagil-podnos .gallery{display: grid; gap: 12px; grid-template-columns: repeat(3, 1fr)}
.tagil-podnos .grey-div{
    margin-bottom: 40px;
    padding: 40px;
    border-radius: 10px;
    background: var(--grey-new);
}
.tagil-podnos .column-equal{width: 50%}
.tagil-podnos .img_cover{object-fit: cover}
.tagil-podnos  .img_curcle{
    width: 400px;
    height: 400px;
    border-radius: 316px;
}
.tagil-podnos img~p, .tagil-podnos p~img{margin-top: 40px}
.diplom-list__item:hover .diplom-list__gallery:before{
    background-image: url("../icon/zoom-arrow.svg");
    background-repeat: no-repeat;
    background-size: 24px 24px;
    background-position: center;
}
 .tagil-podnos div.row {
    margin-right: -20px;
    margin-left: -20px;
     row-gap: 20px;
}

.passage_video{position: relative}

/*HOME*/
.min_banner-home{
    display: flex;
    background: var(--beige1);
    margin-bottom: 50px;
}
.min_banner-home_text h2, .min_banner-home_text h3{color: #FFFFFF  }
.min_banner-home_text{
    padding: 50px 96px;
    font-size: 20px;
    line-height: 26px;
    color: #FFFFFF ;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
    font-weight: 400 !important;
}
.min_banner-home_text p{font-weight: 400 !important;}
.min_banner-home_video{
    position: relative;
    width: 950px;
    display: block;
    flex-basis: 100%;
    min-width: 900px;
    background: url("../imag/video_screensaver_cover.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}


.min_banner-home_video .img-people{
    position: absolute;
    bottom: 0px;
    left: 50%;
    height: 110%;
    width: 100%;
    object-fit: contain;
    transform: translateX(-50%);
}
 .hover_btn{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 18px 30px;
    gap: 16px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #FFFFFF;
    border-radius: 212.333px;
    z-index: 3;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
}

@media (max-width: 1800px) {
    .slider-nav-img{height: 63px !important;}
}
@media (max-width: 1670px) {
    .min_banner-home_video .img-people{ height: auto}
}
@media (max-width: 1599px) {
    .top_header { padding: 28px 0px;}
    .footer .header_tel{font-size: 20px}
    .popelular_news_footer{margin: 20px 0 0;     padding: 40px 10%;}
    .slick-arrow{ top: 25%;}
    .bx-catalog-element-width{padding-right: 0}
    .slider-nav-img{height: 60px !important;}
    .slider-for { margin-bottom: 24px;}
    .preloadElement .fancybox__nav .carousel__button.is-next{right: 3%}
    .preloadElement .fancybox__nav .carousel__button.is-prev{left: 3%}
    .conteiner_cover{padding: 0 80px}
    .kontact-details{padding: 40px 80px}
    .feedback_people_img{
        left: inherit;
        right: -5%;
        transform: translateX(0);
        /*width: 100%;*/
    }
    .subscribe{width: 100%; }
    .href-subscribe {
        display: inline-flex;
        margin-right: 10px;
        margin-top: 16px;
    }
    .min_banner-home_video{ width: 790px;    min-width: 790px; }
    .min_banner-home_text { padding: 50px 80px;}
    .min_banner-home_video .img-people{ left: -60px; transform: translateX(0);}
    .feedback_people_img.kontacty{right: 0}
    .portfolio-list__cover.center {
        grid-template-columns: repeat(auto-fit, 400px);
    }
    .slider-for img{ height: 500px;}
}
@media (max-width: 1380px) {
    .search:before{display: none}
    .search input { padding:12px 10px 12px 20px;}
    .btn-corparate_search{padding: 16px}
    .btn-corparate_search span{display: none}
    .btn-corparate_search i.icon.search{content: url("../icon/search-firm.svg"); display: block}
    .btn-corparate {padding: 12px 16px;}
    .header_tel { font-size: 20px;}
    .img_logo {height: 48px;}
    .logo_text{font-size: 14px}
    .footer_discript{
        padding: 0px 27px ;
    }
    .product-item_img:before{
        filter: blur(26.5px);
    }
    .slider-img-cover{max-width: 100% !important;}
    .preloadElement .fancybox__content { max-width: 900px;min-width: 100%;}
    .fancybox__content  h1{font-size: 48px ; line-height: 48px;}
    .slider-img-cover:first-child{ order: 2; }
    .preloadElement .slider-nav-img{height: auto !important;}
    .bx-pagination_number {flex-direction: column-reverse;}
    .conteiner_cover{padding: 0 64px}

    .product-item_img:before{margin-bottom: 40px}
    .product-item-small-card{padding: 0 10px !important;}
    .product-item-small-card.slick-slide{    margin: 0 10px 20px;}
    .product-item_artist{bottom: 30px}
    .kontact-details{ margin-top: 40px;}
}
@media (max-width: 1366px) {
    .slick-arrow {
        top: 50%;
    }
    .product-item_discript{margin-top: -90px}
    .catalog-section.section_slider .product-item_discript{margin-top: -70px}
    .kontact-details{padding: 40px 60px}
    .portfolio-list__cover{grid-template-columns: repeat(3, 1fr);}
    .tagil-podnos .text-column:not(.column-md):not(.column-lg){ align-items: flex-start; flex-direction: column-reverse}
    .tagil-podnos .text-column.no-revers:not(.column-md ):not(.column-lg){flex-direction: column;}
    .tagil-podnos img{max-height: 676px }
    .tagil-podnos .column-equal{width: 100%}
    .min_banner-home_video{ width: 660px; min-width: 660px }
    .min_banner-home_text { padding: 50px 64px;}
    .min_banner-home_video .img-people{left: -10px}
    .feedback-form_cover .cover_img{height: 545px}
    .feedback_people_img{max-height: 570px !important;}
    .portfolio-list__cover.center{
        grid-template-columns: repeat(3, 1fr);
    }
    .slider-for img{ height: 400px;}
}
@media (max-width: 1200px) {
    .footer_discript{
       row-gap: 80px ;
    }
    .preloadElement .fancybox__nav .carousel__button.is-next{right: 10px}
    .preloadElement .fancybox__nav .carousel__button.is-prev{left: 10px}
    .feedback_people_img {max-height: 500px !important;}

}
@media (max-width: 1188px) {
    .application-form_cover .form_cover .input-cover, #TEMA-button, #TEMA_FEEDBACK-button{width: 100%}
    /*.feedback-form_cover .form_cover .input-cover, #TEMA-button, #TEMA_FEEDBACK-button{width: 49%}*/
    .min_banner-home {flex-direction: column-reverse;}
    .min_banner-home_video{width: 100%;height: 470px; min-height: 470px;min-width: 100%;}
    .min_banner-home_video .img-people{left: 50%;transform: translateX(-50%);height: 500px;    object-fit: contain;}
    .min_banner-home_text { padding: 50px 46px;}
}
@media (max-width: 1100px) {
    .search-cover{display: none}
    .btn-corparate_search.open-search{display: block}
    .img_logo { height: 32px;}
    .btn-corparate_search{padding: 10px}
    .header_menu li a{font-size: 12px; white-space:nowrap}
    .header_menu-child{padding: 20px}
    .slider-nav-img{height:48px !important;}
    .search-cover.open{
        display: block;
        position: fixed;
        height: 165px;
        top: 0;
        background: white;
        z-index: 20;
        width: 100vw;
        padding: 60px;
        margin-left: -20px;
        margin-right: 20px;
    }
    .search-cover__close{position: absolute; right: 65px; top: 20px; display: block}

}
@media (max-width: 1023px){
    main .conteiner_cover{padding-bottom: 40px}
    .feedback-form_cover .cover_img{
        width: 100%;
        height: 442px;
    }
    .feedback_people_img {
        left: 50%;
        transform: translateX(-50%);
        max-height: 460px !important;
        object-fit: contain !important;
    }

    .conteiner_cover{padding: 0 48px}
    h1{font-size: 48px;line-height:48px}
    h2{ font-size: 32px;line-height: 32px;}
    .catalog-title .filter-mobile_button{
        margin-top: 24px;
    }
    .slider-nav-img{height:auto !important;}
    .smartfilter-sidebar-block{
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        background: var(--beige4);
        z-index: 20;
        height: 100vh;
    }
    .bx-filter h2{padding: 48px 48px 0}
    .bx-filter .bx-filter-section{
        padding: 40px 48px 200px;
        position: initial;
        height: 100vh;

    }
    .bx-filter{position: relative; height: 100%; width: 330px}
    .smartfilter{
        height: 100%;
        overflow-y: auto;
        overflow-x: hidden;
        padding-right: 25px;
    }
    .bx-filter-section_close{
        position: absolute;
        top: 26px;
        right: 26px;
        cursor: pointer;
    }
    .smartfilter .bx-filter-parameters-box-container.footer-filter{
        position: absolute;
        bottom: 0;
        left: 0;
        padding: 20px;
        text-align: center;
        width: 100%;
        background: var(--beige4);
        box-shadow: 0px -10px 40px -11px rgba(0, 0, 0, 0.1);
    }
    .bx-filter-parameters-box-container .btn-corparate{
        padding: 6px 12px;
        width: 100%;
    }
    .bx-filter-parameters-box-container .del_filter-cover{
        background: var(--grey2);
        margin-top: 8px;
        border-radius: 10px;
        padding: 6px 12px;
        justify-content: center;
    }
    .smartfilter_checkbox-cover{
        max-height: 100%;
        overflow-y:visible;
    }
    .product-item:hover .product-item_artist, .product-item_img:hover:after{display: none}
    .slider-nav{margin-bottom: 24px }
    .catalog-element_buttom{gap: 18px}
    .bx-pagination_number {flex-direction: column;}
    .smartfilter_checkbox-cover:not(.show) .checkbox:nth-child(5) ~ .checkbox{
        display: none;
    }
    .product-item_name{font-size: 16px; }
    .kontact-details{padding: 40px 48px}

    .kontact-carts_cover{padding: 0;margin-bottom: 100px}
    .kontact-carts { margin-top: 0px; }
    .news-section__list {
        flex-direction: row;
        margin: 24px 0 ;
        flex-wrap: wrap;
    }
    .tagil-podnos iframe{height: 430px}
    .tagil-podnos .gallery{grid-template-columns: repeat(2, 1fr)}
    .tagil-podnos .img_curcle {width: 300px; height: 300px;}
    .tagil-podnos .text-column.column-lg{ align-items: center; flex-direction: column-reverse}
    .tagil-podnos .text-column.no-revers.column-lg{flex-direction: column;}
    .feedback_people_img.kontacty{bottom: 0px}
}
@media (max-width: 800px) {
    .header_tel {
        font-size: 16px;
    }
    .header_menu li a {
        font-size: 10px;
    }
    .tagil-podnos .text-column.column-md{ align-items: center; flex-direction: column-reverse}
    .tagil-podnos .text-column.column-md h2{text-align: center}
    .tagil-podnos .text-column.no-revers.column-md{flex-direction: column;}
}
@media (max-width: 767px) {

    main .conteiner_cover{padding-bottom: 24px}
    .feedback_people_img{width: 100%}
    .min_banner-home_video .img-people{height: 320px;  }
    .min_banner-home_video{height: 288px; min-height: 288px}
    .min_banner-home_text { padding: 24px;}
    .tagil-podnos .img_curcle {width: 200px; height: 200px;}
    .tagil-podnos div iframe{ height: 340px; }
    .tagil-podnos .grey-div{margin-bottom: 20px; padding: 24px; }
    .tagil-podnos img, .tagil-podnos iframe{max-height: 340px }
    .tagil-podnos img{width: 100%; object-fit: contain;max-height: 543px }
    .tagil-podnos .text-column{gap: 20px;}
    .portfolio-list__cover{grid-template-columns: repeat(2, 1fr);}
    .slick-initialized .news-list__adjacent.slick-slide{margin-right: 0px}
    .product-item_img{ align-items: center;}
    .khudozniki_title, .khudozniki_title p { font-size: 14px;  }
    .khudozniki_banner:after{display: none}
    .khudozniki_banner{margin-bottom: 40px}
    .khudozniki_banner h1 {
       position: static;
        margin: 50px auto 0 ;
        transform: translateX(0%);
         color: var(--corporate);
        text-align: center;
    }
    .conteiner_cover{padding: 0 24px}
    .bx-catalog-element{margin-top: 0}
    .catalog-slider_header hr{display: none}
    .sort-cover span.title{display: none}
    .header_menu, .logo_text, .btn-corparate_search.open-search,.btn-corparate span{display: none}
    .top_header{flex-direction: column; padding: 16px 0; gap: 16px; margin: 0 -20px }
    .top_header .flex.left{order: 2}
    .btn-corparate span.modil{display: block; white-space:nowrap}
    .top_header .flex.right{
        border-bottom: 2px solid var(--grey1);
        gap: 0;
        width: 100%;
        overflow-x: hidden;
    }
    .top_header .flex.right a{
        font-weight: 600;
        font-size: 16px;
        line-height: 24px;
        color: var(--corporate);
        background: none;
        border: none;
        padding-left:50px;
        padding-right: 50px;
    }
    .img_logo{
        height: auto;
    }
    .top_header .flex.right .btn-corparate{border-left: 2px solid var(--grey1);border-radius: 0}
    .footer_discript{
        row-gap: 40px ;
        position: relative;
    }
    .work-itj {
        display: flex;
        align-items: flex-end;
        justify-content: flex-end;
        position: absolute;
        bottom: 0;
        right: 0px;
    }
    .work-itj img{height: 24px}
    .footer_cover{gap: 12px}
    .modil-menu{display: flex}
    .product-item_name{ margin-bottom: 8px}
    .product-item_price{font-size: 22px;margin-bottom: 8px}
    .product-item_old-price{font-size: 16px;margin-bottom: 8px}
    .product-itemprice{margin-right: 9px}
    .product-item_size{font-size: 12px}
    .product-item_discript{padding: 60px 20px 24px; margin-top: -30px}
    .breadcrumb-title{font-size: 8px}
    .product-item-small-card {
        margin-bottom: 0px;
    }
    .popelular_news_header .header{font-size: 32px}
    .popelular_news_header{margin-bottom: 10px}
    .product-item_option{font-size: 8px}
    .popelular_news_footer{ flex-direction: column;}
    .catalog-slider_header{gap:0}
    .catalog-element_buttoms{gap:8px}
    .application-form_cover{
        padding:62px 48px;
    }
    .form_cover_img{width: 180px;height: 180px}
    .application-form_cover h2{
        font-size: 48px;
        line-height: 48px;
    }
    .applicationForm .fancybox__slide{padding: 0}
    .application-form_cover .form_cover{padding: 0}
    .application-form_cover .form_cover input{ padding: 10px 24px;}
    .application-form_cover .form_cover .input-cover,#TEMA-button, #TEMA_FEEDBACK-button{width: 48%}
    .product-item_img img, .product-item_img{height: 184px}
    .section_slider{margin: 0 -40px}
    .section_slider .draggable{padding-left: 40px;}
    .popup-message.fancybox__content {
        padding: 20px;
        width: 100%;
    }
    .popup-message_header { text-align: center;}
    .popup-message_cover {
        gap: 15px;
        margin: 80px 0 30px;
    }
    .carousel__button.is-close {
        justify-content: flex-end;
    }
    .feedback-form_cover{
        padding: 0px;
    }
    .feedback-form_cover .form_cover{padding: 50px 46px 0}
    .kontact-details_text{margin-top: 20px}
    .kontact-details_text .kontact-el{flex-direction: column; gap: 0; gap: 16px}
    .p-text{font-size: 12px}
    .kontact-details{padding: 24px}
    .kontacts { margin: 16px 0px 16px -20px;}
    .kontact-carts_cover{padding: 0;margin-bottom: 0px}
    .news-section__list {
        margin: 16px -40px;
        flex-wrap: nowrap;
        padding-left: 40px;
        overflow-x: scroll;
    }
    .news-list__section,.subscribe, .news-list__date-time , .news-list__href-share{
        font-size: 12px;
        line-height: 24px;
    }
    .news-list__section{ white-space: nowrap;}

    .news-list__discript{
        margin-bottom: 8px;
        font-size: 14px;
        line-height: 20px;
    }
    .news-list{
        border: none;
        margin-bottom: 32px;
        padding-bottom: 16px;
    }
    .news-list  .news-list__other {
        flex-direction: row-reverse;
        justify-content: space-between;
    }
    .news-list__other{flex-wrap: wrap;}
    .news-list .news-list__other .news-list__section, .news-list__href-share{background: transparent; padding: 0}
    .news-list.news-list__date-time div:before{display: none}
    .news-list img {height: 200px;}
    .news-list__href-share{gap: 5px}
    .news-list__title{margin-bottom: 8px}
    .tagil-podnos, .tagil-podnos p {
        margin-bottom: 16px;
        font-size: 14px;
        line-height: 20px;
    }
    .tagil-podnos .passage{padding: 12px 0px 12px 24px;  }
    .kontact-time_el{margin-top: 20px}
    .min_banner-home_text, .min_banner-home_text p{font-size: 14px}
     .hover_btn{font-size: 12px;padding: 12px 24px;gap: 10px}
    .search-cover.open{
        top:inherit;
        bottom: 60px;
        z-index: 9;
        margin-left: 0;
        background: var(--grey-new);
        box-shadow: 0px -10px 40px -11px rgba(0, 0, 0, 0.1);
    }
    .portfolio-list__cover.center{
        grid-template-columns: repeat(2, 1fr);
    }

}
@media (max-width: 480px) {
    .slider-for img{ height: 250px;}
    .btn-corparate{font-size: 12px}
    .min_banner-home_video .img-people{height:auto; max-height: 320px  }
    .popup-message .footer_btn{flex-wrap: wrap; }
    .tagil-podnos .text-column{gap: 16px;}
    .tagil-podnos .gallery{ gap: 4px; }
    .popelular_news_header_cover_button .btn-corparate.actent{ display: block; }
    .popelular_news_header_cover_button{margin-bottom: 24px}
    .kontact-el_time{ margin-left: 0px; }
    .product-item_price-cover{gap: 12px}
    .khudozniki_banner{margin-bottom: 20px}
    .khudozniki_banner h1 { margin: 24px auto 0 ; }
    .khudozniki_banner{
        min-height: 96px;
        object-fit: cover;
    }
    .conteiner_cover{padding: 0 0px}

    .section_slider{margin: 0 -20px}
    .section_slider .draggable{padding-left: 20px;}

     h1{
        font-size: 32px;
        line-height: 32px;
    }
     h2{
         font-size: 24px;
         line-height: 24px;
     }
     h3{
         font-size: 20px;
         line-height: 20px;
     }
    .application-form_cover .form_cover .input-cover{width: 100%; }
    .application-form_cover .form_cover img.logo{display: none}

    .application-form_cover h2{
        font-size: 24px;
        line-height: 24px;
    }
    #TEMA-button,#TEMA_FEEDBACK-button{width: 100%}
    .application-form_cover .form_cover button{margin-top: 16px}
    .application-form_cover p{
        font-size: 12px;
    }
    .application-form_cover {
        padding: 40px 24px;
    }
    .application-form_cover .form_cover span{font-size: 12px}
    .application-form_cover .form_cover{gap:16px}
    .feedback-form_cover{padding: 0}
    .feedback-form_cover .form_cover{padding: 24px}
    .feedback_people_img {
        left: 0;
        right: 0;
        transform: translateX(0%);
        height: 100% !important;
        max-height: 442px !important;
        object-fit: cover !important;
    }
    .bx-catalog-element .product-item_option{font-size: 8px}
    .catalog-title .filter-mobile_button{margin-top: 12px}
    .breadcrumb{margin-top: 8px}
    .ui-button.ui-selectmenu-button, .ui-button.ui-selectmenu-button:link,
    .ui-selectmenu-button.ui-button:visited, .ui-selectmenu-button.ui-button:hover,
    .ui-selectmenu-button.ui-button:active,.ui-menu .ui-menu-item-wrapper, .sort-cover {
        font-size: 12px;
    }
    .ui-button .ui-icon, .ui-button:hover .ui-icon, .ui-button:focus .ui-icon{
        background-image: url(../icon/small_arrows_firm.svg);
        transform: rotate(90deg);
        background-position: center;
    }
    .ui-selectmenu-text {margin-right: 0px;}
    .catalog-title{margin:12px 0}
    .bx-filter h2 {
        padding: 48px 24px 0;
    }
    .img_logo {
        height: 32px;
    }
    .footer_discript{padding:0;}
    .top_header .flex.right a{
        font-size: 12px;
        padding-left: 25px;
        padding-right: 25px;
    }

    .footer_cover img{height: 30px}

    .bx-filter {
        position: relative;
        height: 100%;
        width: 100vw;
    }
    .bx-filter .bx-filter-section{padding: 20px 24px 200px}
    .product-item-small-card.slick-slide {
        margin: 0 4px 20px;
    }
    .popelular_news_header .header{font-size: 24px}
    .popelular_news_header_cover_button { margin-top: 40px;}
    .popelular_news_footer{
        margin: 20px 0 0;
        padding: 40px 0;
        gap:16px
    }
    .catalog-element_text{font-size: 12px}
    .mb-24, .mb-40 {
        margin-bottom: 20px;
    }
    .mt-40{margin-top: 24px}
    .slider-nav, .slider-for{margin-bottom: 8px }
    .bx-catalog-element .product-item_option{font-size: 8px;line-height: 20px;}
    .catalog-element_buttom{padding: 12px 16px}
    .news-section__list {
        margin: 16px -20px;
        padding-left: 20px;
    }
    .news-list__href { gap: 10px; flex-wrap: wrap;}
    .news-list__href .btn-corparate{
        padding: 8px 16px;
        font-size: 12px;
        line-height: 24px;
    }
    .news-list__href .btn-corparate i{margin-left: 8px}
    .tagil-podnos .img_curcle {width: 150px; height: 150px;}
    .portfolio-list__cover{margin-top: 20px;}
    .feedback-form_cover .cover_img {
        width: 100%;
        height: 342px;
    }
}
@media (max-width: 480px) {
    h1 {
        font-size: 24px;
        line-height: 24px;
    }
}
