@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

:root
{
	--white: #FFFFFF;
	--black: #252525;
	--light: #9EB4CB;
	--blue: #15395A;
	--bglight: #F2F0F7;
	--border: rgba(21, 57, 90, 0.12);
	--shadow: 0 18px 45px rgba(21, 57, 90, 0.12);
	--shadow-soft: 0 10px 24px rgba(21, 57, 90, 0.08);
}
html, body
{
	padding: 0;
	margin: 0;
	font-family: 'Roboto', sans-serif;
	font-size: 14px;
	line-height: 150%;
	min-height: 100vh;
	color: #2A2A2A;
	background: var(--white);
	color: var(--black);
}
.nonact
{
	color: var(--light);
	cursor: default;
}
img 
{
	max-width: 100%;
}
a 
{
	text-decoration: none;
	color: var(--black);
}
.underline
{
	text-decoration: underline;
}
div, p, span,li, a, form
{
	position: relative;
	box-sizing: border-box;
}
h3 
{
	font-size: 2.29rem;
	line-height: 150%;
	text-align: center;
	font-weight: 600;
	margin-top: 0;
}
.pbig
{
	font-size: 1.14rem;
	line-height: 150%;
}
.full 
{
	display: grid;
	grid-template-columns: 300px 1fr;
}
.full>div 
{
	display: block;
	width: 100%;
	height: 100vh;
}
.full>div.leftfix
{
	display: grid;
	grid-template-rows: 1fr 160px;
	grid-gap: 20px;
	padding: 40px 20px 32px 25px;
}
.full>div.leftfix .logo
{
	display: none;
}
.leftfix .menu
{
	display: flex;
	flex-direction: column;
	gap: 17px;
	font-size: 1.07rem;
	font-weight: 600;
	text-decoration: none;
	color:var(--black);
}
.leftfix .contacts 
{
	display: flex;
	justify-content: flex-start;
	gap: 15px;
}
.leftfix .contacts>a 
{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 2rem;
	height: 2rem;
	font-size: 1rem;
	color: var(--white);
	border-radius: 50%;
	background: var(--black);
}
.main
{
	background: var(--white);
	overflow: auto;
}
.main .separate
{
	display:block;
	position: fixed;
	padding: 0;
	top: 0;
	left: 300px;
	bottom: 0;
	width: 5px;
	height: 100vh;
	background: rgba(218, 218, 218, 0.3);
	z-index: 3;
}
.bottomblack
{
	display:block;
	position: fixed;
	padding: 0;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 5px;
	background:var(--black);
	z-index: 3;
}
.main>div, .main>a 
{
	display: block;
	width: 100%;
	min-height: 100vh;
	height: -webkit-fit-content;
	padding: 12% 13% 14%;
	background-size: cover;
}
.main>div.inner 
{
	height: auto;
	min-height: 80vh;
	max-width: 1220px;
	margin: 0 auto;
	padding: 2rem 5% 8rem;
}
.main .first-page
{
	display: flex;
	align-items: center;
	justify-content: flex-start;
	position: relative;
	overflow: hidden;
	background: url('/images/first_page_bg.png') top right no-repeat;
	background-size: cover;
	padding: 9% 10% 10%;
	text-align: left;
}
.main .first-page:before
{
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	content: "";
	background: linear-gradient(90deg, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.75) 42%, rgba(255,255,255,0.2) 100%);
}
.main .requisites
{
	display: flex;
	padding: 5% 0 5% 15%;
	align-items: center;
	justify-content: flex-start;
	background: url('/images/mappoint.jpg') top right no-repeat;
	background-size: cover;
	background-repeat: no-repeat;
}
.main .requisites .requisites_info 
{
	display: flex;
	flex-direction: column;
	gap: 20px;
	width: 35%;
	padding: 30px 35px 40px;
	background: var(--white);
	border: 1px solid var(--light);
	border-radius: 10px;
	box-shadow: var(--shadow-soft);
}
.hero-panel
{
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	gap: 1.2rem;
	max-width: 720px;
	padding: 2.6rem 2.8rem;
	background: rgba(255, 255, 255, 0.84);
	border: 1px solid rgba(255, 255, 255, 0.9);
	border-radius: 28px;
	box-shadow: var(--shadow);
	backdrop-filter: blur(10px);
}
.hero-kicker
{
	display: inline-flex;
	align-self: flex-start;
	padding: 0.45rem 0.85rem;
	border-radius: 999px;
	background: rgba(21, 57, 90, 0.08);
	color: var(--blue);
	font-size: 0.93rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}
