/*обнуление*/
*{
	margin: 0;
	border: 0;
	padding: 0;
}
*,*:before,*:after{
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-box-sizing: border-box;
}
:focus,:active{outline: none;}
a:focus,a:active{outline: none;}

nav,footer,header,aside{display: block;}

html,body {
	width: 100%;
	height: 100%;
	-ms-text-size-adjust: 100%;
	-moz-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
	line-height: 1;
	font-size: 100%;
	font-size: 14px;
}
input,button,textarea{font-family: inherit;}
input::-ms-clear{display: none;}
button{cursor: pointer;}
button::-moz-focus-inner{padding: 0;border: 0;}
a, a:visited{text-decoration: none;}
a:hover{text-decoration: none;}
ul li{list-style: none;}
img{vertical-align: top;}
h1,h2,h3,h4,h5,h6{font-size: inherit;font-weight: 400;}
/*---------------------------------------*/
@font-face {
	font-family: 'Open Sans Condensed';
	src: url('../fonts/open_sans_condensed_light.eot'); /* IE 9 Compatibility Mode */
	src: url('../fonts/open_sans_condensed_light.eot?#iefix') format('embedded-opentype'), /* IE < 9 */
	url('../fonts/open_sans_condensed_light.woff2') format('woff2'), /* Super Modern Browsers */
	url('../fonts/open_sans_condensed_light.woff') format('woff'), /* Firefox >= 3.6, any other modern browser */
	url('../fonts/open_sans_condensed_light.ttf') format('truetype'), /* Safari, Android, iOS */
	url('../fonts/open_sans_condensed_light.svg#open_sans_condensed_light') format('svg'); /* Chrome < 4, Legacy iOS */
	font-display: swap;
}

body._lock {
	overflow: hidden;
}

.sayt {
	margin:0 auto ;
	width: 100%;
	max-width: 3840px;
	height: 100%;
}

.ves {
	position: fixed;
	top: 0;
	left: 0;
	z-index:50;
	width: 100%;
	height: 160px;
	background-color: #f2f3f4;
	border-bottom: 1px solid #ddd;
    transition: transform 0.7s ease, opacity 0.7s ease;
}

.ves.out {
	transform: translateY(-100%);
}

.ves.hidden {
    transform: translateY(-100%); /* Скрываем хедер, сдвигая его вверх */
    opacity: 0; /* Делаем его невидимым */
}

.shapka {
	display: flex;
	margin: 0 auto;
	padding:  0 3% 0 6%;
	width: 100%;
	max-width: 3840px;
	height: 100%;
	align-items: center;
	justify-content: space-between;
	user-select: none;
}	

.logotip {
	width: auto;
	height: 98px;
	pointer-events: none;
}

.svaz_shapka {
display: flex;
flex-wrap: wrap;
text-align: center;
padding: 0 0 0 0;
justify-content: center ;
gap: 70px;
}

.svaz_shapka a {
display: flex; /* заменяем inline-block на flex */
align-items: center;
justify-content: center;
font-size: 60px;
}

.icon-mobiltelefon:before,
.icon-pochta:before,
.icon-watsap:before {
padding-right: 0px;
}

@media (hover: hover) {
.svaz_shapka a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-radius: 50%;
  background-color: #ffff;
  transition: width 0.3s, height 0.3s;
  z-index: -1;
}

.svaz_shapka a:hover::after {
  width: 1.8em;
  height: 1.8em;
}
}

.shapka_menu {
	text-align: center;
	white-space: nowrap;
}

.menu_icon {
	display: none;
	-webkit-tap-highlight-color: transparent;
}

.menu_icon._active span {
	transform: scale(0) translate(0px, -50%);	
}

.menu_icon._active::before {
	top: 50%;
	transform: rotate(-45deg) translate(0px, -50%);	
}

.menu_icon._active::after {
	bottom: 50%;
	transform: rotate(45deg) translate(0px, 50%);	
}

ul {
	display: flex;
	justify-content: center;
}

li {
	margin: 0 0 0 25px;
	list-style: none;
	transition: all 0.5s ease 0s;
}

