.button-block {
	display: flex;
	gap: 40px;
	padding-top: 200px;
	padding-bottom: 200px;
}

.popup-btn {
	background-color: #ba102c;
	border: 1px solid #ba102c;
	color: #fff;
	height: 50px;
	width: 200px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 16px;
	line-height: 18px;
	padding: 10px 15px;
	transition: all 0.3s ease 0s;
}

.main-services-btn {
	background-color: #ba102c;
	border: 1px solid #ba102c;
	color: #fff;
	height: 40px;
	width: 150px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 16px;
	line-height: 18px;
	padding: 10px 15px;
	transition: all 0.3s ease 0s;
}

@media (max-width: 479px) {
	.popup-btn,
	.main-services-btn {
		font-size: 15px;
		margin: 0 auto;
		height: 40px;
	}
}

.popup-btn:hover {
	background-color: transparent;
	color: #ba102c;
}

/* ==================================================================== */
.new-popup.fancybox__content {
	max-width: 800px;
	width: 100%;
	overflow: hidden;
	position: relative;
	background: #fff;
	padding: 0;
}

.new-popup-open {
	max-width: 800px;
	width: 100%;
	overflow: hidden;
	position: relative;
	background: #fff;
}

.new-popup-hidden {
	display: none;
}

body .contacts-form .new-popup-open {
	max-width: none;
}

body .contacts-form .new-popup-open .new-popup__submit {
	max-width: 400px;
	align-self: center;
}

.new-popup::after {
	content: "";
	position: absolute;
	bottom: -20px;
	right: -20px;
	width: 200px;
	height: 200px;
	background: url("/local/templates/new_gkmp32/img/scrap.svg") no-repeat;
	background-size: cover;
}

.new-popup__wrapper {
	overflow: auto;
	padding: 30px;
	height: 100%;
	position: relative;
	border: 1px solid rgba(0, 0, 0, 0.2);
}

.new-popup__title {
	color: #ba102c;
	font-weight: 700;
	font-size: 26px;
	line-height: normal;
	margin-bottom: 20px;
}

.new-popup__description {
	font-weight: 400;
	font-size: 15px;
	line-height: normal;
	margin-bottom: 40px;
	padding-bottom: 10px;
	border-bottom: 2px solid rgba(50, 50, 50, 0.1);
	width: 100%;
}

.new-popup__top {
	margin-bottom: 20px;
	display: flex;
	gap: 15px;
	justify-content: space-between;
}

.new-popup__left {
	display: flex;
	gap: 15px;
	flex-direction: column;
	justify-content: space-between;
	width: calc(50% - 7.5px);
}

.new-popup__group {
	position: relative;
	width: 100%;
	z-index: 2;
}

.new-popup__group-area {
	position: relative;
	width: 100%;
	height: 100%;
	z-index: 2;
}

.new-popup-form {
	position: relative;
	z-index: 2;
}

.new-popup__label {
	position: absolute;
	top: -7px;
	left: 10px;
	background: #fff;
	font-size: 12px;
	line-height: normal;
	color: #484747;
	border-left: 1px solid rgba(0, 0, 0, 0.2);
	border-right: 1px solid rgba(0, 0, 0, 0.2);
	padding: 0 10px;
}

.new-popup__input {
	width: 100%;
	outline: none;
	border: 1px solid rgba(0, 0, 0, 0.2);
	padding: 15px;
	font-size: 16px;
	line-height: normal;
	color: #484747;
}

.new-popup__input._error {
	border: 1px solid #ba102c;
}

.new-popup__input._error + .new-popup__label {
	border-left: 1px solid #ba102c;
	border-right: 1px solid #ba102c;
	color: #ba102c;
}

.new-popup__input::placeholder {
	color: #484747;
	font-size: 16px;
	line-height: normal;
	padding: 15px 0px;
}

.new-popup__input:focus {
	border: 1px solid rgba(0, 0, 0);
}

.new-popup__input:focus + .new-popup__label {
	border-left: 1px solid rgba(0, 0, 0);
	border-right: 1px solid rgba(0, 0, 0);
	color: #000;
}

