a {
	cursor: pointer;
}

h2 {
	color: #222840;
	font-weight: 300;
	margin-bottom: 1.5rem;
	font-family: "Open Sans Condensed";
}

.subtitle {
	font-size: 59px;
	font-weight: 700;
	color: #222840;
}
.content {
	margin-bottom: auto;
	flex-grow: 1;
	/*height: 100vh;*/
	margin: 2rem 0;
}

/* lang  Стилизация выбор языка*/

.lang {
	position: relative;
	z-index: 10;
	text-align: center;
	background: rgba(157, 157, 157, 0.3);
	perspective: 700px;

	margin-left: 20px;
}

.lang_fixed {
	position: fixed;
	right: 20px;
	top: 20px;
	z-index: 9999;
}

.lang__link {
	cursor: pointer;
	transition: 0.3s all;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	flex-shrink: 0;
	box-sizing: border-box;
	text-decoration: none;
	border-radius: 2px;
	padding: 6px;
}

.lang__img {
	width: 22px;
	height: 18px;
	flex-shrink: 0;
	font-size: 10px;
	display: block;
	transition: 0.3s all;
}

.lang__link_sub:hover {
	filter: drop-shadow(0 0 3px rgb(136, 136, 136)) brightness(130%);
}

.lang__name {
	color: #737b84;
	font-size: 12px;
	line-height: 12px;
	flex-shrink: 0;
	text-transform: uppercase;
}

.lang__link_sub {
	width: 100%;
	height: auto;
	position: relative;
	padding: 0;
	margin-bottom: 5px;
}
.lang__link_sub:last-child {
	margin-bottom: 2px;
}

.lang__list {
	background: rgba(157, 157, 157, 0.3);
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	width: 100%;
	opacity: 0;
	visibility: hidden;
	transition: 0.3s all;
	transform: rotateX(-90deg);
	position: absolute;
	left: 0;
	top: 100%;
	z-index: 10;
	line-height: 13px;
	padding: 4px;
	transform-origin: center top;
	box-sizing: border-box;
}

.lang:hover .lang__list {
	opacity: 1;
	visibility: visible;
	transform: rotateX(0);
}

.lang__link_select {
	align-items: flex-start;
	text-align: center;
	font-size: 0;
}

.nav-list {
	flex-wrap: wrap;
	font-size: 14px;
	margin: 3.5rem 0 1.25rem 0;
	color: #8f929e;
}

.cat-nav {
	flex-wrap: wrap;
	color: #8f929e;
	margin: 3.5rem 0 4rem 0;
}

td,
th {
	font-size: 14px;
}

tr > *:nth-child(4) {
	word-break: keep-all;
}

ul .arrow {
	margin: 0 0.5rem;
}
.content h1 {
	font-size: 59px;
	font-weight: 700;
	color: #222840;
}

.content_inner {
	width: 100%;
}
.sidebar {
	position: relative;
	float: left;
	border-radius: 5px;
	background-color: #fff;
	width: 19%;
	/* padding-top: 10px; */
	height: auto;
}

.sticky {
	position: fixed;
	/* top: 80px; */
	z-index: 101;
}

.stop {
	position: relative;
	/* bottom: 0; */
	z-index: 101;
}

.sidebar-wrap {
	position: relative;
	width: 100%;
	padding-top: 10px;
	overflow: hidden;
}

.sidebar span {
	display: block;
	color: #606475;
	margin-top: 10px;
	line-height: 1.5;
	font-size: 14px;
}

.sidebar ul {
	overflow: hidden;
}
.sidebar ul li {
	padding: 0px 10px 0px 20px;
	position: relative;
	line-height: 1;
}

.sidebar-show-more {
	position: absolute !important;
	top: 50%;
	right: 10px;
	transform: translateY(-50%) !important;

	width: 25px;
	height: 25px;

	background-repeat: no-repeat;
	background-position: center;
	background-size: 15px 15px;
	background-image: url(../i/arrow.svg);

	filter: invert();

	z-index: 5;
}

.sidebar-btn--back {
	left: 10px;
	transform: translateY(-50%) rotate(180deg) !important;
}
.sidebar-btn--now:hover {
	transform: translateY(0) !important;
}
.sidebar-btn--now {
	left: 0;
}

@keyframes sidebar-new-open--before {
	0% {
		/* clip: rect(auto, auto, auto, 0); */
		/* width: 0; */
		transform: translateX(-100%);
		background-color: rgb(190, 190, 190);
		/* clip-path: polygon(0 0, 0 100%, 0 100%, 0 0); */
	}
	100% {
		/* clip: rect(auto, auto, auto, 0); */
		/* width: 100%; */
		transform: translateX(0);
		background-color: rgb(255, 255, 255);
		/* clip-path: polygon(0 0, 0 100%, 100% 100%, 100% 0); */
	}
}
@keyframes sidebar-new-open--next {
	0% {
		/* clip: rect(auto, auto, auto, 0); */
		/* width: 0; */
		transform: translateX(100%);
		background-color: rgb(190, 190, 190);
		/* clip-path: polygon(100% 0, 100% 100%, 100% 100%, 100% 0); */
	}
	100% {
		/* clip: rect(auto, auto, auto, 0); */
		/* width: 100%; */
		transform: translateX(0);
		background-color: rgb(255, 255, 255);
		/* clip-path: polygon(0 0, 0 100%, 100% 100%, 100% 0); */
	}
}

.sidebar-list {
	/* overflow-y: auto !important;
	max-height: 95vh; */
}
.sidebar-list--next,
.sidebar-list--before {
	position: relative;
	top: 0;
	background-color: #ffffff;

	width: 100%;
	/* padding-top: 10px; */
	overflow: hidden;
}
.sidebar-list--next {
	right: 0;
	animation: sidebar-new-open--next 0.52s forwards;
}
.sidebar-list--before {
	left: 0;
	animation: sidebar-new-open--before 0.52s forwards;
}
.sidebar-list__item span {
	max-width: 90%;
}
.sidebar-list__item--small span {
	font-size: 0.8rem;
}
.sidebar-list__item--b {
	font-weight: bold;
}

.sidebar ul li::after {
	content: "";
	position: absolute;
	width: 100%;
	height: 1px;
	background-color: #ebebec;

	left: 0;
	bottom: 0px;
}
.sidebar ul li a {
	padding: 0 50px 0 0;

	text-decoration: none;
	position: relative;
	width: 100%;
}

.sidebar ul li a span:hover,
.sidebar ul li a span:active,
.sidebar ul li a span:focus {
	color: #222840;
}

.sidebar ul li a span {
	padding-left: 15px;
}

.list_more {
	display: none;
}
.list_more a:first-child {
	padding: 0;
}
.sidebar .show_more,
.roll_up {
	display: inline-block;
	position: relative;
	background-color: transparent;
	border-bottom: 1px dashed #f50000;
	color: #f50000;
	cursor: pointer;
	font-size: 14px;
	margin: 14px 0 24px 36px;
}
.roll_up {
	display: none;
}
.sidebar .roll_up::before {
	content: "";
	position: absolute;
	width: 8px;
	height: 5px;
	background: url(../i/form_more.svg) no-repeat center;
	left: -16px;
	bottom: 8px;
	transform: rotate(180deg);
}
.sidebar .show_more::before {
	content: "";
	position: absolute;
	width: 8px;
	height: 5px;
	background: url(../i/form_more.svg) no-repeat center;
	left: -16px;
	bottom: 8px;
}

.flex {
	display: flex;
}
.flex-direction-column {
    flex-direction: column-reverse;
}

.products {
	width: 100%;
}
.products_inner {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	width: 100%;

}
.products-overblock {
	justify-content: flex-start !important;
}
.products-overblock .product-card {
	display: block;
	padding-left: 0;

	overflow: hidden;

	width: 23.5% !important;
	min-width: 23.5% !important;
	max-width: 23.5% !important;
}
.products_inner .product-card,
.list_more .product-card {
	width: 25%;
	min-width: 25%;
	max-width: 25%;
}

.products-overblock .product-card:not(:nth-child(4n)) {
	margin-right: 1.5%;
}

.product-card {
	flex: 1 22%;
	padding: 0 0 2% 2%;
	max-width: 50%;
}

.product-categories {
	padding-left: 2rem;
}

.product-categories ul li a span {
	line-height: 30px;
}
.product-categories span {
	color: #606475;
	font-size: 14px;
	margin: 0 0 0.6rem 0;
}

.product-categories h5 {
	font-family: "Manrope";
	font-weight: 600;
	font-size: 16px;
	margin: 1rem 0 0.6rem 0;
}

.product-categories {
	padding-left: 2rem;
}

.wrap {
	width: 100%;
}

.product-image img {
	height: 250px;
	min-width: 100%;
	display: flex;
	justify-content: center;
	/*min-height: 245px;*/
	border-radius: 5px;
	object-fit: cover;
}

.products .show_more {
	position: relative;
	color: #f50000;
	display: inline-block;
	width: -webkit-max-content;
	width: -moz-max-content;
	width: max-content;
	cursor: pointer;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
	font-size: 14px;
	margin: 0 0 0.6rem 1rem;
}

.products .show_more::before {
	content: url(../i/show_more1.svg);
	position: absolute;

	left: -14px;
	top: -1px;
	width: 8px;
	height: 9px;
}

.list_more {
	display: none;
}

.products .roll_up {
	display: none;
	position: relative;
	color: #f50000;

	width: -webkit-max-content;
	width: -moz-max-content;
	width: max-content;
	cursor: pointer;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
	font-size: 14px;
	margin: 0 0 0.6rem 1rem;
}

.products .roll_up::before {
	content: url(../i/show_more1.svg);
	position: absolute;

	left: -18px;
	top: -1px;
	width: 8px;
	height: 9px;
}

.products .btn1 {
	width: 100%;
	margin-left: 1rem;
	margin-bottom: 80px;
	padding: 25px 0;
	color: #f50000;
	background-color: transparent;
	border: 1px solid #f50000;
	border-radius: 5px;
	font-family: "Manrope";
	font-size: 14px;
	transition: 500ms;
	cursor: pointer;
}

.products .btn1:hover {
	background-color: #f50000;
	color: white;
	transition: 500ms;
}

/*--------------- категория ----------------- */
.category p {
	color: #606475;
	font-size: 14px;
	margin: 0 0 0.6rem 0;
}

.category h5 {
	font-family: "Manrope";
	font-weight: 600;
	font-size: 16px;
	margin: 1rem 0 0.6rem 0;
}

.sidebar a .active::before {
	content: url(../i/show_more1.svg);
	position: absolute;
	width: 8px;
	height: 9px;
	left: 0px;
	top: 100%;
	transform: translateY(-40%);
}

.sidebar a .active {
	color: #222840;
}

/*--------------- Карточка ----------------- */
.sb-cards {
	height: max-content;
}

.sb-cards b {
	font-family: "Manrope";
	font-weight: 600;
	font-size: 16px;
	color: #222840;
	display: block;
	line-height: 1.5;
	padding: 10px 0;
}

.sb-cards ul li a span {
	padding-left: 15px;
}

.card {
	padding-left: 50px;
	width: 82%;
	float: right;
}

.card-info {
	margin-bottom: 4rem;
}

.card-info_image {
	width: 45%;
}

.card-info_image img {
	border-radius: 5px;
}

.card-info_text {
	width: 55%;
	margin-left: 32px;
}

.card-info_text h1 {
	font-size: 40px;
	font-family: "Open Sans Condensed";
}

.card-info_text h1 span {
	font-weight: 300;
	color: #8f929e;
	font-family: "Open Sans Condensed";
}