.ubrat {
margin: 0;
}

body._pc .menu_list > li {
    position: relative; /* Устанавливаем позиционирование для использования псевдоэлемента */
}

body._pc .menu_list > li::after {
    content: ""; /* Псевдоэлемент пустой */
    position: absolute;
    left: 0;
    bottom: 0; /* Размещаем подчеркивание внизу элемента */
    width: 0; /* Начальная ширина — скрыто */
    height: 1px; /* Толщина подчеркивания */
    background-color: black; /* Цвет линии */
    transition: width 0.0s ease; /* Анимация появления */
}

body._pc .menu_list > li:hover::after {
    width: 100%; /* При наведении подчеркивание растягивается на всю ширину элемента */
}

body._touch .menu_list > li:hover {
	transform: none;
	transition: none;
}

a {
	color: black;
	font-size: 35px;
	-webkit-tap-highlight-color: transparent;
}

.menu_list {
display: flex;
align-items: center;
}

.menu_item {
position: relative;
padding: 10px 0;
}

.menu_sub-list {
display: block;
position: absolute;
top: 100%;
right: 0;
background-color: #f2f3f4;
padding: 8% 0;
width: 100%;
}

body._touch .menu_sub-list {
	border-top: 2px solid black;
}

.menu_sub-list {
transform: translate(0px, 10%);
opacity: 0;
visibility: hidden;
pointer-events: none;
transition: all 0.3s ease 0s;
}

.menu_sub-list li {
margin: 0px 0px 10% 0px;
}

.menu_sub-list li:last-child {
margin: 0;
}

.menu_sub-link {
	display: block;
	width: 100%;
}

.menu_sub-link:hover {
	text-decoration: underline;
}

.menu_arrow {
    display: none;
}

.lang-icon {
  width: 1.3em;
  height: 1.3em;
    margin-right: 0.2em;     /* немного отступа перед "УЗ" */
vertical-align: text-bottom;
}

/*--------------------------------------*/
body._pc .menu_list > li:hover .menu_sub-list {
	opacity: 1;
	visibility: visible;
	transform: translate(0px, 0px);
	pointer-events: all;
}

body._touch .menu_list > li {
display: flex;
align-items: center;
}

body._touch .menu_linktwo {
flex: 1 1 auto;
}

body._touch .menu_arrow {
display: block;
width: 0;
height: 0;
margin: 0 0 0 5px;
transition: transform 0.3s ease 0s;
border-left: 10px solid transparent;
border-right: 10px solid transparent;
border-top: 20px solid black;
}

body._touch .menu_list > li._active .menu_sub-list {
	opacity: 1;
	visibility: visible;
	transform: translate(0px, 0px);
	pointer-events: all;
}

body._touch .menu_list > li._active .menu_arrow {
transform: rotate(-180deg);
}
/*------------------------------------------*/

.risunok_one {
	display: flex;
    margin-top:160px;
	padding: 0 0% 0 6%;
	width: 100%;
	height: 100%;
	min-height: 700px;
	max-height: 700px;
	filter: grayscale(0%);
	-webkit-filter: grayscale(0%);
	align-items: flex-start;
	justify-content: left;
	color: black;
	border: 2px solid red;
	
}

/*.no-webp .risunok_one {
	background: url('../img/polotno-vafelnoe-40x50.jpg') center / cover no-repeat;
}

.webp .risunok_one {
	background: url('../img/polotno-vafelnoe-40x50.webp') center / cover no-repeat;
}*/

.onas {
	
    padding: 0 0 0 6%;
	padding-top: 250px;
	width: 43%;
	height: auto;
	overflow: visible;
	font-size: 25px;
		
 }

.onas > p {
	text-align: left;
	text-indent: 0;
}

.breadcrumb {
  display: flex;
  align-items: flex-start; /* Центрирует элементы по вертикали */
  list-style: none;
  padding: 0;
  margin: 0;
  height: 150px;
  font-family: 'Open Sans Condensed', 'Tahoma', 'Arial', sans-serif;
}