.new-popup__right {
	width: calc(50% - 7.5px);
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.new-popup__textarea {
	resize: none;
	width: 100%;
	height: 100%;
	border: 1px solid rgba(0, 0, 0, 0.2);
	outline: none;
	padding: 15px;
	font-size: 16px;
	line-height: normal;
	color: #484747;
}

.new-popup__textarea:focus {
	border: 1px solid rgba(0, 0, 0);
}

.new-popup__textarea:focus + .new-popup__label {
	border-left: 1px solid rgba(0, 0, 0);
	border-right: 1px solid rgba(0, 0, 0);
	color: #000;
}

.new-popup__bottom {
	display: flex;
	flex-direction: column;
	gap: 15px;
	position: relative;
	z-index: 1;
}

.new-popup-checkbox {
	position: relative;
}

.new-popup-checkbox__label {
	width: 17px;
	height: 17px;
	background-color: #fff;
	border: 1px solid #ba102c;
	position: absolute;
	top: 0;
	left: 0;
	cursor: pointer;
	transition: background-color 0.3s ease 0s;
}

.new-popup-checkbox__label._error {
	box-shadow: 0px 0px 10px #ba102c;
}

.new-popup-checkbox__label::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 17px;
	height: 17px;
	background: url("/local/templates/new_gkmp32/img/arrow-white.svg") no-repeat;
	opacity: 0;
	transition: opacity 0.3s ease 0s;
}

.new-popup-checkbox__policy {
	font-size: 16px;
	line-height: normal;
	color: #484747;
	padding-left: 30px;
}

.new-popup-checkbox__policy-link {
	color: #ba102c;
	text-decoration: none;
	transition: color 0.3s ease 0s;
}

.new-popup-checkbox__policy-link:hover {
	color: #484747;
}

.new-popup-checkbox__input:checked + .new-popup-checkbox__label::before {
	opacity: 1;
}

.new-popup-checkbox__input:checked + .new-popup-checkbox__label {
	background-color: #ba102c;
}

.new-popup-checkbox__input {
	display: none;
}

.new-popup__submit {
	color: #fff;
	font-size: 16px;
	font-weight: 600;
	line-height: normal;
	background: #ba102c;
	border: 1px solid #ba102c;
	width: 100%;
	padding: 10px;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 50px;
	cursor: pointer;
	transition: all 0.3s ease 0s;
}

.new-popup__submit:hover {
	background: #fff;
	color: #ba102c;
}

.new-popup__select {
	height: 50px;
	width: 100%;
	border: 1px solid rgba(0, 0, 0, 0.2);
	outline: none;
	padding: 15px;
	font-size: 16px;
	line-height: normal;
	color: #484747;
}

.new-popup__select:focus {
	border: 1px solid rgba(0, 0, 0);
}

.new-popup__middle {
	width: 100%;
	margin-bottom: 20px;
}

.mob-popup-menu__list.lvl-2 > .open-sub-popup.active > .mob-popup-menu__list.lvl-3 {
	display: block;
}

.mob-popup-menu__list-item-arrow {
	top: 50% !important;
	transform: translateY(-50%) rotate(135deg);
	z-index: 0;
}

.mob-popup-menu__list-item-name {
	position: relative;
	z-index: 1;
}

@media (max-width: 767px) {
	.new-popup__title {
		font-size: 30px;
		text-align: center;
	}

	.new-popup__description {
		text-align: center;
	}

	.new-popup-checkbox__policy {
		font-size: 14px;
	}
}

@media (max-width: 479px) {
	.new-popup__top {
		flex-direction: column;
	}

	.new-popup__left,
	.new-popup__right {
		width: 100%;
	}

	.new-popup__textarea {
		height: 150px;
	}

	.new-popup::after {
		width: 100px;
		height: 100px;
	}

	.new-popup__title {
		font-size: 22px;
		margin-bottom: 15px;
	}
}

.new-popup__label span {
	color: #ba102c;
}

.new-popup__text-hidden {
	position: absolute;
	bottom: -39px;
	left: 0;
	background: #fff;
	padding: 5px 10px;
	border-left: 1px solid #ba102c;
	border-right: 1px solid #ba102c;
	border-bottom: 1px solid #ba102c;
	display: none;
	font-size: 12px;
	z-index: 2;
}

.new-popup__input._error ~ .new-popup__text-hidden {
	display: block;
}

.new-popup__input-file::file-selector-button {
	background: url("/local/templates/new_gkmp32/img/paper.svg") no-repeat;
	background-size: contain;
	max-width: 40px;
	color: transparent;
	cursor: pointer;
	transition: background-color 0.2s ease-in-out;
	border: none;
	margin: 0;
}