/* .card-info_text h2 span{
        font-weight: 300;
        color: #8F929E;
        font-family: 'Open Sans Condensed';
    } */

.card-info_text b {
	color: #222840;
	font-weight: 600;
	font-family: "Manrope";
	font-size: 1.5rem;
}

.card-info_text .btn > span {
	padding: 1.5rem 4.5rem;
}

.card-info_text p {
	margin: 0.5rem 0;
	color: #606475;
}

.card-info_text svg {
	margin: auto 1rem auto 0;
}

.card-info_text .pickup svg {
	margin: auto 1.5rem auto 0;
}

.card-info_text p span {
	color: #222840;
}

.card-info__price {
	/*display: flex;
	justify-content: space-between;
	align-items: center;*/
}

.card-info__btn {
	position: relative;
	display: block;
	margin-top: 30px;
}

.card__price {
	display: block;
	/*margin-bottom: 20px;*/
}

.card-info__prices {
	margin-bottom: 40px;
}

@media (min-width: 950px) {
	.card-info__price {
		display: flex;
		justify-content: space-between;
		align-items: flex-start;
	}
}
@media (min-width: 1151px) {
	.card-info__price {
		display: block;
		margin-bottom: 60px;
	}
}
@media (min-width: 1570px) {
	.card-info__price {
		display: flex;
		justify-content: space-between;
		align-items: flex-start;
	}
	.card-info__btn {
		margin-top: 0;
	}
}

.card-info-bottom {
	display: flex;
	justify-content: space-between;
	flex-direction: column;

}

@media (min-width: 1170px) {
	.card-info-bottom {
		flex-direction: row;
        align-items: flex-end;
	}
}

@media (min-width: 1600px) {
	.card-info-bottom__left,
	.card-info-bottom__right {
		width: 48%;
	}
}

.card-info__other {
	font-size: 20px;
}

.card-info-bottom__right {
	padding-top: 15px;
}
.cost__title {
	font-size: 24px;
	font-family: "Open Sans Condensed";
	margin: 0 0 10px 0;
}

.card-info__item {
	margin-bottom: 7px;
}

.cost {
	width: 100%;
	max-width: 460px;
	/*display: flex;*/
}

.cost__name {
	display: block;
}

.cost__dotted {
	position: relative;
	display: block;
	flex-grow: 1;
	/*margin: 0 4px;*/
	bottom: 3px;
	border-bottom: 1px dotted #000;
}

.cost__price {
	display: block;
}

.available {
	margin-top: 1rem;
}

.available p span {
	color: #f50000;
	font-weight: 600;
	font-size: 1rem;
}

.description {
    overflow: auto;
}

.description p {
	color: #606475;
	line-height: 1.8;
}



.specifications {
	margin-bottom: 30px;
    max-width: 100%;
}

.oglavl ul li {
	position: relative;
	margin: 0.5rem 0;
	list-style: none;
	padding-left: 2rem;
	line-height: 1.4;
}

.oglavl li .units {
	order: 2;
	/*white-space: nowrap;*/
}

.oglavl li {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	justify-content: flex-end;
	font-size: 1rem !important;
}

.oglavl li::after {
	content: "";
	order: 1;
	border-bottom: 2px dotted #606475;
	flex-grow: 1;
	margin: 0.3rem 0.5rem;
	display: block;
}

ul.oglavl span.text {
	color: #606475;
	font-size: 16px;
	font-family: "Manrope";
	position: relative;
	background-color: #f4f5f6;
}

ul.oglavl span.units {
	display: inline;
	text-align: right;

	color: #222840;
	font-size: 16px;
	font-family: "Manrope";
	font-weight: 600;
	background-color: #f4f5f6;
}

.advant {
	display: flex;
	flex-wrap: wrap;
	width: 90%;
}

.advant-item {
	width: 25%;
	padding: 0 2% 0 0;
}

.advant-item_text span {
	color: #222840;
}

.advant-item_image {
	width: 100%;

	margin: 0 auto 0.3rem auto;
}

.advant-item_image img {
	margin: auto;
	display: block;
}

.advantages .img {
	height: 91px;
}

.card-info p {
	color: #606475;
}

table {
	width: 100%;
}

th:first-child {
	border-radius: 5px 0 0 0;
}

th:nth-child(6) {
	border-radius: 0 5px 0 0;
}

.t-order {
	color: transparent;
}

@media (min-width: 768px) {
	tr:nth-child(odd):hover {
		background: #f50000;

		color: #ffffff;
		/* -webkit-transition: background 0.5s;
			-o-transition: background 0.5s;
			transition: background 0.5s; */
	}

	tr:nth-child(even):hover {
		background: #f50000;

		color: #ffffff;
		/* -webkit-transition: background 0.5s;
			-o-transition: background 0.5s;
			transition: background 0.5s; */
	}
}

tr:hover .t-order {
	color: #222840;
}

tr:hover .t-order a:nth-child(odd) {
	background: #ffffff;
}

tr:hover .t-order a:nth-child(even) {
	background: #f4f5f6;
}

/* tr:hover svg circle[id="circle1"]{
        fill: #F84D4D;
    }
    tr:hover svg circle[id="circle3"]{
        fill: #ffffff;
    } */

.t-order {
	text-align: center;
	padding: 18px 0px;
}

.t-order a {
	padding: 13px 30px;
}

th {
	padding: 8px 24px;
	text-align: left;
	background: #dbdbdb;
	color: #222840;
}

td {
	vertical-align: middle;
	padding: 8px 12px;
}
tr:nth-child(odd) {
	background: #ffffff;
	color: #606475;
}
tr:nth-child(even) {
	background: #f4f5f6;
	color: #606475;
}

.t-series:nth-child(odd) {
	color: #8f929e;
}

.t-series:nth-child(even) {
	color: #8f929e;
}

tr:hover .t-series:nth-child(odd) {
	color: #ffffff;
}

tr:hover .t-series:nth-child(even) {
	color: #ffffff;
}

.c-card {
	display: flex;
}

.c-card .sb-cards {
	float: unset;
}

.c-card .card {
	float: unset;
}

.content-card {
	padding-bottom: 70px;
}

.tb-mob {
	display: none;
}

/* производство-------------------------- */

#prod_info {
	padding-bottom: 1rem;
	padding-top: 5rem;
}
.prod_info .heading {
	position: relative;
	margin-left: 180px;
	margin-top: 2.5rem;
	margin-bottom: 3rem;
}
.prod_info .heading:before {
	content: "";
	position: absolute;
	left: -14rem;
	top: 15rem;
	width: 432px;
	height: 432px;
	background-color: #e4e7eb;
	border-radius: 50%;
	z-index: 1;
}
.prod_info .heading:after {
	content: "";
	position: absolute;
	left: -8rem;
	top: -3.8rem;
	width: 531px;
	height: 531px;
	background-color: #fff;
	-webkit-box-shadow: -2rem 2rem 4rem -1rem rgba(0, 0, 0, 0.1);
	box-shadow: -2rem 2rem 4rem -1rem rgba(0, 0, 0, 0.1);
	border-radius: 50%;
	z-index: 1;
}
.prod_info .heading h1 {
	margin-bottom: 1rem;
	position: relative;
	z-index: 2;
}
.prod_info .heading h1 i {
	font-weight: 700;
}
.prod_info .heading p {
	margin: 0;
	color: #606475;
	padding-left: 3rem;
	padding-top: 0.5rem;
	padding-bottom: 0.5rem;

	position: relative;
	z-index: 2;
}

.prod_info .heading p span {
	font-weight: 700;
}

.prod_info .heading p:nth-child(2)::before {
	content: url(../i/production/icon1.svg);
	position: absolute;
	left: 0;
	top: 1.25rem;
	width: 1rem;
	height: 5px;
}
.prod_info .heading p:nth-child(3)::before {
	content: url(../i/production/icon2.svg);
	position: absolute;
	left: 0;
	top: 1.25rem;
	width: 1rem;
	height: 5px;
}

.prod_info .heading p:nth-child(4)::before {
	content: url(../i/production/icon3.svg);
	position: absolute;
	left: 0;
	top: 1.25rem;
	width: 1rem;
	height: 5px;
}
.prod_info .heading p span {
	color: #222840;
}
.prod_info {
	max-width: 1753px;
	margin: 0 auto;
	background-color: #c0cfdd;
	background-image: url(../i/production/pr_bg.jpg);
	background-position: 300% 100%;
	background-repeat: no-repeat;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	position: relative;
}

.prod_info .button {
	margin-top: 4rem;
	margin-left: 2rem;
	margin-bottom: 1rem;
	background: transparent;
}

.prod_info .btn {
	background: transparent;
}

.prod_info .btn > span {
	padding: 2rem 4.5rem;
}

.prod_content h1 span {
	font-weight: 300;
}

.prod_content h2 span {
	font-weight: 300;
}

.prod_content h1 {
	margin: 0 0 2rem;
}

.prod_content p {
	color: #606475;
}

.prod_content .sidebar {
	width: 19%;
}

/* карточка производство==================   */
.card-info_li {
	margin-left: 1rem;
	width: 95%;
}
.card-info_li ul:first-child {
	margin: 0 2rem 0 0;
}

.card-info_li ul li:first-child {
	margin-top: 0rem;
}
.card-info_li ul {
	width: 50%;
}

.card-info_li li {
	margin-top: 1rem;
	font-weight: 400;
	position: relative;
}

.card-info_li li span {
	color: #606475;
	font-weight: 400;
}

.card-info_text .button p {
	margin-left: 1rem;
}

.card-info_li li::before {
	content: "";
	position: absolute;
	width: 13px;
	height: 13px;
	background: url(../i/pay_li.svg);
	top: 6px;
	left: -20px;
	bottom: 0;
}

.sb-cards-prod {
	width: 19%;
}

/* УСлуги================== */

#services {
	padding-bottom: 2rem;
	padding-top: 5rem;
}
.services .heading {
	position: relative;
	margin-left: 180px;
	margin-top: 2.5rem;
	margin-bottom: 7rem;
}
.services .heading:before {
	content: "";
	position: absolute;
	left: -14rem;
	top: 15rem;
	width: 425px;
	height: 425px;
	background-color: #e4e7eb;
	border-radius: 50%;
	z-index: 1;
}
.services .heading:after {
	content: "";
	position: absolute;
	left: -8rem;
	top: -3.8rem;
	width: 531px;
	height: 531px;
	background-color: #fff;
	-webkit-box-shadow: -2rem 2rem 4rem -1rem rgba(0, 0, 0, 0.1);
	box-shadow: -2rem 2rem 4rem -1rem rgba(0, 0, 0, 0.1);
	border-radius: 50%;
	z-index: 1;
}
.services .heading h1 {
	margin-bottom: 1rem;
	position: relative;
	z-index: 2;
}
.services .heading h1 i {
	font-weight: 700;
}
.services .heading p {
	margin: 0;
	color: #606475;
	padding-left: 3rem;
	padding-top: 0.5rem;
	padding-bottom: 0.5rem;

	position: relative;
	z-index: 2;
}
.services .heading p:nth-child(2)::before {
	content: url(../i/services/icon1.svg);
	position: absolute;
	left: 0;
	top: 1.25rem;
	width: 1rem;
	height: 5px;
}
.services .heading p:nth-child(3)::before {
	content: url(../i/services/icon2.svg);
	position: absolute;
	left: 0;
	top: 1.25rem;
	width: 1rem;
	height: 5px;
}