.breadcrumb-item {
  color: black;
  font-size: 50px;
  text-decoration: none;
  margin: 0;
  padding: 0;
}

.breadcrumb-item a {
  font-size: 50px;
  text-decoration: underline;
}

@media (hover: hover) {
 .breadcrumb-item a:hover {
  background-color: #f2f3f4;
}
}

.breadcrumb-item.active {
  color: black;
  pointer-events: none;
 }

.breadcrumb-separator {
  color: black;
  font-size: 50px;
  line-height: 1; /* Гарантирует ровное выравнивание */
  margin: 0 8px; /* Отступы вокруг разделителя */
}

h1 {
   	margin-bottom: 15px;
	text-align: left;
	text-transform: uppercase;
	font-family: 'Open Sans Condensed', 'Tahoma', 'Arial', sans-serif;
	font-size: 150px; 
	font-weight: 700;
}

p, .avtor, time, .filter{
	text-align: left;
	text-indent: 0px;
	font-family: 'Open Sans Condensed', 'Tahoma', 'Arial', sans-serif;
	font-size: 50px;
	font-weight: 100;
}
h2,h3,h4 {
	margin-bottom: 15px;
	text-align: left;
	text-transform: uppercase;
	font-family: 'Open Sans Condensed', 'Tahoma', 'Arial', sans-serif;
	font-size: 90px;
	font-weight: 700;
}

h3 {
    font-size: 60px;
	margin-bottom: 7px;    
}

.pocha {
	text-align: left;
	line-height: 1.5;
	font-family: 'Open Sans Condensed', 'Tahoma', 'Arial', sans-serif;
	font-size: 50px;
	font-weight: 100;
}	

.emblema {
	display: flex;
	margin-bottom: 5%;
	width: 100%;
	height: auto;
    /*min-height: 850px;*/
	max-height: 2160px;
	align-items: center;
	justify-content: center;
	background-color: #f2f3f4;
}

.brukiStopka {
	width: 50%;
	height: auto;
	text-align: center;
}

.on_as {
    margin-top: 5%;
	margin-bottom: 5%;
	padding: 0% 2% 0% 6%;
	border-left: 1px solid black;
	width: 50%;
	height: auto;
	color: black;
	font-family: 'Open Sans Condensed', 'Tahoma', 'Arial', sans-serif;
}

.brukiVid {
	display: flex;
	margin-top: 200px;
	width: 100%;
	height: auto;
	/*min-height: 750px;*/
	max-height: 2559px;
	align-items: center;
	justify-content: center;
	background-color: white;
}

.brukPered, .brukZad, .brikiBvid {
	width: 33%;
}

.stopka {
	max-width: 100%;
	height: auto;
}

.vidshitya {
	display: block;
	position: relative;
	padding: 0 1% 0 1%;
	width: 100%;
	height: auto;
	-webkit-filter: grayscale(10%);
	filter: grayscale(10%);
	background-color: white;
}

.vidshityaone {
	display: flex;
	width: 100%;
	height: auto;
}

.mujobsh {
	margin-right:1%;
	width: 50%;
	border: 1px solid #a9a9a9;
}

.mujskoy, .detskiy, .jenskiy, .rabochiy {
	height: auto;
	text-align: center;
	background-color: white;
}

.kostyum {
	max-width: 100%;
	height: auto;
}

.nadpismujs {
	padding: 5% 3% 5% 10%;
	color: black;
}

.detobsh, .jenobsh {
	width: 50%;
	border: 1px solid #a9a9a9;
}

.mujobsh, .detobsh, .jenobsh, .rabobsh {
	display: block;
	position: relative;
	align-items: top;
	justify-content: left;
}

.forma { 
	max-width: 100%;
	height: auto;
}

.vidshityatwo {
	display: flex;
	margin-top: 1%;
	width: 100%;
	height: auto;
}

.rabobsh {
	margin-left: 1%;
	width: 50%;
	border: 1px solid #a9a9a9;
}

.rubashka {
	max-width: 100%;
	height: auto;
}