.new-popup__input-file::-webkit-file-upload-button {
	background: url("/local/templates/new_gkmp32/img/paper.svg") no-repeat;
	background-size: contain;
	color: transparent;
	cursor: pointer;
	transition: background-color 0.2s ease-in-out;
	border: none;
	margin: 0;
	max-width: 40px;
}

.new-popup__input-file::-ms-browse {
	background: url("/local/templates/new_gkmp32/img/paper.svg") no-repeat;
	background-size: contain;
	color: transparent;
	cursor: pointer;
	transition: background-color 0.2s ease-in-out;
	border: none;
	margin: 0;
	max-width: 40px;
}

.new-popup__input-file {
	font-size: 14px;
	cursor: pointer;
}

.new-popup.fancybox__content > .f-button.is-close-btn {
	border-radius: 0px;
	background: #ba102c;
	top: 0px;
	opacity: 1;
}

@media screen and (max-width: 1440px) {
	.vacancy-popup__form-row {
		flex-wrap: wrap;
		gap: 20px;
	}

	.vacancy-popup__form-container {
		max-width: none;
	}

	.vacancy-popup__form-container .new-popup-open {
		max-width: none;
	}
}

.new-classic-popup.new-popup-open.fancybox__content {
	padding: 0;
	max-width: 800px;
	background: #fff !important;
}

.form-vakansii-fancy {
	display: none;
}

.breadcrumb {
	width: 100%;
	background: #fff;
	padding-top: 5px;
}

.breadcrumb__list {
	position: relative;
	display: flex;
	align-items: center;
	list-style: none;
	flex-wrap: nowrap;
	column-gap: 12px;
	row-gap: 10px;
	max-width: 100%;
	overflow: hidden;
}

.breadcrumb__list:after {
	content: "";
	background-image: linear-gradient(270deg, #ffffff, transparent);
	width: 60px;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
}

.breadcrumb__link {
	font-size: 17px;
	font-weight: 400;
	line-height: 24px;
	letter-spacing: -0.51px;
	opacity: 0.6;
	color: #000;
}

.breadcrumb__item.selected .breadcrumb__link {
	font-weight: 700;
	opacity: 1;
	pointer-events: none;
}

.breadcrumb__item {
	position: relative;
	flex-shrink: 0;
}

.breadcrumb__item:not(:last-child) {
	padding-right: 30px;
}

.breadcrumb__item:not(:last-child)::after {
	content: "";
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 0;
	width: 17px;
	height: 17px;
	background: url("/local/templates/new_gkmp32/images/arrow-bread.svg") no-repeat;
	background-size: contain;
	opacity: 0.6;
}

.breadcrumb__item .breadcrumb__none {
	font-size: 17px;
	font-weight: 700;
	line-height: 24px;
	letter-spacing: -0.51px;
	opacity: 1;
	color: #000;
}

.breadcrumb__item .fa-angle-right:before {
	display: none;
}

.header-content {
	padding: 40px 0px 0px 0px;
}

@media (max-width: 1200px) {
	.item .header-content {
		padding: 140px 10px 20px 10px;
	}

	.breadcrumb__list {
		gap: 10px;
	}
}

@media (max-width: 767px) {
	.breadcrumb__list {
		gap: 0px;
	}

	.breadcrumb__link,
	.breadcrumb__item .breadcrumb__none {
		font-size: 16px;
		line-height: 26px;
	}

	.breadcrumb__item:not(:last-child) {
		padding-right: 26px;
	}
}

@media (max-width: 479px) {
	.breadcrumb__link,
	.breadcrumb__item .breadcrumb__none {
		font-size: 14px;
		line-height: 21px;
	}
}

.new-spoiler {
	padding: 40px 0px;
	transition: all 1.3s ease 0s;
}

.new-spoiler__text {
	margin-bottom: 20px;
	transition: all 1.3s ease 0s;
}

.new-spoiler h1,
.new-spoiler h2 {
	margin-bottom: 25px;
	line-height: normal;
}
.new-spoiler__text p:not(:last-child) {
	margin-bottom: 20px;
}
.new-spoiler__btn {
	padding: 10px 15px;
	background: transparent;
	border: 1px solid #ba102c;
	cursor: pointer;
	transition: all 0.3s ease 0s;
}
.new-spoiler__btn:hover {
	background: #ba102c;
	color: #fff;
}
.history-content-slider__item-content {
	height: 100%;
	overflow: auto;
}
.n-detail-location__img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	max-width: 350px;
}
.n-detail-location {
	margin-top: 40px;
	margin-bottom: 30px;
	display: flex;
	align-items: center;
	gap: 40px;
	flex-wrap: wrap;
}
.n-detail-location__info {
	max-width: 500px;
}