.services .heading p:nth-child(4)::before {
	content: url(../i/services/icon3.svg);
	position: absolute;
	left: 0;
	top: 1.25rem;
	width: 1rem;
	height: 5px;
}
.services .heading p span {
	color: #222840;
}
.services {
	max-width: 1753px;
	margin: 0 auto;
	background-color: #c0cfdd;
	background-image: url(../i/services/bg_ser.jpg);
	background-position: 0% 100%;
	background-position-x: 100%;
	background-repeat: no-repeat;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	position: relative;
}

.services .button {
	margin-top: 4rem;
	margin-left: 2rem;
	margin-bottom: 1rem;
	background: transparent;
}

.services .btn {
	background: transparent;
}

.services .btn > span {
	padding: 2rem 4.5rem;
}

.sb-serv {
	width: 19%;
}

.pr-serv {
	width: 100%;
}

/* Закупка==================== */
#procurement {
	padding-bottom: 2rem;
	padding-top: 5rem;
}
.procurement .heading {
	position: relative;
	margin-left: 185px;
	margin-top: 2.5rem;
	margin-bottom: 11rem;
}
.procurement .heading:before {
	content: "";
	position: absolute;
	left: -15rem;
	top: 15rem;
	width: 432px;
	height: 432px;
	background-color: #e4e7eb;
	border-radius: 50%;
	z-index: 1;
}
.procurement .heading:after {
	content: "";
	position: absolute;
	left: -8.2rem;
	top: -4rem;
	width: 531px;
	height: 531px;
	background-color: #fff;
	-webkit-box-shadow: -2rem 2rem 4rem -1rem rgba(0, 0, 0, 0.1);
	box-shadow: -2rem 2rem 4rem -1rem rgba(0, 0, 0, 0.1);
	border-radius: 50%;
	z-index: 1;
}
.procurement .heading h1 {
	margin-bottom: 1rem;
	position: relative;
	z-index: 2;
}
.procurement .heading h1 i {
	font-weight: 400;
}
.procurement .heading p {
	margin: 0;
	color: #606475;
	padding-left: 3rem;
	padding-top: 0.5rem;
	padding-bottom: 0.5rem;

	position: relative;
	z-index: 2;
}
.procurement .heading p:nth-child(2)::before {
	content: url(../i/procurement/icon1.svg);
	position: absolute;
	left: 0;
	top: 1.25rem;
	width: 1rem;
	height: 5px;
}
.procurement .heading p:nth-child(3)::before {
	content: url(../i/procurement/icon2.svg);
	position: absolute;
	left: 0;
	top: 1.25rem;
	width: 1rem;
	height: 5px;
}

.procurement .heading p:nth-child(4)::before {
	content: url(../i/procurement/icon3.svg);
	position: absolute;
	left: 0;
	top: 1.25rem;
	width: 1rem;
	height: 5px;
}
.procurement .heading p span {
	color: #222840;
}
.procurement {
	max-width: 1753px;
	margin: 0 auto;
	background-color: #c0cfdd;
	background-image: url(../i/procurement/bg_proc.jpg);
	background-position: 0% 100%;
	background-size: 100%;
	background-repeat: no-repeat;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	position: relative;
}

.procurement .button {
	margin-top: 1rem;
	margin-left: 2rem;
	margin-bottom: 1rem;
	background: transparent;
}

.procurement .btn {
	background: transparent;
}

.procurement .btn > span {
	padding: 2rem 4rem;
}

.proc-products {
	float: none;
	margin-bottom: 4rem;
}

.proc_content .sidebar {
	width: 15%;
	margin-right: 1rem;
}

.proc_content h1 span {
	font-weight: 300;
}

.proc_content h2 span {
	font-weight: 300;
}

/* Карточка закупка лома============ */

.proc-card .card-info_text {
	width: 46%;
}

.proc-card .button {
	margin-top: 3rem;
}

.proc-card li span {
	font-weight: 700;
	color: #222840;
}

.proc-card .description {
	width: 80%;
}

.procedure {
	display: flex;
	flex-wrap: wrap;
	width: 74%;
}

.procedure p {
	font-size: 1rem;
	font-weight: 400;
	color: #606475;
	margin-top: 0.5rem;
	margin-bottom: 0;
}

.procedure p > strong {
	font-size: 1.125rem;
	color: #222840;
	line-height: 1;
	display: block;
	padding-top: 0.2rem;
	font-weight: 600;
}

.procedure p > span {
	font-size: 5.5rem;
	display: block;
	font-weight: 700;
	color: #222840;
	line-height: 1;
	margin: 0 3rem;
}

.procedure_item {
	margin-right: 3rem;
	width: 27%;
	position: relative;
}

.procedure_item:nth-child(2)::before {
	content: url(../i/procurement-cards/icon_proc1.svg);
	position: absolute;
	left: -95px;
	top: 60px;
}

.procedure_item:nth-child(2)::after {
	content: url(../i/procurement-cards/icon_proc1.svg);
	position: absolute;
	left: 212px;
	top: 60px;
}

.proc-foot .block_12 .heading {
	margin-left: 224px;
	margin-top: 12.5rem;
	margin-bottom: 15rem;
}

.proc-foot .block_12 .heading:after {
	left: -8.2rem;
	top: -10.8rem;
	width: 500px;
	height: 500px;
}

.proc-foot {
	margin-bottom: 3rem;
}

.proc-foot .block_12 .heading:before {
	left: -14rem;
	top: 1rem;
	width: 400px;
	height: 400px;
}

/* CONTACT=================== */
.contact {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	position: relative;
}
.contact h1 {
	margin: 50px 0 27px 0;
}

.contact .b12_form {
	position: absolute;
	right: 0;
	top: -1.5rem;
	bottom: -1.5rem;
	background-color: #ffffff;
	max-width: 417px;
	margin-right: 3rem;
}
.contact .form {
	max-width: 417px;
	background-color: #fff;
	margin-top: 50px;
}

.contact .info {
	display: flex;
}
.info span {
	color: #222840;
}
.contact .contact_info {
	margin: 0 0 0 174px;
}

.contact .text p {
	margin: 25px 0 11px 0;
	font-weight: 600;
	text-transform: uppercase;
	color: #8f929e;
	letter-spacing: 0.15em;
	font-size: 0.875rem;
}
.contact_info :nth-child(2) {
	color: #606475;
}
.contact_info a:first-child {
	font-weight: 600;
	color: #222840;
	border: none;
}
.contact_info a {
	color: #f50000;
	padding-bottom: 4px;
	border-bottom: 1px dashed;
	text-transform: capitalize;
	line-height: 1.5;
}
.content-map {
	width: 100%;
	height: 547px;
}
.content-map #my-map {
	height: 100%;
}

.content-map {
	margin: -200px 0 0 0;
}

.contact-content {
	margin-bottom: 0rem;
}

/* ================================
===================================Pay */

.pay {
	background: #c0cfdd;
	position: relative;
}
#pay {
	padding: 3rem 5rem;
}
.pay .heading {
	position: relative;
	padding: 35px 0 205px 191px;
}

.pay .heading h1,
p,
ul,
button {
	position: relative;
	z-index: 2;
}

.pay .heading p {
	font-size: 1.02rem;
	margin: 26px 0 20px 0;
}

.pay .heading ul {
	margin: 13px 0 33px 0;
}

.pay .heading li {
	margin-top: 7px;
	margin-left: 23px;
	position: relative;
}

.pay .heading li::before {
	content: "";
	position: absolute;
	width: 13px;
	height: 13px;
	background: url(../i/pay_li.svg);
	top: 6px;
	left: -20px;
	bottom: 0;
}

.pay .heading .btn > span {
	padding: 1.6rem 3.6rem;
}
.pay .heading .btn {
	background: transparent;
}
.pay .heading::before {
	content: "";
	position: absolute;
	left: -3.6rem;
	top: 17rem;
	width: 424px;
	height: 424px;
	background-color: #e4e7eb;
	border-radius: 50%;
	z-index: 1;
}
.pay .heading::after {
	content: "";
	position: absolute;
	left: 3.8rem;
	top: -1.8rem;
	width: 531px;
	height: 531px;
	background-color: #fff;
	-webkit-box-shadow: -2rem 2rem 4rem -1rem rgba(0, 0, 0, 0.1);
	box-shadow: -2rem 2rem 4rem -1rem rgba(0, 0, 0, 0.1);
	border-radius: 50%;
	z-index: 1;
}
.pay img {
	position: absolute;
	right: 0;
	bottom: 0;
}

/* ===================
=================================Delivery */

#delivery {
	padding: 3rem 0rem 0 0rem;
}

.delivery .heading {
	background: url(../i/delivery/delivery_BG.jpg) no-repeat;
	background-position-y: 0px;
	max-width: 1753px;
	margin: 0 auto;
}
.delivery .heading {
	text-align: left;
	margin-bottom: 4rem;
	position: relative;
	padding: 30px 0 370px 193px;
}

.delivery .heading h1 {
	margin-bottom: 2rem;
}
.delivery .heading i {
	font-weight: 400;
}
.delivery .heading p {
	font-size: 1rem;
	max-width: 372px;
}

.delivery .heading::before {
	content: "";
	position: absolute;
	left: -3.6rem;
	top: 17rem;
	width: 424px;
	height: 424px;
	background-color: #e4e7eb;
	border-radius: 50%;
	z-index: 1;
}

.delivery .heading::after {
	content: "";
	position: absolute;
	left: 3.8rem;
	top: -1.8rem;
	width: 531px;
	height: 531px;
	background-color: #fff;
	-webkit-box-shadow: -2rem 2rem 4rem -1rem rgba(0, 0, 0, 0.1);
	box-shadow: -2rem 2rem 4rem -1rem rgba(0, 0, 0, 0.1);
	border-radius: 50%;
	z-index: 1;
}

.delivery .heading h1 {
	z-index: 2;
	position: relative;

	width: 50%;
}
.footer {
	margin-top: auto;
}
#delivery #block_12 .footer {
	margin-bottom: 4rem;
	margin-top: 2rem;
}

#method {
	padding: 0 10rem 0;
	margin-bottom: 4rem;
}
.method {
	display: flex;
	margin-top: 47px;
}

.method_item {
	width: 240px;
	height: 135px;
	background-color: #fff;
	position: relative;
	margin-right: 27px;
	text-align: center;

	cursor: default;
}
.method_item img {
	position: absolute;
	top: -22px;
	left: 50%;
	transform: translate(-50%, 0);
	margin: 0;
}
.method p {
	color: #000;
	margin: 79px auto 35px;
}

#geography {
	padding: 0 8rem 0;
	margin-bottom: 4rem;
}
.geography {
	background: url(../i/delivery/delivery_geography.png) no-repeat;
	background-position: 34% 30%;
}
.geography h2 {
	text-align: center;
	color: #222840;
	width: 16%;
}

.geography i {
	font-weight: 700;
	border-bottom: 3px dashed #f50000;
	color: #f50000;
	font-style: normal;
}
.geography span {
	font-weight: 700;
}

.geography #advantages {
	margin-top: 300px;
	display: flex;
}

#advantages .advantages {
	margin-right: 60px;
}

#advantages .advantages .img {
	display: flex;
	justify-content: center;
	align-items: flex-end;
}
#advantages .advantages .img_item {
	height: min-content;
}

#advantages .advantages img {
	vertical-align: bottom;
}

#advantages .advantages p {
	color: #222840;
	vertical-align: bottom;
}
#advantages .advantages span {
	color: #606475;
}

#park {
	background: url(../i/delivery/car_park.png) no-repeat;
	background-position-x: 22%;
}
.park {
	padding: 0 0 18rem 8rem;
	margin-bottom: 4rem;
}
#park .park span {
	font-weight: 700;
}
#park .park i {
	font-weight: 700;
	color: #f50000;
	font-style: normal;
}

#delivery #block_12 .heading {
	margin-top: 4.5rem;
	padding: 0px 0 205px 0px;
}