.istoriyaAscanto {
	display: flex;
	margin-bottom: calc(5% - 2vw);
	width: 100%;
	height: auto;
	align-items: center;
	justify-content: left;
}

.textIstoriiAscanto {
	padding: 0 3% 0 6%;
	width: 100%;
	height: auto;
}

.dostavka {
    padding-top: 0.5em;
}

.four {
	display: flex;
	width: 100%;
	height: auto;
	max-height: 2559px;
	align-items: flex-start;
	justify-content: left;
	background-color: white;
}
	
.novie_zakazi, .brukSvid {
	display: flex;
    margin: 0%;
	padding: 0 3% 0 6%;
	width: 50%;
	height: auto;
	align-items: center;
	justify-content: left;
	color: black;
	font-family: 'Open Sans Condensed', 'Tahoma', 'Arial', sans-serif;
}

.svaz  h2,
.svaz  h3 {
	margin-top: 0.5em;
}

.svaz > p {
	text-indent: 0;
}

.svaz > p:first-child {
	margin-top: 0;
}

.svaz ul {
	display: block;
	padding-left: 50px;
	font-size: 50px;
margin-top:0.5em;
}

.svaz li {
	list-style: disc;
	font-family: 'Open Sans Condensed', 'Tahoma', 'Arial', sans-serif;
}

.brukSvid {
	width: 50%;
	border-left: 1px solid black;
}

.container {
 width: auto ;
 margin: auto;
 }

label {
  	font-size: 50px;
   }

input, select, .knopka { 
     width: 100%; 
     padding: 8px; 
     margin: 5px 0; 
     box-sizing: border-box; /* Чтобы ширина учитывала паддинги и границы */
     border: 1px solid black;
     font-size: 50px;
}

input {
     -webkit-appearance: none; /* Отключает стандартное оформление */
    -moz-appearance: none;
     appearance: none;
     border-radius: 0;
}

select {
    -webkit-appearance: none; /* Отключает стандартное оформление */
    -moz-appearance: none;
     appearance: none;
     color: black;
     background-color: white !important;
     font-family: 'Open Sans Condensed', 'Tahoma', 'Arial', sans-serif;
}

.knopka { 
	 background: rgba(0, 0, 0, .8);; 
	 color: white;
	 border: none; 
	 cursor: pointer; 
}

#pricePerKg {
	padding: 8px 12px;
	color: black !important;
	pointer-events: none;
	opacity: 1;
    background-color: white; /* Другой фон для отключенного поля */
   }

#resetButton { 
	background: #595959;
}

#result { 
	 font-size: 50px;
	 margin: 10px 0 10px 0;
	 font-weight: bold;
	}

.shkolaone {
	display: flex;
	position: relative;
	margin: 0 auto;
	margin-top: 5%;
	-webkit-filter: grayscale(0%);
	filter: grayscale(0%);
	justify-content: center;
	width: 100%;
	height: auto;
	text-align: center;
}

.shkolatwo {
	margin: 0 auto;
	width: 97%;
	justify-content: center;
	font-family: 'Open Sans Condensed', sans-serif; 
}

.dolgovechno {
	padding-left: 4.7%;
	padding-bottom: 1%;
}

.jir {
	text-align: left;
}

.swiper {
	padding-top: 50px;
	padding-bottom: 50px;
	width: 100%;
}

.swiper-slide {
	background-position: center;
	background-size: cover;
	width: 1280px;
	height: auto;
}

.swiper-slide img {
	max-width: 100%;
	height: auto;
}

.tsena > p {
width: 100%;
text-align: left;
line-height:  1.2em;
padding: 2% 0 7% 5%;
}

.showroom {
	display: flex;
	margin-top: 5%;
	width: 100%;
	height: auto;
	min-height: 720px;
	max-height: 2560px;
	align-items: center;
	justify-content: center;
	background-color: #f2f3f4;
}

.showT {
	display: flex;
	width: 50%;
	align-items: center;
	justify-content: left;
}