@media screen and (max-width: 1240px) {
	.n-detail-location__img {
		max-width: none;
	}
	.n-detail-location__info {
		max-width: none;
	}
	.n-detail-location {
		gap: 20px;
	}
}

.n-detail-share {
	display: flex;
	justify-content: flex-end;
}

.s-wrapper {
	background-color: #fff;
}

.c-description {
	margin-bottom: 60px;
}

.c-info-con-desc__text:last-child {
	margin-bottom: 0;
}

.z-product-accordion-content-top__img img {
	height: 100%;
	max-height: 123px;
	max-width: 101px;
	object-fit: contain;
}

.p-catalog__sublist {
	position: absolute;
	display: flex;
	flex-direction: column;
	gap: 7px;
	padding-right: 10px;
	margin-top: 74px;
	max-width: calc(100% - 80px);
	max-height: 240px;
	overflow: auto;
	opacity: 0;
	visibility: hidden;
	z-index: 1;
}

.p-catalog__item:hover .p-catalog__sublist {
	opacity: 1;
	visibility: visible;
}

.p-catalog__sublist a {
	position: relative;
	color: #fff;
	font-size: 17px;
	font-weight: 600;
	line-height: 130%;
	padding-left: 25px;
}

.p-catalog__sublist a:hover {
	color: #ba102c;
}

.p-catalog__sublist a:before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 15px;
	height: 15px;
	border: 2px solid #fff;
	border-radius: 50%;
}

.p-catalog__sublist a:hover:before {
	border: 2px solid #ba102c;
}

.p-catalog__sublist a:after {
	content: "";
	position: absolute;
	left: 5px;
	top: 50%;
	transform: translateY(-50%);
	width: 5px;
	height: 5px;
	background-color: #fff;
	border-radius: 50%;
}

.p-catalog__sublist a:hover:after {
	background-color: #ba102c;
}

.p-catalog__img {
	margin: 20px 0;
	min-height: 270px;
}

.p-first {
	position: relative;
}

.p-first__image {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}

.p-first__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.p-first-image__mobile {
	display: none;
}

.p-first > .s-container {
	position: relative;
	z-index: 1;
}

@media screen and (max-width: 767px) {
	.p-first-image__desktop {
		display: none;
	}

	.p-first-image__mobile {
		display: block;
	}
}

.p-catalog__hover::before {
	background: rgba(0, 0, 0, 0.7);
}

@media (min-width: 1000px) {
	.bottom__offer_right {
		margin-right: 120px;
	}
}

.left-info {
	max-width: 45%;
}

.right-links {
	max-width: 55%;
}

.right-links-block {
	gap: 90px;
	flex-wrap: nowrap;
}

.links-element {
	min-width: 30%;
}

.end-element {
	text-align: right;
	color: rgb(255 255 255 / 33%);
	font-size: 14px;
}

.end-element::after {
	content: "\25BA";
	margin-left: 5px;
	font-size: 6px;
	position: relative;
	bottom: 2px;
}

/* блок слайдер каталогов на странице документов */
.c-docs {
	/* padding-bottom: 99px;
	padding-top: 51px; */
}