#delivery #block_12 .heading p {
	font-size: 1rem;
}

@media (max-width: 1536px) {
	.sb-cards {
		width: 23%;
	}

	ul.oglavl span.units {
		left: 22rem;
	}
	.card-info_image {
		width: 60%;
	}

	.prod_info {
		background-position: -26% 100%;
	}

	.prod_content .sidebar {
		width: 22%;
	}

	.pr-card .card-info_image {
		width: 42%;
	}

	.contact-content img {
		margin: -260px 0 0 0;
	}

	.procedure {
		width: 90%;
	}

	#geography {
		padding: 0 3rem 0;
	}

	#method {
		padding: 0 5rem 0;
	}

	.park {
		padding: 0 0 21rem 5rem;
	}

	#park {
		background-position-x: 49%;
	}

	#advantages .advantages {
		margin: 0 2rem;
		width: 25%;
	}

	.delivery .heading {
		background-position-x: -81px;
	}

	.proc_content .sidebar {
		width: 18%;
		margin-right: 1rem;
	}

	.proc-products {
		width: 88%;
	}
}

@media screen and (max-width: 1440px) {
	.contact-content img {
		margin: -145px 0 0 0;
	}
	.contact h2 {
		font-size: 2rem;
	}
	.pay .heading {
		padding: 12px 0 150px 150px;
	}
	.pay .heading::after {
		left: 1.8rem;
	}
	.pay .heading::before {
		top: 13rem;
	}

	.proc-products {
		width: 85%;
	}

	.sb-serv {
		width: 25%;
	}

	.pr-serv .product-card {
		flex: 1 26%;
	}

	.geography h2 {
		width: 19%;
	}
	.geography #advantages {
		margin-top: 338px;
	}
	.geography {
		background-position: 44% 50%;
	}

	.sb-cards-prod {
		width: 23%;
	}
}

@media (max-width: 1367px) {
	.sidebar {
		width: 22%;
	}

	.sb-serv {
		width: 23%;
	}

	.pr-serv .product-categories {
		padding-left: 0rem;
	}

	.sb-cards {
		width: 27%;
	}

	.card {
		padding-left: 31px;
	}

	.card-info_text h1 {
		font-size: 34px;
		margin: 0 0 1rem;
	}

	.card-info_text .button {
		margin-top: 1rem;
	}

	.prod_info {
		background-position: 0% 100%;
	}

	.prod_content .sidebar {
		width: 24%;
	}

	.card-info_li {
		width: 100%;
	}

	.pay .heading::after {
		width: 501px;
		height: 501px;
	}
	.pay .heading::before {
		width: 394px;
		height: 394px;
	}
	.pay .heading ul {
		margin: 13px 0 20px 0;
	}
	.pay .heading p {
		margin: 20px 0;
	}

	.contact-content img {
		margin: -150px 0 0 0;
	}
	.contact h2 {
		margin: 40px 0 27px 0;
	}
	.contact .form {
		margin-top: 40px;
	}

	.procedure {
		width: 100%;
	}

	.proc-card .card-info_text {
		width: 54%;
	}

	#geography {
		padding: 0;
	}

	.geography h2 {
		width: 19%;
	}

	.park {
		padding: 0 0 18rem 0rem;
	}

	#method {
		padding: 0;
	}

	.proc_content .sidebar {
		width: 21%;
	}

	.proc_content .proc-products {
		width: 93%;
	}

	.sb-cards-prod {
		width: 24%;
	}
}

@media screen and (max-width: 1280px) {
	.cat-nav {
		margin: 2rem 0 2rem 0;
	}
}

@media screen and (max-width: 1279px) {
	.contact .form {
		max-width: 355px;
	}
	.pay .heading {
		padding: 12px 0 100px 130px;
	}
	.pay .heading p {
		margin: 10px 0;
	}
	.pay .heading::before {
		width: 364px;
		height: 364px;
		top: 11rem;
	}
	.pay .heading::after {
		width: 470px;
		height: 470px;
	}
}

@media (max-width: 1151px) {
	.content h1 {
		font-size: 40px;
	}

	.subtitle {
		font-size: 40px;
	}
	.sidebar {
		width: 27%;
	}

	.product-card {
		flex: 1 22%;
		padding: 0 0 2% 3%;
	}

	.products-overblock .product-card {
		display: block;
		padding-left: 0;

		overflow: hidden;

		width: 47% !important;
		min-width: 47% !important;
		max-width: 47% !important;
	}
	.products-overblock .product-card:not(:nth-child(4n)) {
		margin-right: 0;
	}
	.products-overblock .product-card:nth-child(odd) {
		margin-right: 3%;
	}

    .card-info {
        display: block;
    }

	.sb-serv {
		width: 27%;
	}

	.products_inner .product-card,
	.list_more .product-card {
		width: 50%;
		min-width: 50%;
		max-width: 50%;
	}

	.product-categories {
		padding-left: 0rem;
	}
	.product-card {
		flex: 1 48%;
	}

	.pr-serv .product-card {
		flex: 1 34%;
	}

	.t-order {
		padding: 8px 10px;
	}

	.t-order a {
		padding: 7px 10px 11px;
	}

	.card {
		padding-left: 47px;
	}

	.sb-cards {
		width: 30%;
	}

	.card-info {
		margin-bottom: 3rem;
	}

	.card-info_image {
		width: 80%;
	}

	.card-info_text {
		width: 80%;
		margin-left: 0px;
		margin-top: 15px;
	}

	.description {
		width: 80%;
		margin-bottom: 3rem;
	}

	.specifications {
		width: 100%;
	}

	ul.oglavl span.units {
		left: 25rem;
	}

	.prod_content .sidebar {
		width: 31%;
	}

	.pr-card .card-info_image {
		width: 80%;
	}

	.pr-card .card-info_text {
		width: 80%;
	}

	.procedure_item {
		width: 26%;
	}

	.proc_content .product-card {
		flex: 1 33%;
	}

	.geography h2 {
		width: 21%;
	}

	.delivery .heading {
		background-position-y: -43px;
		background-position-x: 25%;
		padding: 45px 0 205px 193px;
		background-size: 140%;
	}

	.delivery .heading::before {
		top: 11rem;
	}

	#park {
		background-position-x: 51%;
		background-size: 100%;
	}

	#delivery .block_12 .heading {
		margin-left: 85px;
	}

	.proc_content .proc-products {
		width: 100%;
	}

	#delivery #block_12 .footer {
		margin-bottom: 2rem;
	}
}

@media (max-width: 1024px) {
	.sb-cards {
		width: 34%;
	}

	.sb-serv {
		width: 30%;
	}

	.pr-card .flex {
		display: block;
	}

	.delivery .heading h1 {
		width: auto;
	}

	.card-info_image {
		width: 78%;
	}

	.card-info_text {
		width: 78%;
	}

	.card-info_text h2 {
		font-size: 35px;
	}

	.description {
		width: 100%;
	}

	.advant-item {
		width: 47%;
	}

	ul.oglavl span.units {
		left: 19rem;
	}

	.tb-desc {
		display: none;
	}

	.tb-mob {
		display: block;
		margin-top: 3rem;
	}

	.contact .form {
		max-width: 345px;
	}
	.contact .contact_info {
		margin: 0 0 0 100px;
	}
	.pay .heading {
		padding: 12px 0 60px 110px;
	}
	.pay .heading h2 {
		font-size: 2.5rem;
	}
	.pay .heading ul {
		margin: 10px 0 10px 0;
	}
	.pay .heading::after {
		width: 430px;
		height: 430px;
		top: -0.8rem;
		left: 1.8rem;
	}
	.pay .heading::before {
		width: 304px;
		height: 304px;
		top: 11rem;
	}
	.pay img {
		max-width: 84%;
	}

	.pr-card .card-info_text {
		width: 100%;
	}

	.proc_content .sidebar {
		width: 27%;
	}

	.proc_content .product-card {
		flex: 1 33%;
	}
	.proc_content .products {
		width: 72%;
	}

	.procedure {
		width: 100%;
		display: block;
	}

	.procedure_item {
		width: 45%;
	}

	.procedure_item:nth-child(2) {
		margin: 1.5rem 0;
	}

	.procedure_item:nth-child(2)::before {
		content: url(../i/procurement-cards/icon_proc1.svg);
		position: absolute;
		left: 50px;
		top: -14px;
	}

	.procedure_item:nth-child(2)::after {
		content: url(../i/procurement-cards/icon_proc1.svg);
		position: absolute;
		left: 50px;

		top: 180px;
	}

	.proc_content .proc-products {
		width: 100%;
	}

	.geography h2 {
		width: 24%;
	}

	.park {
		padding: 0px 0 14rem 0rem;
	}

	.tb-mob-prod {
		margin-top: 0rem;
	}

	/*   @media (max-width: 1024px) { */
}

@media (min-width: 767px) {
	/* tr > *:nth-child(3) {
			display: none;
		} */
	tr:hover svg circle[id="circle1"] {
		fill: #f84d4d;
	}
	tr:hover svg circle[id="circle3"] {
		fill: #ffffff;
	}
}

@media (max-width: 769px) {
	.content {
		height: auto;
		margin-top: 1rem;
	}
	.content h2 {
		margin: 0 0 1.5rem;
	}

	.nav-list {
		margin: 1.5rem 0 1rem 0;
	}

	.cat-nav {
		margin: 1.5rem 0 2rem 0;
	}

	.products .btn {
		padding: 17px 0;
	}

	#prod_info {
		padding-top: 3rem;
	}

	.sidebar {
		width: 34%;
	}

	.product-card {
		max-width: none;
		padding: 0 0 2% 5%;
	}

	.pr-serv .product-card {
		flex: 1 51%;
	}

	.sb-serv {
		width: 40%;
	}

	.product-categories {
		padding-left: 0rem;
	}

	.sb-cards {
		width: 44%;
	}

	.pr-card .card-info_image {
		width: 90%;
	}

	.card-info_li {
		width: 90%;
	}

	.card-info_image {
		width: 100%;
	}

	.card-info_text {
		width: 100%;
	}

	.card-info_text h1 {
		font-size: 34px;
	}

	.description {
		width: 100%;
	}
	.specifications {
		width: 90%;
	}

	.advant {
		width: 100%;
	}

	.advant-item {
		width: 50%;
	}

	ul.oglavl span.units {
		left: 19rem;
	}

	th {
		/* padding: 8px 24px; */
	}

	.t-order {
		padding: 5px 0px;
		color: #f50000;
		font-size: 1rem;
	}

	.prod_content .sidebar {
		width: 43%;
	}

	.prod_content .product-card {
		flex: 1 51%;
	}

	.prod_info {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-pack: start;
		-ms-flex-pack: start;
		justify-content: flex-start;
	}

	#prod_info {
		padding-bottom: 2rem;
	}
	.prod_info .heading {
		margin-bottom: 6rem;
	}

	.services {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-pack: start;
		-ms-flex-pack: start;
		justify-content: flex-start;
	}

	#services {
		padding-bottom: 2rem;
		padding-top: 3rem;
	}
	.services .heading {
		margin-bottom: 6rem;
	}

	.proc_content .sidebar {
		width: 39%;
	}

	.procurement {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-pack: start;
		-ms-flex-pack: start;
		justify-content: flex-start;
	}

	#procurement {
		padding-bottom: 2rem;
		padding-top: 3rem;
	}
	.procurement .heading {
		margin-bottom: 10rem;
	}

	.proc-foot .block_12 .heading {
		margin-left: 39px;
		margin-top: 12.5rem;
		margin-bottom: 15rem;
	}

	.procurement .heading:before {
		top: 12rem;
	}

	.card-info_li {
		display: block;
	}
	.card-info_li ul {
		width: 100%;
	}

	.card-info_text .button {
		display: block;
	}

	.contact {
		flex-direction: column;
	}
	.contact h1 {
		margin: 30px 0 15px 0;
	}
	.contact .form {
		margin: 30px auto 0;
		max-width: 390px;
	}
	.contact-content img {
		margin: 20px 0 0 0;
	}
	.pay img {
		display: none;
	}
	.pay .heading::after {
		left: 2.8rem;
	}
	.pay .heading::before {
		left: -1.6rem;
		top: 13rem;
	}
	.pay .heading {
		padding: 12px 0 80px 130px;
	}

	#pay {
		padding: 0rem 5rem 1rem 5rem;
	}

	.proc-card {
		width: 91%;
	}
	.proc-card .card-info_image {
		width: 100%;
	}

	.proc-card .card-info_text {
		width: 100%;
	}

	.proc-card .description {
		width: 100%;
	}
	.procedure_item {
		width: 56%;
	}

	#delivery h2 {
		font-size: 2rem;
	}

	.geography {
		background-size: 100%;
	}

	.geography {
		background-position: 44% 26%;
	}

	.geography h2 {
		width: 32%;
	}

	#park {
		background-position-y: 100%;
	}

	.geography #advantages {
		margin-top: 300px;
		display: flex;
		flex-wrap: wrap;
	}
	#advantages .advantages {
		margin: 1rem 2rem;
		width: 39%;
	}

	#park {
		background-size: 94%;
	}

	#delivery #block_12 .heading {
		margin-left: 1rem;
		padding: 0px 0 57px 0px;
	}

	.delivery .heading {
		padding: 33px 0 220px 160px;
	}

	#delivery {
		padding: 3rem 0rem 1rem;
	}

	.delivery .heading {
		background-size: 187%;
	}

	.delivery .heading h1 {
		margin-bottom: 3rem;
	}

	.proc_content .proc-products {
		width: 90%;
	}

	.proc_content .proc-products .product-card {
		flex: 1 51%;
		padding: 0 0 2% 9%;
	}

	.method_item {
		margin-right: 6px;
	}

	.services .heading:before {
		top: 12rem;
	}

	#delivery #block_12 .footer {
		margin-bottom: 9rem;
	}
}