.showroomTekst {
	padding: 5% 0% 5% 12%;
	width: auto ;
	height: auto;
	text-align: left;
	color: black;
	font-family: 'Open Sans Condensed', 'Tahoma', 'Arial', sans-serif;
}

.karta {
	width: 50%;
	height: 700px;
	text-align: center;
}

.verh {
    width: 100%;
    height: auto;
    text-align: center;
    padding: 20px 0;
    background-color: #f2f3f4;
}

.verha {
    display: block;
    width: 100%;
    font-size: 50px;
    font-family: 'Open Sans Condensed', 'Tahoma', 'Arial', sans-serif;
}

.footerMinimal {
    width: 100%;
	height: auto;
	background-color: rgba(0, 0, 0, .8);
}

@media (hover: hover) {
.footerMinimal a:hover {
text-decoration: underline;
}
}

.navigatsiya {
	width: auto;
    margin: 0 3% 0 6%;
    padding:3% 0 2% 0;
    color: white;
    white-space: nowrap;
    justify-content: center;
    border-bottom: 1px solid white;
}

.navigatsiya > li {	
    margin-left: 0;
    margin-right: 5%;
}

h4 {
	font-size: 50px;
	margin-bottom: 40px;
}

h4 a {
  color: inherit; /* Унаследует цвет от h4 */
  font-size: inherit; /* Унаследует размер шрифта */
  font-weight: inherit; /* Унаследует жирность шрифта  font-weight: inherit; /* Унаследует жирность шрифта */
  text-decoration: none; /* Убирает подчеркивание у ссылки */
}

.navigatsiyaposhiv {
    width: 100%;
    display: block;
    color: white;
    text-align: left;
 }
 
.navigatsiyaposhiv > li {
    margin: 0;
    margin-bottom: 30px;
}

.navigatsiyaposhiv > li > a {
    color: white;
    font-family: 'Open Sans Condensed', 'Tahoma', 'Arial', sans-serif;
    font-size: 50px;
}

.footerniz {
	display: flex;
	height: auto;
	align-items: center;
	justify-content: center;
}

.flag {
	display: flex;
	padding-left: 5.5%;
	width: 33%;
	height: auto;
	justify-content: left;
	align-items: center;
	color: white;
}

.flag > span {
	padding-left: 1%;
	font-family: 'Open Sans Condensed', 'Tahoma', 'Arial', sans-serif;
	font-size: 40px;
}

.logoF {
	padding: 1% 0;
	width: 33%;
	height: auto;
	text-align: center;
}

.footerMinithree {
	display: flex;
	padding-right: 2%;
	width: 33%;
	align-items: center;
	justify-content: right;
	color: white;
}

.footerMinithree > span {
	font-size: 40px;
	font-family: 'Open Sans Condensed', 'Arial', sans-serif;
}

.filters {
    display:flex;
    flex-wrap:wrap;
    gap: 1vw;
    margin-bottom: 5%;
}

.filter {

    display:flex;
    align-items:center;

    border:none;
    background:#f3f3f3;

    padding: 0.3em 1em;

    border-radius: 12px;
    cursor:pointer;
	
    transition:
        background .35s,
        color .35s,
        transform .35s;
}

.filter:hover{

    background:#e8e8e8;

}

.filter.active{

    background:#111;
    color:#fff;

}

.filter:active{

    transform:scale(.96);

}

.close{

    width:0;
    opacity:0;
    overflow:hidden;

    transition:
        width .35s,
        opacity .35s,
        margin .35s;

    

}

.filter.active .close{

    width: auto;
	opacity:1;
    margin-left: 0.3em;

}

/* ---------------- */

.gallery {
    columns:4;
    column-gap:1%;
}

.gallery img{

    width:100%;

    display:block;

    margin: 0 0 2vw 0;

    border-radius:12px;

    break-inside:avoid;

    cursor:pointer;

    transition:
        opacity .35s ease,
        transform .35s ease,
        filter .35s ease;

}

.gallery img:hover{

    filter:brightness(75%);

}

.gallery img.hide{

    opacity:0;

    transform:scale(.94);

    pointer-events:none;

}