.c-docs__wrapper {
	display: flex;
	flex-direction: column;
	gap: 40px;
}
.c-docs__title {
	text-transform: inherit;
}
.c-docs__slider {
	position: relative;
	width: 100%;
}
.c-docs__block {
	width: 100%;
}
.c-docs__list {
}
.c-docs__item {
	padding: 51px 49px 52px 50px;
	display: flex;
	gap: 38px;
	align-items: flex-start;
	border: 1px solid #e7e7e7;
	background: #fff;
	height: auto;
}
.c-docs__img {
	height: 316px;
	max-width: 225px;
	width: 100%;
	box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.25);
}
.c-docs__img img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.c-docs__info {
	display: flex;
	flex-direction: column;
	gap: 14px;
	align-items: flex-start;
	width: 100%;
	height: 100%;
}
.c-docs__top {
	display: flex;
	gap: 10px;
	justify-content: space-between;
	width: 100%;
}
.c-docs__size,
.c-docs__date {
	font-size: 14px;
	font-weight: 700;
	line-height: 130%;
	color: #ba102c;
}
.c-docs__name {
	color: #272727;
	font-size: 24px;
	font-weight: 700;
	line-height: 130%;
}
.c-docs__description {
	color: #7e7e7e;
	font-size: 14px;
	line-height: 130%;
	flex-grow: 1;
}
.c-docs__btn {
	color: #fff;
	font-size: 16px;
	line-height: 130%;
	padding: 18.5px 27.5px 18.5px 61.5px;
	background: #ba102c;
	border: 1px solid #ba102c;
	display: flex;
	justify-content: center;
}
.c-docs__btn p {
	position: relative;
	transition: all 0.3s ease 0s;
}
.c-docs__btn p::before {
	content: "";
	position: absolute;
	top: 50%;
	left: -34px;
	transform: translateY(-50%);
	width: 24px;
	height: 24px;
	transition: all 0.2s ease 0s;
	background: url("/local/templates/new_gkmp32/img/docs-block/icon/icon-download.svg") no-repeat center / contain;
}
.c-docs__btn:hover {
	background: transparent;
	color: #000;
}
.c-docs__btn:hover p::before {
	filter: brightness(0);
}
.c-docs-nav {
}
.c-docs-nav__prev,
.c-docs-nav__next {
	background: #ba102c;
	border-radius: 50%;
	width: 50px;
	height: 50px;
	transition: all 0.3s ease 0s;
}
.c-docs-nav__prev:hover,
.c-docs-nav__next:hover {
	background: #272727;
}
.c-docs-nav__prev::after,
.c-docs-nav__next::after {
	width: 24px;
	height: 24px;
	transform: none;
}
.c-docs-nav__prev::after {
	background: url("/local/templates/new_gkmp32/img/docs-block/icon/arrow-left.svg") no-repeat center / contain;
}
.c-docs-nav__next::after {
	background: url("/local/templates/new_gkmp32/img/docs-block/icon/arrow-right.svg") no-repeat center / contain;
}
.c-docs-nav__prev {
	left: -26px;
}
.c-docs-nav__next {
	right: -26px;
}
@media screen and (max-width: 1440.98px) {
	.c-docs__name {
		font-size: 18px;
		line-height: 110%;
	}
	.c-docs__item {
		padding: 49px 23px 22px 23px;
	}
	.c-docs-nav__next {
		right: -13px;
	}
	.c-docs-nav__prev {
		left: -13px;
	}
	.c-docs-nav__next,
	.c-docs-nav__prev {
		width: 34px;
		height: 34px;
	}
	.c-docs-nav__prev::after,
	.c-docs-nav__next::after {
		width: 16px;
		height: 16px;
	}
}
@media screen and (max-width: 1024.98px) {
	.c-docs__img {
		height: 224px;
		max-width: 159px;
	}
}
@media screen and (max-width: 767.98px) {
	.c-docs__item {
		flex-direction: column;
	}
	.c-docs__img {
		align-self: center;
	}
	.c-docs-nav__next,
	.c-docs-nav__prev {
		top: 25%;
		bottom: auto;
	}
	.c-docs__btn {
		font-size: 14px;
	}
	.c-docs__wrapper {
		gap: 22px;
	}
}
@media screen and (max-width: 479.98px) {
	.c-docs__btn {
		padding: 20px;
		width: 100%;
	}
}
.developer {
	display: flex;
	gap: 55px;
	align-items: center;
	max-width: 345px;
	width: 100%;
}

.developer__logo {
	flex-shrink: 0;
}

.developer__text {
	font-size: 14px;
	line-height: 18px;
	position: relative;
}

.developer__text::before {
	content: "";
	position: absolute;
	top: 50%;
	left: -43px;
	width: 28px;
	height: 1px;
	background: #fff;
}