@media (max-width: 500px) {
	.card-info {
		margin-bottom: 2rem;
	}

	.description {
		margin-bottom: 2rem;
	}

	.tb-mob {
		margin-top: 0rem;
	}

	td,
	th {
		font-size: 13px;
	}

	.t-order {
		font-size: 13px;
	}
	.pr-nav {
		flex-wrap: wrap;
	}

	.pr-nav p.nav {
		margin: 0px 0px 0px 0px;
	}

	.sidebar {
		transition: 0.5s;
		/* display: none; */
		position: absolute;
		top: -8px;

		min-width: 95vw !important;

		transform: translateX(-106%);

		z-index: 15;
	}

	.sidebar.active {
		width: 95vw !important;
		min-width: 95vw !important;
		min-height: 72vh !important;
		max-height: 100vh !important;

		/* overflow-y: auto; */
		transform: translateX(0);
	}
	.sidebar.active .sidebar-list {
		max-height: 66vh;
		overflow-y: auto;
	}
	.sidebar__open {
        display: none;
		position: fixed !important;
		top: 150px;
		right: -45px;

		width: 40px;
		height: 40px;

		/* border-radius: 100%; */

		background-color: #fff !important;
		background-repeat: no-repeat;
		background-position: center;
		background-size: 20px 20px;
		background-image: url("../i/icons/Arrow--up.svg");

		transform: rotate(90deg) !important;

		z-index: 15;
	}
	.sidebar.active .sidebar__open {
		transform: rotate(-90deg) !important;
		top: -40px;
		right: 0;
	}
	.products {
		width: 100%;
	}
	.card {
		padding-left: 0px;
		width: 100%;
	}

	.pr-serv {
		width: 90%;
	}

	.pr-serv .product-image img {
		width: 70vw;
	}

	.advant-item {
		width: 50%;
		margin: auto;
		text-align: center;
	}

	/*
tr > *:nth-child(3) {
    display: none;
} */

	td,
	th {
		padding: 4px 8px;
	}

	/* th {
	padding: 8px 24px;
} */

	.t-order a {
		padding: 10px 16px;
	}

	.prod_content .products {
		/* width: 90%; */
	}

	.prod_content .product-image img {
		width: 70vw;
		border-radius: 5px;
	}

	.prod_content h1 {
		font-size: 2.25rem;
	}

	.prod_info .heading {
		margin-bottom: 5rem;
	}
	.prod_info .heading:after {
		left: -4.4rem;
		top: -4rem;
		width: 403px;
		height: 403px;
	}

	.prod_info .heading {
		margin-left: 97px;
	}

	.prod_info .button {
		margin-top: 2rem;
		margin-left: 1rem;
	}

	.prod_info .heading:before {
		left: -5rem;
		top: 17rem;
		width: 350px;
		height: 350px;
	}

	#services {
		padding-bottom: 2rem;
	}

	.services .heading {
		margin-bottom: 5rem;
	}
	.services .heading:after {
		left: -4.4rem;
		top: -4rem;
		width: 403px;
		height: 403px;
	}

	.services .heading {
		margin-left: 97px;
	}

	.services .button {
		margin-top: 2rem;
		margin-left: 2rem;
	}

	.services .heading:before {
		left: -4rem;
		top: 17rem;
		width: 300px;
		height: 300px;
	}

	#procurement {
		padding-bottom: 2rem;
	}

	.procurement .heading {
		margin-bottom: 5rem;
	}
	.procurement .heading:after {
		left: -4.4rem;
		top: -4rem;
		width: 403px;
		height: 403px;
	}

	.procedure_item:nth-child(2) {
		margin: 2rem auto;
	}

	.procedure_item {
		margin: auto;
	}

	.procurement .heading {
		margin-left: 97px;
	}

	.procurement .button {
		margin-top: 2rem;
		margin-left: 2rem;
	}

	.procurement .heading:before {
		left: -2rem;
		top: 15rem;
		width: 300px;
		height: 300px;
	}

	.proc-foot .block_12 .heading {
		margin-left: 39px;
		margin-top: 12.5rem;
		margin-bottom: 15rem;
	}

	.proc-foot .block_12 .heading:before {
		left: -8rem;
		top: 5rem;
		width: 300px;
		height: 300px;
	}

	.proc-foot .block_12 .heading:after {
		left: -8.2rem;
		top: -8.8rem;
		width: 400px;
		height: 400px;
	}

	.proc_content .product-image img {
		width: 70vw;
	}

	.delivery .heading {
		padding: 19px 0 164px 160px;
		background-size: 219%;
	}
	.delivery .heading:after {
		left: 6.6rem;
		top: -2rem;
		width: 418px;
		height: 418px;
	}

	.delivery .heading {
		margin-left: -82px;
	}

	.delivery .button {
		margin-top: 2rem;
		margin-left: 2rem;
	}

	.delivery .heading:before {
		left: 2rem;
		top: 14rem;
		width: 300px;
		height: 300px;
	}

	.delivery .heading h1 {
		margin-bottom: 2rem;
	}

	.delivery .heading p {
		font-size: 1rem;
		max-width: 350px;
	}

	.contact .contact_info {
		margin: 0 0 0 40px;
	}
	.contact h1 {
		margin: 20px 0 5px 0;
	}
	#pay {
		padding: 0rem 1rem 0rem 1rem;
	}
	.pay .heading {
		padding: 12px 0 80px 77px;
	}
	.pay .heading::after {
		left: -0.8rem;
	}

	.procedure_item:nth-child(2)::after {
		top: 182px;
	}

	.method {
		display: flex;
		margin-top: 47px;
		flex-wrap: wrap;
		margin: 2rem 0rem;
	}

	.method_item {
		margin-bottom: 1rem;
		width: 48%;
	}

	.method p {
		margin: 67px auto 35px;
	}

	.geography h2 {
		width: 49%;
	}

	.geography {
		background-position: 19% 17%;
	}

	.geography #advantages {
		margin-top: 232px;
	}

	#advantages .advantages {
		margin: 1rem 2rem;
		width: 32%;
	}

	#park {
		background-size: 96%;
	}
	.park {
		padding: 0px 0 9rem 0rem;
	}
}

@media (max-width: 415px) {
	.t-order {
		font-size: 11px;
	}

	td,
	th {
		font-size: 11px;
	}

	.content {
		height: auto;
		margin-top: 0rem;
	}

	.subtitle {
		font-size: 2.25rem;
	}

	.content h1 {
		font-size: 2.25rem;
	}

	.content-card {
		padding-bottom: 30px;
	}

	.card-info_text b {
		font-size: 1.3rem;
	}

	.nav-list {
		margin: 1rem 0 1rem;
	}
	.advant-item {
		width: 60%;
	}

	/*tr > *:nth-child(1) {
    display: none;
}
*/

	th:nth-child(2) {
		border-radius: 5px 0 0 0;
	}

	.t-order a {
		padding: 10px 9px;
	}

	.prod_info .heading {
		margin-left: 70px;
	}

	.prod_info .heading {
		margin-bottom: 4rem;
	}

	#services {
		padding-top: 3rem;
	}

	.services .heading {
		margin-left: 70px;
	}

	.services .heading {
		margin-bottom: 4rem;
	}

	#procurement {
		padding-top: 1rem;
	}

	.procurement .heading {
		margin-left: 70px;
	}

	.procurement .heading {
		margin-bottom: 4rem;
	}

	.proc_content .products {
		float: none;
		width: 95%;
		margin: auto;
	}

	.procurement .heading:before {
		left: -3rem;
		top: 13rem;
	}

	.procurement .heading {
		margin-top: 3.5rem;
	}

	.procedure_item:nth-child(2)::after {
		top: 173px;
	}

	.proc-foot .block_12 .heading {
		margin-top: 9.5rem;
	}

	.contact .info {
		flex-direction: column;
	}
	.contact .contact_info {
		margin: 0px;
	}

	.container-fluid {
		padding: 1rem;
	}
	.pay .heading {
		padding: 12px 0 80px 50px;
	}
	.pay .heading::before {
		left: -0.6rem;
		top: 13rem;
		width: 245px;
		height: 245px;
	}
	.pay .heading::after {
		width: 395px;
		height: 395px;
	}
	.pay .heading ul {
		margin: 5px 0 20px 0;
	}
	.pay .heading li {
		margin-left: 20px;
	}
	.pay .heading p {
		margin: 0px;
	}

	.delivery .heading {
		margin-left: -104px;
		padding: 19px 0 201px 160px;
		background-size: 243%;
		margin-bottom: 2rem;
	}

	.services .heading:before {
		top: 15rem;
	}

	#advantages .advantages {
		margin: 2rem 2rem 0rem 5rem;
		width: 82%;
	}

	.geography #advantages {
		margin-top: 186px;
	}

	.geography {
		background-position: 19% 11%;
	}

	.geography h2 {
		width: 54%;
	}

	#geography {
		margin-bottom: 2rem;
	}

	.park {
		margin-bottom: 2rem;
	}

	#method {
		margin-bottom: 2rem;
	}

	#advantages .advantages img {
		height: auto;
	}
}