.main .requisites .requisites_info h3, .main .requisites .requisites_info p 
{
	margin: 0;
	padding: 0;
}
.main .requisites .requisites_info span
{
	font-weight: 600;
}
.main .requisites .requisites_info div
{
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.main .first-page .title
{
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	gap: 14px;
	text-align: left;
	font: 500 1.1rem/1.75rem 'Roboto';
	color: #35536f;
}
.main .first-page .title>img 
{
	display: block;
	margin: 0;
	width: 300px;
}
.main .first-page h1
{
	margin: 0;
	font-size: 3.25rem;
	line-height: 1.12;
	font-weight: 700;
	max-width: 650px;
}
.hero-text
{
	max-width: 590px;
	margin: 0;
	font-size: 1.12rem;
	line-height: 1.7;
	color: #4d6275;
}
.hero-actions
{
	display: flex;
	flex-wrap: wrap;
	gap: 0.9rem;
	padding-top: 0.2rem;
}
.hero-points
{
	display: flex;
	flex-wrap: wrap;
	gap: 0.8rem;
}
.hero-points span
{
	display: inline-flex;
	align-items: center;
	padding: 0.75rem 1rem;
	border: 1px solid var(--border);
	border-radius: 14px;
	background: rgba(255,255,255,0.88);
	font-size: 0.98rem;
	font-weight: 500;
	color: var(--blue);
}
.preims>div 
{
	display: grid;
	grid-template-columns: 70px 1fr;
	grid-gap: 30px;
}
.preims .icon 
{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 66px;
	height: 66px;
	border-radius: 50%;
	border: 1px solid rgba(130, 144, 164, 0.3);
	font-size: 30px;
	color: #9EB4CB;
}
.preims .info .title 
{
	display: block;
	margin: 10px 0 6px;
	font-size: 1.57rem;
	font-weight: 600;
}
.main>div.map
{
		background-color: #EDEDEC;
		background-position: 50% 60%;
		background-size: contain;
		background-repeat: no-repeat;
}
.map h3 
{
	max-width: 670px;
	margin: 0 auto;
}
.button 
{
	display: inline-flex;
	min-width: 170px;
	height: 48px;
	padding: 0 1.4rem;
	color: var(--white);
	background-color: var(--black);
	text-decoration: none;
	text-align: center;
	align-items: center;
	justify-content: center;
	border: 1px solid transparent;
	border-radius: 999px;
	box-shadow: var(--shadow-soft);
	font-size: 0.98rem;
	font-weight: 600;
	transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}
.button:hover
{
	transform: translateY(-1px);
	box-shadow: 0 14px 30px rgba(21, 57, 90, 0.14);
}
.button-secondary
{
	background: rgba(255,255,255,0.92);
	color: var(--blue);
	border-color: var(--border);
}
.button-secondary:hover
{
	background: var(--white);
}
.map .button 
{
	display: flex;
	margin: 20px auto 0;
	margin-top: 20px;
}
.map-footnote
{
	display: block;
	position: absolute;
	bottom: 13%;
	right: 13%;
	font-size: 1.43rem;
	line-height: 150%;
	font-weight: 500;
	text-align: center;
	font-style: italic;
}
.areasofuse
{
	display: block;
	position: absolute;
	background: var(--white);
	top: -10%;
	left: -10%;
	right: -10%;
	bottom: -10%;
	filter: blur(50px);
	z-index: 1;
	opacity: 0.7;
}
.zindex2
{
	z-index: 2;
}
.main>div.main-page2 
{
	padding-bottom: 8%;
}
.main-page4 .zindex2
{
	padding: 0 5%; 
}
.main-page4 .zindex2 p 
{
	margin: 30px 0;
}
.raketa-list 
{
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	gap: 65px;
}
.raketa-list>img 
{
	display: block;
	width: 150px;
}
.raketa-list>ul 
{
	list-style-type: none;
	padding: 0;
}
.raketa-list>ul>li 
{
	padding: 5px 0 4px 29px;
}
.raketa-list>ul>li:before 
{
	display: block;
	position: absolute;
	top: 15%;
	left: 0;
	content: "\e904";
	font-family: 'icomoon';
	font-size: 1.42rem;
	color: #9EB4CB;
}
.fullcontactdiv
{
	display: grid;
	grid-template-columns: 20% 1fr 20%;
	grid-gap: 8%;
	align-items: center;
	padding: 3rem 3.5rem;
	background: linear-gradient(180deg, rgba(255,255,255,0.96) 0%, rgba(242,240,247,0.96) 100%);
	border: 1px solid var(--border);
	border-radius: 28px;
	box-shadow: var(--shadow);
}

.contacts-text>p
{
	display: grid;
	grid-template-columns: 30px 1fr;
	font-size: 1.2em;
}

.contacts-text>p:nth-child(2) span
{
	font-size: 0.9em;
}


.contacts-list
{
	margin: 20px auto 40px;
	display: flex;
	justify-content: center;
}
.contacts-list>div
{
	display: inline-flex;
	flex-direction: column;
	gap: 15px;
}
.contacts-list a 
{
	display: flex;
	gap: 9px;
	align-items: center;
	font-size: 1.57rem;
	font-weight: 600;
	padding: 0.85rem 1rem;
	border: 1px solid rgba(21, 57, 90, 0.08);
	border-radius: 16px;
	background: rgba(255,255,255,0.85);
	box-shadow: var(--shadow-soft);
}
.main>div.blackfooter
{
	background: var(--black);
	color: var(--white);
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	padding: 5% 10%;
	gap: 8%;
	min-height: -webkit-fit-content;
	align-items: start;
}
.blackfooter .ftitle
{
	display: block;
	margin-bottom: 1rem;
	font-weight: 600;
	font-size: 1.14rem;
}
.blackfooter a 
{
	display: block;
	color: var(--white);
}

.headline
{
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
	margin-bottom: 3rem;
}
.headline h1
{
	margin: 0;
	font-size: 2.7rem;
	line-height: 1.1;
}
.headline h1 .back 
{
	font-size: 1.6rem;
	margin-right: 1rem;
}
.type_list
{
	display: flex;
	gap:  0.8rem;
	font-size: 1.4rem;
}
.razdeli
{
	display: flex;
	flex-wrap: wrap;
	gap: 1.25rem;
}
.razdeli a 
{
	text-decoration: none;
}
.razdeli:not(.product_list)>a
{
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.9rem;
	width: calc(25% - 0.95rem);
	padding: 1.2rem 1rem 1.35rem;
	text-align: center;
	background: var(--white);
	border: 1px solid rgba(130, 144, 164, 0.24);
	border-radius: 18px;
	box-shadow: var(--shadow-soft);
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.razdeli:not(.product_list)>a:hover
{
	transform: translateY(-3px);
	border-color: rgba(21, 57, 90, 0.2);
	box-shadow: 0 16px 30px rgba(21, 57, 90, 0.1);
}
.razdeli:not(.product_list)>a>img
{
	width: 78px;
	height: 78px;
	padding: 0.9rem;
	object-fit: contain;
	border-radius: 18px;
	background: linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);
} 
.razdeli:not(.product_list)>a>span
{
	display: block;
	font-size: 1.02rem;
	font-weight: 600;
	line-height: 1.45;
}
.razdeli.product_list
{
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.25rem;
	grid-auto-rows: 1fr;
}
.razdeli.razdeli_list
{
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}
.razdeli.razdeli_list a 
{
	text-align: left;
	width: auto;
}
.razdeli.razdeli_list img 
{
	display: none;
}
.product_list>a 
{
	padding: 0;
	border: none;
}
.search_div
{
	border: 1px solid rgba(130, 144, 164, 0.32);
	height: 3rem;
	width:25rem;
	display: flex;
	justify-content: space-between;
	padding: 0.5rem 0.8rem;
	align-items: center;
	border-radius: 999px;
	background: rgba(255,255,255,0.96);
	box-shadow: var(--shadow-soft);
}
.search_div>input 
{
	border: none;
	width: 20rem;
	font-family: sans-serif;
	font-size: 1rem;
	outline: none;
}
.search_div>input::placeholder {
  font-style: italic;
  color: var(--light);
}
.search_div>a 
{
	font-size: 1.4rem;
	color: var(--light);
}
.product_card
{
	display: flex;
	flex-direction: column;
	height: 100%;
	min-height: 100%;
	border: 1px solid rgba(130, 144, 164, 0.16);
	border-radius: 24px;
	background: var(--white);
	overflow: hidden;
	box-shadow: 0 14px 32px rgba(21, 57, 90, 0.08);
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.product_card:hover
{
	transform: translateY(-3px);
	border-color: rgba(21, 57, 90, 0.2);
	box-shadow: 0 18px 36px rgba(21, 57, 90, 0.12);
}
.product_card__image
{
	display: flex;
	align-items: center;
	justify-content: center;
	height: 300px;
	padding: 1.3rem 1.35rem 1rem;
	background: #fff;
}
.product_card__image img
{
	width: auto;
	max-width: 100%;
	max-height: 250px;
	object-fit: contain;
}
.product_card__body
{
	display: flex;
	flex: 1;
	flex-direction: column;
	gap: 0.85rem;
	padding: 1.15rem 1.4rem 1.35rem;
	border-top: 1px solid rgba(130, 144, 164, 0.18);
}
.product_card__title
{
	display: block;
	font-size: 1.01rem;
	line-height: 1.42;
	font-weight: 700;
	color: var(--black);
	min-height: 2.84em;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	overflow: hidden;
}
.product_card__feature
{
	display: block;
	font-size: 0.94rem;
	line-height: 1.38;
	font-weight: 700;
	color: #143f72;
	min-height: 2.6em;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	overflow: hidden;
}
.product_card__description
{
	display: block;
	font-size: 0.93rem;
	line-height: 1.6;
	color: #4c6076;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 4;
	line-clamp: 4;
	overflow: hidden;
	min-height: 6.4em;
}
.product_card__actions
{
	display: flex;
	justify-content: center;
	margin-top: auto;
	padding-top: 0.3rem;
}
.product_card__more
{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 190px;
	height: 44px;
	padding: 0 1.4rem;
	font-size: 0.98rem;
	font-weight: 700;
	color: #fff;
	border-radius: 8px;
	background: linear-gradient(180deg, #4b83ba 0%, #255a90 100%);
	box-shadow: 0 10px 20px rgba(37, 90, 144, 0.2);
}
.razdeli.product_list.razdeli_list
{
	grid-template-columns: 1fr;
}
.razdeli.product_list.razdeli_list .product_card
{
	flex-direction: row;
	align-items: stretch;
	min-height: 320px;
}
.razdeli.product_list.razdeli_list .product_card__image
{
	flex: 0 0 250px;
	height: auto;
	padding: 1.25rem;
}
.razdeli.product_list.razdeli_list .product_card__body
{
	padding: 1.25rem 1.35rem 1.25rem;
	border-top: none;
	border-left: 1px solid rgba(130, 144, 164, 0.18);
}
.razdeli.product_list.razdeli_list .product_card__actions
{
	justify-content: flex-start;
}

.productFullInfo
{
	display: block;
}
.colomns2
{
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-gap: 5rem;
}
.colomns2>div 
{
	display: flex;
	align-items: center;
}
.colomns2 .productImg>img
{
	display: block;
	max-height: 400px;
}

.bread_crumbs
{
	display: block;
	margin-bottom: 2rem;
}

.productInfo table
{
	width: 100%;
	border-spacing: 1px;
	background-color: var(--bglight);
	margin-top: 3rem;
}
.productInfo table thead td
{
	background-color: var(--blue);
	color: var(--white);
}
.productInfo table td
{
	padding: 7px 14px;
	line-height: 18px;
}
.productInfo table tbody tr:nth-child(odd) td
{
	background-color: var(--white);
}
.productInfo table tbody td:nth-child(even)
{
	font-weight: bold;
	color: var(--black);
}
.productInfo table td:nth-child(even)
{
	text-align: right;
}
.main>div .catalog_on_main
{
	text-align: center;
	align-items: center;
	min-height: -webkit-fit-content;
	/*height: 25vh;*/
	padding: 8% 0 5%;
	background-color: #fff;
}
.catalog_on_main .razdeli
{
	justify-content: center;
}

@media all and (min-width: 1101px)
{
	.align-center
	{
		text-align: center;
	}
	.width90
	{
		padding: 0 5%;
	}
	.preims
	{
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		grid-column-gap: 98px;
		grid-row-gap: 30px;
		margin-top: 50px;
	}
	.main>div.blackfooter
	{
		height: 25vh  !important;
	}
	.main>div.last-page
	{
		height: 75vh;
		min-height: -webkit-fit-content;
	}
	.full>div.leftfix.withlogo
	{
		grid-template-rows: 1fr 2fr 160px;	
	}
	.full>div.leftfix.withlogo .logo 
	{
		display: block;
	}
	.logo>a>img 
	{
		display: block;
		width: 156px;
	}
	.fullcontactdiv>div:nth-child(3)
	{
		display: flex;
		align-items: flex-end;
	}

	.mob
	{
		display: none;
	}
}

@media all and (max-width: 1330px)
{
	.main>div
	{
		padding-left: 3%;
		padding-right: 3%;
	}
	.raketa-list
	{
		gap: 40px;
	}
	.preims 
	{
		gap: 48px;
	}
	.main>div.blackfooter
	{
		padding: 5% 5%;
		gap: 5%;
	}
}
@media all and (max-width: 1100px)
{
	html,body 
	{
		font-size: 12px;
	}
	.main>div
	{
		height: auto;
	}
	.full
	{
		display: block;
	}

	.full>div.leftfix
	{
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		z-index: 5;
		background-color: var(--white);
		gap: 30px;
	}
	.full>div.leftfix .menu
	{
		text-align: center;
		font-size: 1.2rem;
		gap: 30px;
	}
	.leftfix .contacts>a 
	{
		display: flex;
		justify-content: center;
		align-items: center;
		width: 2.6rem;
		height: 2.6rem;
		font-size: 1.3rem;
	}
	.leftfix .contacts
	{
		gap: 20px;
	}
	.full>div.leftfix, .main .separate
	{
		display: none;
	}
	.preims>div
	{
		grid-template-columns: 40px 1fr;
		grid-gap: 12px;
		margin-top: 25px;
	}
	.preims .icon 
	{
		font-size: 18px;
		width: 40px;
		height: 40px;
	}
	.preims .info .title 
	{
		display: block;
		margin: 1px 0 5px;
		font-size: 1.16rem;
	}
	.main .first-page
	{
		height: auto;
		min-height: 0;
		background-color: #f3f3f3;
		background-position: 74% 100%;
		background-size: 190%;
		padding: 72px 16px 50px;
	}
	.hero-panel
	{
		max-width: none;
		padding: 1.5rem 1.25rem;
		border-radius: 22px;
		gap: 0.95rem;
	}
	.main .first-page .title>img
	{
		width: 220px;
	}
	.main .first-page h1
	{
		font-size: 2rem;
		max-width: none;
	}
	.hero-text
	{
		font-size: 1rem;
		line-height: 1.6;
	}
	.hero-actions
	{
		flex-direction: column;
	}
	.hero-actions .button
	{
		width: 100%;
	}
	.hero-points
	{
		display: grid;
		grid-template-columns: 1fr;
	}
	h3 
	{
		text-align: left;
		font-size: 1.5rem;
	}
	.map h3 
	{
		font-size: 1.1rem;
		text-align: center;
		width: 280px;
		margin: 0 auto;
	}
	.button
	{
		height: 42px;
		min-width: 0;
		padding: 0 1rem;
	}
	.map-footnote
	{
		font-size: 1rem;
	}
	.main>div
	{
		padding: 50px 5%;
	}
	.main>div.map
	{
		height: 75vh;
	}
	.areasofuse
	{
		top: 0;
		bottom: 0;
		left: 0;
		right: 0;
	}
	.main-page4 .zindex2
	{
		padding: 0 15px;
	}
	.main>div.main-page4
	{
		background-size: 100%;
		background-repeat: repeat;
	}
	.main>div.blackfooter
	{
		grid-template-columns: 1fr;
		grid-gap: 30px;
	}
	.fullcontactdiv 
	{
		grid-template-columns: 1fr;
		padding: 1.5rem 1.25rem;
		border-radius: 22px;
	}
	.fullcontactdiv>div>img
	{
		width: 80px;
	}
	.raketa-list
	{
		flex-direction: column;
		gap: 0;
	}
	.raketa-list>ul
	{
		margin: 0;
	}
	.raketa-list>ul>li
	{
		padding: 3px 0 2px 29px;
	}
	.main-page4 .zindex2 p 
	{
		margin: 15px 0;
	}
	.raketa-list>img
	{
		position: absolute;
		width: 120px;
		right: -15px;
		top: 40px;
	}
	.contacts-list
	{
		margin: 15px auto;
	}
	.contacts-list>div
	{  
		gap: 5px;
	}
	.contacts-list a 
	{
		font-size: 1.05rem;
		padding: 0.7rem 0.85rem;
	}
	.fullcontactdiv 
	{
		gap: 0;
	}
	.fullcontactdiv>div:first-child>img
	{
		margin: -20px 0 10px;
	}
	.fullcontactdiv>div:last-child
	{
		text-align: right;
	}
	.fullcontactdiv h3
	{
		text-align: center;
	}
	.main>div.blackfooter
	{
		padding: 50px 24px;
	}
	.blackfooter .ftitle
	{
		font-size: 1.33rem;
	}
	.menu-a
	{
		display: flex;
		justify-content: center;
		align-items: center;
		position: absolute;
		top: 20px;
		right: 20px;
		width: 50px;
		height: 46px;
		border-radius: 4px;
		background-color: var(--blue);
		color: var(--white);
		z-index: 3;
	}
	.close
	{
		display: flex;
		font-size: 34px;
		position: absolute;
		top: 30px;
		right: 30px;
	}
	.main .requisites 
	{
		padding: 10% 5% 40%;
		background: url('/images/mappointmob.png') center center no-repeat;
		background-size: auto 100%;
	}
	.main .requisites .requisites_info 
	{
		gap: 15px;
		width: 100%;
		padding: 25px 22px;
	}
	.main .requisites .requisites_info h3 
	{
		text-align: center;
	}
	.razdeli 
	{
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		grid-gap: 1rem;
	}
	.razdeli:not(.product_list)>a
	{
		width: auto;
		padding: 1rem 0.8rem;
	}
	.headline
	{
		flex-wrap: wrap;
		gap: 1rem;
		margin-bottom: 2rem;
	}
	.headline h1
	{
		font-size: 2rem;
	}
	.search_div
	{
		width: 100%;
	}
	.razdeli.product_list
	{
		grid-template-columns: 1fr;
	}
	.product_card
	{
		border-radius: 18px;
	}
	.product_card__image
	{
		height: 220px;
		padding: 1rem 0.85rem 0.8rem;
	}
	.product_card__title
	{
		font-size: 1rem;
		min-height: 0;
	}
	.product_card__feature
	{
		font-size: 0.9rem;
		min-height: 0;
	}
	.product_card__description
	{
		font-size: 0.92rem;
		min-height: 0;
	}
	.product_card__more
	{
		width: 100%;
		min-width: 0;
	}
	.razdeli.product_list.razdeli_list .product_card
	{
		flex-direction: column;
		min-height: 0;
	}
	.razdeli.product_list.razdeli_list .product_card__image
	{
		flex: none;
	}
	.razdeli.product_list.razdeli_list .product_card__body
	{
		padding: 1rem 1rem 1.1rem;
		border-left: none;
		border-top: 1px solid rgba(130, 144, 164, 0.18);
	}
	.razdeli.product_list.razdeli_list .product_card__actions
	{
		justify-content: center;
	}
	.razdeli.razdeli_list, .colomns2 {
		grid-template-columns: repeat(1, 1fr);
	}
	.bread_crumbs
	{
		width: calc(100% - 60px);
	}
}