.developer__text span {
	color: #ec1557;
	text-decoration-line: underline;
}
.footer-bottom {
	justify-content: flex-end;
}
/* новый адаптив footer */
.footer-body {
	gap: 20px;
}
.footer-body__info {
	width: calc(30% - 10px);
}
.footer-body-menu {
	width: calc(70% - 10px);
}
.footer-body-menu__list {
	display: flex;
	flex-wrap: wrap;
	row-gap: 40px;
	column-gap: 10px;
	justify-content: space-between;
}
@media screen and (max-width: 1440px) {
	.footer-links-list__title,
	.footer-body__address-title {
		font-size: 16px;
		line-height: 24px;
	}
	.footer-links-list__item,
	.footer-body__address-text {
		font-size: 14px;
		line-height: 18px;
	}
}
@media screen and (max-width: 1024px) {
	.footer-body__info {
		width: 100%;
	}
	.footer-body-menu {
		width: 100%;
	}
	.footer-socials {
		margin-top: 40px;
	}
	.end-element {
		text-align: left;
	}
}
/* lazy-video */
.lazy-video {
	width: 100%;
	height: 100%;
	position: relative;
	background: rgb(0, 0, 0, 0.8);
	z-index: 1;
	cursor: pointer;
	overflow: hidden;
}
.lazy-video::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 60px;
	height: 60px;
	background: url("/local/templates/new_gkmp32/img/play_white.svg") no-repeat center / contain;
	pointer-events: none;
	z-index: 1;
	transition: all 0.3s ease 0s;
}
.lazy-video._loading::before {
	opacity: 0;
}
.c-info-con-desc-slider__list {
	align-items: unset !important;
}
#frame-hidden {
	padding: 0;
	max-width: 700px;
	width: 100%;
	height: 600px;
}
#frame-hidden iframe {
	width: 100%;
	height: 100%;
}
.c-info-con-desc-slider__item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
@media screen and (max-width: 1440px) {
	.lazy-video {
		background-size: cover !important;
	}
}
@media screen and (max-width: 1024px) {
	#frame-hidden {
		max-width: 500px;
		height: 400px;
	}
	iframe {
		width: 100%;
	}
}
@media screen and (max-width: 479px) {
	#frame-hidden {
		max-width: 400px;
		height: 300px;
	}
}
.c-first-slider-big__img {
	height: 100%;
	width: 100%;
}
.c-other {
	padding: 60px 0px;
	background: #f8f8f8;
}
.c-other__wrapper {
	display: flex;
	flex-direction: column;
	gap: 30px;
}
.c-other__title.service-h2 {
	border: none;
	margin: 0;
	padding: 0;
}
.c-other__slider {
	width: 100%;
}
.c-other__sliderMain {
	width: 100%;
}
.c-other__list {
}
.c-other__item {
	padding: 30px;
	background: #fff;
	display: flex;
	flex-direction: column;
	gap: 20px;
	height: auto;
}
.c-other__name {
	color: #272727;
	font-size: 16px;
	font-weight: 700;
	line-height: 110%;
	flex-grow: 1;
	position: relative;
	z-index: 1;
}
.c-other__item:hover .c-other__name {
	color: #fff;
}
.c-other__img {
	flex-grow: 0;
	flex-shrink: 0;
	height: 240px;
}
.c-other__img img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: bottom;
}
.c-other__bg {
	position: absolute;
	inset: 0;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: all 0.3s ease 0s;
}
.c-other__bg::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgb(0, 0, 0, 0.5);
	pointer-events: none;
}
.c-other__item:hover .c-other__bg {
	opacity: 1;
	visibility: visible;
}
.c-other__bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.c-other__top {
	display: flex;
	gap: 20px;
	justify-content: space-between;
	align-items: center;
}
.c-other-nav {
	display: flex;
	gap: 15px;
}
.c-other-nav__prev,
.c-other-nav__next {
	cursor: pointer;
	width: 50px;
	height: 50px;
	background: #ba102c;
	border-radius: 50%;
	position: relative;
	transition: opacity 0.3s ease 0s;
}
.c-other-nav__prev::after,
.c-other-nav__next::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 24px;
	height: 24px;
}
.c-other-nav__prev::after {
	background: url("/local/templates/new_gkmp32/production-new/assets/img/icon/arrow-card-left-white.svg") no-repeat
		center / contain;
}
.c-other-nav__next::after {
	background: url("/local/templates/new_gkmp32/production-new/assets/img/icon/arrow-card-right-white.svg") no-repeat
		center / contain;
}
.c-other-nav__next.swiper-button-disabled,
.c-other-nav__prev.swiper-button-disabled {
	opacity: 0.6;
	pointer-events: none;
}
@media screen and (max-width: 767px) {
	.c-other__slider {
		overflow: visible;
	}
	.c-other__sliderMain {
		overflow: visible;
	}
	.c-other-nav__prev,
	.c-other-nav__next {
		width: 35px;
		height: 35px;
	}
	.c-other-nav {
		gap: 10px;
	}
	.c-other {
		padding: 40px 0px;
	}
	iframe {
		width: 100%;
		height: 100%;
	}
}
@media screen and (max-width: 479px) {
	.c-other__name {
		font-size: 14px;
	}
	.c-other__img {
		height: 190px;
	}
}