@media (max-width: 376px) {
	.product-card {
		flex: 1 100%;
	}

	.products {
		/* width: 90%; */
	}

	.subtitle {
		font-size: 2rem;
	}

	.product-image img {
		width: 70vw;
	}

	ul.oglavl span.units {
		left: 15rem;
	}

	.advant-item {
		width: 90%;
	}

	.prod_info .heading {
		margin-left: 64px;
		margin-top: 2.5rem;
	}

	.services .heading {
		margin-left: 64px;
		margin-top: 2.5rem;
	}

	.procurement .heading {
		margin-left: 64px;
		margin-top: 3.5rem;
		margin-bottom: 7rem;
	}

	#pay {
		padding: 0rem 1rem 0rem 1rem;
	}

	.delivery .heading {
		margin-left: -134px;
	}

	.method {
		display: flex;
		margin-top: 47px;
		flex-wrap: wrap;
		margin: 2rem 0rem;
	}

	.geography h2 {
		width: 62%;
	}

	#advantages .advantages {
		margin: 2rem 2rem 0rem 3rem;
		width: 82%;
	}
	#park {
		background-size: 96%;
		background-position-y: 96px;
	}

	.delivery .heading:after {
		left: 8.6rem;
		top: -2rem;
		width: 380px;
		height: 380px;
	}

	.delivery .heading {
		padding: 19px 0 202px 160px;
		background-size: 236%;
	}
}

@media (max-width: 361px) {
	.content h1 {
		font-size: 2rem;
	}

	.subtitle {
		font-size: 1.8rem;
	}
	.prod_info .heading {
		margin-left: 50px;
		margin-top: 2.5rem;
	}

	.services .heading {
		margin-left: 50px;
		margin-top: 2.5rem;
	}

	.procurement .heading {
		margin-left: 50px;
		margin-top: 3.5rem;
	}
	.delivery .heading {
		margin-left: -149px;
	}
}

@media (max-width: 321px) {
	.card-info h2 {
		font-size: 1.6rem;
	}
	.specifications {
		width: 80%;
	}

	.t-order a {
		padding: 4px 7px;
	}

	.prod_content h1 {
		font-size: 2rem;
	}

	.prod_info .heading {
		margin-left: 29px;
		margin-top: 2.5rem;
	}

	.services .heading {
		margin-left: 18px;
		margin-top: 2.5rem;
	}
	.procurement .heading {
		margin-left: 18px;
		margin-top: 3.5rem;
	}

	.procedure_item {
		width: 66%;
	}

	.pay .heading {
		padding: 12px 0 30px 30px;
	}
	.pay .heading::after {
		left: -3rem;
	}
	.pay .heading::before {
		left: -2.1rem;
		top: 14rem;
	}
	.pay .heading .btn > span {
		padding: 1.1rem 2.6rem;
	}

	.delivery .heading {
		margin-left: -152px;
	}
	#delivery h2 {
		font-size: 1.6rem;
	}

	.geography {
		background-position: 19% 9%;
	}

	.method_item {
		width: 100%;
	}

	.delivery .heading {
		padding: 18px 0 152px 160px;
	}
	.delivery .heading:before {
		top: 10rem;
	}

	.proc-foot .block_12 .heading:before {
		top: 3rem;
	}
}

/****** ВРЕМЕННО /***/

.filter.active {
	display: flex !important;
}

/*Заголовок в блоке*/
/*******************/
.title {
	position: relative;
	display: flex;
	flex-direction: column;


	justify-content: start;
	align-items: start;
	/* padding-bottom: 20px; */

	background-color: white;
}
.title img {
	display: block;
	max-height: 180px;
}
#production-title {
	text-align: center;
	margin: 0 auto;
	margin-bottom: 20px;
}

.about_after {
	margin-top: 60px;
}

.about_after h2{

    margin: 32px 0 16px;
}

.about_after h3 {
	font-family: "Open Sans Condensed";
	font-weight: 300;
	font-size: 32px;
	line-height: 65px;
	text-align: left;
	color: #222840;
}
.about_after p {
	font-family: Manrope;
	font-weight: normal;
	font-size: 16px;
	line-height: 28px;
	text-align: left;
	color: #606475;
}

.about_after ul li {
	font-family: Manrope;
	font-weight: normal;
	font-size: 16px;
	line-height: 28px;
	text-align: left;
	color: #606475;

	margin-left: 20px;
	list-style-type: disc;
}

.about_after ol li {
	font-family: Manrope;
	font-weight: normal;
	font-size: 16px;
	line-height: 28px;
	text-align: left;
	color: #606475;
}

/*@media(min-width:500px){
	.title{
		position: relative;
		display: flex;
		flex-direction: row;
		align-items: center;

		padding-bottom: 0;

		background-color: white;
	}
	.title img{
		display: block;
		max-height: 180px;
	}
	#production-title{
		text-align: right;
		margin: 0 10px 0 20px;
	}
}
*/
@media (min-width: 1280px) {
	.title {
		position: relative;
		display: flex;
		flex-direction: row;
		align-items: center;

		background-color: white;
	}
	.title img {
		display: block;
		max-height: 180px;
	}
	#production-title {
		font-size: 42px;
		margin: 0 20px 0 20px;
	}
}

/*Вёрстка поисковой части*/
/************************/
.products-price {
	width: 100%;
	padding-left: 2%;
}
.content_busket .products-price {
	padding-left: 0;
}
.content_flex {
	display: flex;
	align-items: start;
}

.content_flex .sidebar {
	margin-right: 1%;
}

.inner-content {
	margin-top: 0;
}
.inner-content .nav-list {
	margin-top: 35px;
	margin-bottom: 10px;
}

.inner-content #inner-title {
	margin-bottom: 20px;
}
@media (min-width: 768px) {
	.inner-content #inner-title {
		margin-bottom: 12px;
	}
}

.inner-content .sidebar {
	/*width: 22%;

	min-width: 190px;
	max-width: 260px;*/
}

.content_flex > div:first-child {
	flex: 1;

	min-width: 220px;
	max-width: none;
}
.content_flex > div:nth-child(2) {
	flex: 4;
}

/* Вёрстка формы корзины */
/*********************** */

.content_busket {
	flex-direction: column;
}

.inner-content .sidebar_busket {
	display: block;

	width: 100%;
	min-width: 300px;
	max-width: 360px;

	padding: 20px 0;

	margin-right: auto;
	margin-left: auto;
	margin-top: 40px;

	background-color: white;

	order: 2;
}

.form-busket {
	padding: 0 10px;
}

.form-busket__title {
	font-family: "Open Sans Condensed";
	font-weight: bold;
	font-size: 32px;
	line-height: 42px;
	text-align: center;

	margin-bottom: 40px;
}
.form-busket__title span {
	display: inline;
	font: inherit;
}
.form-busket__title h2 {
	font: inherit;
}
.color-red {
	color: #f50000 !important;
}

.form-busket__label {
	position: relative;
	display: block;
	width: 100%;
}

.form-busket__label:not(:last-child) {
	margin-bottom: 20px;
}

.form-busket__label p {
	transition: 0.3s;

	position: absolute;
	top: 0;
	left: 0;
	transform: translateY(0);

	font-family: Manrope;
	font-weight: normal;
	font-size: 14px;
	text-align: left;
	color: #606475;
}

.form-busket__input {
	font-family: Manrope;
	font-weight: bold;
	font-size: 18px;
	text-align: left;
	color: #606475;

	padding: 15px 0;

	width: 100%;

	outline: none;
	border: none;
	border-bottom: 1px solid #c0cfdd;
}

.form-busket__input:focus ~ p,
.input-pushed ~ p {
	transform: translateY(-20px);
	font-size: 12px;
}

.form-busket__file--file {
	display: none;
}

.btn-busket {
	width: 100%;

	margin: 10px 0;
}

.form-busket__file {
	display: block;
	background: #eee;
	text-align: center;
	padding: 12px 0;
	margin-bottom: 10px;
	cursor: pointer;
	transition: 0.2s ease-in-out;
}

.form-busket__file:hover {
	background: #e5e5e5;
}

/*Табличный вид карточек товаров*/
/********************************/

.products-price .tb-desc {
	display: block;
}

.td-article {
	display: none;
}
.th-series,
.t-series {
	display: none;
}

@media (max-width: 650px) {
	.products-price td {
		/* padding: 4px 5px ; */
		font-size: 11px;
	}
}
.inner-content .container-fluid {
	padding-left: 5px;
}

.card-btn {
	border: none;
	outline: none;

	cursor: pointer;
}

.favorite-btn {
	width: 20px;
	height: 20px;
	background-color: transparent;
}
.similar-table .card-btn {
	width: 20px;
	height: 20px;

	background-color: transparent;
}

.similar-table tr {
	-webkit-transition: none !important;
	-o-transition: none !important;
	transition: none !important;
}
.similar-table td {
	-webkit-transition: none !important;
	-o-transition: none !important;
	transition: none !important;
}
.similar-table tr a {
	-webkit-transition: none !important;
	-o-transition: none !important;
	transition: none !important;
}

.similar-table td {
	position: relative;
}

.similar-table .t-order {
	vertical-align: middle;
}

.similar-table .t-order div {
	display: flex;
	align-items: flex-start;
	align-content: center;
	margin: auto 0;
	align-items: center;
}

.similar-table .card-btn:not(:last-child) {
	margin-right: 5px;
}

.similar-table .busket-btn {
	margin-right: 10px;
}

.similar-table .busket-btn {
	background-repeat: no-repeat;
	background-size: contain;
	background-image: url("../i/icons/Buy-mobile.svg");
}

.similar-table .favorite-btn {
	background-repeat: no-repeat;
	background-size: contain;
	background-image: url("../i/icons/Favorites-mobile.svg");
}
.favorite-btn.active {
	background-repeat: no-repeat;
	background-size: contain;
	background-image: url("../i/icons/Favorites--active.svg");
}
.card-btn.busket-btn.active {
	background-repeat: no-repeat;
	background-size: contain;
	background-image: url("../i/icons/Buy--active.svg");
}

@media (min-width: 768px) {
	.similar-table tr:hover .count-btn {
		color: #f50000;
		background-color: white;
	}
	.similar-table tr:hover .input-calc__i {
		border-color: white;
	}

	.similar-table tr:hover .busket-btn {
		background-repeat: no-repeat;
		background-size: contain;
		background-image: url("../i/icons/Buy-mobile--hover.svg");
	}

	.similar-table tr:hover .favorite-btn {
		background-repeat: no-repeat;
		background-size: contain;
		background-image: url("../i/icons/Favorites.svg");
	}
	.similar-table tr:hover .busket-btn {
		background-repeat: no-repeat;
		background-size: contain;
		background-image: url("../i/icons/Buy.svg");
	}
}

.del-btn {
	position: relative;

	width: 20px;
	height: 20px;

	margin-right: 0;
	/*margin-left: 20px;*/
}

@media (min-width: 768px) {
	.similar-table tr:hover .del-btn::before,
	.similar-table tr:hover .del-btn::after {
		background-color: #ffffff;
	}
}
.del-btn::before,
.del-btn::after {
	transition: transform 0.4s;

	content: "";
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);

	width: 2px;
	height: 19px;

	background-color: #f50000;
}

.del-btn::before {
	transform: rotate(45deg);
}
.del-btn::after {
	transform: rotate(-45deg);
}

.del-btn:hover::before {
	transform: rotate(-45deg);
}
.del-btn:hover::after {
	transform: rotate(45deg);
}

/*Блочный вид карточек товаров*/
/********************************/

.products-price .products_inner {
	/* justify-content: space-between; */
	align-items: stretch;
	align-content: stretch;
}

.price-card {
	position: relative;

	display: flex;
	align-items: baseline;
	flex-direction: column;
	justify-content: space-between;

	/*width: 139px;*/
	width: 48%;
	/* min-width: 139px;
	max-width: 309px; */
	/*overflow: hidden;*/

	background-color: white;
	margin-bottom: 10px;
}
.price-card:nth-child(odd) {
	margin-right: 4%;
}