.vacancy-popup__info-col .row {
	justify-content: space-between;
	flex-wrap: nowrap;
}
.vacancy-popup__info-col .row .vacancy-popup__info-col:nth-child(1) {
	width: 25%;
}
.vacancy-popup__info-col .row .vacancy-popup__info-col:nth-child(2) {
	width: 30%;
}
.vacancy-popup__info-col .row .vacancy-popup__info-col:nth-child(3) {
	width: 30%;
}
.success-popup {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: white;
	padding: 20px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
	z-index: 1000;
	border-radius: 5px;
	text-align: center;
}

.success-popup__content {
	font-size: 18px;
}

.success-popup__close {
	margin-top: 10px;
	background: red;
	color: white;
	border: none;
	padding: 10px;
	cursor: pointer;
}
.popup-form-block {
	padding: 10px 0;
	border: unset;
}
.left-new-style-popup {
	width: 100%;
}
.sliderMain-img {
	height: 200px;
}
.sliderMain-img img {
	width: 100%;
	height: 100%;
}
.sliderMain-content {
	padding: 30px;
	background: #fff;
	display: flex;
	flex-direction: column;
	gap: 15px;
}
.sliderMain-date {
	color: #7e7e7e;
	font-size: 16px;
}
.sliderMain-head {
	color: #272727;
	font-size: 18px;
	min-height: 100px;
}
.sliderMain-body {
	color: #7e7e7e;
	font-size: 16px;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 4;
	overflow: hidden;
	text-overflow: ellipsis;
	min-height: 130px;
}
.sliderMain-head:hover {
	color: rgba(186, 16, 44, 1);
}
.hover-block:hover {
	border-bottom: 1.5px solid rgba(186, 16, 44, 1);
}
.more-news {
	margin-left: 25px;
	color: rgba(186, 16, 44, 1);
	line-height: 14px;
}
.more-news::after {
	content: "";
	position: absolute;
	width: 25px;
	height: 15px;
	background: url("../production-new/assets/img/icon/arrow-right-red.svg") no-repeat;
	background-size: contain;
	margin-left: 20px;
}
.news-title-block {
	display: flex;
	align-items: center;
}
@media only screen and (max-width: 767px) {
	.more-news {
		margin-left: 0px;
	}
	.more-news::after {
		margin-left: 5px;
	}
	.news-title-block {
		flex-direction: column;
		align-items: start;
		gap: 5px;
	}
}
.footer-body-menu {
	display: flex;
	flex-direction: column;
	gap: 95px;
}

@media screen and (max-width: 767px) {
	.footer-bottom {
		justify-content: center;
	}
}

@media screen and (min-width: 1200px) and (max-width: 1500px) {
	.footer-body-menu__list {
		flex-wrap: nowrap;
	}
}

@media screen and (max-width: 1024px) {
	.footer-body-menu {
		gap: 0;
	}
	.footer-bottom {
		justify-content: flex-start;
	}
}

@media screen and (max-width: 1200px) {
	.footer-body-menu__list {
		justify-content: left;
	}
}

body._disabled {
	overflow: hidden;
}

.p-breadcrumbs__list {
	position: relative;
	flex-wrap: nowrap;
	overflow: hidden;
}

.p-breadcrumbs__item {
	flex-shrink: 0;
}

.p-breadcrumbs__list:after {
	content: "";
	background-image: linear-gradient(270deg, #242424, transparent);
	width: 60px;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
}
.p-specification-accordion__description {
	max-width: none;
}
.p-specification-accordion__description *:last-child {
	padding-bottom: 40px;
}
.p-specification-accordion__item._show .p-specification-accordion__content {
	margin-bottom: 0px;
}