.price-card .product-image {
	/*width: 139px;*/
	/*height: 245px;
	max-height: 245px;*/
    height: 250px;
	overflow: hidden;
}

.price-card .busket-btn {
	font-weight: 600;
	font-size: 16px;
	text-align: center;
	color: #fff;

	width: 100%;
	height: 51px;
	border-radius: 5px;
	background-color: #f50000;

	margin-bottom: 5px;
}
.price-card .busket-btn:hover {
	background-color: #bd0000;
}

.product-block {
	padding: 0 5px;

	width: 100%;

	background-color: #ffffff;
}

.price-card .favorite-btn {
	position: absolute;
	top: 10px;
	right: 10px;

	background-repeat: no-repeat;
	background-size: contain;
	background-image: url("../i/icons/Favorites_block.svg");
}

.price-card .favorite-btn.active {
	background-repeat: no-repeat;
	background-size: contain;
	background-image: url("../i/icons/Favorites_block--active.svg");
}

.product-text {
	font-weight: normal;
	font-size: 14px;
	line-height: 20px;
	text-align: left;
	color: #606475;

	max-height: 140px;

	word-break: break-all;

	overflow-y: hidden;
	overflow-x: visible;
}

.product-price {
	height: 50px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;

	z-index: 3;
}

.product-text:hover {
	overflow-y: auto;
}
.product-price {
	font-weight: bold;
	font-size: 20px;
	line-height: 24px;
	text-align: left;
	color: #222840;
}

.product-price span {
	font-size: 0.8em;
}

@media (min-width: 412px) {
	.product-block {
		padding: 0 20px;

		background-color: #ffffff;
	}
}

@media (min-width: 480px) {
	.product-block {
		padding: 0 20px;

		background-color: #ffffff;
	}
	th {
		padding: 12px;
	}
	.similar-table .card-btn:not(:last-child) {
		margin-right: 10px;
	}
}

@media (max-width: 500px) {
	.inner-content .container-fluid {
		padding: 0 1rem;
	}
}

@media (min-width: 650px) {
	.inner-content .container-fluid {
		padding: 0 3rem;
	}

	.similar-table .card-btn:not(:last-child) {
		margin-right: 15px;
	}
}

@media (min-width: 768px) {
	.product-block {
		padding: 0 20px;

		background-color: #ffffff;
	}

	.inner-content .sidebar_busket {
		display: block;

		width: 100%;
		min-width: 270px !important;
		max-width: 480px;

		order: 2;
	}

	.similar-table .card-btn {
		width: 26px;
		height: 26px;

		margin-right: 15px;

		background-color: transparent;
	}

	.similar-table .busket-btn {
		margin-right: 25px;
	}

	.del-btn {
		position: relative;

		width: 25px;
		height: 25px;
	}

	.del-btn::before,
	.del-btn::after {
		height: 25px;
	}

	.btn-busket {
		max-width: 320px;
		margin-right: auto;
		margin-left: auto;
	}

	.form-busket {
		padding: 0 35px;
	}
}

@media (min-width: 500px) and (max-width: 540px) {
	.inner-content .container-fluid {
		padding-right: 5px;
	}
}

@media (min-width: 1280px) {
	.title {
		position: relative;
		display: flex;
		flex-direction: row;
		align-items: center;

		background-color: white;
	}
}

@media (min-width: 1000px) {
	.product-block {
		padding: 0 20px;

		background-color: #ffffff;
	}

	.price-card {
		width: 48%;
	}

	.td-article {
		display: table-cell;
	}
	.th-series,
	.t-series {
		display: table-cell;
	}

	.price-card .busket-btn {
		margin-bottom: 15px;
		margin-right: 20px;
	}
	.similar-table .busket-btn {
		margin-right: 20px;
	}
	.similar-table .favorite-btn {
		background-image: none;
	}
	.similar-table .favorite-btn.active {
		background-image: url("../i/icons/Favorites--active.svg");
	}

	.similar-table tr:hover .favorite-btn,
	.similar-table tr:focus .favorite-btn {
		background-repeat: no-repeat;
		background-size: contain;
		background-image: url("../i/icons/Favorites.svg");
	}

	.similar-table .busket-btn {
		background-image: none;
	}

	.similar-table tr:hover .busket-btn,
	.similar-table tr:focus .busket-btn {
		background-repeat: no-repeat;
		background-size: contain;
		background-image: url("../i/icons/Buy.svg");
	}

	.del-btn::before,
	.del-btn::after {
		background-color: transparent;
	}
}

@media (min-width: 1024px) {
	.price-card {
		width: 32%;
	}
	.price-card:nth-child(odd) {
		margin-right: 0;
	}
	.price-card:not(:nth-child(3n)) {
		margin-right: 2%;
	}
}

@media (min-width: 1150px) {
	.content_busket {
		flex-direction: row;
	}

	.inner-content .sidebar_busket {
		min-width: 330px;
		max-width: 330px;

		margin-top: 0;
		margin-left: 20px;
	}

	.form-busket {
		padding: 0 20px;
	}

	.price-card {
		width: 23.5%;
	}

	.price-card:not(:nth-child(3n)) {
		margin-right: 0;
	}

	.price-card:not(:nth-child(4n)) {
		margin-right: 2%;
	}

	.product-price {
		height: 70px;
	}

	.product-text {
		font-size: 18px;
		line-height: 28px;
	}

	.price-card .favorite-btn {
		top: 20px;
		right: 20px;
	}
}

@media (min-width: 1200px) {
	.inner-content .sidebar_busket {
		min-width: 340px;
		max-width: 340px;
	}
	.form-busket {
		padding: 0 25px;
	}

	.product-block {
		padding: 0 20px;

		background-color: #ffffff;
	}

	/* Это вёрстка карточек товаров */
	.price-card {
		/*width: 308px;*/
		width: 23.5%;
		min-width: 139px;
		max-width: 308px;
		/*overflow: hidden;*/
	}

	.block-btns {
		position: absolute;
		left: 0;
		margin: 0 auto;

		padding: 0 20px;
		background-color: white;

		bottom: 0px;

		width: 100%;

		/*max-height: 0;*/

		z-index: 1;
		opacity: 0;

		overflow: visible;
	}
	.price-card .busket-btn {
		opacity: 0;
	}
	.price-card:hover .busket-btn {
		transition: 0.4s;

		opacity: 1;
	}
	.price-card:hover .block-btns {
		transition: 0.4s;

		position: absolute;
		bottom: -60px;

		opacity: 1;

		/*max-height: 90px;*/
	}
	.price-card {
		margin-bottom: 80px;
	}
	.price-card:nth-child(odd) {
		/*margin-right: 10px;*/
		margin-bottom: 80px;
	}
	/********************/

	.product-price {
		font-size: 28px;
		line-height: 32px;
	}
}

@media (min-width: 1300px) {
	.inner-content .sidebar {
		min-width: 280px;
	}
}

/**************************/
/* Слайдер картинок-видео */
/**************************/

/*slider-images*/
.slider-images {
	position: relative;
	width: 100%;
	height: auto;
}

@keyframes amin-slider-images--change {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

.slider-images__gen-img--open {
	animation: amin-slider-images--change 0.2s forwards;
}

.slider-images__gen-img {
	cursor: pointer;

	/* height: 80vh;
	min-height: 40vh; */
	max-height: 500px;
}

/* .slider-images__gen-img:not([data-video=""])::before {
	content: "";
} */
.slider-images__gen-img:not([data-video=""])::before {
	content: "";

	position: absolute;
	top: 40%;
	left: 50%;
	transform: translate(-50%, -50%);

	width: 100px;
	height: 100px;

	background-repeat: no-repeat;
	background-size: cover;
	background-image: url("../i/icons/icon-video.svg");
}

@media (min-width: 1180px) {
	.slider-images__gen-img:not([data-video=""])::before {
		content: none;
	}
	.slider-images__gen-img:not([data-video=""]):hover::before {
		content: "";
		position: absolute;
		top: 40%;
		left: 50%;
		transform: translate(-50%, -50%);
		width: 100px;
		height: 100px;
		background-repeat: no-repeat;
		background-size: cover;
		background-image: url("../i/icons/icon-video.svg");
	}
}

.slider-images__wrap {
	position: relative;
	left: 100%;
	bottom: 0;
	transform: translateX(-95%);
	display: flex;
	justify-content: center;
	width: 80%;
}
@media (min-width: 480px) {
	.slider-images__wrap {
		left: 50%;
		bottom: 0;
		transform: translateX(-50%);
	}
}
@media (min-width: 1180px) {
	.slider-images__wrap {
		left: 50%;
		bottom: 0;
		transform: translateX(-50%);
	}
}

.slider-images__btns {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);

	width: 95%;
	z-index: 2;
}

.slider-images__btn,
.slick-arrow {
	position: absolute;

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

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

	width: 40px;
	height: 40px;

	box-sizing: border-box;
	border: none;
	text-transform: uppercase;
	background-color: transparent;
	cursor: pointer;
	outline: none;
	transition-property: all;
	transition-duration: 0.2s;

	box-shadow: none;
}

.slider-images__btn:hover,
.slider-images__btn:focus {
	opacity: 0.7;
	outline: none;
}
.slider-images__btn:active {
	opacity: 0.6;
	outline: none;
}
.slider-images__btn::after {
	content: "";
	position: absolute;
	top: 50%;
	right: -50%;
	transform: translate(-50%, -50%);
	width: 40px;
	height: 40px;
	border-radius: 4px;
}

.slider-images__btn-prev {
	left: 0;
}
.slider-images__btn-prev::after {
	background-color: transparent;
	background-repeat: no-repeat;
	background-image: url("../i/icons/Arrow--down.svg");
	background-position: center;

	transform: translate(-50%, -50%) rotate(90deg);
}

.slider-images__btn-next {
	right: 0;
}
.slider-images__btn-next::after {
	background-color: transparent;
	background-repeat: no-repeat;
	background-image: url("../i/icons/Arrow--down.svg");
	background-position: center;

	transform: translate(-50%, -50%) rotate(-90deg);
}

.slider-list__wrap {
	width: 65%;
	overflow: hidden;
}

.slider-images__list {
	margin-top: 15px;
	padding: 0;
	list-style: none;
	/*display: flex;*/
	/*justify-content: flex-start;*/
	/*align-items: center;*/
	flex-wrap: nowrap;
	width: 100%;
	height: 70px;
	transition: transform 120ms linear;
}
.slick-slide {
	margin: 0 10px;
}
.slider-images__item {
	position: relative;
	text-align: center;
	width: 65px;
	height: 50px;
	min-width: 65px;
	min-height: 50px;
	cursor: zoom-in;
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
	border-radius: 5px;
}

.product-item__slider-item {
	display: inline-block;
}

.slider-images__item img {
	width: max-content;
	height: 100%;
	border-radius: 5px;
}

.slider-images__item:not(:last-child) {
	margin-right: 12px;
}
.slider-images__item:first-child {
	margin-left: 12px;
}
.slider-images__item.active {
	outline: 1px solid #db222a;
}
.slider-images__item:hover {
	box-sizing: border-box;
	filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.2));
}
.slider-images__item:hover .image-fallback {
	outline: 1px solid #db222a;
}
.slider-images--video {
	cursor: pointer;
}

.video-fallback {
	height: 100%;
	border-radius: 5px;
}
.slider-images--video::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 50px;
	height: 50px;
	background-image: url("../i/icons/icon-video.svg");
}

@media (min-width: 1180px) {
	.slider-images__item::before {
		content: none;
	}

	.slider-images--video:hover::before {
		content: "";
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		width: 50px;
		height: 50px;
		background-image: url("../i/icons/icon-video.svg");
	}
}

/*slider-images*/

/* video modal */

@keyframes anim-fade--open {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

@keyframes anim-fade--close {
	0% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}

@keyframes anim-modal--open {
	0% {
		transform: translate(-50%, -100%);
	}
	100% {
		transform: translate(-50%, -50%);
	}
}

@keyframes anim-modal--close {
	0% {
		transform: translate(-50%, -50%);
	}
	100% {
		transform: translate(-50%, 0%);
	}
}

.modal {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 101;
}

.modal.active {
	animation: anim-fade--open 0.4s forwards, anim-modal--open 0.4s forwards;
	opacity: 0;
}

.modal.inactive {
	opacity: 1;
	transform: translate(-50%, -50%);
	animation: anim-fade--close 0.4s forwards, anim-modal--close 0.4s forwards;
}

/* video modal */

@media (min-width: 1170px) {
	.card-slider {
		width: 45%;
		max-width: 565px;
	}
}

.card-slider__wrap {
	overflow: hidden;
	border-radius: 5px;
	width: 100%;
	margin-bottom: 10px;
}

.card-slider__track {
	display: flex;
	width: 100%;
	transition: 0.2s ease-in-out;
	/*transform: translate(-565px, 0);*/
}

.card-slider__item {
	position: relative;
	min-width: 100%;
    height: 500px;
	display: flex;
	cursor: pointer;
	/*align-items: center;*/
}

.card-slider__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
    object-position: bottom right;
}

.card-slider__video {

	width: 100%;
	height: 100%;
	object-fit: cover;
}

.sticker-play{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	display: block;
	width: 60px;
	height: 60px;
	background-image: url(../i/icons/icon-video.svg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100%;
  z-index: 100;
}

.sticker-play__ring{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	display: block;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	box-shadow: 0 0 1px 6px rgba(255, 0, 0, 0.1);
	animation: ring-move 1.5s infinite;
	z-index: 110;
}

@keyframes ring-move{
	from{
		width: 50%;
		height: 50%;
		box-shadow: 0 0 1px 1px rgba(255, 0, 0, 1);
	}
	to{
		box-shadow: 0 0 1px 10px rgba(255, 0, 0, 0);
	}

}

.card-controls {
	display: flex;
	margin: 0 auto;
	align-items: center;
	justify-content: center;
	/*width: 470px;*/
	/*border: 1px solid #000;*/
}

.card-dots__wrap {
	overflow: hidden;
	padding: 10px 0;
	width: 215px;
}

@media (min-width: 600px) {
	.card-dots__wrap {
		width: auto;
	}
}

.card-arrow {
	position: relative;
	display: block;
	visibility: visible;
	height: 50px;
	width: 50px;
	opacity: 0.7;
	cursor: pointer;
	transition: 0.2s ease-in-out;
}

.card-arrow--hide {
	visibility: hidden;
}

.card-arrow__icon {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 40px;
	height: 20px;
	transform: translate(-50%, -50%);
}

.card-arrow__icon--prev::before {
	transform: rotate(90deg);
}

.card-arrow__icon--next::before {
	transform: rotate(-90deg);
}

.card-arrow__icon::before {
	content: "";
	position: absolute;
	display: block;
	width: 40px;
	height: 20px;
	background-image: url("../i/icons/Arrow--down.svg");
	background-repeat: no-repeat;
}

.card-dots__item {
	position: relative;
	display: flex;
	justify-content: center;
	min-width: 56px;
	height: 35px;
	margin: 0 8px;
	overflow: hidden;
	box-shadow: 0px 0px 10px rgb(0 0 0 / 20%);
	border-radius: 5px;
	cursor: pointer;
}

@media (min-width: 600px) {
	.card-dots__item {
		min-width: 50px;
		height: 50px;
		min-width: 80px;
		height: 50px;
		margin: 0 8px;
	}
}

.card-dots__item--video::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 50px;
	height: 50px;
	opacity: 1;
	transition: 0.2s ease-in-out;
	background-image: url("../i/icons/icon-video.svg");
	z-index: 100;
}

.card-dots__item--video:hover::after {
	opacity: 1;
}

@media (min-width: 1000px) {
	.card-dots__item--video::after {
		/*opacity: 0;*/
	}
}

.card-dots__img {
	height: 100%;
    width: 100%;
	/*width: auto;*/
	max-width: 100%;
	border-radius: 5px;
    object-fit: cover;
}

.card-dots__video {
	position: relative;
	height: 100%;
    width: 100%;
	/*width: auto;*/
	max-width: 100%;
	border-radius: 5px;
    object-fit: cover;
}

.card-dots__item--video::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 50px;
	height: 50px;
	background-image: url("../i/icons/icon-video.svg");
}

.card-dots__track {
	display: flex;
	width: 290px;
	transition: 0.2s ease-in-out;
}

.slider-modal {
	position: fixed;
	display: flex;
	/*display: none;*/
	align-items: center;
	justify-content: center;
	opacity: 0;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	transform: translate(0, -100%);
	transition: 0.5s ease-in-out;
	z-index: 0;
}

.slider-modal--open {
	transform: translate(0, 0);
	opacity: 1;
	z-index: 1000;
}

.slider-modal__inner {
	position: relative;
	width: 100%;
	min-height: 300px;
	background: #fff;
	padding: 50px 40px;
	height: 90vh;
	z-index: 0;
}

@media (min-width: 1000px) {
	.slider-modal__inner {
		position: relative;
		width: 80%;
		height: 90vh;
		background: #fff;
		padding: 50px;
	}
}

.slider-modal__prev {
	position: absolute;
	top: 50%;
	left: 0;
}
.slider-modal__next {
	position: absolute;
	top: 50%;
	right: 0;
}

.slider-modal__close {
	position: absolute;
	top: 20px;
	right: 20px;
	display: block;
	width: 30px;
	height: 30px;
	cursor: pointer;
}

.slider-modal__close::before {
	content: "";
	position: absolute;
	top: 0;
	left: 50%;
	transform: rotate(45deg);
	display: block;
	width: 2px;
	height: 20px;
	background: #000;
}
.slider-modal__close::after {
	content: "";
	position: absolute;
	top: 0;
	left: 50%;
	transform: rotate(-45deg);
	display: block;
	width: 2px;
	height: 20px;
	background: #000;
}

.slider-modal__item {
	display: none;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
}

.slider-modal__item--show {
	display: flex;
}

.slider-modal__video {
	max-width: 100%;
	width: auto;
	max-height: 100%;
	/*height: 100%;*/
}

.slider-modal__img {
	max-width: 100%;
	max-height: 100%;
	width: auto;
	/*height: 100%;*/
}

.galerie {
	max-width: 1600px;
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	grid-template-columns: repeat(1, 100%);
	display: grid;
	padding: 20px 0 60px;
	grid-gap: 10px;
	cursor: pointer;
}

@media (min-width: 500px) {
	.galerie {
		grid-template-columns: repeat(2, 50%);
	}
}

@media (min-width: 900px) {
	.galerie {
		grid-template-columns: repeat(3, 33%);
	}
}

@media (min-width: 1333px) {
	.galerie {
		grid-template-columns: repeat(4, 25%);
	}
}

.galerie-card {
    position: relative;
	width: 100%;
	border-radius: 2px;
	cursor: pointer;
	border: 1px solid #ccc;
}

@media (min-width: 1600px) {
	.galerie-card:hover {
		box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.2);
		z-index: 100;
	}
}

.galerie-card__content {
	display: block;
    object-fit: cover;
	width: 100%;
    height: 398px;
}
.galerie-card__info {
	padding: 0 20px;
}


.vacancies-card__desc b,strong {
    font-weight: bold;
}
.vacancies-card__desc ul {
    list-style: disc;
    margin-left: 23px;
}
.vacancies-card__desc li {
    margin-bottom: 3px;
}

.category-preview{
	justify-content: space-between;


}

.category-preview__video{
	position: relative;
	height: 200px;
	width:100%;
    cursor: pointer;
}

@media (min-width: 1280px){
	.category-preview__video{
		position: relative;
		height: 200px;
		width:50%;
	}
}

.category-preview__video img {
    /* text-align: center; */
    /* width: 50px; */
    margin: 0 auto;
    max-height: 100%;
}

.category-video{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.category-preview__sticker{
	top: auto;
	bottom: 0;
	left: 0;
	transform: translate(0, 0);
}

.header-slider{
	position: relative;
	height: 200px;
	width:100%;
	overflow: hidden;
    cursor: pointer;
}



.header-slider__track{
	display: flex;
	width: 100%;
	height: 100%;
	transition: 0.2s;
}

.header-slider__slide{
	position: relative;
	width: 100%;
	height: 100%;
	flex-shrink: 0;
}

.header-slider__slide .header-slider__content {
	display: block;
	width: 100%;
	height: 100%;
	max-height: none;
	object-fit: cover;
}


.header-slider__arrow{
	position: absolute;
	/*top: 50%;*/
	display: block;
	height: 40px;
	width: 40px;
	display: block;
	visibility: visible;
	opacity: 0.7;
	cursor: pointer;
	z-index: 100;
	transition: 0.2s ease-in-out;
}

.header-slider__arrow:hover{
	opacity: 1;
}

.header-slider__arrow.prev{
	transform: translateY(-50%);
	top: 50%;
	left: 20px;
}


.header-slider__arrow.next{
	top: 50%;
	right: 20px;
	transform: translateY(-50%);
}




.card-arrow--hide {
	visibility: hidden;
}

.header-slider__icon {
	position: absolute;
	/*top: 50%;
	left: 50%;*/
	/*width: 40px;
	height: 20px;*/
	/*transform: translate(-50%, -50%);*/
}

.header-slider__icon--prev::before {
	transform: rotate(-180deg);
}

.header-slider__icon--next::before {
	transform: rotate(-0deg);
}

.header-slider__icon::before {
	content: "";
	position: absolute;
	display: block;
	width: 40px;
	height: 40px;
	background-image: url("../../assets/i/arrow.svg");
	background-repeat: no-repeat;
	background-size: contain;
}




@media (min-width: 1280px){
	.header-slider{
		position: relative;
		height: 200px;
		width: 50%;
	}
}

.category-preview__video img {
    /* text-align: center; */
    /* width: 50px; */
    margin: 0 auto;
    max-height: 100%;
}

.category-video{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.category-preview__sticker{
	top: auto;
	bottom: 0;
	left: 0;
	transform: translate(0, 0);
}


.magnifier-modal {
    position: fixed;
    justify-content: center;
    align-items: center;
    display: none;
    background: rgba(0, 0, 0, 0.3);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
}

.magnifier-modal.open {
    display: flex;
    padding: 30px;
}

/*.modal-img__inner {*/
/*    padding: 20px;*/
/*    background: #fff;*/
/*    width: auto;*/
/*}*/

.magnifier-modal__inner {
    display: block;
    background: #fff;
    padding: 20px;
    max-height: 100%;
    max-width: 100%;
    width: auto;
    height: auto;
}

.magnifier-modal__link{
    margin-bottom: 10px;
    display: block;
    text-align: center;
    text-decoration: underline;
}

.magnifier-modal__link:hover{
    color: #ff0000;
}

.magnifier-modal__content{
    display: block;
    max-height: 80vh;
    max-width: 100%;
    margin: 0 auto 10px;

}

.magnifier-modal__desc{
    margin: 0;
}

.scroll-table{
    width: 100%;
    overflow: auto;
    padding-bottom: 10px;
}

.sidebar__open{
    display: none !important;
}
