:root
{
	--color_1: #373434;
	--color_2: #545454;
	--color_3: #EFEFEF;
	--color_4: #FBFBFB;
	--color_5: #231F20;
	--color_5_40: #231F2066;
	--color_6: #231F20;
	--color_7: #0008CC;

	--color_black: #000000;
	--color_black_00: rgba(0, 0, 0, 0);
	--color_black_10: rgba(0, 0, 0, 0.10);
	--color_black_20: rgba(0, 0, 0, 0.20);
	--color_black_40: rgba(0, 0, 0, 0.40);
	--color_black_50: rgba(0, 0, 0, 0.50);
	--color_red: #FF0000;
	--color_green: #008000;
	--color_white: #FFFFFF;
	--color_white_10: rgba(255, 255, 255, 0.10);
	--color_white_25: rgba(255, 255, 255, 0.25);
	--color_white_40: rgba(255, 255, 255, 0.40);
	--color_white_50: rgba(255, 255, 255, 0.50);
	--color_white_70: rgba(255, 255, 255, 0.70);
	--color_light_gray: #FBFBFB;
	--color_gray: #EFEFEF;
	--color_dark: #373434;
	--color_colorScheme: #F9B122;
	--color_colorScheme_25: rgba(249, 177, 34, 0.25);
	--color_colorScheme_40: rgba(249, 177, 34, 0.40);

	--font-family-1: "Open Sans", sans-serif;

	--border-radius: 0;

	--animate-duration: 1s;
	--animate-delay: 1s;
	--animate-repeat: 1;

	--picture-source-max-width-p1: 991px;

	--site-width-max-width: 1550px;
	--width-coefficient: calc((100vw - 320px) / (1550 - 320));
	--content-position-left: calc(((100% - 1550px) / 2) + 15px);
	--content-position-left-no-p: calc(((100% - 1550px) / 2));
	--content-position-right: calc(((100% - 1550px) / 2) + 15px);
	--content-position-right-no-p: calc((100% - 1550px) / 2);
}

@media (max-width: 1550px)
{
	:root
	{
		--site-width-max-width: 1400px;

		--content-position-left: calc(((100% - 1400px) / 2) + 15px);
		--content-position-left-no-p: calc(((100% - 1400px) / 2));
		--content-position-right: calc(((100% - 1400px) / 2) + 15px);
		--content-position-right-no-p: calc((100% - 1400px) / 2);
	}
}
@media (max-width: 1440px)
{
	:root
	{
		--site-width-max-width: 1200px;

		--content-position-left: calc(((100% - 1200px) / 2) + 15px);
		--content-position-left-no-p: calc(((100% - 1200px) / 2));
		--content-position-right: calc(((100% - 1200px) / 2) + 15px);
		--content-position-right-no-p: calc((100% - 1200px) / 2);
	}
}
@media (max-width: 1200px)
{
	:root
	{
		--site-width-max-width: 970px;

		--content-position-left: calc(((100% - 970px) / 2) + 15px);
		--content-position-left-no-p: calc(((100% - 970px) / 2));
		--content-position-right: calc(((100% - 970px) / 2) + 15px);
		--content-position-right-no-p: calc((100% - 970px) / 2);
	}
}
@media (max-width: 991px)
{
	:root
	{
		--site-width-max-width: 750px;

		--content-position-left: calc(((100% - 750px) / 2) + 15px);
		--content-position-left-no-p: calc(((100% - 750px) / 2));
		--content-position-right: calc(((100% - 750px) / 2) + 15px);
		--content-position-right-no-p: calc((100% - 750px) / 2);
	}
}
@media (max-width: 767px)
{
	:root
	{
		--site-width-max-width: 550px;

		--content-position-left: calc(((100% - 550px) / 2) + 15px);
		--content-position-left-no-p: calc(((100% - 550px) / 2));
		--content-position-right: calc(((100% - 550px) / 2) + 15px);
		--content-position-right-no-p: calc((100% - 550px) / 2);
	}
}
@media (max-width: 575px)
{
	:root
	{
		--site-width-max-width: 100%;

		--content-position-left: 15px;
		--content-position-left-no-p: 15px;
		--content-position-right: 15px;
		--content-position-right-no-p: 15px;
	}
}

body
{
	background-color: var(--color_4);
	margin: 0;
	padding: 0;
	min-width: 320px;
	width: 100%;
	min-width: var(--width-coefficient);
	line-height: 1;
	font-family: var(--font-family-1);
	font-size: 1.6rem;
	font-weight: normal;
	color: var(--color_2);
}

body.open
{
	overflow: hidden;
}

.hide
{
	display: none;
}

img
{
	display: inline-block;
	max-width: 100%;
	max-height: 100%;
}

picture
{
	display: -ms-flex;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
}

a
{
	color: var(--color_colorScheme);
	-webkit-transition: all 0.35s ease;
	-moz-transition: all 0.35s ease;
	-ms-transition: all 0.35s ease;
	-o-transition: all 0.35s ease;
	transition: all 0.35s ease;
}
a:hover
{
	color: var(--color_1);
}

/*************/

.bgLight
{
	background-color: var(--color_white);
}
.bgLightGray
{
	background-color: var(--color_light_gray);
}
.bgGray
{
	background-color: var(--color_gray);
}
.bgDarkGray
{
	background-color: var(--color_2);
}
.bgColorScheme
{
	background-color: var(--color_colorScheme);
}
.bgDark
{
	background-color: var(--color_dark);
}
.bgRed
{
	background-color: var(--color_red);
}
.bgGreen
{
	background-color: var(--color_green);
}

.bgNone + .bgNone
{
	padding-top: 5px;
}
.bgLight + .bgLight
{
	padding-top: 5px;
}
.bgLightGray + .bgLightGray
{
	padding-top: 5px;
}
.bgGray + .bgGray
{
	padding-top: 5px;
}
.bgColorScheme + .bgColorScheme
{
	padding-top: 5px;
}
.bgDark + .bgDark
{
	padding-top: 5px;
}
.bgRed + .bgRed
{
	padding-top: 5px;
}
.bgGreen + .bgGreen
{
	padding-top: 5px;
}

/*************/
/*************/

.truncate-inline-block
{
	display: inline-block;
	max-width: 100%;/*ВНИМАНИЕ! В некоторых случая это ограничение ширины все равно ничего не ограничит, так что нужно ограничивать другими способами. Помогает overflow: hidden; у родительского элемента*/
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	vertical-align: top;
}
.truncate-block
{
	display: block;
	max-width: 100%;/*ВНИМАНИЕ! В некоторых случая это ограничение ширины все равно ничего не ограничит, так что нужно ограничивать другими способами. Помогает overflow: hidden; у родительского элемента*/
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	vertical-align: top;
}

/*************/

.text-center
{
	text-align: center;
}
.text-left
{
	text-align: left;
}
.text-right
{
	text-align: right;
}

/*************/

.img_wrap
{
    position: relative;
	display: block;
    width: 100%;
    padding-bottom: 100%;
}
.img_wrap .el
{
    position: absolute;
	display: -ms-flex;
	display: flex;
	justify-content: center;
	align-items:center;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}
.vode_wrap .el
{
    border-radius: 20px;
	overflow: hidden;
}
.img_wrap .el img
{
    display: block;
    max-width: 100%;
    max-height: 100%;
}

/******/

.videoImgWrap
{
	position: relative;
	display: block;
	width: 100%;
	padding-bottom: 56.25%;
}
.videoImgWrap .el
{
	position: absolute;
	display: -ms-flex;
	display: flex;
	justify-content: center;
	align-items:center;
	border-radius: 20px;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
}
.videoImgWrap .el img
{
	display: block;
	object-fit: cover;
	margin: 0;
	width: 100%;
	height: 100%;
}
.videoImgWrap .el svg
{
	position: absolute;
	top: 50%;
	left: 50%;
	width: 68px;
	height: 48px;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
.videoImgWrap .el svg .ytp-large-play-button-bg
{
	-webkit-transition: fill .1s cubic-bezier(0.4,0,1,1),fill-opacity .1s cubic-bezier(0.4,0,1,1);
	transition: fill .1s cubic-bezier(0.4,0,1,1),fill-opacity .1s cubic-bezier(0.4,0,1,1);
	fill: var(--color_colorScheme);
	fill-opacity: .8;
}
.videoImgWrap:hover .el svg .ytp-large-play-button-bg
{
	fill: #FF0000;
	fill-opacity: 1;
}


/*****/

@media (max-width: 1550px)
{
	.videoImgWrap .el
	{
		border-radius: calc(10px + (20 - 10) * var(--width-coefficient));
	}
}

/******/

svg,
svg path
{
	-webkit-transition: all 0.35s ease;
	-moz-transition: all 0.35s ease;
	-ms-transition: all 0.35s ease;
	-o-transition: all 0.35s ease;
	transition: all 0.35s ease;
}

/*************/

input,
select,
textarea
{
	display: block;
	border-radius: 30px;
	border: 1px solid var(--color_1);
    background-color: var(--color_white);
	width: 100%;
	padding: 0 30px;
	height: 62px;
	font-family: var(--font-family-1);
	line-height: 1.7rem;
	font-size: 1.4rem;
	color: var(--color_1);
	-ms-transition: all 0.3s ease-in-out 0s;
	transition: all 0.3s ease-in-out 0s;
}
input:focus,
select:focus,
textarea:focus
{
	border-color: var(--color_1);
}
textarea
{
	height: 134px;
	resize: vertical;
	padding-top: 19px;
	padding-bottom: 19px;
}
input.type2,
select.type2,
textarea.type2
{
    border-radius: 0;
    border: none;
    border-bottom: 1px solid var(--color_1);
    background-color: transparent;
    padding: 0;
}
.bgDark input.type2,
.bgDark select.type2,
.bgDark textarea.type2
{
    border-bottom: 1px solid var(--color_white);
	color: var(--color_white);
}
textarea.type2
{
    height: 134px;
}

button
{
    cursor: pointer;
}

/* WebKit, Edge */
::-webkit-input-placeholder
{
    opacity: 1;
}
/* Firefox 4-18 */
:-moz-placeholder
{
    opacity: 1;
}
/* Firefox 19+ */
::-moz-placeholder
{
    opacity: 1;
}
/* IE 10-11 */
:-ms-input-placeholder
{
    opacity: 1;
}
/* Edge */
::-ms-input-placeholder
{
    opacity: 1;
}
/* MODERN BROWSER */
::placeholder
{
    opacity: 1;
}

@media (max-width: 991px)
{
	input,
	select,
	textarea
	{
		padding: 0 10px;
		height: 42px;
	}
	textarea
	{
		border-radius: 20px;
		height: 100px;
		padding-top: 12px;
		padding-bottom: 12px;
	}
}

/*************/

.input_wrapper
{
	position: relative;
	display: block;
	margin-bottom: 30px;
}
.input_wrapper label
{
	display: inline-block;
	margin-bottom: 5px;
	line-height: 1.4;
	font-size: 1.8rem;
    font-weight: 500;
	color: var(--color_1);
}
.input_wrapper label sup
{
	color: var(--color_red);
}
.input_wrapper .comment
{
	margin-top: 5px;
	line-height: 1.4;
	font-size: 1.6rem;
	color: var(--color_2);
}
/**/
.input_wrapper .inputIcoWrapper
{
	position: relative;
}
.input_wrapper .inputIcoWrapper.left input
{
	padding-left: 40px;
}
.input_wrapper .inputIcoWrapper.right input
{
	padding-right: 40px;
}
.input_wrapper .inputIcoWrapper.leftAndRight input
{
	padding-left: 40px;
	padding-right: 40px;
}
.input_wrapper .inputIcoWrapper .ico
{
	position: absolute;
	display: -ms-flex;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	top: 0;
	left: auto;
	right: auto;
	padding: 0 5px 0 10px;
	width: 40px;
	height: 100%;
	z-index: 2;
}
.input_wrapper .inputIcoWrapper .ico[onclick]
{
	cursor: pointer;
}
.input_wrapper .inputIcoWrapper .ico.left
{
	left: 0;
	right: auto;
	padding: 0 5px 0 10px;
}
.input_wrapper .inputIcoWrapper .ico.right
{
	left: auto;
	right: 0;
	padding: 0 10px 0 5px;
}

.input_wrapper .inputIcoWrapper .ico i
{
	font-size: 1.8rem;
	color: var(--color_colorScheme);
}

/***/

.input_wrapper.checkbox
{
	display: -ms-flex;
	display: flex;
}
.input_wrapper.checkbox input
{
	position: absolute;
	width: 18px;
	height: 18px;
	z-index: -2;
	opacity: 0;
}
.input_wrapper.checkbox label
{
	position: relative;
	padding-left: 25px;
	line-height: 1.4;
	font-size: 1.8rem;
	color: var(--color_1);
	cursor: pointer;
}
.input_wrapper.checkbox input[disabled] ~ label
{
	color: var(--color_2);
}
.input_wrapper.checkbox input[type='checkbox'] ~ label i,
.input_wrapper.checkbox input[type='radio'] ~ label i
{
	position: absolute;
	display: -ms-flex;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 4px;
	border: 1px solid var(--color_2);
	background-color: var(--color_white);
	top: 1px;
	left: 0;
	width: 18px;
	height: 18px;
}
.input_wrapper.checkbox input[type='checkbox'] ~ label i
{
	border-radius: 4px;
}
.input_wrapper.checkbox input[type='radio'] ~ label i
{
	border-radius: 100%;
}
.input_wrapper.checkbox input[type='checkbox'] ~ label i::before,
.input_wrapper.checkbox input[type='radio'] ~ label i::before
{
	position: absolute;
	display: block;
	content: "";
	border-radius: 100%;
	background-color: transparent;
	top: 50%;
	left: 50%;
	width: 8px;
	height: 8px;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
.input_wrapper.checkbox input[type='checkbox']:checked ~ label i::before,
.input_wrapper.checkbox input[type='radio']:checked ~ label i::before
{
	background-color: var(--color_colorScheme);
}
.input_wrapper.checkbox input[type='checkbox']:disabled ~ label i::before,
.input_wrapper.checkbox input[type='radio']:disabled ~ label i::before
{
	content: "\f05e";
	font-family: "FontAwesome";
	background-color: transparent;
	width: 9px;
	height: 10px;
	line-height: 1;
	font-size: 1rem;
	color: var(--color_2);
}

/*****/

.simpleForm
{
	margin: 0 auto;
	max-width: 750px;
}
.simpleForm .btn_wrap
{
	text-align: center;
}
.simpleForm .btn_wrap .btn
{
	width: 100%;
}

/*****/

.btn,
.staticText .btn
{
	display: -ms-inline-flexbox;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;

	border-radius: 30px;
	border: 1px solid var(--color_colorScheme);
	background-color: var(--color_colorScheme);
	padding: 0 32px;
	height: 46px;
	font-family: var(--font-family-1);
	font-size: 1.4rem;
	font-weight: 600;
	text-align: center;
	text-decoration: none !important;
	color: var(--color_1);
	cursor: pointer;
	-webkit-transition: all 0.35s ease;
	-moz-transition: all 0.35s ease;
	-ms-transition: all 0.35s ease;
	-o-transition: all 0.35s ease;
	transition: all 0.35s ease;
}
.btn:hover,
.staticText .btn:hover
{
	border-color: var(--color_1);
	background-color: var(--color_1);
	text-decoration: none !important;
	color: var(--color_white);
}
.btn svg path[fill],
.staticText .btn svg path[fill]
{
	fill: var(--color_1);
}
.btn:hover svg path[fill],
.staticText .btn:hover svg path[fill]
{
	fill: var(--color_white);
}
.btn svg path[stroke],
.staticText .btn svg path[stroke]
{
	stroke: var(--color_1);
}
.btn:hover svg path[stroke],
.staticText .btn:hover svg path[stroke]
{
	stroke: var(--color_white);
}

.btn.h62,
.staticText .btn.h62
{
	border-radius: 30px;
	height: 62px;
	font-size: 1.8rem;
}

/*******/

.btn.type2,
.staticText .btn.type2
{
	border: 1px solid var(--color_white);
	background-color: var(--color_white);
	color: var(--color_1);
}
.btn.type2:hover,
.staticText .btn.type2:hover
{
	border-color: var(--color_colorScheme);
	background-color: var(--color_colorScheme);
	color: var(--color_1);
}
.btn.type2 svg path[fill],
.staticText .btn.type2 svg path[fill]
{
	fill: var(--color_1);
}
.btn.type2:hover svg path[fill],
.staticText .btn.type2:hover svg path[fill]
{
	fill: var(--color_1);
}
.btn.type2 svg path[stroke],
.staticText .btn.type2 svg path[stroke]
{
	stroke: var(--color_1);
}
.btn.type2:hover svg path[stroke],
.staticText .btn.type2:hover svg path[stroke]
{
	stroke: var(--color_1);
}

/***/

.btn.type3,
.staticText .btn.type3
{
	border: 1px solid var(--color_white);
	background-color: transparent;
	color: var(--color_white);
}
.btn.type3:hover,
.staticText .btn.type3:hover
{
	border-color: var(--color_colorScheme);
	background-color: var(--color_colorScheme);
	color: var(--color_white);
}
.btn.type3 svg path[fill],
.staticText .btn.type3 svg path[fill]
{
	fill: var(--color_white);
}
.btn.type3:hover svg path[fill],
.staticText .btn.type3:hover svg path[fill]
{
	fill: var(--color_white);
}
.btn.type3 svg path[stroke],
.staticText .btn.type3 svg path[stroke]
{
	stroke: var(--color_white);
}
.btn.type3:hover svg path[stroke],
.staticText .btn.type3:hover svg path[stroke]
{
	stroke: var(--color_white);
}

/***/

.btn.type4,
.staticText .btn.type4
{
	border: 1px solid var(--color_1);
	background-color: var(--color_white);
	color: var(--color_1);
}
.btn.type4:hover,
.staticText .btn.type4:hover
{
	border-color: var(--color_colorScheme);
	background-color: var(--color_colorScheme);
	color: var(--color_1);
}
.btn.type4 svg path[fill],
.staticText .btn.type4 svg path[fill]
{
	fill: var(--color_1);
}
.btn.type4:hover svg path[fill],
.staticText .btn.type4:hover svg path[fill]
{
	fill: var(--color_1);
}
.btn.type4 svg path[stroke],
.staticText .btn.type4 svg path[stroke]
{
	stroke: var(--color_1);
}
.btn.type4:hover svg path[stroke],
.staticText .btn.type4:hover svg path[stroke]
{
	stroke: var(--color_1);
}

/***/

.btn.type5,
.staticText .btn.type5
{
	border: 1px solid var(--color_white);
	background-color: var(--color_white);
	color: var(--color_1);
}
.btn.type5:hover,
.staticText .btn.type5:hover
{
	border-color: var(--color_1);
	background-color: var(--color_1);
	color: var(--color_white);
}
.btn.type5 svg path[fill],
.staticText .btn.type5 svg path[fill]
{
	fill: var(--color_1);
}
.btn.type5:hover svg path[fill],
.staticText .btn.type5:hover svg path[fill]
{
	fill: var(--color_white);
}
.btn.type5 svg path[stroke],
.staticText .btn.type5 svg path[stroke]
{
	stroke: var(--color_1);
}
.btn.type5:hover svg path[stroke],
.staticText .btn.type5:hover svg path[stroke]
{
	stroke: var(--color_white);
}

/***/

.btn.type6,
.staticText .btn.type6
{
	border: 1px solid var(--color_1);
	background-color: transparent;
	color: var(--color_1);
}
.btn.type6:hover,
.staticText .btn.type6:hover
{
	border-color: var(--color_1);
	background-color: var(--color_1);
	color: var(--color_white);
}
.btn.type6 svg path[fill],
.staticText .btn.type6 svg path[fill]
{
	fill: var(--color_1);
}
.btn.type6:hover svg path[fill],
.staticText .btn.type6:hover svg path[fill]
{
	fill: var(--color_white);
}
.btn.type6 svg path[stroke],
.staticText .btn.type6 svg path[stroke]
{
	stroke: var(--color_1);
}
.btn.type6:hover svg path[stroke],
.staticText .btn.type6:hover svg path[stroke]
{
	stroke: var(--color_white);
}

/***/

.btn.type7,
.staticText .btn.type7
{
	border: 1px solid var(--color_colorScheme);
	background-color: var(--color_colorScheme);
	color: var(--color_1);
}
.btn.type7:hover,
.staticText .btn.type7:hover
{
	border-color: var(--color_white);
	background-color: var(--color_white);
	color: var(--color_1);
}
.btn.type7 svg path[fill],
.staticText .btn.type7 svg path[fill]
{
	fill: var(--color_1);
}
.btn.type7:hover svg path[fill],
.staticText .btn.type7:hover svg path[fill]
{
	fill: var(--color_1);
}
.btn.type7 svg path[stroke],
.staticText .btn.type7 svg path[stroke]
{
	stroke: var(--color_1);
}
.btn.type7:hover svg path[stroke],
.staticText .btn.type7:hover svg path[stroke]
{
	stroke: var(--color_1);
}

/*****/

@media (max-width: 991px)
{
	.btn,
	.staticText .btn
	{
		gap: 6px;

		padding: 0 15px;
		height: 38px;
		font-size: 1.2rem;
	}

	.btn.h62,
	.staticText .btn.h62
	{
		height: 42px;
		font-size: 1.4rem;
	}
}

/******************************/
/******************************/

.slick-slider,
.slick-slider .slick-list,
.slick-slider .slick-list .slick-track
{
	min-width: 100%;
	min-height: 100%;
}

.slick-slider.slick-dotted
{
	margin-bottom: 60px;
}

/******************************/

.slick-slider .slick-arrow
{
	position: absolute;
	display: -ms-flex;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 100%;
	border: 2px solid var(--color_black);
	background-color: transparent;

	width: 54px;
	height: 54px;
	text-align: center;
	color: var(--color_black);
	cursor: pointer;
	opacity: 1;
}
.slick-slider .slick-arrow:hover
{
	border-color: var(--color_colorScheme);
	background-color: var(--color_colorScheme);
	color: var(--color_white);
}
.slick-slider .slick-arrow
{
	z-index: 25;
}
.bgColorScheme .slick-slider .slick-arrow:hover
{
	border-color: var(--color_white);
	background-color: var(--color_white);
	color: var(--color_black);
}
.slick-slider .slick-arrow svg path[fill]
{
	fill: var(--color_1);
}
/*.slick-slider .slick-arrow:hover svg path[fill]*/
/*{*/
/*	fill: var(--color_white);*/
/*}*/
.slick-slider .slick-arrow svg path[stroke]
{
	stroke: var(--color_1);
}
/*.slick-slider .slick-arrow:hover svg path[stroke]*/
/*{*/
/*	stroke: var(--color_white);*/
/*}*/
.slick-slider .slick-arrow.slick-prev
{
	left: -70px;
}
.slick-slider .slick-arrow.slick-next
{
	right: -70px;
}
.slick-slider .slick-arrow::before
{
	display: none;
}

/*****/

.slick-dots
{
	display: -ms-flex;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	width: 100%;
	bottom: -60px;
}
.slick-dots li
{
	display: -ms-flex;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0;
}
.slick-dots li button
{
	position: relative;
	border-radius: 100%;
	width: 10px;
	height: 10px;
	opacity: 1;
}
.slick-dots li button::before
{
	position: absolute;
	content: "";
	background-color: var(--color_colorScheme_40);
	border-radius: 100%;
	top: 50%;
	left: 50%;
	width: 10px;
	height: 10px;
	opacity: 1;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
.bgColorScheme .slick-dots li button::before
{
	background-color: var(--color_white_40);
}
.slick-dots li.slick-active button::before,
.slick-dots li:hover button::before
{
	background-color: var(--color_colorScheme);
	width: 16px;
	height: 16px;
}
.bgColorScheme .slick-dots li.slick-active button::before,
.bgColorScheme .slick-dots li:hover button::before
{
	background-color: var(--color_white);
}

/*****/

@media (max-width: 1550px)
{
	.slick-slider .slick-arrow
	{
		width: calc(46px + (54 - 46) * var(--width-coefficient));
		height: calc(46px + (54 - 46) * var(--width-coefficient));
	}
	.slick-slider .slick-arrow.slick-prev
	{
		left: calc((35px + (70 - 35) * var(--width-coefficient)) * -1);
	}
	.slick-slider .slick-arrow.slick-next
	{
		right: calc((35px + (70 - 35) * var(--width-coefficient)) * -1);
	}

	.slick-slider.slick-dotted
	{
		margin-bottom: calc(30px + (60 - 30) * var(--width-coefficient));
	}

	.slick-dots
	{
		bottom: calc((30px + (60 - 30) * var(--width-coefficient)) * -1);
		gap: calc(10px + (20 - 10) * var(--width-coefficient));
	}
}
@media (max-width: 991px)
{
	.el_eatBlock_78344036 .slick-slider .slick-arrow.slick-prev
	{
		top: 0;
		left: 0;
		-webkit-transform: translate(0, 0);
		-ms-transform: translate(0, 0);
		transform: translate(0, 0);
	}
	.el_eatBlock_78344036 .slick-slider .slick-arrow.slick-next
	{
		top: 0;
		left: calc(56px + (64 - 56) * var(--width-coefficient));;
		right: auto;
		-webkit-transform: translate(0, 0);
		-ms-transform: translate(0, 0);
		transform: translate(0, 0);
	}

	.af_reviewsTextBlock_78344036 .slick-slider .slick-arrow.slick-prev
	{
		top: 0;
		left: 0;
		-webkit-transform: translate(0, 0);
		-ms-transform: translate(0, 0);
		transform: translate(0, 0);
	}
	.af_reviewsTextBlock_78344036 .slick-slider .slick-arrow.slick-next
	{
		top: 0;
		left: calc(56px + (64 - 56) * var(--width-coefficient));;
		right: auto;
		-webkit-transform: translate(0, 0);
		-ms-transform: translate(0, 0);
		transform: translate(0, 0);
	}
}
@media (max-width: 767px)
{
	.slick-slider .slick-arrow.slick-prev
	{
		left: 10px;
	}
	.slick-slider .slick-arrow.slick-next
	{
		right: 10px;
	}
}

/***********************************************************************/
/***********************************************************************/

.socialNetworkList
{
	display: -ms-flex;
	display: flex;
	gap: 20px;
}
.socialNetworkList li
{
	display: inline-block;
	border-radius: 10px;
	background-color: var(--color_colorScheme);
	width: 48px;
	height: 48px;
}
.socialNetworkList li .img_wrap .el
{
}
.socialNetworkList li .img_wrap .el img
{
}
.socialNetworkList li .img_wrap .el .title
{
	position: absolute;
	border-radius: 0;
	border: 1px solid var(--color_black);
	background-color: var(--color_white_50);
	left: 50%;
	padding: 0 10px;
	min-width: 110px;
	line-height: 26px;
	font-size: 1.4rem;
	font-weight: 400;
	text-indent: 0;
	text-align: center;
	color: var(--color_1);
	/*text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);*/
	pointer-events: none;
	opacity: 0;
	z-index: 5;
	box-shadow: 1px 1px 2px rgba(0,0,0,0.1);
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;

	-webkit-transform: translate(-50%, 0);
	-ms-transform: translate(-50%, 0);
	transform: translate(-50%, 0);
}
.socialNetworkList.top li .img_wrap .el .title
{
	bottom: calc(100% + 50px);
}
.socialNetworkList.bottom li .img_wrap .el .title
{
	top: calc(100% + 50px);
}
.socialNetworkList li .img_wrap .el .title::before
{
	position: absolute;
	content: '';
	left: 50%;
	margin-left: -10px;
	width: 0;
	height: 0;
	border-color: transparent;
}
.socialNetworkList.top li .img_wrap .el .title::before
{
	bottom: -11px;
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;
	border-top: 10px solid var(--color_1);
}
.socialNetworkList.bottom li .img_wrap .el .title::before
{
	top: -11px;
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;
	border-bottom: 10px solid var(--color_1);
}
.socialNetworkList.top li .img_wrap .el .title::after
{
	bottom: -11px;
	margin-left: -10px;
	border-top: 10px solid var(--color_1);
}
.socialNetworkList.bottom li .img_wrap .el .title::after
{
	top: -11px;
	margin-left: -10px;
	border-bottom: 10px solid var(--color_1);
}
.socialNetworkList.top li .img_wrap:hover .el .title
{
	bottom: calc(100% + 11px);
	opacity: 0.9;
}
.socialNetworkList.bottom li .img_wrap:hover .el .title
{
	top: calc(100% + 11px);
	opacity: 0.9;
}

/***********************************************************************/
/***********************************************************************/

.el_titleBlock_78344036
{
	position: relative;
	margin-bottom: 30px;

	font-family: var(--font-family-1);
	line-height: 4.6rem;
	font-size: 4.2rem;
	font-weight: 700;
	color: var(--color_1);
}
.bgDark .el_titleBlock_78344036
{
	color: var(--color_white);
}
.el_titleBlock_78344036.wb
{
	display: -ms-flex;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.el_titleBlock_78344036.text-center
{
	text-align: center;
}
.el_titleBlock_78344036.text-left
{
	text-align: left;
}
.el_titleBlock_78344036.text-right
{
	text-align: right;
}
.el_titleBlock_78344036 span
{
}

@media (max-width: 1550px)
{
	.el_titleBlock_78344036
	{
		margin-bottom: calc(20px + (30 - 20) * var(--width-coefficient));

		line-height: calc(22px + (46 - 22) * var(--width-coefficient));
		font-size: calc(18px + (42 - 18) * var(--width-coefficient));
	}
}

/*************************/

.burgerBtn
{
	display: -ms-flex;
	display: flex;
	align-items: center;
	border: none;
	background-color: transparent;
	border-radius: 0;
	padding: 0;
	width: 100%;
	/*height: 100%;*/
	font-family: var(--font-family-1);
	line-height: 20px;
	font-size: 1.4rem;
	font-weight: 400;
	color: var(--color_1);
	cursor: pointer;
}
.burgerBtn:hover,
.burgerBtn.open
{
}
.burgerBtn .burger
{
	display: inline-block;
	position: relative;
	width: 40px;
	height: 40px;
}
.burgerBtn .burger span,
.burgerBtn .burger span::before,
.burgerBtn .burger span::after
{
	position: absolute;
	display: block;
	background-color: var(--color_1);
	width: 100%;
	height: 2px;
}
.burgerBtn .burger span
{
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 5;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	transition: all 0.3s ease 0s;
}
.burgerBtn .burger span::before,
.burgerBtn .burger span::after
{
	position: absolute;
	content: "";
	left: 0;
	transition: all 0.3s ease 0s;
}
.burgerBtn .burger span::before
{
	-webkit-transform: translateY(-10px);
	-moz-transform: translateY(-10px);
	-ms-transform: translateY(-10px);
	-o-transform: translateY(-10px);
	transform: translateY(-10px);
}
.burgerBtn .burger span::after
{
	-webkit-transform: translateY(10px);
	-moz-transform: translateY(10px);
	-ms-transform: translateY(10px);
	-o-transform: translateY(10px);
	transform: translateY(10px);
}

.burgerBtn:hover .burger span
{
	/*background-color: #FFFFFF;*/
}
.burgerBtn.open .burger span
{
	background-color: transparent;
}
.burgerBtn:hover .burger span::before,
.burgerBtn:hover .burger span::after,
.burgerBtn.open .burger span::before,
.burgerBtn.open .burger span::after
{
	/*background-color: #FFFFFF;*/
}
.burgerBtn.open .burger span::before
{
	-webkit-transform: translate(0, 0) rotate(45deg);
	-moz-transform: translate(0, 0) rotate(45deg);
	-ms-transform: translate(0, 0) rotate(45deg);
	-o-transform: translate(0, 0) rotate(45deg);
	transform: translate(0, 0) rotate(45deg);
}
.burgerBtn.open .burger span::after
{
	-webkit-transform: translate(0, 0) rotate(-45deg);
	-moz-transform: translate(0, 0) rotate(-45deg);
	-ms-transform: translate(0, 0) rotate(-45deg);
	-o-transform: translate(0, 0) rotate(-45deg);
	transform: translate(0, 0) rotate(-45deg);
}

/****************************************/

section,
.section
{
	padding-top: 115px;
	padding-bottom: 115px;
}

.pt-0,
section.pt-0,
.section.pt-0
{
	padding-top: 0;
}

.pb-0,
section.pb-0,
.section.pb-0
{
	padding-bottom: 0;
}

.pt-60
{
	padding-top: 60px;
}
.pt-115
{
	padding-top: 115px;
}

.pb-60
{
	padding-bottom: 60px;
}
.pb-115
{
	padding-bottom: 115px;
}

@media (max-width: 1550px)
{
	section,
	.section
	{
		padding-top: calc(45px + (115 - 45) * var(--width-coefficient));
		padding-bottom: calc(45px + (115 - 45) * var(--width-coefficient));
	}
    .pt-60
    {
        padding-top: calc(30px + (60 - 30) * var(--width-coefficient));
    }
	.pt-115
	{
		padding-top: calc(45px + (115 - 45) * var(--width-coefficient));
	}

    .pb-60
    {
        padding-bottom: calc(30px + (60 - 30) * var(--width-coefficient));
    }
	.pb-115
	{
		padding-bottom: calc(45px + (115 - 45) * var(--width-coefficient));
	}
}

/************************************************************************************/
/*** MAIN ***/
/*************************************************************************************/

.container-fluid
{
	margin-right: auto;
	margin-left: auto;
	padding-right: 15px;
	padding-left: 15px;
	width: 100%;
}
.row
{
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-right: -10px;
	margin-left: -10px;
}
.col
{
	-ms-flex-preferred-size: 0;
	flex-basis: 0;
	-ms-flex-positive: 1;
	flex-grow: 1;
	max-width: 100%;
	padding-left: 10px;
	padding-right: 10px;
}
/**/
.row-0
{
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-right: -0px;
	margin-left: -0px;
}
.col-0
{
	-ms-flex-preferred-size: 0;
	flex-basis: 0;
	-ms-flex-positive: 1;
	flex-grow: 1;
	max-width: 100%;
	padding-left: 0;
	padding-right: 0;
}

/**********/

.siteWidth
{
	margin: 0 auto;
	max-width: var(--site-width-max-width);
}

/***************/

.contentWrapper
{
	display: -ms-flex;
	display: flex;
	flex-direction: column;
	width: 100%;
	min-height: 100%;
}

main
{
	display: -ms-flex;
	display: flex;
	flex: 1 1 auto;
	justify-content: center;
}

main #centralContent
{
	width: 100%;
}

/************************************/
/************************************/

.animate__animated
{
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-duration: var(--animate-duration);
	animation-duration: var(--animate-duration);
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}
@media print, (prefers-reduced-motion: reduce)
{
	.animate__animated
	{
		-webkit-animation-duration: 1ms !important;
		animation-duration: 1ms !important;
		-webkit-transition-duration: 1ms !important;
		transition-duration: 1ms !important;
		-webkit-animation-iteration-count: 1 !important;
		animation-iteration-count: 1 !important;
	}
}

@-webkit-keyframes zoomIn
{
	from
	{
		opacity: 0;
		-webkit-transform: scale3d(0.3, 0.3, 0.3);
		transform: scale3d(0.3, 0.3, 0.3);
	}

	50%
	{
		opacity: 1;
	}
}
@keyframes zoomIn
{
	from
	{
		opacity: 0;
		-webkit-transform: scale3d(0.3, 0.3, 0.3);
		transform: scale3d(0.3, 0.3, 0.3);
	}

	50%
	{
		opacity: 1;
	}
}
.animate__zoomIn
{
	-webkit-animation-name: zoomIn;
	animation-name: zoomIn;
}

/***********************************************************************/
/***********************************************************************/

.el_informationLineInHeaderBlockm_78344036
{
}
.el_informationLineInHeaderBlockm_78344036 .informationLineInHeaderList
{
}
.el_informationLineInHeaderBlockm_78344036 .informationLineInHeaderList .item
{
	display: -ms-flex;
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	align-items: center;
	justify-content: center;
	padding: 10px 0;
	text-align: center;
}
.el_informationLineInHeaderBlockm_78344036 .informationLineInHeaderList .item .description
{
	font-family: var(--font-family-1);
	line-height: 1.4;
	font-size: 1.5rem;
	font-weight: 400;
	color: var(--color_1);
}
.el_informationLineInHeaderBlockm_78344036.bgColorScheme .informationLineInHeaderList .item .description,
.el_informationLineInHeaderBlockm_78344036.bgDark .informationLineInHeaderList .item .description
{
	color: var(--color_white);
}
.el_informationLineInHeaderBlockm_78344036 .informationLineInHeaderList .item .ilBtn
{
	display: -ms-inline-flexbox;
	display: inline-flex;
	gap: 10px;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--color_colorScheme);
	background-color: var(--color_colorScheme);
	border-radius: 30px;
	padding: 0 15px;
	min-width: 100px;
	height: 32px;
	color: var(--color_white);
}
.el_informationLineInHeaderBlockm_78344036 .informationLineInHeaderList .item .ilBtn:hover
{
	position: relative;
	z-index: 1;
}
.el_informationLineInHeaderBlockm_78344036.bgColorScheme .informationLineInHeaderList .item .ilBtn
{
	border: 1px solid var(--color_1);
}
.el_informationLineInHeaderBlockm_78344036.bgColorScheme .informationLineInHeaderList .item .ilBtn:hover
{
	border: 1px solid var(--color_white);
}
.el_informationLineInHeaderBlockm_78344036 .informationLineInHeaderList .item .ilBtn:hover::before
{
	position: absolute;
	display: block;
	content: "";
	border-radius: 30px;
	background-color: var(--color_black_10);
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
}
.el_informationLineInHeaderBlockm_78344036 .informationLineInHeaderList .item .messagerList
{
	display: -ms-inline-flexbox;
	display: inline-flex;
	flex-wrap: wrap;
	gap: 10px;
	align-items: center;
	justify-content: center;
}
.el_informationLineInHeaderBlockm_78344036 .informationLineInHeaderList .item .messagerList .messager
{
	display: -ms-inline-flexbox;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 25px;
	height: 25px;
}
.el_informationLineInHeaderBlockm_78344036 .informationLineInHeaderList .item .messagerList .messager img
{
	max-width: 25px;
	max-height: 25px;
}

/***********************************************************************/
/***********************************************************************/

header.headerCD
{
	position: relative;
	height: 150px;
	z-index: 600;
}
header.headerCD.type2
{
	height: 36px;
}

/**********/

header.headerCD .topHeder
{
	background-color: var(--color_3);
}
header.headerCD .topHeder .headerWrapper
{
	display: -ms-flex;
	display: flex;
	align-items: center;
	row-gap: 10px;
	column-gap: 50px;
	padding: 0 15px;
	height: 36px;
}
header.headerCD .topHeder .contactsItem
{
	display: -ms-grid;
	display: grid;
	grid-template-columns: 15px 1fr;
	align-items: center;
	gap: 5px;
}
header.headerCD .topHeder .contactsItem .ico
{
	display: -ms-flex;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 15px;
	height: 15px;
}
header.headerCD .topHeder .contactsItem .text
{
	font-size: 1.4rem;
	color: var(--color_1);
}
header.headerCD .topHeder .contactsItem.address .title
{
	display: none;
}

/**********/

header.headerCD .fixedHeader
{
	position: absolute;
	background-color: var(--color_white);
	top: 36px;
	left: 0;
	padding: 34px 0;
	width: 100%;
}
header.headerCD.type2 .fixedHeader
{
	background-color: transparent;
}
header.headerCD .fixedHeader.scroll
{
	position: fixed;
	top: 0;
	background-color: var(--color_white);
	padding: 14px 0;
	box-shadow: 0 0 5px var(--color_1);
}
header.headerCD .fixedHeader .headerWrapper
{
	display: -ms-flex;
	display: flex;
	align-items: center;
	gap: 20px;
}
/***/
header.headerCD .clear
{
	display: none;
	-ms-flex-preferred-size: 0;
	flex-basis: 0;
	-ms-flex-positive: 1;
	flex-grow: 1;
	max-width: 100%;
}
/***/
header.headerCD .logoBlock
{
}
header.headerCD .logoBlock .logo
{
	display: -ms-flex;
	display: flex;
	align-items: center;
	width: 114px;
	height: 43px;
}
header.headerCD .logoBlock .logo img
{
	max-height: 100%;
}
header.headerCD .logoBlock .logo .l
{
	display: none;
}
header.headerCD.type2 .logoBlock .logo .l
{
	display: block;
}
header.headerCD .scroll .logoBlock .logo .l
{
	display: none;
}
header.headerCD .logoBlock .logo .d
{
	display: block;
}
header.headerCD.type2 .logoBlock .logo .d
{
	display: none;
}
header.headerCD .scroll .logoBlock .logo .d,
header.headerCD.type2 .scroll .logoBlock .logo .d
{
	display: block;
}
header.headerCD.type2 .logoBlock .logo .d
{
	display: none;
}

/***/
header.headerCD nav
{
}
header.headerCD nav ul
{
	display: -ms-flex;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}
header.headerCD nav ul li
{
	position: relative;
}
header.headerCD nav ul li a
{
	display: inline-block;
	border-bottom: 2px solid transparent;
	padding: 3px 0;
	font-size: 1.4rem;
	font-weight: 700;
	text-transform: uppercase;
	color: var(--color_1);
}
header.headerCD nav ul li:hover > a,
header.headerCD nav ul li a:hover
{
	border-bottom-color: var(--color_colorScheme);
}
header.headerCD.type2 .scroll nav ul li a
{
	color: var(--color_1);
}
header.headerCD.type2 nav ul li a
{
	color: var(--color_white);
}
header.headerCD nav ul li ul
{
	position: absolute;
	display: none;
	border-radius: 20px;
	background-color: var(--color_white);
	top: 100%;
	left: -60px;
	padding: 40px 60px 60px 60px;
	min-width: 280px;
	box-shadow: 0 10px 10px 0 var(--color_black_10);
}
header.headerCD nav ul li ul.subServicesBlock
{
	grid-template-columns: repeat(4, 1fr);
	grid-template-rows:  repeat(7, auto);
	grid-auto-flow: column;
	column-gap: 90px;
	row-gap: 40px;
	grid-row: 4;
	left: -155px;
	padding: 50px 115px 80px 155px;
	width: 100%;
	min-width: 1400px;
}
header.headerCD nav ul li:hover > ul
{
	display: block;
}
header.headerCD nav ul li:hover > ul.subServicesBlock
{
	display: -ms-grid;
	display: grid;
}
header.headerCD nav ul li ul li
{
	margin-top: 30px;
}
header.headerCD nav ul li ul.subServicesBlock li,
header.headerCD nav ul li ul li:first-child
{
	margin-top: 0;
}
header.headerCD nav ul li ul li a,
header.headerCD.type2 nav ul li ul li a
{
	color: var(--color_1);
}

/***/
header.headerCD .phoneBtn,
header.headerCD .hcfBtn
{
	width: 100%;
	max-width: 160px;
}
header.headerCD .phoneBtn,
header.headerCD .scroll .phoneBtn,
header.headerCD.type2 .scroll .phoneBtn
{
	border-color: var(--color_1);
	background-color: transparent;
	color: var(--color_1);
}
header.headerCD.type2 .phoneBtn
{
	border-color: var(--color_white);
	background-color: transparent;
	color: var(--color_white);
}
header.headerCD .phoneBtn:hover,
header.headerCD .scroll .phoneBtn:hover
{
	border-color: var(--color_colorScheme);
	background-color: var(--color_colorScheme);
	color: var(--color_1);
}
header.headerCD .hcfBtn,
header.headerCD .scroll .hcfBtn,
header.headerCD.type2 .scroll .hcfBtn
{
	border-color: var(--color_colorScheme);
	background-color: var(--color_colorScheme);
	color: var(--color_1);
}
header.headerCD.type2 .hcfBtn
{
	border-color: var(--color_white);
	background-color: var(--color_white);
	color: var(--color_1);
}
header.headerCD .hcfBtn:hover,
header.headerCD .scroll .hcfBtn:hover
{
	border-color: var(--color_1);
	background-color: var(--color_1);
	color: var(--color_white);
}
/***/
header.headerCD .searchBlock
{
	position: relative;
}
header.headerCD .searchBlock .searchWrapper
{
	position: absolute;
	display: none;
	top: -11px;
	right: calc(100% + 10px);
	width: 460px;
}
header.headerCD .searchBlock.open .searchWrapper
{
	display: block;
}
header.headerCD .searchBlock form
{
	position: relative;
	display: -ms-flex;
	display: flex;
	align-items: center;
}
header.headerCD .searchBlock input
{
	border-color: var(--color_white);
	width: 100%;
	height: 62px;
}
header.headerCD .searchBlock button.searchBtn
{
	position: absolute;
	border-color: transparent;
	background-color: transparent;
	top: 11px;
	right: 11px;
	border-radius: 100%;
	padding: 0;
	width: 40px;
	height: 40px;
}
header.headerCD .searchBlock button
{
	border-radius: 100%;
	padding: 0;
	width: 40px;
	height: 40px;
}
header.headerCD .searchBlock button.opclBtn,
header.headerCD.type2 .scroll .searchBlock button.opclBtn
{
	border-color: var(--color_1);
	background-color: transparent;
	color: var(--color_1);
}
header.headerCD.type2 .searchBlock button.opclBtn
{
	border-color: var(--color_white);
	background-color: transparent;
	color: var(--color_white);
}
header.headerCD .searchBlock button.opclBtn:hover,
header.headerCD.type2 .searchBlock button.opclBtn:hover
{
	border-color: var(--color_colorScheme);
	background-color: var(--color_colorScheme);
	color: var(--color_1);
}
header.headerCD.type2 .searchBlock button.opclBtn svg path[fill]
{
	fill: var(--color_white);
}
header.headerCD .searchBlock button.opclBtn svg path[stroke],
header.headerCD.type2 .searchBlock button.opclBtn svg path[stroke]
{
	stroke: var(--color_white);
}
header.headerCD .searchBlock button.opclBtn svg path[fill],
header.headerCD.type2 .scroll .searchBlock button.opclBtn svg path[fill],
header.headerCD.type2 .searchBlock button.opclBtn:hover svg path[fill]
{
	fill: var(--color_1);
}
header.headerCD .searchBlock button.opclBtn svg path[stroke],
header.headerCD.type2 .scroll .searchBlock button.opclBtn svg path[stroke],
header.headerCD.type2 .searchBlock button.opclBtn:hover svg path[stroke]
{
	stroke: var(--color_1);
}
/***/
header.headerCD .searchBlock button.opclBtn .dandruff,
header.headerCD .searchBlock.open button.opclBtn .times
{
	display: block;
}
header.headerCD .searchBlock.open button.opclBtn .dandruff,
header.headerCD .searchBlock button.opclBtn .times
{
	display: none;
}

/***/

header.headerCD .langBlock
{
	position: relative;
	-ms-flex: 0 0 40px;
	flex: 0 0 40px;
	max-width: 40px;
}
header.headerCD .langBlock.open
{
}
header.headerCD .langBlock.open::before
{
	display: block;
	position: absolute;
	content: "";
	top: -15px;
	left: -5px;
	border-radius: 50px 50px 0 0;
	background-color: var(--color_white);
	padding: 15px 5px 5px 5px;
	width: calc(100% + 10px);
	height: calc(100% + 15px);
	z-index: 1;
}
header.headerCD .langBlock .btn
{
	position: relative;
	border-radius: 100%;
	border-color: var(--color_1);
	background-color: transparent;
	padding: 0;
	width: 40px;
	height: 40px;
	text-transform: uppercase;
	color: var(--color_1);
	z-index: 5;
}
header.headerCD.type2 .langBlock .btn
{
	border-color: var(--color_white);
	background-color: transparent;
	color: var(--color_white);
}
header.headerCD.type2 .scroll .langBlock .btn,
header.headerCD .langBlock.open .btn
{
	border-color: var(--color_1);
	background-color: transparent;
	color: var(--color_1);
}
header.headerCD .langBlock .btn:hover,
header.headerCD.type2 .langBlock .btn:hover
{
	border-color: var(--color_colorScheme);
	background-color: var(--color_colorScheme);
	color: var(--color_1);
}
header.headerCD .langBlock ul
{
	position: absolute;
	display: none;
	top: 100%;
	left: -5px;
	border-radius: 0 0 30px 30px;
	background-color: var(--color_white);
	padding: 5px 5px 15px 5px;
}
header.headerCD .langBlock.open ul
{
	display: block;
}
header.headerCD .langBlock ul li
{
	display: block;
	margin-top: 5px;
}
header.headerCD .langBlock ul li:first-child
{
	margin-top: 0;
}
header.headerCD .langBlock ul li .btn,
header.headerCD.type2 .langBlock ul li .btn
{
	border-color: transparent;
	color: var(--color_1);
}

/***/

header.headerCD .burgerBtnBlock
{
	display: none;
}
header.headerCD.type2 .burgerBtnBlock .burgerBtn .burger span,
header.headerCD.type2 .burgerBtnBlock .burgerBtn .burger span::before,
header.headerCD.type2 .burgerBtnBlock .burgerBtn .burger span::after
{
	background-color: var(--color_white);
}
header.headerCD.type2 .burgerBtnBlock .burgerBtn.open .burger span
{
	background-color: transparent;
}
header.headerCD.type2 .scroll .burgerBtnBlock .burgerBtn .burger span,
header.headerCD.type2 .scroll .burgerBtnBlock .burgerBtn .burger span::before,
header.headerCD.type2 .scroll .burgerBtnBlock .burgerBtn .burger span::after
{
	background-color: var(--color_1);
}
header.headerCD.type2 .burgerBtnBlock .burgerBtn.open .burger span
{
	background-color: transparent;
}

/*****/

.suggestSearchBlock
{
	position: absolute;
	border-radius: 0 0 var(--border-radius) var(--border-radius);
	background-color: var(--color_white);
	top: 100%;
	left: 0;
	width: 100%;
	height: auto;
	z-index: 10;
	max-height: calc(100vh - 50px);
	overflow: auto;
}
.suggestSearchBlock:not(:empty)
{
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
}
.suggestSearchBlock ul
{
	padding: 10px 0;
}
.suggestSearchBlock ul:first-child
{
	padding-top: 15px;
}
.suggestSearchBlock ul:last-child
{
	padding-bottom: 15px;
}
.suggestSearchBlock ul li
{
	display: -ms-flex;
	display: flex;
}
.suggestSearchBlock ul li.title
{
	padding: 0 15px 10px 15px;
	font-size: 1.3rem;
	color: var(--color_2);
}
.suggestSearchBlock ul li.searchAll
{
	margin-top: 10px;
}
.suggestSearchBlock ul li a
{
	display: -ms-flex;
	display: flex;
	align-items: center;
	gap: 5px;
	padding: 5px 15px;
	line-height: 1.2;
	font-size: 1.5rem;
	color: var(--color_1);
}
.suggestSearchBlock ul li a.offer
{
	display: -ms-grid;
	display: grid;
	align-items: center;
	grid-template-columns: 50px 1fr;
	gap: 5px;
}
.suggestSearchBlock ul li a:hover,
.suggestSearchBlock ul li a.active
{
	color: var(--color_colorScheme);
}
.suggestSearchBlock ul li a .ico
{
	display: -ms-inline-flexbox;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 25px;
	height: 25px;
	line-height: 1;
	font-size: 1.9rem;
	color: var(--color_1);
}
.suggestSearchBlock ul li a .ico.img
{
	grid-row-start: 1;
	grid-row-end: 3;
	width: 50px;
	height: 50px;
}
.suggestSearchBlock ul li a:hover .ico,
.suggestSearchBlock ul li a.active .ico
{
	color: var(--color_colorScheme);
}
.suggestSearchBlock ul li a .ico img
{
}
.suggestSearchBlock ul li a .ico svg
{
	width: 25px;
	height: 25px;
}
.suggestSearchBlock ul li a .ico svg.wishlistSvg path
{
	stroke: var(--color_1);
}
.suggestSearchBlock ul li a .ico .ico svg.compareSvg path
{
	fill: var(--color_1);
}
.suggestSearchBlock ul li a:hover .ico svg.wishlistSvg path,
.suggestSearchBlock ul li a.active .ico svg.wishlistSvg path
{
	stroke: var(--color_colorScheme);
}
.suggestSearchBlock ul li a:hover .ico .ico svg.compareSvg path,
.suggestSearchBlock ul li a.active .ico .ico svg.compareSvg path
{
	fill: var(--color_colorScheme);
}
/**/
.suggestSearchBlock ul li a .price
{
	font-weight: bold;
}

/***/

.suggestSearchCloseBG
{
	display: none;
	position: fixed;
	background-color: var(--color_black_50);
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	z-index: 3;
}

/*****/

@media (max-width: 1550px)
{
	header.headerCD nav ul.navUl > li:not(.sub)
	{
		display: none;
	}
	header.headerCD .clear
	{
		display: block;
	}
	header.headerCD .burgerBtnBlock
	{
		display: block;
	}
}
@media (max-width: 991px)
{
	header.headerCD nav
	{
		display: none;
	}
}
@media (max-width: 767px)
{
	header.headerCD
	{
		height: 88px;
	}
	header.headerCD.type2
	{
		height: 88px;
	}

	/***/

	header.headerCD .topHeder .headerWrapper
	{
		column-gap: 10px;
		height: 26px;
	}
	header.headerCD .topHeder .contactsItem
	{
		grid-template-columns: 5px 1fr;
		gap: 5px;
	}
	header.headerCD .topHeder .contactsItem .ico
	{
		width: 7px;
		height: 7px;
	}
	header.headerCD .topHeder .contactsItem .text
	{
		font-size: 1rem;
	}

	/***/

	header.headerCD .fixedHeader
	{
		position: static;
		background-color: var(--color_white);
		padding: 12px 0;
	}

	header.headerCD .fixedHeader .headerWrapper
	{
		justify-content: space-between;
	}
	header.headerCD .logoBlock .logo
	{
		width: 74px;
		height: 38px;
	}
	header.headerCD.type2 .logoBlock .logo .l
	{
		display: none;
	}
	header.headerCD.type2 .logoBlock .logo .d
	{
		display: block;
	}

	header.headerCD .clear
	{
		display: none;
	}

	header.headerCD .phoneBtn,
	header.headerCD.type2 .phoneBtn,
	header.headerCD .scroll .phoneBtn,
	header.headerCD.type2 .scroll .phoneBtn
	{
		border-color: var(--color_1);
		background-color: transparent;
		padding: 0 10px;
		height: 38px;
		max-width: 120px;
		font-size: 1.2rem;
		color: var(--color_1);
	}

	header.headerCD .hcfBtn,
	header.headerCD .searchBlock,
	header.headerCD .langBlock
	{
		display: none;
	}

	header.headerCD.type2 .burgerBtnBlock .burgerBtn .burger
	{
		height: 38px;
	}

	header.headerCD.type2 .burgerBtnBlock .burgerBtn .burger span,
	header.headerCD.type2 .burgerBtnBlock .burgerBtn .burger span::before,
	header.headerCD.type2 .burgerBtnBlock .burgerBtn .burger span::after,
	header.headerCD.type2 .scroll .burgerBtnBlock .burgerBtn .burger span,
	header.headerCD.type2 .scroll .burgerBtnBlock .burgerBtn .burger span::before,
	header.headerCD.type2 .scroll .burgerBtnBlock .burgerBtn .burger span::after
	{
		background-color: var(--color_1);
	}
	header.headerCD.type2 .burgerBtnBlock .burgerBtn .burger span::before
	{
		-webkit-transform: translateY(-8px);
		-moz-transform: translateY(-8px);
		-ms-transform: translateY(-8px);
		-o-transform: translateY(-8px);
		transform: translateY(-8px);
	}
	header.headerCD.type2 .burgerBtnBlock .burgerBtn .burger span::after
	{
		-webkit-transform: translateY(8px);
		-moz-transform: translateY(8px);
		-ms-transform: translateY(8px);
		-o-transform: translateY(8px);
		transform: translateY(8px);
	}
	header.headerCD.type2 .burgerBtnBlock .burgerBtn.open .burger span::before
	{
		-webkit-transform: translate(0, 0) rotate(45deg);
		-moz-transform: translate(0, 0) rotate(45deg);
		-ms-transform: translate(0, 0) rotate(45deg);
		-o-transform: translate(0, 0) rotate(45deg);
		transform: translate(0, 0) rotate(45deg);
	}
	header.headerCD.type2 .burgerBtnBlock .burgerBtn.open .burger span::after
	{
		-webkit-transform: translate(0, 0) rotate(-45deg);
		-moz-transform: translate(0, 0) rotate(-45deg);
		-ms-transform: translate(0, 0) rotate(-45deg);
		-o-transform: translate(0, 0) rotate(-45deg);
		transform: translate(0, 0) rotate(-45deg);
	}
}
@media (max-width: 480px)
{
	header.headerCD .topHeder .contactsItem .text span
	{
		display: none;
	}
}

/************************************/
/************************************/

header.headerCD #showMenuButton,
header.headerCD #closeMenuButton
{
	cursor: pointer;
}

header.headerCD .mobileMenuBlock
{
	position: fixed;
	display: block;
	background-color: var(--color_black_10);
	top: 0;
	right: -100%;
	padding: 0;
	width: 100%;
	height: 100%;
	z-index: 1000;
}
header.headerCD .mobileMenuBlock.open
{
	right: 0;
}
/**/
header.headerCD .mobileMenuBlock .closeBG
{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}
/**/
header.headerCD .mobileMenuBlock .mobileContent
{
	position: relative;
	display: block;
	background-color: var(--color_white);
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
	right: -100%;
	margin-left: auto;
	width: 320px;
	height: 100%;
	z-index: 2;
	overflow: auto;
	transition: all 0.5s ease 0s;
}
header.headerCD .mobileMenuBlock.open .mobileContent
{
	right: 0;
}

/***/

header.headerCD .mobileContent .topHeder
{
	display: -ms-flex;
	display: flex;
	align-items: center;
	row-gap: 10px;
	column-gap: 10px;
	padding: 0 15px;
	background-color: var(--color_3);
	height: 36px;
}
header.headerCD .mobileContent .topHeder .contactsItem
{
	display: -ms-grid;
	display: grid;
	grid-template-columns: 15px 1fr;
	align-items: center;
	gap: 5px;
}
header.headerCD .mobileContent .topHeder .contactsItem .ico
{
	display: -ms-flex;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 15px;
	height: 15px;
}
header.headerCD .mobileContent .topHeder .contactsItem .text
{
	font-size: 1rem;
	color: var(--color_1);
}
header.headerCD .mobileContent .topHeder .contactsItem .text span
{
	display: none;
}
header.headerCD .mobileContent .topHeder .contactsItem.address .title
{
	display: none;
}

/*****/

header.headerCD .mobileContent .topHeder2
{
	display: -ms-flex;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 34px 15px;
}
header.headerCD .mobileContent .topHeder2 .logoBlock
{
}
header.headerCD .mobileContent .topHeder2 .logoBlock .logo
{
	display: -ms-flex;
	display: flex;
	align-items: center;
	max-width: 100%;
	width: 114px;
	height: 43px;
}
header.headerCD .mobileContent .topHeder2 .logoBlock .logo img
{
	max-height: 100%;
}
/***/
header.headerCD .mobileContent .topHeder2 .phoneBtn
{
	width: 100%;
	max-width: 120px;
}
header.headerCD .mobileContent .topHeder2 .phoneBtn
{
	border-color: var(--color_1);
	background-color: transparent;
	color: var(--color_1);
}
header.headerCD .mobileContent .topHeder2 .phoneBtn:hover
{
	border-color: var(--color_colorScheme);
	background-color: var(--color_colorScheme);
	color: var(--color_1);
}

/*****/

header.headerCD .mobileContent .navBlock
{
	padding: 15px;
}
header.headerCD .mobileContent .navBlock ul
{
}
header.headerCD .mobileContent .navBlock ul li
{
	border-bottom: 1px solid var(--color_1);
	padding: 10px 0;
}
header.headerCD .mobileContent .navBlock ul li a
{
	display: block;
	line-height: 2.1rem;
	font-size: 1.4rem;
	font-weight: 700;
	text-transform: uppercase;
	color: var(--color_1);
}
header.headerCD .mobileContent .navBlock ul li.sub a
{
	position: relative;
	padding-right: 30px;
}
header.headerCD .mobileContent .navBlock ul li.sub a .toggleBtn
{
	position: absolute;
	top: 50%;
	right: 0;
	width: 16px;
	height: 16px;
	-webkit-transform: translate(0, -50%);
	-ms-transform: translate(0, -50%);
	transform: translate(0, -50%);
}
header.headerCD .mobileContent .navBlock ul li.sub a .toggleBtn::before,
header.headerCD .mobileContent .navBlock ul li.sub a .toggleBtn::after
{
	position: absolute;
	display: block;
	content: "";
	background-color: var(--color_1);
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
header.headerCD .mobileContent .navBlock ul li.sub a .toggleBtn::before
{
	width: 16px;
	height: 3px;
}
header.headerCD .mobileContent .navBlock ul li.sub a .toggleBtn::after
{
	width: 3px;
	height: 16px;
}
header.headerCD .mobileContent .navBlock ul li.sub a.open .toggleBtn::after
{
	display: none;
}

header.headerCD .mobileContent .navBlock ul li ul
{
	display: none;
	padding-left: 15px;
}
header.headerCD .mobileContent .navBlock ul li ul.open
{
}
header.headerCD .mobileContent .navBlock ul li ul li
{
	border-bottom: none;
	padding: 7px 0;
}
header.headerCD .mobileContent .navBlock ul li ul li a
{
	font-weight: 400;
}

/***/


header.headerCD .mobileContent .langBlock2
{
	padding: 0 15px;
	margin-top: 24px;
}
header.headerCD .mobileContent .langBlock2 ul
{
	display: -ms-flex;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}
header.headerCD .mobileContent .langBlock2 ul li
{
}
header.headerCD .mobileContent .langBlock2 ul li .btn
{
	border-radius: 100%;
	border-color: var(--color_1);
	background-color: transparent;
	padding: 0;
	width: 40px;
	height: 40px;
	font-weight: 700;
	text-transform: uppercase;
	color: var(--color_1);
}
header.headerCD .mobileContent .langBlock2 ul li .btn:hover,
header.headerCD .mobileContent .langBlock2 ul li .btn.active
{
	border-color: var(--color_1);
	background-color: var(--color_colorScheme);
	color: var(--color_1);
}

/***/

header.headerCD .mobileContent .btnLine
{
	padding: 0 15px;
	margin-top: 24px;
}
header.headerCD .mobileContent .btnLine .hcfBtn2
{
	border-color: var(--color_colorScheme);
	background-color: var(--color_colorScheme);
	color: var(--color_1);
}
header.headerCD .mobileContent .btnLine .hcfBtn2:hover
{
	border-color: var(--color_1);
	background-color: var(--color_1);
	color: var(--color_white);
}

/*****/

@media (max-width: 767px)
{
	header.headerCD .mobileContent .topHeder
	{
		height: 26px;
	}
	header.headerCD .mobileContent .topHeder .contactsItem
	{
		grid-template-columns: 5px 1fr;
		gap: 5px;
	}
	header.headerCD .mobileContent .topHeder .contactsItem .ico
	{
		width: 7px;
		height: 7px;
	}

	/***/

	header.headerCD .mobileContent .topHeder2
	{
		padding: 12px 15px;
	}
	header.headerCD .mobileContent .topHeder2 .logoBlock .logo
	{
		width: 74px;
		height: 38px;
	}

	header.headerCD .mobileContent .topHeder2 .phoneBtn
	{
		border-color: var(--color_1);
		background-color: transparent;
		padding: 0 10px;
		height: 38px;
		font-size: 1.2rem;
		color: var(--color_1);
	}

	header.headerCD .mobileContent .topHeder2 .burgerBtnBlock2 .burgerBtn .burger
	{
		height: 38px;
	}
}

/***********************************************************************/
/*****  navigationLine  *****/
/***********************************************************************/

.navigationLine
{
}
.navigationLine .breadcrumbs
{
	display: -ms-flex;
	display: flex;
	align-items: center;
	gap: 13px;
	padding: 12px 0;
}
.navigationLine .breadcrumbs li
{
	line-height: 1.4;
	font-size: 1.4rem;
	color: var(--color_2);
}
.navigationLine .breadcrumbs li a
{
	line-height: 1.4;
	font-size: 1.4rem;
	color: var(--color_1);
}
.navigationLine .breadcrumbs li a:hover
{
	color: var(--color_colorScheme);
}
.navigationLine .breadcrumbs li .separator
{
	position: relative;
	display: inline-block;
	border-radius: 100%;
	background-color: var(--color_colorScheme);
	top: -1px;
	width: 5px;
	height: 5px;
}

@media (max-width: 991px)
{
	.navigationLine > div
	{
		overflow-x: auto;
	}

	.navigationLine .breadcrumbs
	{
		display: flex;
		flex-wrap: nowrap;
		padding: 10px 0;
	}
	.navigationLine .breadcrumbs li
	{
		white-space: nowrap;
		vertical-align: top;
		min-width: auto;
	}
}

/***********************************************************************/
/*****  pageTitle  *****/
/***********************************************************************/

.el_pageTitle_78344036
{
}
.el_pageTitle_78344036 h1
{
	padding: 50px 0 35px 0;
	font-family: var(--font-family-1);
	line-height: 4.6rem;
	font-size: 4.2rem;
	font-weight: 700;
	color: var(--color_1);
}
.el_pageTitle_78344036.white-text h1
{
	color: var(--color_white);
}

@media (max-width: 1550px)
{
	.el_pageTitle_78344036 h1
	{
		padding-bottom: calc(15px + (30 - 15) * var(--width-coefficient));

		line-height: calc(24px + (29 - 24) * var(--width-coefficient));
		font-size: calc(20px + (24 - 20) * var(--width-coefficient));
	}
}

/***********************************************************************/
/*****  pageTopBlock  *****/
/***********************************************************************/

.el_pageTopBlock_78344036
{
}
.el_pageTopBlock_78344036 .innerWrapper
{
	position: relative;
	display: -ms-flex;
	display: flex;
	align-items: center;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	padding: 150px 0;
	min-height: 720px;
}
.el_pageTopBlock_78344036 .innerWrapper::before
{
	position: absolute;
	display: block;
	content: "";
	background-color: var(--color_black_40);
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}
.el_pageTopBlock_78344036 .innerWrapper > div
{
	position: relative;
	z-index: 5;
}
.el_pageTopBlock_78344036 .innerWrapper .el_pageTitle_78344036
{
	max-width: 770px;
}
.el_pageTopBlock_78344036 .innerWrapper .description
{
	max-width: 680px;
}
.el_pageTopBlock_78344036 .innerWrapper .btnLine
{
	display: -ms-flex;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 20px;
	margin-top: 30px;
}
.el_pageTopBlock_78344036 .innerWrapper .btnLine .btn
{
	min-width: 220px;
}

/*****/

@media (max-width: 1550px)
{
	.el_pageTopBlock_78344036 .innerWrapper
	{
		padding: calc(50px + (150 - 50) * var(--width-coefficient)) 0;
		min-height: calc(460px + (720 - 460) * var(--width-coefficient));
	}
	.el_pageTopBlock_78344036 .innerWrapper .btnLine
	{
		gap: 20px;
		margin-top: calc(15px + (30 - 15) * var(--width-coefficient));
	}
}
@media (max-width: 575px)
{
	.el_pageTopBlock_78344036 .innerWrapper .btnLine
	{
		flex-wrap: wrap;
	}
}

/***********************************************************************/
/*****  pageTopBlock2  *****/
/***********************************************************************/

.el_pageTopBlock2_78344036
{
    position: relative;
}
/**/
.el_pageTopBlock2_78344036 .ico
{
    position: absolute;
    left: var(--content-position-left);
    bottom: 0;
	max-width: 280px;
	max-height: 200px;
}
/**/
.el_pageTopBlock2_78344036 .innerWrapper
{
    display: -ms-grid;
    display: grid;
    grid-template-columns: auto 620px;
	justify-content: space-between;
    align-items: center;
    column-gap: 148px;
    row-gap: 20px;
}
.el_pageTopBlock2_78344036 .el_pageTitle_78344036 h1
{
    color: var(--color_1);
}
/**/
.el_pageTopBlock2_78344036 .infoBlock
{
	padding-bottom: 200px;
}
.el_pageTopBlock2_78344036 .text
{
}
.el_pageTopBlock2_78344036 .btnLine
{
	display: -ms-flex;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 20px;
	margin-top: 50px;
}

/***/

.el_pageTopBlock2_78344036 .imgBlock
{
}
.el_pageTopBlock2_78344036 .imgBlock .img_wrap
{
    padding-bottom: 120.3252032520325%;
}
.el_pageTopBlock2_78344036 .imgBlock .img_wrap .el
{
    border-radius: 20px;
	overflow: hidden;
}
.el_pageTopBlock2_78344036 .imgBlock .img_wrap .el img
{
	display: block;
	object-fit: cover;
	width: 100%;
	height: 100%;
}

/**********/

@media (max-width: 1550px)
{
	.el_pageTopBlock2_78344036 .ico
	{
		max-width: calc(155px + (280 - 155) * var(--width-coefficient));
		max-height: calc(100px + (200 - 100) * var(--width-coefficient));
	}
	/**/
	.el_pageTopBlock2_78344036 .innerWrapper
	{
		grid-template-columns: auto calc(250px + (620 - 250) * var(--width-coefficient));
		column-gap: calc(0px + (148 - 0) * var(--width-coefficient));
	}
	.el_pageTopBlock2_78344036 .infoBlock
	{
		padding-bottom: calc(100px + (200 - 100) * var(--width-coefficient));
	}
	/**/
	.el_pageTopBlock2_78344036 .btnLine
	{
		margin-top: calc(16px + (50 - 16) * var(--width-coefficient));
	}

	/***/

	.el_pageTopBlock2_78344036 .imgBlock .img_wrap .el
	{
		border-radius: calc(10px + (20 - 10) * var(--width-coefficient));
	}
}
@media (max-width: 991px)
{
	.el_pageTopBlock2_78344036 .innerWrapper
	{
		grid-template-columns: 1fr;
	}
	.el_pageTopBlock2_78344036 .infoBlock
	{
		order: 2;
	}
	.el_pageTopBlock2_78344036 .btnLine .btn
	{
		max-width: 300px;
		width: 100%;
	}
	.el_pageTopBlock2_78344036 .imgBlock
	{
		margin: 0 auto;
		width: 100%;
		max-width: 480px;
		order: 1;
	}
}

/***********************************************************************/
/***********************************************************************/
/***********************************************************************/

.indexTopBanner
{
	position: relative;
}
.indexTopBanner .initBanner
{
	position: relative;
	margin-bottom: 0;
	width: 100%;
	max-height: 930px;
	overflow: hidden;
}
.indexTopBanner .initBanner .item
{
	display: none;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	width: 100%;
	height: 100%;
}
.indexTopBanner .initBanner .item:first-child,
.indexTopBanner .initBanner.slick-slider .item
{
	display: block;
}
.indexTopBanner .initBanner .item picture
{
	position: absolute;
	display: block;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}
.indexTopBanner .initBanner .item picture img
{
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.indexTopBanner .initBanner .item .itemWrapper
{
	position: relative;
	width: 100%;
	height: 0;
	padding-bottom: 48.4375%;
	z-index: 5;
}
.indexTopBanner .initBanner .item .itemWrapper > div
{
	position: absolute;
	display: -ms-flex;
	display: flex;
	align-items: center;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 250px 0;
	width: 100%;
	height: 100%;
}
.indexTopBanner .initBanner .item .title
{
	max-width: 730px;
	line-height: 1.07;
	font-size: 6.4rem;
	font-weight: 700;
	color: var(--color_white);
}
.indexTopBanner .initBanner .item .btnLine
{
	margin-top: 50px;
}
.indexTopBanner .initBanner .item .btnLine .btn
{
	padding: 0 10px;
	width: 100%;
	max-width: 275px;
}

/***/

.indexTopBanner .slickArrowBlock
{
	position: absolute;
	display: -ms-flex;
	display: flex;
	align-items: center;
	gap: 15px;
	left: calc(((100% - var(--site-width-max-width)) / 2) + 15px);
	bottom: 155px;
	width: 125px;
	z-index: 25;
}
.indexTopBanner .slickArrowBlock .slickArrow
{
	position: static;
	display: -ms-flex;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 100%;
	border: 2px solid var(--color_white);
	background-color: transparent;

	width: 54px;
	height: 54px;
	text-align: center;
	color: var(--color_white);
	cursor: pointer;
	opacity: 1;
}
.indexTopBanner .slickArrowBlock .slickArrow:hover
{
	border-color: var(--color_1);
	background-color: var(--color_1);
	color: var(--color_white);
}

@media (max-width: 1550px)
{
	.indexTopBanner .initBanner .item .itemWrapper > div
	{
		padding: calc(80px + (190 - 80) * var(--width-coefficient)) 0;
	}
	.indexTopBanner .initBanner .item .title
	{
		max-width: calc(218px + (730 - 218) * var(--width-coefficient));
		font-size: calc(28px + (64 - 28) * var(--width-coefficient));
	}
	.indexTopBanner .initBanner .item .btnLine
	{
		margin-top: calc(15px + (50 - 15) * var(--width-coefficient));
	}
	.indexTopBanner .initBanner .item .btnLine .btn
	{
		max-width: calc(215px + (275 - 215) * var(--width-coefficient));
	}

	/*****/

	.indexTopBanner .slickArrowBlock
	{
		bottom: calc(45px + (155 - 45) * var(--width-coefficient));
	}
	.indexTopBanner .slickArrowBlock .slickArrow
	{
		width: calc(46px + (54 - 46) * var(--width-coefficient));
		height: calc(46px + (54 - 46) * var(--width-coefficient));
	}
}
@media (max-width: 767px)
{
	.indexTopBanner .initBanner .item .itemWrapper
	{
		position: relative;
		width: 100%;
		height: 0;
		padding-bottom: 143.754889178618%;
		z-index: 5;
	}
	.indexTopBanner .initBanner .item .itemWrapper > div
	{
		align-items: flex-start;
	}
}

/***********************************************************************/
/***********************************************************************/

.el_iaBlock_78344036
{
	padding-top: 0;
}
.el_iaBlock_78344036 .innerWrapper
{
	position: relative;
	margin-top: -50px;
	z-index: 50;
}
.el_iaBlock_78344036 .iaList
{
	display: -ms-grid;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

.el_iaListItem_78344036
{
}
.el_iaListItem_78344036 .itemWrapper
{
	border-radius: 20px;
	background-color: var(--color_3);
	height: 100%;
}
.el_iaListItem_78344036 .imageBlock
{
	display: -ms-flex;
	display: flex;
	align-items: flex-end;
	justify-content: flex-start;
	padding: 30px 30px 5px 30px;
	height: 130px;
}
.el_iaListItem_78344036 .imageBlock img
{
	max-height: 95px;
}
.el_iaListItem_78344036 .infoBlock
{
	padding: 10px 46px 66px 46px;
}
.el_iaListItem_78344036 .infoBlock .title
{
	line-height: 3rem;
	font-size: 2.4rem;
	font-weight: 500;
	color: var(--color_2);
}

/*****/

@media (max-width: 1550px)
{
	.el_iaBlock_78344036 .innerWrapper
	{
		margin-top: calc((25px + (50 - 25) * var(--width-coefficient)) * -1);
	}
	.el_iaBlock_78344036 .iaList
	{
		display: -ms-grid;
		display: grid;
		grid-template-columns: repeat(4, 1fr);
		gap: 20px;
	}

	.el_iaListItem_78344036 .imageBlock
	{
		padding: calc(24px + (30 - 24) * var(--width-coefficient));
		padding-bottom: 5px;
		height: calc(98px + (130 - 98) * var(--width-coefficient));
	}
	.el_iaListItem_78344036 .imageBlock img
	{
		max-height: calc(68px + (95 - 68) * var(--width-coefficient));
	}
	.el_iaListItem_78344036 .infoBlock
	{
		padding-left: calc(24px + (46 - 24) * var(--width-coefficient));
		padding-right: calc(24px + (46 - 24) * var(--width-coefficient));
		padding-bottom: calc(48px + (66 - 48) * var(--width-coefficient));
	}
	.el_iaListItem_78344036 .infoBlock .title
	{
		line-height: calc(22px + (30 - 22) * var(--width-coefficient));
		font-size: calc(16px + (24 - 16) * var(--width-coefficient));
	}
}
@media (max-width: 1200px)
{
	.el_iaBlock_78344036 .iaList
	{
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (max-width: 480px)
{
	.el_iaBlock_78344036 .iaList
	{
		grid-template-columns: 1fr;
		gap: 8px;
	}
}


/***********************************************************************/
/***********************************************************************/

.el_aboutBlock_78344036
{
	position: relative;
	padding-top: 0;
	padding-bottom: 180px;
}
.el_aboutBlock_78344036 .imgTop
{
	position: absolute;
	top: 2%;
	right: 31%;
	max-width: 400px;
	max-height: 210px;
}
.el_aboutBlock_78344036 .imgBottom
{
	position: absolute;
	bottom: 0;
	right: 10%;
	max-width: 300px;
	max-height: 260px;
}

.el_aboutBlock_78344036 .topBlock
{
	background-color: var(--color_4);
	height: 120px;
}

.el_aboutBlock_78344036 .innerWrapper
{
	display: -ms-grid;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	align-items: center;
	column-gap: 152px;
	padding-top: 120px;
}
.el_aboutBlock_78344036 .innerWrapper .btnLine
{
	margin-top: 30px;
}
.el_aboutBlock_78344036 .innerWrapper .btnLine .btn
{
	padding: 0 10px;
	width: 100%;
	max-width: 190px;
}

/*****/

@media (max-width: 1550px)
{
	.el_aboutBlock_78344036
	{
		padding-bottom: calc(145px + (180 - 145) * var(--width-coefficient));
	}
	.el_aboutBlock_78344036 .imgTop
	{
		right: calc(7% + (31 - 7) * var(--width-coefficient));
		max-width: calc(210px + (400 - 210) * var(--width-coefficient));
		max-height: calc(110px + (210 - 110) * var(--width-coefficient));
	}
	.el_aboutBlock_78344036 .imgBottom
	{
		bottom: 0;
		right: 10%;
		max-width: calc(170px + (300 - 170) * var(--width-coefficient));
		max-height: calc(180px + (260 - 180) * var(--width-coefficient));
	}

	.el_aboutBlock_78344036 .topBlock
	{
		height: calc(90px + (120 - 90) * var(--width-coefficient));
	}

	.el_aboutBlock_78344036 .innerWrapper
	{
		align-items: center;
		column-gap: calc(30px + (152 - 30) * var(--width-coefficient));
		padding-top: calc(50px + (120 - 50) * var(--width-coefficient));
	}
	.el_aboutBlock_78344036 .innerWrapper .btnLine
	{
		margin-top: calc(15px + (30 - 15) * var(--width-coefficient));
	}
	.el_aboutBlock_78344036 .innerWrapper .btnLine .btn
	{
		max-width: calc(155px + (190 - 155) * var(--width-coefficient));
	}
}
@media (max-width: 1200px)
{
	.el_aboutBlock_78344036 .innerWrapper
	{
		column-gap: 40px;
	}
}
@media (max-width: 991px)
{
	.el_aboutBlock_78344036 .innerWrapper
	{
		grid-template-columns: 1fr;
		row-gap: 20px;
	}
}

/***********************************************************************/
/***********************************************************************/

.el_catalogSection_78344036
{
}
.el_catalogSection_78344036 .catalogList
{
}

.catalogList .el_catalogListBlock_78344036
{
	display: -ms-grid;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	margin-bottom: 115px;
}
.catalogList .el_catalogListBlock_78344036:last-child
{
	margin-bottom: 0;
}

@media (min-width: 992px)
{
	.el_catalogListBlock_78344036 .el_catalogListItem_78344036:nth-child(1),
	.el_catalogListBlock_78344036 .el_catalogListItem_78344036:nth-child(5)
	{
		grid-column: span 2;
	}
	.el_catalogListBlock_78344036 .el_catalogListItem_78344036:nth-child(1) .itemWrapper,
	.el_catalogListBlock_78344036 .el_catalogListItem_78344036:nth-child(5) .itemWrapper
	{
		padding-bottom: 50.80213903743316%;
	}
}

/**/

.el_catalogSection_78344036 .btnLine
{
	display: none;
	margin-top: 15px;
	text-align: center;
}

/*****/

@media (max-width: 1550px)
{
	.catalogList .el_catalogListBlock_78344036
	{
		gap: calc(8px + (20 - 8) * var(--width-coefficient));
		margin-bottom: calc(40px + (115 - 40) * var(--width-coefficient));
	}
}
@media (max-width: 991px)
{
	.el_catalogSection_78344036 .el_titleBlock_78344036 .btn
	{
		display: none;
	}

	.catalogList .el_catalogListBlock_78344036
	{
		grid-template-columns: repeat(2, 1fr);
	}
	.el_catalogListBlock_78344036 .el_catalogListItem_78344036:nth-child(1),
	.el_catalogListBlock_78344036 .el_catalogListItem_78344036:nth-child(4)
	{
		grid-column: span 2;
	}
	.el_catalogListBlock_78344036 .el_catalogListItem_78344036:nth-child(1) .itemWrapper,
	.el_catalogListBlock_78344036 .el_catalogListItem_78344036:nth-child(4) .itemWrapper
	{
		padding-bottom: 50.80213903743316%;
	}

	.el_catalogSection_78344036 .btnLine
	{
		display: block;
	}
}
@media (max-width: 767px)
{
	.catalogList .el_catalogListBlock_78344036
	{
		gap: 8px;
	}
}

/**********/

.el_catalogListItem_78344036
{
}
.el_catalogListItem_78344036 .itemWrapper
{
	position: relative;
	display: block;
	border-radius: 20px;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	padding-bottom: 104.3956043956044%;
	height: 0;
	overflow: hidden;
}
.el_catalogListItem_78344036 .itemWrapper::after
{
	position: absolute;
	display: block;
	content: "";
	background-color: var(--color_5_40);
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}
.el_catalogListItem_78344036 .itemWrapper:hover::after
{
	background-color: var(--color_colorScheme);
}
.el_catalogListItem_78344036 .itemWrapper .itemContent
{
	position: absolute;
	display: -ms-flex;
	display: flex;
	flex-wrap: wrap;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 40px 30px 30px 40px;
	width: 100%;
	height: 100%;
	z-index: 5;
}
.el_catalogListItem_78344036 .itemWrapper img.main
{
	position: absolute;
	left: -9999px;
	z-index: -9999;
}
.el_catalogListItem_78344036 .itemWrapper img.ico
{
	position: absolute;
	display: none;
	max-width: 150px;
	max-height: 150px;
	z-index: 4;
}
.el_catalogListItem_78344036 .itemWrapper:hover img.ico
{
	display: block;
}
.el_catalogListItem_78344036 .itemWrapper img.ico.top
{
	top: 0;
	right: 7%;
}
.el_catalogListItem_78344036 .itemWrapper img.ico.left
{
	top: 50%;
	left: 0;
}
.el_catalogListItem_78344036 .itemWrapper img.ico.right
{
	top: 50%;
	right: 0;
}
.el_catalogListItem_78344036 .itemWrapper img.ico.bottom
{
	bottom: 0;
	left: 50%;
	-webkit-transform: translate(-50%, 0);
	-ms-transform: translate(-50%, 0);
	transform: translate(-50%, 0);
}
.el_catalogListItem_78344036 .itemWrapper .title
{
	width: 100%;
	line-height: 3.6rem;
	font-size: 3.4rem;
	font-weight: 700;
	color: var(--color_white);
}
.el_catalogListItem_78344036 .itemWrapper:hover .title
{
	color: var(--color_1);
}
.el_catalogListItem_78344036 .itemWrapper .btn
{
	align-self: flex-end;
	margin-left: auto;
}

/*****/

@media (max-width: 1550px)
{
	.el_catalogListItem_78344036 .itemWrapper
	{
		border-radius: calc(8px + (20 - 8) * var(--width-coefficient));
	}
	.el_catalogListItem_78344036 .itemWrapper .itemContent
	{
		padding-top: calc(16px + (40 - 16) * var(--width-coefficient));
		padding-left: calc(8px + (40 - 8) * var(--width-coefficient));
		padding-right: calc(16px + (30 - 16) * var(--width-coefficient));
		padding-bottom: calc(16px + (30 - 16) * var(--width-coefficient));
	}
	.el_catalogListItem_78344036 .itemWrapper img.ico
	{
		max-width: calc(50px + (150 - 50) * var(--width-coefficient));
		max-height: calc(50px + (150 - 50) * var(--width-coefficient));
	}
	.el_catalogListItem_78344036 .itemWrapper img.ico.top
	{
		top: calc(5% + (0 - 5) * var(--width-coefficient));
		right: 7%;
	}
	.el_catalogListItem_78344036 .itemWrapper img.ico.left
	{
		top: 50%;
		left: 0;
	}
	.el_catalogListItem_78344036 .itemWrapper img.ico.right
	{
		top: 50%;
		right: 0;
	}
	.el_catalogListItem_78344036 .itemWrapper img.ico.bottom
	{
		bottom: 0;
		left: 50%;
	}
	.el_catalogListItem_78344036 .itemWrapper .title
	{
		line-height: calc(20px + (36 - 20) * var(--width-coefficient));
		font-size: calc(18px + (34 - 18) * var(--width-coefficient));
	}
}
@media (max-width: 991px)
{
	.el_catalogListItem_78344036 .itemWrapper .btn svg
	{
		display: none;
	}
}

/***********************************************************************/
/***********************************************************************/

.el_catalogsPage_78344036
{
}
.el_catalogsPage_78344036 .searchBlock
{
	max-width: 360px;
	margin-bottom: 35px;
}
.el_catalogsPage_78344036 .searchBlock form
{
	position: relative;
	display: block;
}
.el_catalogsPage_78344036 .searchBlock form svg
{
	position: absolute;
	top: 50%;
	left: 15px;
	-webkit-transform: translate(0, -50%);
	-ms-transform: translate(0, -50%);
	transform: translate(0, -50%);
	z-index: 5;
}
.el_catalogsPage_78344036 .searchBlock form input
{
	position: relative;
	display: block;
	border-color: var(--color_3);
	background-color: var(--color_3);
	padding-left: 45px;
}

/***********************************************************************/
/***********************************************************************/

.el_catalogPage_78344036
{
}

/***/

.el_textBlock_78344036
{
}
.el_textBlock_78344036 .textWrapper
{
	position: relative;
	display: -ms-grid;
	display: grid;
    align-items: center;
	grid-template-columns: repeat(2, 1fr);
	column-gap: 280px;
	row-gap: 20px;
	padding-bottom: 200px;
}
/**/
.el_textBlock_78344036 .textBlock
{
}
.el_textBlock_78344036.rtl .textBlock
{
	order: 2;
}
.el_textBlock_78344036 .textBlock .text
{
}
.el_textBlock_78344036 .textBlock .text.hidden
{
	max-height: 300px;
	overflow: hidden;
}
.el_textBlock_78344036 .textBlock .text.hidden.showed
{
	max-height: 100%;
	overflow: unset;
}
.el_textBlock_78344036 .textBlock .btnLine
{
	margin-top: 30px;
}
.el_textBlock_78344036 .textBlock .btnLine .btn
{
	min-width: 186px;
}
/**/
.el_textBlock_78344036 .textIconImage
{
	position: absolute;
	bottom: 0;
	left: 0;
	max-width: 380px;
	max-height: 190px;
}
.el_textBlock_78344036.rtl .textIconImage
{
	bottom: 0;
	left: auto;
	right: 0;
}
.el_textBlock_78344036 .imagesBlock
{
}
.el_textBlock_78344036.rtl .imagesBlock
{
    order: 1;
}
.el_textBlock_78344036 .imagesBlock > div
{
	position: relative;
	display: inline-block;
	margin: 0 auto;
	width: 100%;
}
.el_textBlock_78344036 .imagesBlock .img_wrap
{
}
.el_textBlock_78344036 .imagesBlock .img_wrap .el
{
	border-radius: 20px;
	overflow: hidden;
}
.el_textBlock_78344036 .imagesBlock .textImageBig
{
	position: relative;
	margin: 0 auto;
	width: 100%;
	max-width: 620px;
}
.el_textBlock_78344036 .imagesBlock .textImageSmall
{
	position: absolute;
	width: 100%;
	max-width: 290px;
	bottom: 0;
	left: 0;
	-webkit-transform: translate(-30%, 30%);
	-ms-transform: translate(-30%, 30%);
	transform: translate(-30%, 30%);
}
.el_textBlock_78344036.rtl .imagesBlock .textImageSmall
{
	bottom: 0;
    left: auto;
	right: 0;
	-webkit-transform: translate(30%, 30%);
	-ms-transform: translate(30%, 30%);
	transform: translate(30%, 30%);
}

/*****/

@media (max-width: 1550px)
{
	.el_textBlock_78344036 .textWrapper
	{
		column-gap: calc(20px + (280 - 20) * var(--width-coefficient));
		padding-bottom: calc(115px + (200 - 115) * var(--width-coefficient));
	}
	/**/
	.el_textBlock_78344036 .textBlock .text.hidden
	{
		max-height: calc(150px + (300 - 150) * var(--width-coefficient));
	}
	.el_textBlock_78344036 .textBlock .btnLine
	{
		margin-top: calc(15px + (30 - 15) * var(--width-coefficient));
	}
	.el_textBlock_78344036 .textBlock .btnLine .btn
	{
		min-width: 186px;
	}
	.el_textBlock_78344036 .textIconImage
	{
		max-width: calc(180px + (380 - 180) * var(--width-coefficient));
		max-height: calc(90px + (190 - 90) * var(--width-coefficient));
	}
	.el_textBlock_78344036 .imagesBlock .img_wrap .el
	{
		border-radius: calc(10px + (20 - 10) * var(--width-coefficient));
	}
	.el_textBlock_78344036 .imagesBlock .textImageBig
	{
		/*max-width: calc(240px + (620 - 240) * var(--width-coefficient));*/
	}
	.el_textBlock_78344036 .imagesBlock .textImageSmall
	{
		max-width: calc(108px + (290 - 108) * var(--width-coefficient));
	}
}
@media (max-width: 991px)
{
	.el_textBlock_78344036 .textWrapper
	{
		grid-template-columns: 1fr;
		row-gap: calc(70px + (100 - 70) * var(--width-coefficient));
	}
	.el_textBlock_78344036 .textBlock,
	.el_textBlock_78344036.rtl .textBlock
	{
		order: 2;
	}
	.el_textBlock_78344036 .imagesBlock,
	.el_textBlock_78344036.rtl .imagesBlock
	{
		display: -ms-flex;
		display: flex;
		justify-content: center;
		order: 1;
	}
	.el_textBlock_78344036 .imagesBlock > div
	{
		margin: 0;
		max-width: calc(240px + (620 - 240) * var(--width-coefficient));
	}
	.el_textBlock_78344036 .imagesBlock .textImageBig
	{
		margin: 0;
	}
}


/***********************************************************************/
/***********************************************************************/

.el_offerListBlock_78344036
{
}
.el_offerListBlock_78344036 .offerList
{
	display: -ms-grid;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

@media (max-width: 1550px)
{
	.el_offerListBlock_78344036 .offerList
	{
		gap: calc(8px + (20 - 8) * var(--width-coefficient));
	}
}
@media (max-width: 1200px)
{
	.el_offerListBlock_78344036 .offerList
	{
		grid-template-columns: repeat(3, 1fr);
	}
}
@media (max-width: 767px)
{
	.el_offerListBlock_78344036 .offerList
	{
		grid-template-columns: repeat(2, 1fr);
	}
}

/**********/

.el_offerListItem_78344036
{
}
.el_offerListItem_78344036 .itemWrapper
{
	position: relative;
	display: block;
	border-radius: 20px;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	padding-bottom: 104.3956043956044%;
	height: 0;
	overflow: hidden;
}
.el_offerListItem_78344036 .itemWrapper::after
{
	position: absolute;
	display: block;
	content: "";
	background-color: var(--color_5_40);
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}
.el_offerListItem_78344036 .itemWrapper:hover::after
{
	background-color: var(--color_colorScheme);
}
.el_offerListItem_78344036 .itemWrapper .itemContent
{
	position: absolute;
	display: -ms-flex;
	display: flex;
	flex-wrap: wrap;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 40px 30px 30px 40px;
	width: 100%;
	height: 100%;
	z-index: 5;
}
.el_offerListItem_78344036 .itemWrapper img.main
{
	position: absolute;
	left: -9999px;
	z-index: -9999;
}
.el_offerListItem_78344036 .itemWrapper img.ico
{
	position: absolute;
	display: none;
	z-index: 4;
}
.el_offerListItem_78344036 .itemWrapper:hover img.ico
{
	display: block;
	max-width: 100px;
	max-height: 100px;
}
.el_offerListItem_78344036 .itemWrapper img.ico.top
{
	top: 0;
	right: 7%;
}
.el_offerListItem_78344036 .itemWrapper img.ico.left
{
	top: 50%;
	left: 0;
}
.el_offerListItem_78344036 .itemWrapper img.ico.right
{
	top: 50%;
	right: 0;
}
.el_offerListItem_78344036 .itemWrapper img.ico.bottom
{
	bottom: 0;
	left: 50%;
	-webkit-transform: translate(-50%, 0);
	-ms-transform: translate(-50%, 0);
	transform: translate(-50%, 0);
}
.el_offerListItem_78344036 .itemWrapper .title
{
	width: 100%;
	line-height: 3.6rem;
	font-size: 3.4rem;
	font-weight: 700;
	color: var(--color_white);
}
.el_offerListItem_78344036 .itemWrapper:hover .title
{
	color: var(--color_1);
}
.el_offerListItem_78344036 .itemWrapper .btn
{
	align-self: flex-end;
	margin-left: auto;
}

/*****/

@media (max-width: 1550px)
{
	.el_offerListItem_78344036 .itemWrapper
	{
		border-radius: calc(10px + (20 - 10) * var(--width-coefficient));
	}
	.el_offerListItem_78344036 .itemWrapper .itemContent
	{
		padding-top: calc(16px + (40 - 16) * var(--width-coefficient));
		padding-left: calc(8px + (40 - 8) * var(--width-coefficient));
		padding-right: calc(8px + (30 - 8) * var(--width-coefficient));
		padding-bottom: calc(16px + (30 - 16) * var(--width-coefficient));
	}
	.el_offerListItem_78344036 .itemWrapper img.ico
	{
		max-width: calc(30px + (100 - 30) * var(--width-coefficient));
		max-height: calc(30px + (100 - 30) * var(--width-coefficient));
	}
	.el_offerListItem_78344036 .itemWrapper .title
	{
		line-height: calc(20px + (36 - 20) * var(--width-coefficient));
		font-size: calc(18px + (34 - 18) * var(--width-coefficient));
	}
}
@media (max-width: 991px)
{
	.el_offerListItem_78344036 .itemWrapper .btn
	{
		margin-right: auto;
	}
}
@media (max-width: 480px)
{
	.el_offerListItem_78344036 .itemWrapper .btn svg
	{
		display: none;
	}
}

/***********************************************************************/
/***********************************************************************/

.el_videoBlock_78344036
{
}
.el_videoBlock_78344036 .videoWrapper
{
	display: -ms-grid;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	align-items: center;
	gap: 20px;
}
.el_videoBlock_78344036 .videoWrapper .videoBlock
{
	position: relative;
	z-index: 5;
}
.el_videoBlock_78344036 .videoWrapper .videoBlock .video_wrap:last-child
{
	margin-bottom: 0;
}
.el_videoBlock_78344036 .videoWrapper .textBlock
{
	position: relative;
	display: -ms-flex;
	display: flex;
	align-items: center;
	border-radius: 0 20px 20px 0;
	background-color: var(--color_colorScheme);
	padding: 40px 60px;
	height: 100%;
	z-index: 1;
}
.el_videoBlock_78344036 .videoWrapper .textBlock::before
{
	display: block;
	content: "";
	padding-bottom: calc(54% + 80px);
}
.el_videoBlock_78344036 .videoWrapper .textBlock::after
{
	position: absolute;
	display: block;
	content: "";
	border-radius: 20px 0 0 20px;
	background-color: var(--color_colorScheme);
	top: 0;
	right: 100%;
	bottom: 0;
	width: 30%;
	z-index: 1;
}
.el_videoBlock_78344036 .videoWrapper .textBlock .text
{
	max-width: 560px;
}
.el_videoBlock_78344036 .videoWrapper .textBlock .videoIconImage
{
	position: absolute;
	bottom: 0;
	right: 0;
	max-width: 260px;
	max-height: 215px;
}

/*****/

@media (max-width: 1550px)
{
	.el_videoBlock_78344036 .videoWrapper .textBlock
	{
		border-radius: 0 calc(10px + (20 - 10) * var(--width-coefficient)) calc(10px + (20 - 10) * var(--width-coefficient)) 0;
		padding: calc(15px + (40 - 15) * var(--width-coefficient)) calc(15px + (60 - 15) * var(--width-coefficient));
	}
	.el_videoBlock_78344036 .videoWrapper .textBlock::before
	{
		padding-bottom: calc(54% + (30px + (80 - 30) * var(--width-coefficient)));
	}
	.el_videoBlock_78344036 .videoWrapper .textBlock::after
	{
		border-radius: calc(10px + (20 - 10) * var(--width-coefficient)) 0 0 calc(10px + (20 - 10) * var(--width-coefficient));
		width: calc(20% + (30 - 20) * var(--width-coefficient));
	}
	.el_videoBlock_78344036 .videoWrapper .textBlock .videoIconImage
	{
		max-width: calc(140px + (260 - 140) * var(--width-coefficient));
		max-height: calc(150px + (215 - 150) * var(--width-coefficient));
	}
}
@media (max-width: 991px)
{
	.el_videoBlock_78344036 .videoWrapper
	{
		grid-template-columns: 1fr;
		gap: 0;
	}
	.el_videoBlock_78344036 .videoWrapper .videoBlock
	{
		width: 100%;
		max-width: 90%;
		margin: 0 auto;
	}
	.el_videoBlock_78344036 .videoWrapper .textBlock
	{
		border-radius: 0 0 calc(10px + (20 - 10) * var(--width-coefficient)) calc(10px + (20 - 10) * var(--width-coefficient));
		padding-top: calc(30px + (40 - 30) * var(--width-coefficient));
		padding-bottom: calc(120px + (360 - 120) * var(--width-coefficient));
	}
	.el_videoBlock_78344036 .videoWrapper .textBlock::before
	{
		display: none;
	}
	.el_videoBlock_78344036 .videoWrapper .textBlock::after
	{
		border-radius: calc(10px + (20 - 10) * var(--width-coefficient)) calc(10px + (20 - 10) * var(--width-coefficient)) 0 0;
		top: auto;
		left: 0;
		right: 0;
		bottom: 99%;
		width: 100%;
		height: calc(15% + (30 - 15) * var(--width-coefficient));
	}
}

/***********************************************************************/
/***********************************************************************/

.el_videoReviewsBlock_78344036
{
	position: relative;
	padding-bottom: 200px;
}
.el_videoReviewsBlock_78344036 .sliderWrapper
{
}
.el_videoReviewsBlock_78344036 .videoReviewsList
{
}
.el_videoReviewsBlock_78344036 .ico
{
	position: absolute;
	left: var(--content-position-left);
	bottom: 0;
	max-width: 350px;
	max-height: 185px;
}

/*****/

@media (max-width: 1550px)
{
	.el_videoReviewsBlock_78344036
	{
		padding-bottom: calc(100px + (200 - 100) * var(--width-coefficient));
	}
	.el_videoReviewsBlock_78344036 .ico
	{
		left: var(--content-position-left);
		max-width: calc(160px + (350 - 160) * var(--width-coefficient));
		max-height: calc(110px + (185 - 110) * var(--width-coefficient));
	}
}

/****************/

.typeContentBlock1.inRow2 .el_videoItem_78344036
{
	-ms-flex: 0 0 50%;
	flex: 0 0 50%;
	max-width: 50%;
	margin-bottom: 20px;
}
.typeContentBlock1.inRow2.slick-slider .el_videoItem_78344036
{
	margin-bottom: 0;
}

/****************/

.el_videoItem_78344036
{
}
.el_videoItem_78344036 .itemWrapper
{
	height: 100%;
}

/***********************************************************************/
/***********************************************************************/

.el_pricesBlock_78344036
{
}
.el_pricesBlock_78344036 .priceList
{
}

.el_pricesBlock_78344036 .btnLine
{
	margin-top: 48px;
	text-align: center;
}

/***/

.el_catalogPriceItem_78344036
{
	margin-top: 26px;
}
.el_catalogPriceItem_78344036:first-child
{
	margin-top: 0;
}
.el_catalogPriceItem_78344036 .catalogTitle
{
	position: relative;
	border-radius: 20px;
	background-color: var(--color_3);
	padding: 32px 70px 32px 40px;
	line-height: 3.6rem;
	font-size: 3.4rem;
	font-weight: 700;
	color: var(--color_1);
	cursor: pointer;
}
.el_catalogPriceItem_78344036 .catalogTitle:hover,
.el_catalogPriceItem_78344036 .catalogTitle.open
{
	background-color: var(--color_colorScheme);
}
.el_catalogPriceItem_78344036 .catalogTitle span
{
	position: absolute;
	top: 50%;
	right: 40px;
	width: 22px;
	height: 22px;
	-webkit-transform: translate(0, -50%);
	-ms-transform: translate(0, -50%);
	transform: translate(0, -50%);
}
.el_catalogPriceItem_78344036 .catalogTitle span::before,
.el_catalogPriceItem_78344036 .catalogTitle span::after
{
	position: absolute;
	display: block;
	content: "";
	background-color: var(--color_1);
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
.el_catalogPriceItem_78344036 .catalogTitle span::before
{
	width: 22px;
	height: 4px;
}
.el_catalogPriceItem_78344036 .catalogTitle span::after
{
	width: 4px;
	height: 22px;
}
.el_catalogPriceItem_78344036 .catalogTitle.open span::after
{
	display: none;
}

/***/

.el_catalogPriceItem_78344036 .catalogContent
{
	display: none;
}
.el_catalogPriceItem_78344036 .catalogContent.open
{
	display: block;
}

/***/

.el_catalogPriceItem_78344036 .offerItem
{
	margin: 48px auto 0 auto;
	max-width: 1000px;
}
.el_catalogPriceItem_78344036 .offerItem .offerTitle
{
	line-height: 3rem;
	font-size: 2.4rem;
	font-weight: 500;
	color: var(--color_1);
}
.el_catalogPriceItem_78344036 .offerItem .offerTitle span
{
	display: inline-block;
	padding-bottom: 6px;
	border-bottom: 4px solid var(--color_colorScheme);
}
.el_catalogPriceItem_78344036 .offerItem .priceLine
{
	display: -ms-flex;
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-bottom: 1px solid var(--color_1);
	margin-top: 22px;
	padding: 8px;
	line-height: 2.8rem;
	font-size: 1.8rem;
	font-weight: 400;
	color: var(--color_1);
}
.el_catalogPriceItem_78344036 .offerItem .priceLine .value
{
	font-weight: 600;
}

/*****/

@media (max-width: 1550px)
{
	.el_pricesBlock_78344036 .btnLine
	{
		margin-top: calc(24px + (48 - 24) * var(--width-coefficient));
	}

	/***/

	.el_catalogPriceItem_78344036
	{
		margin-top: calc(16px + (26 - 16) * var(--width-coefficient));
	}
	.el_catalogPriceItem_78344036 .catalogTitle
	{
		border-radius: calc(10px + (20 - 10) * var(--width-coefficient));
		padding-top: calc(16px + (32 - 16) * var(--width-coefficient));
		padding-left: calc(16px + (40 - 16) * var(--width-coefficient));
		padding-right: calc(40px + (70 - 40) * var(--width-coefficient));
		padding-bottom: calc(16px + (32 - 16) * var(--width-coefficient));
		line-height: calc(20px + (36 - 20) * var(--width-coefficient));
		font-size: calc(18px + (34 - 18) * var(--width-coefficient));
	}
	.el_catalogPriceItem_78344036 .catalogTitle span span
	{
		right: calc(16px + (40 - 16) * var(--width-coefficient));
		width: calc(16px + (22 - 16) * var(--width-coefficient));
		height: calc(16px + (22 - 16) * var(--width-coefficient));
	}
	.el_catalogPriceItem_78344036 .catalogTitle span span::before
	{
		width: calc(16px + (22 - 16) * var(--width-coefficient));
		height: calc(3px + (4 - 3) * var(--width-coefficient));
	}
	.el_catalogPriceItem_78344036 .catalogTitle span span::after
	{
		width: calc(3px + (4 - 3) * var(--width-coefficient));
		height: calc(16px + (22 - 16) * var(--width-coefficient));
	}

	/***/

	.el_catalogPriceItem_78344036 .offerItem
	{
		margin-top: calc(16px + (48 - 16) * var(--width-coefficient));
	}
	.el_catalogPriceItem_78344036 .offerItem .offerTitle
	{
		line-height: calc(20px + (30 - 20) * var(--width-coefficient));
		font-size: calc(14px + (24 - 14) * var(--width-coefficient));
	}
	.el_catalogPriceItem_78344036 .offerItem .offerTitle span
	{
		padding-bottom: calc(4px + (6 - 4) * var(--width-coefficient));
	}
	.el_catalogPriceItem_78344036 .offerItem .priceLine
	{
		margin-top: calc(3px + (22 - 3) * var(--width-coefficient));
		padding: 8px calc(0px + (8 - 0) * var(--width-coefficient));
		line-height: calc(20px + (28 - 20) * var(--width-coefficient));
		font-size: calc(14px + (18 - 14) * var(--width-coefficient));
	}
}

/***********************************************************************/
/***********************************************************************/

.el_faqBlock_78344036
{
	position: relative;
	padding-top: 200px;
}
.el_faqBlock_78344036 .ico
{
	position: absolute;
	top: 0;
	right: var(--content-position-right);
	max-width: 350px;
	max-height: 260px;
}
.el_faqBlock_78344036 .faqList
{
	display: -ms-grid;
	display: grid;
	/*grid-auto-flow: column;*/
	/*grid-auto-rows: 1fr;*/
	grid-template-columns: repeat(2, 1fr);
	column-gap: 85px;
}

.el_faqBlock_78344036 .btnLine
{
	display: none;
	margin-top: 24px;
	text-align: center;
}

@media (max-width: 991px)
{
	.el_faqBlock_78344036 .faqList
	{
		grid-template-columns: 1fr;
	}
	.el_faqBlock_78344036 .btnLine
	{
		display: block;
	}
}

/*****/

.el_faqItem_78344036
{
}
.el_faqItem_78344036 .itemWrapper
{
}
.el_faqItem_78344036 .itemWrapper .title
{
	position: relative;
	border-bottom: 1px solid var(--color_1);
	padding: 32px 70px 32px 40px;
	line-height: 3rem;
	font-size: 2.4rem;
	font-weight: 500;
	color: var(--color_1);
	cursor: pointer;
}
.el_faqItem_78344036 .itemWrapper .title:hover,
.el_faqItem_78344036 .itemWrapper .title.open
{
	background-color: var(--color_colorScheme);
	border-bottom: 1px solid var(--color_colorScheme);
}
.el_faqItem_78344036 .itemWrapper .title span
{
	position: absolute;
	top: 50%;
	right: 40px;
	width: 22px;
	height: 22px;
	-webkit-transform: translate(0, -50%);
	-ms-transform: translate(0, -50%);
	transform: translate(0, -50%);
}
.el_faqItem_78344036 .itemWrapper .title span::before,
.el_faqItem_78344036 .itemWrapper .title span::after
{
	position: absolute;
	display: block;
	content: "";
	background-color: var(--color_1);
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
.el_faqItem_78344036 .itemWrapper .title span::before
{
	width: 22px;
	height: 4px;
}
.el_faqItem_78344036 .itemWrapper .title span::after
{
	width: 4px;
	height: 22px;
}
.el_faqItem_78344036 .itemWrapper .title.open span::after
{
	display: none;
}
/***/

.el_faqItem_78344036 .itemWrapper .faqItemContent
{
	display: none;
	padding: 30px 40px;
	grid-template-rows: repeat(7, auto);
}
.el_faqItem_78344036 .itemWrapper .faqItemContent.open
{
	display: block;
	background-color: var(--color_colorScheme);
}

/*****/

@media (max-width: 1550px)
{
	.el_faqBlock_78344036
	{
		padding-top: calc(100px + (200 - 100) * var(--width-coefficient));
	}
	.el_faqBlock_78344036 .ico
	{
		max-width: calc(160px + (350 - 160) * var(--width-coefficient));
		max-height: calc(132px + (260 - 132) * var(--width-coefficient));
	}
	.el_faqBlock_78344036 .faqList
	{
		column-gap: calc(8px + (85 - 8) * var(--width-coefficient));
	}

	/*****/

	.el_faqItem_78344036 .itemWrapper .title
	{
		padding-top: calc(16px + (32 - 16) * var(--width-coefficient));
		padding-left: calc(0px + (40 - 0) * var(--width-coefficient));
		padding-right: calc(40px + (70 - 40) * var(--width-coefficient));
		padding-bottom: calc(16px + (32 - 16) * var(--width-coefficient));
		line-height: calc(22px + (30 - 22) * var(--width-coefficient));
		font-size: calc(16px + (24 - 16) * var(--width-coefficient));
	}
	.el_faqItem_78344036 .itemWrapper .title span
	{
		right: calc(16px + (40 - 16) * var(--width-coefficient));
		width: calc(16px + (22 - 16) * var(--width-coefficient));
		height: calc(16px + (22 - 16) * var(--width-coefficient));
	}
	.el_faqItem_78344036 .itemWrapper .title span::before
	{
		width: calc(16px + (22 - 16) * var(--width-coefficient));
		height: calc(3px + (4 - 3) * var(--width-coefficient));
	}
	.el_faqItem_78344036 .itemWrapper .title span::after
	{
		width: calc(3px + (4 - 3) * var(--width-coefficient));
		height: calc(16px + (22 - 16) * var(--width-coefficient));
	}
	/***/

	.el_faqItem_78344036 .itemWrapper .faqItemContent
	{
		padding: calc(16px + (30 - 16) * var(--width-coefficient)) calc(0px + (40 - 0) * var(--width-coefficient));
		grid-template-rows: repeat(7, auto);
	}
}
@media (max-width: 991px)
{
	.el_faqItem_78344036.mHidden
	{
		display: none;
	}
}

/***********************************************************************/
/***********************************************************************/

.el_articleListBlock_78344036
{
}
.el_articleListBlock_78344036 .articleList
{
	display: -ms-grid;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px
}

.el_articleListBlock_78344036 .btnLine
{
	display: none;
	margin-top: 24px;
	text-align: center;
}

@media (max-width: 991px)
{
	.el_articleListBlock_78344036 .el_titleBlock_78344036 .btn
	{
		display: none;
	}

	.el_articleListBlock_78344036 .articleList
	{
		grid-template-columns: repeat(2, 1fr);
	}

	.el_articleListBlock_78344036 .btnLine
	{
		display: block;
	}
}
@media (max-width: 480px)
{
	.el_articleListBlock_78344036 .articleList
	{
		grid-template-columns: 1fr;
	}
}

/**********/

.el_articleListItem_78344036
{
}
.el_articleListItem_78344036 .itemWrapper
{
	position: relative;
	display: block;
	border-radius: 20px;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	padding-bottom: 120.3252032520325%;
	height: 0;
	overflow: hidden;
}
.el_articleListItem_78344036 .itemWrapper::after
{
	position: absolute;
	display: block;
	content: "";
	background: -moz-linear-gradient(top, var(--color_black_00) 0%, var(--color_6) 100%);
	background: -webkit-linear-gradient(top, var(--color_black_00) 0%, var(--color_6) 100%);
	background: linear-gradient(to bottom, var(--color_black_00) 0%, var(--color_6) 100%);
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}
.el_articleListItem_78344036 .itemWrapper .itemContent
{
	position: absolute;
	display: block;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 40px 30px 30px 40px;
	width: 100%;
	height: auto;
	max-height: 100%;
	z-index: 5;
}
.el_articleListItem_78344036 .itemWrapper > span
{
	display: block;
}
.el_articleListItem_78344036 .itemWrapper img.main
{
	position: absolute;
	left: -9999px;
	z-index: -9999;
}
.el_articleListItem_78344036 .itemWrapper .title
{
	display: block;
	line-height: 3rem;
	font-size: 2.4rem;
	font-weight: 700;
	color: var(--color_white);
}
.el_articleListItem_78344036 .itemWrapper .description,
.el_articleListItem_78344036 .itemWrapper .jobTitle,
.el_articleListItem_78344036 .itemWrapper .specialization
{
	display: block;
	margin-top: 15px;
	line-height: 2.8rem;
	font-size: 1.8rem;
	font-weight: 400;
	color: var(--color_white);
}
.el_articleListItem_78344036 .itemWrapper .specialization
{
	display: none;
}
.el_articleListItem_78344036 .itemWrapper:hover .specialization
{
	display: block;
}
.el_articleListItem_78344036 .itemWrapper .btn
{
	display: none;
	margin-top: 15px;
}
.el_articleListItem_78344036 .itemWrapper:hover .btn
{
	display: -ms-inline-flexbox;
	display: inline-flex;
}

/*****/

@media (max-width: 1550px)
{
	.el_articleListItem_78344036 .itemWrapper
	{
		border-radius: calc(10px + (20 - 10) * var(--width-coefficient));
	}
	.el_articleListItem_78344036 .itemWrapper .itemContent
	{
		padding-top: calc(24px + (40 - 24) * var(--width-coefficient));
		padding-left: calc(24px + (40 - 24) * var(--width-coefficient));
		padding-right: calc(24px + (30 - 24) * var(--width-coefficient));
		padding-bottom: calc(24px + (30 - 24) * var(--width-coefficient));
	}
	.el_articleListItem_78344036 .itemWrapper .title
	{
		line-height: calc(18px + (30 - 18) * var(--width-coefficient));
		font-size: calc(16px + (24 - 16) * var(--width-coefficient));
	}
	.el_articleListItem_78344036 .itemWrapper .description,
	.el_articleListItem_78344036 .itemWrapper .jobTitle,
	.el_articleListItem_78344036 .itemWrapper .specialization
	{
		margin-top: calc(5px + (15 - 5) * var(--width-coefficient));
		line-height: calc(14px + (28 - 14) * var(--width-coefficient));
		font-size: calc(12px + (18 - 12) * var(--width-coefficient));
	}
	.el_articleListItem_78344036 .itemWrapper .btn
	{
		margin-top: calc(10px + (15 - 10) * var(--width-coefficient));
	}
}

/***********************************************************************/
/***********************************************************************/

.el_articleContent_78344036
{
}

/***/

.el_articleContent_78344036 .imgBlock
{
}
.el_articleContent_78344036 .imgBlock .img_wrap
{
	padding-bottom: 35.39473684210526%;
}
.el_articleContent_78344036 .imgBlock .img_wrap .el
{
	border-radius: 20px;
	overflow: hidden;
}
.el_articleContent_78344036 .imgBlock .img_wrap .el img
{
	display: block;
	object-fit: cover;
	width: 100%;
	height: 100%;
}
.el_articleContent_78344036 .date
{
	margin-top: 25px;
	line-height: 1.4;
	font-size: 1.4rem;
	color: var(--color_2);
}

/***/

.el_articleContent_78344036 .articlePageContent
{
	display: -ms-grid;
	display: grid;
	grid-template-columns: 1fr 492px;
	gap: 148px;
}

/**/
.el_articleContent_78344036 .shareBlock
{
	margin-top: 60px;
}
.el_articleContent_78344036 .shareBlock .titleSharing
{
	line-height: 1.4;
	font-size: 3.4rem;
	font-weight: 700;
	color: var(--color_1);
}
.el_articleContent_78344036 .shareBlock .btnSharingBlock
{
	display: -ms-flex;
	display: flex;
	column-gap: 30px;
	row-gap: 10px;
	margin-top: 30px;
}
.el_articleContent_78344036 .shareBlock .btnSharingBlock a
{
	position: relative;
	display: -ms-inline-flexbox;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 8px;
	background-color: var(--color_2);
	width: 42px;
	height: 42px;
	color: var(--color_3);
}
.el_articleContent_78344036 .shareBlock .btnSharingBlock a:hover
{
	background-color: var(--color_colorScheme);
}
.el_articleContent_78344036 .shareBlock .btnSharingBlock a span
{
	display: none;
	position: absolute;
	bottom: 100%;
	left: 50%;
	color: var(--color_2);
	-webkit-transform: translate(-50%, 0);
	-ms-transform: translate(-50%, 0);
	transform: translate(-50%, 0);
}
.el_articleContent_78344036 .shareBlock .btnSharingBlock a:hover span
{
	display: block;
}
/***/

.el_articleContent_78344036 .rightMenu
{
}
.el_articleContent_78344036 .rightMenu > div
{
	padding-top: 50px;
}
.el_articleContent_78344036 .rightMenu .articleList
{
	display: -ms-grid;
	display: grid;
	grid-template-columns: 1fr;
	gap: 20px;
}

/*****/

@media (max-width: 1550px)
{
	.el_articleContent_78344036 .imgBlock .img_wrap
	{
		padding-bottom: calc(65.27777777777778% + (35.39473684210526 - 65.27777777777778) * var(--width-coefficient));
	}
	.el_articleContent_78344036 .imgBlock .img_wrap .el
	{
		border-radius: calc(4px + (20 - 4) * var(--width-coefficient));
	}
	.el_articleContent_78344036 .date
	{
		margin-top: calc(8px + (25 - 8) * var(--width-coefficient));
		font-size: calc(12px + (14 - 12) * var(--width-coefficient));
	}

	/***/

	.el_articleContent_78344036 .articlePageContent
	{
		grid-template-columns: 1fr calc(220px + (492 - 220) * var(--width-coefficient));
		gap: calc(20px + (148 - 20) * var(--width-coefficient));
	}

	/**/
	.el_articleContent_78344036 .shareBlock
	{
		margin-top: calc(24px + (60 - 24) * var(--width-coefficient));
	}
	.el_articleContent_78344036 .shareBlock .titleSharing
	{
		font-size: calc(18px + (34 - 18) * var(--width-coefficient));
	}
	.el_articleContent_78344036 .shareBlock .btnSharingBlock
	{
		column-gap: calc(14px + (30 - 14) * var(--width-coefficient));
		row-gap: 10px;
		margin-top: calc(14px + (30 - 14) * var(--width-coefficient));
	}
	/***/

	.el_articleContent_78344036 .rightMenu > div
	{
		padding-top: 50px;
	}
	.el_articleContent_78344036 .rightMenu .articleList
	{
		gap: calc(8px + (20 - 8) * var(--width-coefficient));
	}
}
@media (max-width: 991px)
{
	.el_articleContent_78344036 .articlePageContent
	{
		grid-template-columns: 1fr;
		gap: 0;
	}
	.el_articleContent_78344036 .rightMenu .articleList
	{
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (max-width: 480px)
{
	.el_articleContent_78344036 .rightMenu .articleList
	{
		grid-template-columns: 1fr;
	}
}

/***********************************************************************/
/***********************************************************************/

.el_offerPage_78344036
{
}
.el_offerPage_78344036 .offerPageContent
{
	display: -ms-grid;
	display: grid;
	grid-template-columns: 1fr 364px;
	gap: 148px;
}
/***/
.el_offerPage_78344036 .serviceCost
{
	margin-top: 60px;
}
/***/
.el_offerPage_78344036 .rightMenu
{
}
.el_offerPage_78344036 .rightMenu .offerList
{
	display: -ms-grid;
	display: grid;
	grid-template-columns: 1fr;
	gap: 20px;
}
.el_offerPage_78344036 .rightMenu .btnLine
{
	margin-top: 60px;
	text-align: center;
}

/*****/

@media (max-width: 1550px)
{
	.el_offerPage_78344036 .offerPageContent
	{
		grid-template-columns: 1fr calc(48px + (364 - 48) * var(--width-coefficient));
		gap: calc(0px + (148 - 0) * var(--width-coefficient));
	}
	/***/
	.el_offerPage_78344036 .serviceCost
	{
		margin-top: calc(48px + (60 - 48) * var(--width-coefficient));
	}
	.el_offerPage_78344036 .rightMenu .btnLine
	{
		margin-top: calc(16px + (60 - 16) * var(--width-coefficient));
	}
}
@media (max-width: 991px)
{
	.el_offerPage_78344036 .offerPageContent
	{
		grid-template-columns: 1fr;
		gap: calc(48px + (148 - 48) * var(--width-coefficient));
	}
	/***/
	.el_offerPage_78344036 .rightMenu .offerList
	{
		display: -ms-grid;
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap: calc(8px + (20 - 8) * var(--width-coefficient));
	}
}
@media (max-width: 767px)
{
	.el_offerPage_78344036 .rightMenu .offerList
	{
		grid-template-columns: repeat(2, 1fr);
	}
}

/***********************************************************************/
/***********************************************************************/

.el_subCatalogBlock_78344036
{
	margin-left: var(--content-position-left-no-p);
	padding-bottom: 30px;
	margin-bottom: 60px;
	overflow-x: auto;
	scrollbar-color: var(--color_colorScheme) var(--color_3);
	scrollbar-width: thin;
}
.el_subCatalogBlock_78344036 ul
{
	display: -ms-flex;
	display: flex;
	flex-wrap: nowrap;
	white-space: nowrap;
	align-items: center;
	gap: 20px;
}
.el_subCatalogBlock_78344036 ul li
{
	display: -ms-flex;
	display: flex;
	align-items: center;
	white-space: nowrap;
	vertical-align: top;
	min-width: auto;
}
.el_subCatalogBlock_78344036 ul li a
{
}
.el_subCatalogBlock_78344036 ul li a:hover
{
}

/***********************************************************************/
/***********************************************************************/

.el_ourTeamCatalog_78344036
{
}

/*****/
.el_ourTeamCatalog_78344036 .ourTeamBlock
{
	margin-bottom: 115px;
}
.el_ourTeamCatalog_78344036 .ourTeamBlock:last-child
{
	margin-bottom: 0;
}
.el_ourTeamCatalog_78344036 .ourTeamBlock .catalogTitle
{
	margin-bottom: 30px;
	line-height: 3.6rem;
	font-size: 3.4rem;
	font-weight: 700;
	color: var(--color_1);
}
.el_ourTeamCatalog_78344036 .ourTeamBlock .ourTeamList
{
	display: -ms-grid;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

/*****/

@media (max-width: 1550px)
{
	.el_ourTeamCatalog_78344036 .ourTeamBlock
	{
		margin-bottom: calc(48px + (115 - 48) * var(--width-coefficient));
	}
	.el_ourTeamCatalog_78344036 .ourTeamBlock .catalogTitle
	{
		margin-bottom: calc(16px + (30 - 16) * var(--width-coefficient));
		line-height: calc(20px + (36 - 20) * var(--width-coefficient));
		font-size: calc(18px + (34 - 18) * var(--width-coefficient));
	}
	.el_ourTeamCatalog_78344036 .ourTeamBlock .ourTeamList
	{
		gap: calc(8px + (20 - 8) * var(--width-coefficient));
	}
}
@media (max-width: 991px)
{
	.el_ourTeamCatalog_78344036 .ourTeamBlock .ourTeamList
	{
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (max-width: 767px)
{
	.el_ourTeamCatalog_78344036 .ourTeamBlock .ourTeamList
	{
		grid-template-columns: 1fr;
	}
}

/***********************************************************************/

.el_departmentDoctorsBlock_78344036 .ourTeamList
{
	display: -ms-grid;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

@media (max-width: 1550px)
{
	.el_departmentDoctorsBlock_78344036 .ourTeamList
	{
		gap: calc(8px + (20 - 8) * var(--width-coefficient));
	}
}
@media (max-width: 991px)
{
	.el_departmentDoctorsBlock_78344036 .ourTeamList
	{
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (max-width: 767px)
{
	.el_departmentDoctorsBlock_78344036 .ourTeamList
	{
		grid-template-columns: 1fr;
	}
}

/***********************************************************************/
/***********************************************************************/

.el_ourTeamContent_78344036
{
}

/***/

.af_aboutDoctor_78344036
{
}
.af_aboutDoctor_78344036 .innerWrapper
{
	display: -ms-grid;
	display: grid;
	grid-template-columns: 1fr 1fr;
	column-gap: 120px;
	row-gap: 80px;
}
.af_aboutDoctor_78344036 .education
{
	grid-column-start: 2;
	grid-column-end: 3;
	grid-row-start: 1;
	grid-row-end: 3;
}

/***/

.af_certificatesAndLicenses_78344036
{
	position: relative;
	padding-bottom: 200px;
}
.af_certificatesAndLicenses_78344036 .ico
{
	position: absolute;
	right: var(--content-position-right);
	bottom: 0;
	max-width: 380px;
	max-height: 200px;
}
.af_certificatesAndLicenses_78344036 .sliderBlock
{
}
.af_certificatesAndLicenses_78344036 .sliderBlock .item
{
	-ms-flex: 0 0 calc(100% / 3);
	flex: 0 0 calc(100% / 3);
	max-width: calc(100% / 3);
}
.af_certificatesAndLicenses_78344036 .sliderBlock .item .img_wrap
{
	padding-bottom: 69.51219512195122%;
}
.af_certificatesAndLicenses_78344036 .sliderBlock .item .img_wrap .el
{
	border-radius: 20px;
	overflow: hidden;
}
.af_certificatesAndLicenses_78344036 .sliderBlock .item .img_wrap .el img
{
	display: block;
	object-fit: cover;
	width: 100%;
	height: 100%;
}

/**********/

@media (max-width: 1550px)
{
	.el_articleListItem_41505149 .innerWrapper .infoBlock
	{
		padding: calc(10px + (20 - 10) * var(--width-coefficient));
	}

	.af_aboutDoctor_78344036 .innerWrapper
	{
		column-gap: calc(20px + (120 - 20) * var(--width-coefficient));
		row-gap: calc(20px + (80 - 20) * var(--width-coefficient));
	}

	/***/

	.af_certificatesAndLicenses_78344036
	{
		padding-bottom: calc(130px + (200 - 130) * var(--width-coefficient));
	}
	.af_certificatesAndLicenses_78344036 .ico
	{
		max-width: calc(195px + (380 - 195) * var(--width-coefficient));
		max-height: calc(115px + (200 - 115) * var(--width-coefficient));
	}
	.af_certificatesAndLicenses_78344036 .sliderBlock .item .img_wrap .el
	{
		border-radius: calc(10px + (20 - 10) * var(--width-coefficient));
	}
}
@media (max-width: 991px)
{
	.af_aboutDoctor_78344036 .innerWrapper
	{
		grid-template-columns: 1fr;
		row-gap: calc(20px + (40 - 20) * var(--width-coefficient));
	}
	.af_aboutDoctor_78344036 .education
	{
		grid-column-start: unset;
		grid-column-end: unset;
		grid-row-start: unset;
		grid-row-end: unset;
	}

	.af_certificatesAndLicenses_78344036 .sliderBlock .item
	{
		-ms-flex: 0 0 calc(100% / 2);
		flex: 0 0 calc(100% / 2);
		max-width: calc(100% / 2);
	}
}
@media (max-width: 767px)
{
	.af_certificatesAndLicenses_78344036 .sliderBlock .item
	{
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
	}
}

/***********************************************************************/
/***********************************************************************/

.el_ourTeamBlock_78344036
{
	position: relative;
	padding-top: 180px;
}
.el_ourTeamBlock_78344036 .ico
{
	position: absolute;
	top: 0;
	right: calc(var(--content-position-right) + 250px);
	max-width: 380px;
	max-height: 200px;
}
.el_ourTeamBlock_78344036 .ourTeamList
{
}
.el_ourTeamBlock_78344036 .btnLine
{
	display: none;
	margin-top: 54px;
	text-align: center;
}

.el_ourTeamBlock_78344036 .ourTeamList .el_articleListItem_78344036
{
	-ms-flex: 0 0 calc(100% / 3);
	flex: 0 0 calc(100% / 3);
	max-width: calc(100% / 3);
}

@media (max-width: 1550px)
{
	.el_ourTeamBlock_78344036
	{
		padding-top: calc(100px + (180 - 100) * var(--width-coefficient));
	}
	.el_ourTeamBlock_78344036 .ico
	{
		right: calc(var(--content-position-right) + calc(0px + (250 - 0) * var(--width-coefficient)));
		max-width: calc(200px + (380 - 200) * var(--width-coefficient));
		max-height: calc(110px + (200 - 110) * var(--width-coefficient));
	}
}
@media (max-width: 991px)
{
	.el_ourTeamBlock_78344036 .el_titleBlock_78344036 .btn
	{
		display: none;
	}
	.el_ourTeamBlock_78344036 .ourTeamList .el_articleListItem_78344036
	{
		-ms-flex: 0 0 50%;
		flex: 0 0 50%;
		max-width: 50%;
	}
	.el_ourTeamBlock_78344036 .btnLine
	{
		display: block;
	}
}
@media (max-width: 767px)
{
	.el_ourTeamBlock_78344036 .ourTeamList .el_articleListItem_78344036
	{
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
	}
}

/***********************************************************************/
/***********************************************************************/

.af_reviewsTextBlock_78344036
{
}

.af_reviewsTextBlock_78344036 .sliderBlock
{
}
.af_reviewsTextBlock_78344036 .sliderBlock .af_reviewsTextItem_78344036
{
	-ms-flex: 0 0 50%;
	flex: 0 0 50%;
	max-width: 50%;
}

@media (max-width: 991px)
{
	.af_reviewsTextBlock_78344036 .sliderBlock
	{
		padding-top: 60px;
	}
	.af_reviewsTextBlock_78344036 .sliderBlock .af_reviewsTextItem_78344036
	{
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
	}
}
@media (max-width: 480px)
{
	.af_reviewsTextBlock_78344036 .sliderBlock
	{
		padding-top: 60px;
	}
	.af_reviewsTextBlock_78344036 .sliderBlock .af_reviewsTextItem_78344036
	{
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
	}
}

/*****/

.af_reviewsTextItem_78344036
{
}
.af_reviewsTextItem_78344036 .itemWrapper
{
	border-radius: 20px;
	background-color: var(--color_3);
	padding: 60px;
}
.af_reviewsTextItem_78344036 .itemWrapper .text
{
	position: relative;
	padding: 30px 0;
}
.af_reviewsTextItem_78344036 .itemWrapper .text::before,
.af_reviewsTextItem_78344036 .itemWrapper .text::after
{
	position: absolute;
	display: block;
	font-size: 6.4rem;
	font-weight: 500;
	color: var(--color_colorScheme);
}
.af_reviewsTextItem_78344036 .itemWrapper .text::before
{
	content: "“";
	top: 0;
	left: 0;
}
.af_reviewsTextItem_78344036 .itemWrapper .text::after
{
	content: "“";
	right: 0;
	bottom: 0;
}
.af_reviewsTextItem_78344036 .itemWrapper .name
{
	line-height: 3rem;
	font-size: 2.4rem;
	font-weight: 500;
	color: var(--color_1);
}
.af_reviewsTextItem_78344036 .itemWrapper .pet
{
	margin-top: 10px;
	line-height: 2.8rem;
	font-size: 1.8rem;
	font-weight: 600;
	color: var(--color_1);
}

/***/

.af_reviewsTextBlock_78344036 .btnLine
{
	margin-top: 120px;
	text-align: center;
}

/**********/

@media (max-width: 1550px)
{
	.af_reviewsTextItem_78344036 .itemWrapper
	{
		border-radius: calc(10px + (20 - 10) * var(--width-coefficient));
		background-color: var(--color_3);
		padding: calc(26px + (60 - 26) * var(--width-coefficient));
	}
	.af_reviewsTextItem_78344036 .itemWrapper .text
	{
		padding: calc(20px + (30 - 20) * var(--width-coefficient)) 0;
	}
	.af_reviewsTextItem_78344036 .itemWrapper .text::before,
	.af_reviewsTextItem_78344036 .itemWrapper .text::after
	{
		font-size: calc(44px + (64 - 44) * var(--width-coefficient));
	}
	.af_reviewsTextItem_78344036 .itemWrapper .name
	{
		line-height: calc(22px + (30 - 22) * var(--width-coefficient));
		font-size: calc(16px + (24 - 16) * var(--width-coefficient));
	}
	.af_reviewsTextItem_78344036 .itemWrapper .pet
	{
		margin-top: calc(4px + (10 - 4) * var(--width-coefficient));
		line-height: calc(20px + (28 - 20) * var(--width-coefficient));
		font-size: calc(14px + (18 - 14) * var(--width-coefficient));
	}
}
@media (max-width: 480px)
{
	.af_reviewsTextBlock_78344036 .btnLine .btn
	{
		width: 100%;
	}
}

/***********************************************************************/
/***********************************************************************/

.el_historyContent_78344036
{
}

.el_historyListItem_78344036
{
}
.el_historyListItem_78344036 .itemWrapper
{
	display: -ms-grid;
	display: grid;
	grid-template-columns: 1fr 1fr;
	column-gap: 145px;
}
/**/
.el_historyListItem_78344036 .imageBlock
{
	padding-bottom: 60px;
}
.el_historyListItem_78344036:last-child .imageBlock
{
	padding-bottom: 0;
}
.el_historyListItem_78344036 .imageBlock .img_wrap
{
	padding-bottom: 62.16577540106952%;
}
.el_historyListItem_78344036 .imageBlock .img_wrap .el
{
	border-radius: 20px;
	overflow: hidden;
}
/**/
.el_historyListItem_78344036 .infoBlock
{
	position: relative;
	border-left: 2px solid var(--color_colorScheme);
	padding-left: 50px;
	padding-bottom: 60px;
}
.el_historyListItem_78344036:last-child .infoBlock
{
	padding-bottom: 0;
}
.el_historyListItem_78344036 .infoBlock .ico
{
	position: absolute;
	display: block;
	top: -10px;
	left: 0;
	width: 42px;
	height: 42px;
	-webkit-transform: translate(-50%, 0);
	-ms-transform: translate(-50%, 0);
	transform: translate(-50%, 0);
}
.el_historyListItem_78344036 .infoBlock .ico svg
{
	max-width: 42px;
	max-height: 42px;
}
.el_historyListItem_78344036 .infoBlock .title
{
	line-height: 4.6rem;
	font-size: 4.2rem;
	font-weight: 700;
	color: var(--color_1);
}
.el_historyListItem_78344036 .infoBlock .description
{
	margin-top: 10px;
}

/**********/

@media (max-width: 1550px)
{
	.el_historyListItem_78344036 .itemWrapper
	{
		column-gap: calc(0px + (145 - 0) * var(--width-coefficient));
	}
	/**/
	.el_historyListItem_78344036 .imageBlock
	{
		padding-bottom: calc(50px + (60 - 50) * var(--width-coefficient));
	}
	.el_historyListItem_78344036 .imageBlock .img_wrap .el
	{
		border-radius: calc(10px + (20 - 10) * var(--width-coefficient));
	}
	/**/
	.el_historyListItem_78344036 .infoBlock
	{
		padding-left: calc(20px + (50 - 20) * var(--width-coefficient));
		padding-bottom: calc(50px + (60 - 50) * var(--width-coefficient));
	}
	.el_historyListItem_78344036 .infoBlock .ico
	{
		top: calc((3px + (10 - 3) * var(--width-coefficient)) * -1);
		width: calc(24px + (42 - 24) * var(--width-coefficient));
		height: calc(24px + (42 - 24) * var(--width-coefficient));
	}
	.el_historyListItem_78344036 .infoBlock .ico svg
	{
		max-width: calc(24px + (42 - 24) * var(--width-coefficient));
		max-height: calc(24px + (42 - 24) * var(--width-coefficient));
	}
	.el_historyListItem_78344036 .infoBlock .title
	{
		line-height: calc(20px + (46 - 20) * var(--width-coefficient));
		font-size: calc(18px + (42 - 18) * var(--width-coefficient));
	}
	.el_historyListItem_78344036 .infoBlock .description
	{
		margin-top: calc(8px + (10 - 8) * var(--width-coefficient));
	}
}
@media (max-width: 767px)
{
	.el_historyListItem_78344036 .itemWrapper
	{
		grid-template-columns: 1fr;
	}
	.el_historyListItem_78344036 .imageBlock
	{
		order: 2;
		border-left: 2px solid var(--color_colorScheme);
		padding-left: calc(20px + (50 - 20) * var(--width-coefficient));
	}
	.el_historyListItem_78344036 .infoBlock
	{
		order: 1;
	}
}

/***********************************************************************/
/***********************************************************************/

.el_vacanciesContent_78344036
{
}

.el_vacancieListItem_78344036
{
	margin-top: 30px;
}
.el_vacancieListItem_78344036:first-child
{
	margin-top: 0;
}
.el_vacancieListItem_78344036 .itemWrapper
{
}
.el_vacancieListItem_78344036 .title
{
	position: relative;
	border-radius: 20px;
	background-color: var(--color_3);
	padding: 32px 70px 32px 40px;
	line-height: 3.6rem;
	font-size: 3.4rem;
	font-weight: 700;
	color: var(--color_1);
	cursor: pointer;
}
.el_vacancieListItem_78344036 .title:hover,
.el_vacancieListItem_78344036 .title.open
{
	background-color: var(--color_3);
}
.el_vacancieListItem_78344036 .title span
{
	position: absolute;
	top: 50%;
	right: 40px;
	width: 22px;
	height: 22px;
	-webkit-transform: translate(0, -50%);
	-ms-transform: translate(0, -50%);
	transform: translate(0, -50%);
}
.el_vacancieListItem_78344036 .title span::before,
.el_vacancieListItem_78344036 .title span::after
{
	position: absolute;
	display: block;
	content: "";
	background-color: var(--color_1);
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
.el_vacancieListItem_78344036 .title span::before
{
	width: 22px;
	height: 4px;
}
.el_vacancieListItem_78344036 .title span::after
{
	width: 4px;
	height: 22px;
}
.el_vacancieListItem_78344036 .title.open span::after
{
	display: none;
}

/***/

.el_vacancieListItem_78344036 .itemContent
{
	display: none;
	padding: 32px 40px 115px 40px;
}
.el_vacancieListItem_78344036 .itemContent.open
{
	display: block;
}
.el_vacancieListItem_78344036 .itemContent .description
{
	max-width: 1000px;
}
/***/

.el_vacancieListItem_78344036 .itemContent .btnLine
{
	margin-top: 30px;
}
.el_vacancieListItem_78344036 .itemContent .btnLine .btn
{
	min-width: 280px;
}

/**********/

@media (max-width: 1550px)
{
	.el_vacancieListItem_78344036
	{
		margin-top: calc(15px + (30 - 15) * var(--width-coefficient));
		margin-bottom: var(--width-coefficient);
	}
	.el_vacancieListItem_78344036 .title
	{
		border-radius: calc(10px + (20 - 10) * var(--width-coefficient));
		padding-top: calc(16px + (32 - 16) * var(--width-coefficient));
		padding-left: calc(16px + (40 - 16) * var(--width-coefficient));
		padding-right: calc(40px + (70 - 40) * var(--width-coefficient));
		padding-bottom: calc(16px + (32 - 16) * var(--width-coefficient));
		line-height: calc(20px + (36 - 20) * var(--width-coefficient));
		font-size: calc(18px + (34 - 18) * var(--width-coefficient));
	}
	.el_vacancieListItem_78344036 .title span
	{
		right: calc(16px + (40 - 16) * var(--width-coefficient));
		width: calc(16px + (22 - 16) * var(--width-coefficient));
		height: calc(16px + (22 - 16) * var(--width-coefficient));
	}
	.el_vacancieListItem_78344036 .title span::before
	{
		width: calc(16px + (22 - 16) * var(--width-coefficient));
		height: calc(3px + (4 - 3) * var(--width-coefficient));
	}
	.el_vacancieListItem_78344036 .title span::after
	{
		width: calc(3px + (4 - 3) * var(--width-coefficient));
		height: calc(16px + (22 - 16) * var(--width-coefficient));
	}

	/***/

	.el_vacancieListItem_78344036 .itemContent
	{
		padding-top: calc(16px + (32 - 16) * var(--width-coefficient));
		padding-left: calc(16px + (40 - 16) * var(--width-coefficient));
		padding-right: calc(16px + (40 - 16) * var(--width-coefficient));
		padding-bottom: calc(60px + (115 - 60) * var(--width-coefficient));
	}
	/***/

	.el_vacancieListItem_78344036 .itemContent .btnLine
	{
		margin-top: calc(16px + (30 - 16) * var(--width-coefficient));
	}
	.el_vacancieListItem_78344036 .itemContent .btnLine .btn
	{
		min-width: calc(250px + (280 - 250) * var(--width-coefficient));
	}
}

/***********************************************************************/

.el_missionConent_78344036
{
}

/***********************************************************************/
/***********************************************************************/

.el_advantagesBlock_78344036
{
}
.el_advantagesBlock_78344036 .innerWrapper
{
}
.el_advantagesBlock_78344036 .advantagesList
{
	display: -ms-grid;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

@media (max-width: 991px)
{
	.el_advantagesBlock_78344036 .advantagesList
	{
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (max-width: 767px)
{
	.el_advantagesBlock_78344036 .advantagesList
	{
		grid-template-columns: 1fr;
		gap: 8px;
	}
}

.el_advantagesListItem_78344036
{
}
.el_advantagesListItem_78344036 .itemWrapper
{
	border-radius: 20px;
	background-color: var(--color_3);
	padding: 36px 60px 68px 60px;
	height: 100%;
}
.el_advantagesListItem_78344036 .imageBlock
{
}
.el_advantagesListItem_78344036 .imageBlock img
{
	max-height: 95px;
}
.el_advantagesListItem_78344036 .infoBlock
{
	margin-top: 20px;
}
.el_advantagesListItem_78344036 .infoBlock .title
{
	line-height: 2.6rem;
	font-size: 1.8rem;
	color: var(--color_2);
}

/*****/

@media (max-width: 1550px)
{
	.el_advantagesListItem_78344036 .itemWrapper
	{
		border-radius: calc(10px + (20 - 10) * var(--width-coefficient));
		padding-top: calc(24px + (36 - 24) * var(--width-coefficient));
		padding-left: calc(24px + (60 - 24) * var(--width-coefficient));
		padding-right: calc(24px + (60 - 24) * var(--width-coefficient));
		padding-bottom: calc(24px + (68 - 24) * var(--width-coefficient));
	}
	.el_advantagesListItem_78344036 .imageBlock img
	{
		max-height: calc(55px + (95 - 55) * var(--width-coefficient));
	}
	.el_advantagesListItem_78344036 .infoBlock
	{
		margin-top: calc(15px + (20 - 15) * var(--width-coefficient));
	}
	.el_advantagesListItem_78344036 .infoBlock .title
	{
		line-height: calc(22px + (26 - 22) * var(--width-coefficient));
		font-size: calc(14px + (18 - 14) * var(--width-coefficient));
	}
}


/***********************************************************************/
/***********************************************************************/

.el_instagramBlock_78344036
{
}
.el_instagramBlock_78344036 .note
{
	margin-top: 20px;
	margin-bottom: 20px;
	line-height: 3rem;
	font-size: 2.4rem;
	font-weight: 700;
	text-align: center;
	color: var(--color_colorScheme);
}

.el_instagramBlock_78344036 .instagramList
{
	display: -ms-grid;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

@media (max-width: 991px)
{
	.el_instagramBlock_78344036 .instagramList
	{
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (max-width: 767px)
{
	.el_instagramBlock_78344036 .el_titleBlock_78344036
	{
		text-align: left;
	}
	.el_instagramBlock_78344036 .note
	{
		text-align: left;
	}

	.el_instagramBlock_78344036 .instagramList
	{
		gap: 8px;
	}
}

/***/

.el_instagramListItem_78344036
{
}
.el_instagramListItem_78344036 .img_wrap
{
}
.el_instagramListItem_78344036 .img_wrap .el
{
	border-radius: 20px;
	overflow: hidden;
}
.el_instagramListItem_78344036 .img_wrap .el img
{
	display: block;
	object-fit: cover;
	width: 100%;
	height: 100%;
}

/*****/

@media (max-width: 1550px)
{
	.el_instagramBlock_78344036 .note
	{
		margin-top: calc(16px + (20 - 16) * var(--width-coefficient));
		margin-bottom: calc(16px + (20 - 16) * var(--width-coefficient));
		line-height: calc(20px + (30 - 20) * var(--width-coefficient));
		font-size: calc(16px + (24 - 16) * var(--width-coefficient));
	}

	/***/

	.el_instagramListItem_78344036 .img_wrap .el
	{
		border-radius: calc(6px + (20 - 6) * var(--width-coefficient));
	}
}

/***********************************************************************/
/***********************************************************************/

.el_departmentsContent_78344036
{
}
.el_departmentsContent_78344036 .departmentsList
{
	display: -ms-grid;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}
@media (max-width: 767px)
{
	.el_departmentsContent_78344036 .departmentsList
	{
		grid-template-columns: 1fr;
	}
}

/**********/

.el_departmentListItem_78344036
{
}
.el_departmentListItem_78344036 .itemWrapper
{
	position: relative;
	display: block;
	border-radius: 20px;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	padding-bottom: 50.80213903743316%;
	height: 0;
	overflow: hidden;
}
.el_departmentListItem_78344036 .itemWrapper::after
{
	position: absolute;
	display: block;
	content: "";
	background-color: var(--color_5_40);
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}
.el_departmentListItem_78344036 .itemWrapper:hover::after
{
	background-color: var(--color_colorScheme);
}
.el_departmentListItem_78344036 .itemWrapper .itemContent
{
	position: absolute;
	display: -ms-flex;
	display: flex;
	flex-wrap: wrap;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 40px 30px 30px 40px;
	width: 100%;
	height: 100%;
	z-index: 5;
}
.el_departmentListItem_78344036 .itemWrapper img.main
{
	position: absolute;
	left: -9999px;
	z-index: -9999;
}
.el_departmentListItem_78344036 .itemWrapper img.ico
{
	position: absolute;
	display: none;
	max-width: 150px;
	max-height: 150px;
	z-index: 4;
}
.el_departmentListItem_78344036 .itemWrapper:hover img.ico
{
	display: block;
}
.el_departmentListItem_78344036 .itemWrapper img.ico.top
{
	top: 0;
	right: 7%;
}
.el_departmentListItem_78344036 .itemWrapper img.ico.left
{
	top: 50%;
	left: 0;
}
.el_departmentListItem_78344036 .itemWrapper img.ico.right
{
	top: 50%;
	right: 0;
}
.el_departmentListItem_78344036 .itemWrapper img.ico.bottom
{
	bottom: 0;
	left: 50%;
	-webkit-transform: translate(-50%, 0);
	-ms-transform: translate(-50%, 0);
	transform: translate(-50%, 0);
}
.el_departmentListItem_78344036 .itemWrapper .title
{
	width: 100%;
	line-height: 3.6rem;
	font-size: 3.4rem;
	font-weight: 700;
	color: var(--color_white);
}
.el_departmentListItem_78344036 .itemWrapper:hover .title
{
	color: var(--color_1);
}
.el_departmentListItem_78344036 .itemWrapper .btn
{
	align-self: flex-end;
	margin-left: auto;
}

/**********/

@media (max-width: 1550px)
{
	.el_departmentsContent_78344036 .departmentsList
	{
		gap: calc(8px + (20 - 8) * var(--width-coefficient));
	}

	/**********/

	.el_departmentListItem_78344036 .itemWrapper
	{
		border-radius: calc(10px + (20 - 10) * var(--width-coefficient));
	}
	.el_departmentListItem_78344036 .itemWrapper .itemContent
	{
		padding-top: calc(16px + (40 - 16) * var(--width-coefficient));
		padding-left: calc(8px + (40 - 8) * var(--width-coefficient));
		padding-right: calc(16px + (30 - 16) * var(--width-coefficient));
		padding-bottom: calc(16px + (30 - 16) * var(--width-coefficient));
	}
	.el_departmentListItem_78344036 .itemWrapper img.ico
	{
		max-width: calc(50px + (150 - 50) * var(--width-coefficient));
		max-height: calc(50px + (150 - 50) * var(--width-coefficient));
	}
	.el_departmentListItem_78344036 .itemWrapper .title
	{
		line-height: calc(20px + (36 - 20) * var(--width-coefficient));
		font-size: calc(18px + (34 - 18) * var(--width-coefficient));
	}
}

/***********************************************************************/

.eatTopIndent
{
	background-color: var(--color_4);
	height: 100px;
}

.eatBottomIndent
{
	background-color: var(--color_4);
	height: 100px;
}

/**********/

@media (max-width: 1550px)
{
	.eatTopIndent
	{
		height: calc(50px + (100 - 50) * var(--width-coefficient));
	}

	.eatBottomIndent
	{
		height: calc(50px + (100 - 50) * var(--width-coefficient));
	}
}

/***********************************************************************/

.el_eatBlock_78344036
{
}
.el_eatBlock_78344036 .articleList
{
}

/*****/

.el_eatListItem_78344036
{
}
.el_eatListItem_78344036 .itemWrapper
{
    display: -ms-grid;
    display: grid;
    grid-template-columns: 1fr 1fr;
	align-items: center;
	column-gap: 185px;
}
/***/
.el_eatListItem_78344036 .infoBlock
{
}
.el_eatListItem_78344036 .infoBlock .title
{
	line-height: 2.8rem;
	font-size: 1.8rem;
	font-weight: 600;
	color: var(--color_1);
}
.el_eatListItem_78344036 .infoBlock .description
{
	margin-top: 15px;
}
/***/
.el_eatListItem_78344036 .imgBlock
{
}
.el_eatListItem_78344036 .imgBlock .img_wrap
{
	padding-bottom: 62.16577540106952%;
}
.el_eatListItem_78344036 .imgBlock .img_wrap .el
{
	border-radius: 20px;
	overflow: hidden;
}
.el_eatListItem_78344036 .imgBlock .img_wrap .el img
{
	display: block;
	object-fit: cover;
	width: 100%;
	height: 100%;
}

/**********/

@media (max-width: 1550px)
{
	.el_eatListItem_78344036 .itemWrapper
	{
		column-gap: calc(20px + (185 - 20) * var(--width-coefficient));
	}
	/***/
	.el_eatListItem_78344036 .infoBlock .title
	{
		line-height: calc(22px + (28 - 22) * var(--width-coefficient));
		font-size: calc(14px + (18 - 14) * var(--width-coefficient));
	}
	.el_eatListItem_78344036 .infoBlock .description
	{
		margin-top: calc(8px + (15 - 8) * var(--width-coefficient));
	}
	/***/
	.el_eatListItem_78344036 .imgBlock .img_wrap .el
	{
		border-radius: calc(10px + (20 - 10) * var(--width-coefficient));
	}
}
@media (max-width: 991px)
{
	.el_eatListItem_78344036 .itemWrapper
	{
		grid-template-columns: 1fr;
		gap: 20px;
		padding-top: 60px;
	}
}

/***********************************************************************/
/***********************************************************************/

.el_onlineConsultationConent_78344036
{
}

/***********************************************************************/
/***********************************************************************/

.el_htgcBlock_78344036
{
}
.el_htgcBlock_78344036 .innerWrapper
{
}
.el_htgcBlock_78344036 .htgcList
{
	display: -ms-grid;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

@media (max-width: 991px)
{
	.el_htgcBlock_78344036 .htgcList
	{
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (max-width: 767px)
{
	.el_htgcBlock_78344036 .htgcList
	{
		grid-template-columns: 1fr;
		gap: 8px;
	}
}

.el_htgcListItem_78344036
{
}
.el_htgcListItem_78344036 .itemWrapper
{
	border-radius: 20px;
	background-color: var(--color_3);
	padding: 36px 60px 68px 60px;
	height: 100%;
}
.el_htgcListItem_78344036 .imageBlock
{
}
.el_htgcListItem_78344036 .imageBlock img
{
	max-height: 95px;
}
.el_htgcListItem_78344036 .infoBlock
{
	margin-top: 20px;
}
.el_htgcListItem_78344036 .infoBlock .title
{
	line-height: 2.8rem;
	font-size: 1.8rem;
	font-weight: 700;
	color: var(--color_1);
}

/**********/

@media (max-width: 1550px)
{
	.el_htgcBlock_78344036 .htgcList
	{
		gap: calc(8px + (20 - 8) * var(--width-coefficient));
	}

	.el_htgcListItem_78344036 .itemWrapper
	{
		border-radius: calc(10px + (20 - 10) * var(--width-coefficient));
		padding-top: calc(24px + (36 - 24) * var(--width-coefficient));
		padding-left: calc(24px + (60 - 24) * var(--width-coefficient));
		padding-right: calc(24px + (60 - 24) * var(--width-coefficient));
		padding-bottom: calc(24px + (68 - 24) * var(--width-coefficient));
	}
	.el_htgcListItem_78344036 .imageBlock img
	{
		max-height: calc(55px + (95 - 55) * var(--width-coefficient));
	}
	.el_htgcListItem_78344036 .infoBlock
	{
		margin-top: calc(15px + (20 - 15) * var(--width-coefficient));
	}
	.el_htgcListItem_78344036 .infoBlock .title
	{
		line-height: calc(22px + (28 - 22) * var(--width-coefficient));
		font-size: calc(14px + (18 - 14) * var(--width-coefficient));
	}
}

/***********************************************************************/
/***********************************************************************/

.el_textTextBlock_78344036
{
}
.el_textTextBlock_78344036 .innerWrapper
{
	display: -ms-grid;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	align-items: center;
	gap: 20px;
}
.el_textTextBlock_78344036 .innerWrapper .textTwoBlock
{
	position: relative;
	display: -ms-flex;
	display: flex;
	align-items: center;
	border-radius: 20px 0 0 20px;
	background-color: var(--color_colorScheme);
	padding: 40px 60px;
	height: 100%;
	z-index: 1;
}
.el_textTextBlock_78344036 .innerWrapper .textTwoBlock::before
{
	display: block;
	content: "";
	padding-bottom: calc(54% + 80px);
}
.el_textTextBlock_78344036 .innerWrapper .textTwoBlock::after
{
	position: absolute;
	display: block;
	content: "";
	border-radius: 0 20px 20px 0;
	background-color: var(--color_colorScheme);
	top: 0;
	left: 100%;
	bottom: 0;
	width: 30%;
	z-index: 1;
}
.el_textTextBlock_78344036 .innerWrapper .textTwoBlock .btnLine
{
	margin-top: 40px;
}

/***/
.el_textTextBlock_78344036 .innerWrapper .textThreeBlock
{
	position: relative;
	display: -ms-flex;
	display: flex;
	align-items: center;
	border-radius: 20px;
	/*margin: 40px 0;*/
	padding: 40px 60px;
	height: calc(100% - 80px);
	z-index: 5;
}
.el_textTextBlock_78344036 .innerWrapper .textThreeBlock .text
{
	max-width: 560px;
}
.el_textTextBlock_78344036 .innerWrapper .textThreeBlock .textIconImage
{
	position: absolute;
	bottom: 0;
	right: 20px;
	max-width: 175px;
	max-height: 155px;
}

/**********/

@media (max-width: 1550px)
{
	.el_textTextBlock_78344036 .innerWrapper
	{
		gap: calc(8px + (20 - 8) * var(--width-coefficient));
	}
	.el_textTextBlock_78344036 .innerWrapper .textTwoBlock
	{
		border-radius: calc(10px + (20 - 10) * var(--width-coefficient)) 0 0 calc(10px + (20 - 10) * var(--width-coefficient));
		padding: calc(15px + (40 - 15) * var(--width-coefficient)) calc(15px + (60 - 15) * var(--width-coefficient));
		padding-bottom: calc(48px + (60 - 48) * var(--width-coefficient));
	}
	.el_textTextBlock_78344036 .innerWrapper .textTwoBlock::before
	{
		padding-bottom: calc(54% + (30px + (80 - 30) * var(--width-coefficient)));
	}
	.el_textTextBlock_78344036 .innerWrapper .textTwoBlock::after
	{
		border-radius: 0 calc(10px + (20 - 10) * var(--width-coefficient)) calc(10px + (20 - 10) * var(--width-coefficient)) 0;
		width: calc(20% + (30 - 20) * var(--width-coefficient));
	}
	.el_textTextBlock_78344036 .innerWrapper .textTwoBlock .btnLine
	{
		margin-top: calc(16px + (40 - 16) * var(--width-coefficient));
	}
	/***/
	.el_textTextBlock_78344036 .innerWrapper .textThreeBlock
	{
		padding-left: calc(15px + (60 - 15) * var(--width-coefficient));
		padding-right: calc(15px + (60 - 15) * var(--width-coefficient));
		height: calc(100% - calc(60px + (80 - 60) * var(--width-coefficient)));
	}
	.el_textTextBlock_78344036 .innerWrapper .textThreeBlock .textIconImage
	{
		max-width: calc(90px + (175 - 90) * var(--width-coefficient));
		max-height: calc(90px + (155 - 90) * var(--width-coefficient));
	}
}
@media (max-width: 991px)
{
	.el_textTextBlock_78344036 .innerWrapper
	{
		grid-template-columns: 1fr;
		gap: 0;
	}
	.el_textTextBlock_78344036 .innerWrapper .textTwoBlock
	{
		border-radius: 0 0 calc(10px + (20 - 10) * var(--width-coefficient)) calc(10px + (20 - 10) * var(--width-coefficient));
		padding-top: calc(30px + (40 - 30) * var(--width-coefficient));
		order: 2;
	}
	.el_textTextBlock_78344036 .innerWrapper .textTwoBlock::before
	{
		display: none;
	}
	.el_textTextBlock_78344036 .innerWrapper .textTwoBlock::after
	{
		border-radius: calc(10px + (20 - 10) * var(--width-coefficient)) calc(10px + (20 - 10) * var(--width-coefficient)) 0 0;
		top: auto;
		left: 0;
		right: 0;
		bottom: 99%;
		width: 100%;
		height: calc(15% + (30 - 15) * var(--width-coefficient));
	}
	/***/
	.el_textTextBlock_78344036 .innerWrapper .textThreeBlock
	{
		margin: 0 auto;
		width: 100%;
		max-width: 90%;
		height: auto;
		order: 1;
	}
}
@media (max-width: 767px)
{
	.el_textTextBlock_78344036 .innerWrapper .textThreeBlock
	{
		padding-bottom: 100px;
	}
}
@media (max-width: 480px)
{
	.el_textTextBlock_78344036 .innerWrapper .textTwoBlock .btnLine .btn
	{
		width: 100%;
	}
}

/***********************************************************************/
/*****                         staticPage                          *****/
/***********************************************************************/

.staticPage
{
}

/***********************************************************************/
/*****                         staticPage                          *****/
/***********************************************************************/

.thankPage
{
	padding: 200px 0;
}
.thankPage .innerWrapper
{
	text-align: center;
}
/**/
.thankPage .innerWrapper .pageTitle
{
}
.thankPage .innerWrapper .pageTitle span
{
	position: relative;
	display: inline-block;
}
.thankPage .innerWrapper .pageTitle h1
{
	display: inline-block;
}
.thankPage .innerWrapper .pageTitle span svg
{
	position: absolute;
	bottom: 25%;
	left: 100%;
	max-width: 397px;
	max-height: 209px;
}
/**/
.thankPage .innerWrapper .text
{
	margin: 25px auto 0 auto;
	max-width: 740px;
	line-height: 3.6rem;
	font-size: 3.4rem;
	font-weight: 700;
	text-align: center;
	color: var(--color_2);
}
/**/
.thankPage .innerWrapper .btnLine
{
	margin-top: 60px;
}

/**********/

@media (max-width: 1550px)
{
	.thankPage
	{
		padding: calc(80px + (200 - 80) * var(--width-coefficient)) 0;
	}

	.thankPage .innerWrapper .pageTitle span svg
	{
		max-width: calc(175px + (397 - 175) * var(--width-coefficient));
		max-height: calc(109px + (209 - 109) * var(--width-coefficient));
	}
	/**/
	.thankPage .innerWrapper .text
	{
		margin-top: calc(16px + (25 - 16) * var(--width-coefficient));
		line-height: calc(20px + (36 - 20) * var(--width-coefficient));
		font-size: calc(18px + (34 - 18) * var(--width-coefficient));
	}
	/**/
	.thankPage .innerWrapper .btnLine
	{
		margin-top: calc(16px + (60 - 16) * var(--width-coefficient));
	}
}


/***********************************************************************/
/*****                   contactsPageContent                       *****/
/***********************************************************************/

.contactsPageContent
{
}

.contactsPageContent .contactsBlock
{
	display: -ms-grid;
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	column-gap: 60px;
	row-gap: 30px;
}

@media (max-width: 991px)
{
	.contactsPageContent .contactsBlock
	{
		grid-template-columns: repeat(3, 1fr);
	}
}
@media (max-width: 767px)
{
	.contactsPageContent .contactsBlock
	{
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (max-width: 480px)
{
	.contactsPageContent .contactsBlock
	{
		grid-template-columns: 1fr;
	}
}

/***/

.contactsPageContent .contactsBlock .contactsItem
{
}
.contactsPageContent .contactsBlock .contactsItem .title
{
	line-height: 3rem;
	font-size: 2.4rem;
	font-weight: 700;
	color: var(--color_1);
}
/**/
.contactsPageContent .contactsBlock .contactsItem .infoBlock
{
	margin-top: 15px;
}
.contactsPageContent .contactsBlock .contactsItem .infoBlock ul
{
}
.contactsPageContent .contactsBlock .contactsItem .infoBlock ul li
{
}
.contactsPageContent .contactsBlock .contactsItem .infoBlock ul li:first-child
{
	margin-top: 0;
}
.contactsPageContent .contactsBlock .contactsItem .infoBlock ul li a
{
	display: inline-block;
	line-height: 2.8rem;
	font-size: 1.8rem;
	font-weight: 400;
	color: var(--color_2);
}
/**/
.contactsPageContent .contactsBlock .contactsItem .infoBlock .text
{
	line-height: 2.8rem;
	font-size: 1.8rem;
	font-weight: 400;
	color: var(--color_2);
}

/***/

.contactsPageContent .mapBlock
{
	margin-top: 60px;
}

.mapBlock > div
{
	position: relative;
	border-radius: 20px;
	padding-bottom: 33.78378378378378%;
	width: 100%;
	height: 0;
	overflow: hidden;
}
.mapBlock iframe
{
	position: absolute;
	top: 0;
	left: 0;
	width: 100% !important;
	height: 100% !important;
}

/***/

.contactsPageContent .textBlock
{
	margin-top: 40px;
}

/*****/

@media (max-width: 1550px)
{
	.contactsPageContent .contactsBlock
	{
		column-gap: calc(8px + (60 - 8) * var(--width-coefficient));
	}
	.contactsPageContent .contactsBlock .contactsItem .title
	{
		line-height: calc(20px + (30 - 20) * var(--width-coefficient));
		font-size: calc(18px + (14 - 18) * var(--width-coefficient));
	}
	/**/
	.contactsPageContent .contactsBlock .contactsItem .infoBlock
	{
		margin-top: 15px;
	}
	.contactsPageContent .contactsBlock .contactsItem .infoBlock ul li a
	{
		line-height: calc(22px + (28 - 22) * var(--width-coefficient));
		font-size: calc(14px + (18 - 14) * var(--width-coefficient));
	}
	/**/
	.contactsPageContent .contactsBlock .contactsItem .infoBlock .text
	{
		line-height: calc(22px + (28 - 22) * var(--width-coefficient));
		font-size: calc(14px + (18 - 14) * var(--width-coefficient));
	}

	/***/

	.contactsPageContent .mapBlock
	{
		margin-top: calc(48px + (60 - 48) * var(--width-coefficient));
	}

	.mapBlock > div
	{
		border-radius: calc(10px + (20 - 10) * var(--width-coefficient));
	}
}
@media (max-width: 480px)
{
	.mapBlock > div
	{
		padding-bottom: 66.66666666666667%;
	}
}

/***********************************************************************/
/*****                      page404Content                         *****/
/***********************************************************************/

.el_page404Content_78344036
{
}
/**/
.el_page404Content_78344036 .numbers
{
	position: relative;
	display: inline-block;
	margin-bottom: 15px;
	line-height: 1;
	font-size: 40rem;
	font-weight: bold;
	color: var(--color_colorScheme);
}
.el_page404Content_78344036 .numbers span
{
	position: relative;
	display: inline-block;
	margin: 0;
	z-index: 5;
}
.el_page404Content_78344036 .numbers span svg
{
	position: absolute;
}
.el_page404Content_78344036 .numbers span.a1 svg
{
	top: 109px;
	left: -51px;
	z-index: -1;
	max-width: 195px;
	max-height: 121px;
}
.el_page404Content_78344036 .numbers span.a2 svg
{
	bottom: 90px;
	left: 80px;
	max-width: 70px;
	max-height: 116px;
}
.el_page404Content_78344036 .numbers span.a3 svg
{
	top: 64px;
	right: -66px;
	z-index: -1;
	max-width: 156px;
	max-height: 130px;
}
/**/
.el_page404Content_78344036 .numbers svg.arrow
{
	position: absolute;
	top: 168px;
	right: -93px;
	max-width: 163px;
	max-height: 378px;
}
/**/
.el_page404Content_78344036 .text
{
	margin-bottom: 60px;
	line-height: 4.6rem;
	font-size: 4.2rem;
	font-weight: 700;
	text-transform: uppercase;
}
/**/
.el_page404Content_78344036 .btnLine
{
}

@media (max-width: 1550px)
{
	.el_page404Content_78344036 .numbers
	{
		font-size: calc(194px + (400 - 194) * var(--width-coefficient));
	}
	.el_page404Content_78344036 .numbers span.a1 svg
	{
		top: calc(44px + (109 - 44) * var(--width-coefficient));
		left: calc((20px + (51 - 20) * var(--width-coefficient)) * -1);
		max-width: calc(70px + (195 - 70) * var(--width-coefficient));
		max-height: calc(58px + (121 - 58) * var(--width-coefficient));
	}
	.el_page404Content_78344036 .numbers span.a2 svg
	{
		bottom: calc(38px + (90 - 38) * var(--width-coefficient));
		left: calc(43px + (80 - 43) * var(--width-coefficient));
		max-width: calc(33px + (70 - 33) * var(--width-coefficient));
		max-height: calc(50px + (116 - 50) * var(--width-coefficient));
	}
	.el_page404Content_78344036 .numbers span.a3 svg
	{
		top: calc(25px + (64 - 25) * var(--width-coefficient));
		right: calc((34px + (66 - 34) * var(--width-coefficient)) * -1);
		max-width: calc(70px + (156 - 70) * var(--width-coefficient));
		max-height: calc(64px + (130 - 64) * var(--width-coefficient));
	}
	/**/
	.el_page404Content_78344036 .numbers svg.arrow
	{
		top: calc(75px + (168 - 75) * var(--width-coefficient));
		right: calc((34px + (93 - 34) * var(--width-coefficient)) * -1);
		max-width: calc(56px + (163 - 56) * var(--width-coefficient));
		max-height: calc(130px + (378 - 130) * var(--width-coefficient));
	}
	/**/
	.el_page404Content_78344036 .text
	{
		margin-bottom: calc(48px + (60 - 48) * var(--width-coefficient));
		line-height: calc(20px + (46 - 20) * var(--width-coefficient));
		font-size: calc(18px + (42 - 18) * var(--width-coefficient));
	}
}

/***********************************************************************/
/*****                         staticText                          *****/
/***********************************************************************/

.staticText
{
	font-family: var(--font-family-1);
	line-height: 2.8rem;
	font-size: 1.8rem;
	font-weight: 400;
	color: var(--color_2);
}
.staticText.white-text,
.bgDarkGray .staticText,
.bgDark .staticText
{
	color: var(--color_white);
}
.staticText *
{
	margin-bottom: 30px;
	font-family: inherit;
	line-height: inherit;
	font-size: inherit;
	font-weight: inherit;
	color: inherit;
}
.staticText *:first-child
{
	margin-top: 0;
}
.staticText *:last-child
{
	margin-bottom: 0;
}

.staticText .fa::before
{
	font-family: "FontAwesome";
}

.staticText h1,
.staticText .h1,
.staticText h2,
.staticText .h2,
.staticText h3,
.staticText .h3,
.staticText h4,
.staticText .h4,
.staticText h5,
.staticText .h5,
.staticText h6,
.staticText .h6
{
	margin-top: 30px;
	margin-bottom: 18px;
	font-family: var(--font-family-1);
	font-weight: 700;
	color: var(--color_1);
}
.bgDarkGray .staticText h1,
.bgDark .staticText h1,
.bgDarkGray .staticText .h1,
.bgDark .staticText .h1,
.bgDarkGray .staticText h2,
.bgDark .staticText h2,
.bgDarkGray .staticText .h2,
.bgDark .staticText .h2,
.bgDarkGray .staticText h3,
.bgDark .staticText h3,
.bgDarkGray .staticText .h3,
.bgDark .staticText .h3,
.bgDarkGray .staticText h4,
.bgDark .staticText h4,
.bgDarkGray .staticText .h4,
.bgDark .staticText .h4,
.bgDarkGray .staticText h5,
.bgDark .staticText h5,
.bgDarkGray .staticText .h5,
.bgDark .staticText .h5,
.bgDarkGray .staticText h6,
.bgDark .staticText h6,
.bgDarkGray .staticText .h6,
.bgDark .staticText .h6
{
	color: var(--color_white);
}
.staticText h1:first-child,
.staticText .h1:first-child,
.staticText h2:first-child,
.staticText .h2:first-child,
.staticText h3:first-child,
.staticText .h3:first-child,
.staticText h4:first-child,
.staticText .h4:first-child,
.staticText h5:first-child,
.staticText .h5:first-child,
.staticText h6:first-child,
.staticText .h6:first-child
{
	margin-top: 0;
}

.staticText h1,
.staticText .h1
{
	line-height: 4.6rem;
	font-size: 4.2rem;
}
.staticText h2,
.staticText .h2
{
	line-height: 4rem;
	font-size: 3.6rem;
}
.staticText h3,
.staticText .h3
{
	line-height: 3.2rem;
	font-size: 2.8rem;
}
.staticText h4,
.staticText .h4
{
	line-height: 3rem;
	font-size: 2.4rem;
}
.staticText h5,
.staticText .h5
{
	line-height: 2.6rem;
	font-size: 2.2rem;
}
.staticText h6,
.staticText .h6
{
	line-height: 2.4rem;
	font-size: 2rem;
}

.staticText ul,
.staticText ol
{
	margin-bottom: 10px;
	padding-left: 28px;
}
.staticText ul li ul,
.staticText ol li ul,
.staticText ul li ol
{
	margin: 10px 0;
	padding: 0 0 0 20px;
}
.staticText ul li,
.staticText ol li
{
	list-style-position: outside!important;
	margin: 0 0 10px 0;
	padding: 0;
}
.staticText ul li
{
	list-style: disc;
}
.staticText ol li
{
	list-style: decimal;
}

.staticText a
{
	color: var(--color_7);
}
.staticText a:hover
{
	color: var(--color_colorScheme);
}

.staticText b,
.staticText strong
{
	font-weight: bold;
	color: var(--color_1);
}
.staticText.white-text b,
.staticText.white-text strong
{
	color: var(--color_white);
}
.staticText .bold600
{
	font-weight: 600;
}
.staticText em
{
	font-style: italic;
}
.staticText img
{
	display: block;
	margin: 10px auto;
	width: auto !important;
	max-width: 100%;
}

.staticText table
{
	width: 100%;
}
.staticText table tr
{
	border: 1px solid var(--color_4);
}
.staticText table tr:nth-child(odd)
{
	background-color: var(--color_3);
}
.staticText table tr td
{
	padding: 9px 13px;
}

.staticText .videoIframe
{
	width: 100%;
	max-width: 100%;
	margin-bottom: 30px;
}
.staticText .videoIframe:empty
{
	margin-bottom: 0;
	padding-top: 0;
}
.staticText .videoIframe > div
{
	position: relative;
	border-radius: 20px;
	padding-bottom: 56.25%;
	overflow: hidden;
}
.staticText .videoIframe iframe,
.staticText .videoIframe object,
.staticText .videoIframe embed
{
	position: absolute;
	top: 0;
	left: 0;
	width: 100% !important;
	height: 100% !important;
}

.staticText .videoIframe .video_wrap .el
{
	position: absolute;
	display: -ms-flex;
	display: flex;
	justify-content: center;
	align-items: center;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
}
.staticText .videoIframe .video_wrap .el img
{
	display: block;
	object-fit: cover;
	width: 100%;
	height: 100%;
}
.staticText .videoIframe .video_wrap .el svg
{
	position: absolute;
	top: 50%;
	left: 50%;
	width: 68px;
	height: 48px;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
.staticText .videoIframe iframe svg .ytp-large-play-button-bg,
.staticText .videoIframe .video_wrap .el svg .ytp-large-play-button-bg
{
	-webkit-transition: fill .1s cubic-bezier(0.4,0,1,1),fill-opacity .1s cubic-bezier(0.4,0,1,1);
	transition: fill .1s cubic-bezier(0.4,0,1,1),fill-opacity .1s cubic-bezier(0.4,0,1,1);
	fill: var(--color_colorScheme);
	fill-opacity: .8;
}
.staticText .videoIframe iframe:hover svg .ytp-large-play-button-bg,
.staticText .videoIframe .video_wrap:hover .el svg .ytp-large-play-button-bg
{
	fill: #FF0000;
	fill-opacity: 1;
}

.staticText .items
{
	display: -ms-flex;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	margin-left: -15px;
	margin-right: -15px;
	margin-bottom: 0;
}
.staticText .items.it2
{
	align-items: unset;
}
.staticText .items > div
{
	margin: 0 0 30px 0;
	padding-left: 15px;
	padding-right: 15px;
}
.staticText .items.ia1 > div
{
	-ms-flex: 0 0 100%;
	flex: 0 0 100%;
	max-width: 100%;
}
.staticText .items.ia2 > div
{
	-ms-flex: 0 0 50%;
	flex: 0 0 50%;
	max-width: 50%;
}

@media (max-width: 1550px)
{
	.staticText
	{
		font-size: calc(14px + (15 - 14) * var(--width-coefficient));
	}

	.staticText h1,
	.staticText .h1,
	.staticText h2,
	.staticText .h2,
	.staticText h3,
	.staticText .h3,
	.staticText h4,
	.staticText .h4,
	.staticText h5,
	.staticText .h5,
	.staticText h6,
	.staticText .h6
	{
		margin-bottom: calc(30px + (40 - 30) * var(--width-coefficient));
	}
	.staticText h1,
	.staticText .h1
	{
		line-height: calc(27px + (29 - 27) * var(--width-coefficient));
		font-size: calc(22px + (24 - 22) * var(--width-coefficient));
	}

	.staticText ul,
	.staticText ol
	{
		padding-left: calc(16px + (28 - 16) * var(--width-coefficient));
	}

	.staticText .items
	{
		margin-left: calc((5px + (15 - 5) * var(--width-coefficient)) * -1);
		margin-right: calc((5px + (15 - 5) * var(--width-coefficient)) * -1);
	}
	.staticText .items > div
	{
		padding-left: calc(5px + (15 - 5) * var(--width-coefficient));
		padding-right: calc(5px + (15 - 5) * var(--width-coefficient));
		margin-bottom: calc(10px + (30 - 10) * var(--width-coefficient));
	}
}
@media (max-width: 991px)
{
	.staticText .items.ia2 > div
	{
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
	}
}

/***********************************************************************/
/*****                       PAGINATION                            *****/
/***********************************************************************/

.el_paginationBlock_78344036
{
	margin: 115px auto 0 auto;
}
.el_paginationBlock_78344036 ul
{
	text-align: center;
}
.el_paginationBlock_78344036 ul li
{
	display: inline-block;
	margin: 5px;
}
.el_paginationBlock_78344036 ul li a,
.el_paginationBlock_78344036 ul li span
{
	display: -ms-inline-flexbox;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 100%;
	border: 1px solid transparent;
	background-color: transparent;
	box-shadow: none;
	padding: 0 5px;
	min-width: 48px;
	height: 48px;
	font-family: var(--font-family-1);
	line-height: 1;
	font-size: 2.4rem;
	font-weight: 500;
	font-style: normal;
	color: var(--color_1);
}
.el_paginationBlock_78344036 ul li a:hover,
.el_paginationBlock_78344036 ul li span
{
	border-color: var(--color_colorScheme);
	background-color: var(--color_colorScheme);
	color: var(--color_1);
}

@media (max-width: 991px)
{
	.el_paginationBlock_78344036 ul li a,
	.el_paginationBlock_78344036 ul li span
	{
		min-width: 36px;
		height: 36px;
		line-height: 34px;
	}
}

/***********************************************************************/
/***********************************************************************/

.fancybox-content
{
	background-color: var(--color_white);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	border-radius: 0;
	padding: 115px;
	max-width: 855px;
	width: 100%;
	color: var(--color_1);
}
.fancybox-content .fancybox-close-small
{
	border-radius: 100%;
	border: 1px solid var(--color_colorScheme);
	background-color: var(--color_colorScheme);
	top: 40px;
	right: 54px;
	padding: 0;
	width: 48px;
	height: 48px;
	opacity: 1;
}
.fancybox-content .fancybox-close-small:hover
{
	border: 1px solid var(--color_1);
	background-color: var(--color_1);
}
.fancybox-content .fancybox-close-small svg path
{
	fill: var(--color_1);
}
.fancybox-content .fancybox-close-small:hover svg path
{
	fill: var(--color_white);
}

.fancybox-error p
{
	color: var(--color_red);
}

.fancybox-content .alert
{
	font-weight: normal;
	text-transform: none;
	text-align: left;
}
.fancybox-content .fancybox-button svg path
{
	fill: var(--color_1);
}
.fancybox-content .btn_wrap .btn,
.fancybox-content .buttonForm .btn
{
	max-width: 100%;
}

.fancybox-content .modalContent
{
	font-family: var(--font-family-1);
	line-height: 2.4rem;
	font-size: 1.6rem;
	font-weight: 700;
	text-transform: uppercase;
	text-align: center;
	color: var(--color_1);
}
.fancybox-content .modalContent a:not(.btn)
{
	color: var(--color_6);
}
.fancybox-content .modalContent a:not(.btn):hover
{
	color: var(--color_2);
}
.fancybox-content .modalContent .input_wrapper
{
	text-align: left;
}

/******/

.fancybox-content .btn_wrap,
.fancybox-content .buttonForm
{
	display: -ms-flex;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-around;
	gap: 15px;
	margin-top: 36px;
}
.fancybox-content .btn_wrap .btn,
.fancybox-content .buttonForm .btn
{
	width: 100%;
}

/******/

@media (max-width: 1550px)
{
	.fancybox-content
	{
		padding:  calc(48px + (115 - 48) * var(--width-coefficient)) calc(24px + (115 - 24) * var(--width-coefficient));
	}

	.fancybox-content .fancybox-close-small
	{
		top: calc(16px + (40 - 16) * var(--width-coefficient));
		right: calc(16px + (54 - 16) * var(--width-coefficient));
		width: calc(32px + (48 - 32) * var(--width-coefficient));
		height: calc(32px + (48 - 32) * var(--width-coefficient));
	}

	.fancybox-content .modalContent
	{
		line-height: calc(22px + (28 - 22) * var(--width-coefficient));
		font-size: calc(14px + (22 - 14) * var(--width-coefficient));
	}

	.fancybox-content .btn_wrap,
	.fancybox-content .buttonForm
	{
		margin-top: calc(24px + (36 - 24) * var(--width-coefficient));
	}
}

/***********************************************************************/

.cartOfferDeleteConfirmModal
{
}

.cartOfferDeleteConfirmModal .btn_wrap
{
	display: -ms-flex;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-around;
	margin-top: 30px;
}
.cartOfferDeleteConfirmModal .btn_wrap .btn
{
	max-width: 48%;
}

@media (max-width: 1680px)
{
	.cartOfferDeleteConfirmModal .btn_wrap
	{
		margin-top: calc(15px + (30 - 15) * var(--width-coefficient));
	}
}
@media (max-width: 575px)
{
	.cartOfferDeleteConfirmModal .btn_wrap .btn
	{
		max-width: 100%;
	}
	.cartOfferDeleteConfirmModal .btn_wrap .btn:last-child
	{
		margin-top: 15px;
	}
}

/*************************************/
/*************************************/

#buttonUp
{
	position: fixed;
	display: -ms-flex;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 100%;
	border: 1px solid var(--color_colorScheme);
	background-color: var(--color_white);
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
	right: 25px;
	bottom: 125px;
	padding-top: 3px;
	width: 52px;
	height: 52px;
	line-height: 1;
	font-size: 3rem;
	text-align: center;
	color: var(--color_1);
	-webkit-transition: all 0.35s ease-in-out 0s;
	-moz-transition: all 0.35s ease-in-out 0s;
	-ms-transition: all 0.35s ease-in-out 0s;
	-o-transition: all 0.35s ease-in-out 0s;
	transition: all 0.35s ease-in-out 0s;
	opacity: 0;
	z-index: 100;
	cursor: pointer;
}
#buttonUp:hover
{
	border-color: var(--color_colorScheme);
	background-color: var(--color_colorScheme);
	color: var(--color_white);
}
#buttonUp i
{
	position: relative;
	top: -5px;
	line-height: 1;
}

@media (max-width: 767px)
{
	#buttonUp
	{
		right: 5px;
		bottom: 65px;
		width: 40px;
		height: 40px;
		font-size: 2rem;
	}

	#buttonUp i
	{
		top: -3px;
	}
}

/************************************************************************************/

.bottomTextBlock .staticText
{
	position: relative;
	max-height: 110px;
	overflow: hidden;
}
.bottomTextBlock .staticText.showed
{
	max-height: 100%;
	overflow: hidden;
}
.bottomTextBlock .staticText.wl:after
{
	position: absolute;
	display: block;
	content: "";
	bottom: 0;
	width: 100%;
	height: 30px;
	background: -moz-linear-gradient(top, rgba(255, 255, 255, 0) 0%, white 100%);
	background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, white 100%);
	background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, white 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00ffffff', endColorstr='#ffffff', GradientType=0);
}
.bottomTextBlock .staticText.wl.showed:after
{
	display: none;
}
.bottomTextBlock .linkLine
{
	margin-top: 15px;
}
.bottomTextBlock .linkLine a
{
	display: -ms-inline-flexbox;
	display: inline-flex;
	gap: 5px;
}

/************************************************************************************/
/************************************************************************************/

.el_formBlock_78344036
{
	position: relative;
	display: -ms-flex;
	display: flex;
	align-items: center;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	min-height: 600px;
	text-align: center;
}

/*****/

.el_formBlock_78344036.vacancieForm
{
	padding-top: 180px;
	padding-bottom: 210px;
}

/*****/

.el_formBlock_78344036 .ico
{
	position: absolute;
}
.el_formBlock_78344036 .ico.top
{
	top: 0;
	left: var(--content-position-left);
	max-width: 150px;
	max-height: 190px;
}
.el_formBlock_78344036 .ico.bottom
{
	right: var(--content-position-right);
	bottom: 0;
	max-width: 180px;
	max-height: 260px;
}
/***/
.el_formBlock_78344036 .description
{
	margin: 0 auto;
	max-width: 660px;
}
/***/
.el_formBlock_78344036 .btnLine
{
	margin-top: 40px;
	text-align: center;
}
.el_formBlock_78344036 .btnLine .btn
{
	max-width: 370px;
	width: 100%;
}
/***/
.el_formBlock_78344036 .btn_wrap
{
	margin-top: 40px;
	text-align: center;
}
.el_formBlock_78344036 .btn_wrap .btn
{
	max-width: 380px;
	width: 100%;
}
.el_formBlock_78344036.vacancieForm .btn_wrap .btn
{
	max-width: 100%;
	width: 100%;
}

/*****/

@media (max-width: 1550px)
{
	.el_formBlock_78344036
	{
		min-height: calc(340px + (600 - 340) * var(--width-coefficient));
	}

	/*****/

	.el_formBlock_78344036.vacancieForm
	{
		padding-top: calc(105px + (180 - 105) * var(--width-coefficient));
		padding-bottom: calc(155px + (210 - 155) * var(--width-coefficient));
	}

	/*****/

	.el_formBlock_78344036 .ico.top
	{
		max-width: calc(70px + (150 - 70) * var(--width-coefficient));
		max-height: calc(100px + (190 - 100) * var(--width-coefficient));
	}
	.el_formBlock_78344036 .ico.bottom
	{
		max-width: calc(90px + (180 - 90) * var(--width-coefficient));
		max-height: calc(145px + (260 - 145) * var(--width-coefficient));
	}
	/***/
	.el_formBlock_78344036 .btnLine
	{
		margin-top: calc(16px + (40 - 16) * var(--width-coefficient));
	}
	/***/
	.el_formBlock_78344036 .btn_wrap
	{
		margin-top: calc(16px + (40 - 16) * var(--width-coefficient));
	}
}

/************************************************************************************/
/*** FOOTER ***/
/*************************************************************************************/

footer.footerCD
{
	background-color: var(--color_gray);
}

/***/

footer.footerCD .footerTop
{
    padding-top: 100px;
    padding-bottom: 100px;
}
footer.footerCD .footerTop .logoBlock
{
	display: none;
	margin-bottom: 24px;
	text-align: center;
}
footer.footerCD .footerTop .logoBlock .logo
{
	display: -ms-inline-flexbox;
	display: inline-flex;
	align-items: center;
	width: 114px;
	height: 43px;
}
footer.footerCD .footerTop .logoBlock .logo img
{
	max-height: 100%;
}
footer.footerCD .footerTop .footerWrapper
{
    display: -ms-grid;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 160px;
    row-gap: 30px;
}
footer.footerCD .footerTop .itemCol
{
}
footer.footerCD .footerTop .itemCol .itemTitle
{
	position: relative;
    line-height: 3rem;
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--color_1);
}
footer.footerCD .footerTop .itemCol .itemTitle .toggleBtn
{
	position: relative;
	display: none;
	margin-left: 10px;
	width: 25px;
	height: 25px;
	font-size: 25px;
	background-color: transparent;
	border: none;
	cursor: pointer;
}
footer.footerCD .footerTop .itemCol .itemTitle .toggleBtn
{
	position: absolute;
	top: 50%;
	right: 40px;
	width: 22px;
	height: 22px;
	-webkit-transform: translate(0, -50%);
	-ms-transform: translate(0, -50%);
	transform: translate(0, -50%);
}
footer.footerCD .footerTop .itemCol .itemTitle .toggleBtn::before,
footer.footerCD .footerTop .itemCol .itemTitle .toggleBtn::after
{
	position: absolute;
	display: block;
	content: "";
	background-color: var(--color_1);
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
footer.footerCD .footerTop .itemCol .itemTitle .toggleBtn::before
{
	width: 22px;
	height: 4px;
}
footer.footerCD .footerTop .itemCol .itemTitle .toggleBtn::after
{
	width: 4px;
	height: 22px;
}
footer.footerCD .footerTop .itemCol .itemTitle .toggleBtn.open::after
{
	display: none;
}


footer.footerCD .footerTop .itemCol .itemContent
{
    margin-top: 25px;
}
footer.footerCD .footerTop .itemCol .itemContent ul
{
}
footer.footerCD .footerTop .itemCol .itemContent ul li
{
    margin-top: 20px;
}
footer.footerCD .footerTop .itemCol .itemContent ul li a
{
    line-height: 2.8rem;
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--color_2);
}
footer.footerCD .footerTop .itemCol .itemContent ul li a:hover,
footer.footerCD .footerTop .itemCol .itemContent ul li a.active
{
    color: var(--color_colorScheme);
}

/**/

footer.footerCD .footerTop .footerWrapper2
{
    display: -ms-grid;
    display: grid;
    grid-template-columns: 75% 25%;
    column-gap: 120px;
    row-gap: 30px;
    margin-top: 100px;
}
footer.footerCD .footerTop .contacts
{
    display: -ms-grid;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 100px;
    row-gap: 30px;
}
footer.footerCD .footerTop .contacts .contactsItem
{
	line-height: 2.4rem;
	font-size: 1.6rem;
    font-weight: 400;
    color: var(--color_2);
}
footer.footerCD .footerTop .contacts .contactsItem .wrapper
{
    display: -ms-grid;
    display: grid;
    grid-template-columns: 18px 1fr;
    gap: 4px;
}
footer.footerCD .footerTop .contacts .contactsItem .wrapper .title
{
    line-height: 2.4rem;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--color_1);
}
footer.footerCD .footerTop .contacts .contactsItem ul
{
    padding-left: 22px;
}
footer.footerCD .footerTop .contacts .contactsItem ul li
{
}
footer.footerCD .footerTop .contacts .contactsItem ul li a
{
    line-height: 2.4rem;
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--color_1);
}
footer.footerCD .footerTop .contacts .contactsItem ul li a:hover
{
    color: var(--color_colorScheme);
}
/**/
footer.footerCD .footerTop .contacts .contactsItem .text
{
    padding-left: 22px;
    line-height: 2.4rem;
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--color_1);
}

/***/

footer.footerCD .footerBottom
{
    background-color: var(--color_white);
    padding-top: 36px;
    padding-bottom: 36px;
}

footer.footerCD .footerBottom .footerWrapper
{
    display: -ms-flex;
    display: flex;
    flex-wrap: wrap;
    column-gap: 115px;
    row-gap: 30px;
}
footer.footerCD .footerBottom .footerWrapper p
{
    line-height: 2.4rem;
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--color_1);
}
footer.footerCD .footerBottom .footerWrapper p a
{
    color: var(--color_1);
}
footer.footerCD .footerBottom .footerWrapper p a:hover,
footer.footerCD .footerBottom .footerWrapper p a.active
{
    color: var(--color_colorScheme);
}

/*****/


@media (max-width: 1550px)
{
	footer.footerCD .footerTop
	{
		padding-top: calc(45px + (100 - 45) * var(--width-coefficient));
		padding-bottom: calc(45px + (100 - 45) * var(--width-coefficient));
	}
	footer.footerCD .footerTop .footerWrapper
	{
		column-gap: calc(20px + (160 - 20) * var(--width-coefficient));
		row-gap: calc(20px + (30 - 20) * var(--width-coefficient));
	}

	footer.footerCD .footerTop .itemCol .itemTitle
	{
		line-height: calc(20px + (30 - 20) * var(--width-coefficient));
		font-size: calc(16px + (14 - 16) * var(--width-coefficient));
	}
	footer.footerCD .footerTop .itemCol .itemTitle .toggleBtn
	{
		right: calc(0px + (40 - 0) * var(--width-coefficient));
		width: calc(16px + (22 - 16) * var(--width-coefficient));
		height: calc(16px + (22 - 16) * var(--width-coefficient));
	}
	footer.footerCD .footerTop .itemCol .itemTitle .toggleBtn::before
	{
		width: calc(16px + (22 - 16) * var(--width-coefficient));
		height: calc(3px + (4 - 3) * var(--width-coefficient));
	}
	footer.footerCD .footerTop .itemCol .itemTitle .toggleBtn::after
	{
		width: calc(3px + (4 - 3) * var(--width-coefficient));
		height: calc(16px + (22 - 16) * var(--width-coefficient));
	}

	footer.footerCD .footerTop .itemCol .itemContent
	{
		margin-top: 15px;
	}
	footer.footerCD .footerTop .itemCol .itemContent ul li
	{
		margin-top: calc(8px + (20 - 8) * var(--width-coefficient));
	}
	footer.footerCD .footerTop .itemCol .itemContent ul li a
	{
		line-height: calc(22px + (28 - 22) * var(--width-coefficient));
		font-size: calc(14px + (18 - 14) * var(--width-coefficient));
	}

	/**/

	footer.footerCD .footerTop .footerWrapper2
	{
		column-gap: calc(20px + (120 - 20) * var(--width-coefficient));
		row-gap: calc(20px + (30 - 20) * var(--width-coefficient));
		margin-top: calc(45px + (100 - 45) * var(--width-coefficient));
	}
	footer.footerCD .footerTop .contacts
	{
		column-gap: calc(20px + (100 - 20) * var(--width-coefficient));
		row-gap: calc(20px + (30 - 20) * var(--width-coefficient));
	}
	footer.footerCD .footerTop .contacts .contactsItem
	{
		line-height: calc(22px + (24 - 22) * var(--width-coefficient));
		font-size: calc(14px + (16 - 14) * var(--width-coefficient));
	}
	footer.footerCD .footerTop .contacts .contactsItem .wrapper .title
	{
		line-height: calc(22px + (24 - 22) * var(--width-coefficient));
		font-size: calc(14px + (16 - 14) * var(--width-coefficient));
	}
	footer.footerCD .footerTop .contacts .contactsItem ul li a
	{
		line-height: calc(22px + (24 - 22) * var(--width-coefficient));
		font-size: calc(14px + (16 - 14) * var(--width-coefficient));
	}
	/**/
	footer.footerCD .footerTop .contacts .contactsItem .text
	{
		line-height: calc(22px + (24 - 22) * var(--width-coefficient));
		font-size: calc(14px + (16 - 14) * var(--width-coefficient));
	}

	/***/

	footer.footerCD .footerBottom
	{
		padding-top: calc(24px + (36 - 24) * var(--width-coefficient));
		padding-bottom: calc(24px + (36 - 24) * var(--width-coefficient));
	}

	footer.footerCD .footerBottom .footerWrapper
	{
		column-gap: calc(20px + (115 - 20) * var(--width-coefficient));
		row-gap: calc(20px + (30 - 20) * var(--width-coefficient));
	}
	footer.footerCD .footerBottom .footerWrapper p
	{
		line-height: calc(18px + (24 - 18) * var(--width-coefficient));
		font-size: calc(12px + (16 - 12) * var(--width-coefficient));
	}
}
@media (max-width: 991px)
{
	footer.footerCD .footerTop .logoBlock
	{
		display: block;
	}
	footer.footerCD .footerTop .footerWrapper
	{
		grid-template-columns: repeat(2, 1fr);
	}

	footer.footerCD .footerTop .contacts
	{
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (max-width: 767px)
{
	footer.footerCD .footerTop .footerWrapper
	{
		grid-template-columns: 1fr;
	}

	footer.footerCD .footerTop .itemCol .itemTitle .toggleBtn
	{
		display: block;
	}

	footer.footerCD .footerTop .itemCol .itemContent
	{
		padding-bottom: 5px;
		border-bottom: 1px solid var(--color_1);
	}
	footer.footerCD .footerTop .itemCol .itemContent.open
	{
		padding-bottom: 15px;
		border-bottom: 1px solid var(--color_1);
	}
	footer.footerCD .footerTop .itemCol .itemContent ul
	{
		display: none;
	}
	footer.footerCD .footerTop .itemCol .itemContent.open ul
	{
		display: block;
	}

	footer.footerCD .footerTop .footerWrapper2
	{
		grid-template-columns: 1fr;
	}
	footer.footerCD .footerTop .contacts
	{
		grid-template-columns: 1fr;
	}
}

/*************************************************************************************/

.messengerWidgetFixedBlock
{
	position: fixed;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-direction: column;
	flex-direction: column;
	-ms-flex-pack: end;
	justify-content: flex-end;
	-ms-flex-align: center;
	align-items: center;
	left: 50px;
	bottom: 125px;
	width: 66px;
	height: 66px;
	z-index: 890;
}

/***/

.messengerWidgetFixedBlock .messengerListBlock
{
	position: absolute;
	display: -ms-flex;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	left: 50%;
	bottom: 100%;
	transform-origin: center bottom;
	-webkit-transform: translate(-50%, 0) scaley(0);
	-ms-transform: translate(-50%, 0) scaley(0);
	transform: translate(-50%, 0) scaley(0);
	transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-webkit-animation: bottomOpen .3s;
	animation: bottomOpen .3s;
	visibility: hidden;
}
.messengerWidgetFixedBlock .messengerListBlock.open
{
	visibility: visible;
	-webkit-transform: translate(-50%, 0) scaley(1);
	-ms-transform: translate(-50%, 0) scaley(1);
	transform: translate(-50%, 0) scaley(1);
}
/**/
.messengerWidgetFixedBlock .messengerListBlock .messengerListItem
{
	position: relative;
	display: -ms-flex;
	display: flex;
	align-items: center;
	justify-content: center;

	border-radius: 100%;
	background-color: var(--color_colorScheme);
	margin: 0 5px 10px 5px;
	width: 44px;
	height: 44px;
	box-shadow: 0 8px 6px -6px rgba(33,33,33,.2);
	transition: box-shadow .17s cubic-bezier(0,0,.2,1);
	cursor: pointer;
}
.messengerWidgetFixedBlock .messengerListBlock .messengerListItem:hover
{
	box-shadow: 0 0 6px rgba(0,0,0,.16), 0 6px 12px rgba(0,0,0,.32);
}
.messengerWidgetFixedBlock .messengerListBlock .messengerListItem .icon
{
	display: inline-block;
}
.messengerWidgetFixedBlock .messengerListBlock .messengerListItem .icon img,
.messengerWidgetFixedBlock .messengerListBlock .messengerListItem .icon svg
{
	max-width: 30px;
	max-height: 30px;
}
.messengerWidgetFixedBlock .messengerListBlock .messengerListItem.form svg
{
	width: 24px;
	height: 24px;
}
.messengerWidgetFixedBlock .messengerListBlock .messengerListItem .icon svg path[fill]
{
	fill: var(--color_white);
}
.messengerWidgetFixedBlock .messengerListBlock .messengerListItem .icon svg path[stroke]
{
	stroke: var(--color_white);
}

.messengerWidgetFixedBlock .messengerListBlock .messengerListItem .tooltip
{
	position: absolute;
	display: inline-block;
	border-radius: 10px;
	background: var(--color_gray);
	top: 50%;
	left: -9000px;
	padding: 5px 10px;
	max-width: 360px;
	line-height: 1.4;
	font-size: 1.4rem;
	text-align: center;
	color: var(--color_1);
	text-overflow: ellipsis;
	white-space: nowrap;
	-webkit-transform: translate(-50%, 0);
	-ms-transform: translate(-50%, 0);
	transform: translate(-50%, 0);
	transition: opacity .6s linear;
	opacity: 0;
	overflow: hidden;
}
.messengerWidgetFixedBlock .messengerListBlock .messengerListItem:hover .tooltip
{
	left: auto;
	right: -10px;
	-webkit-transform: translate(100%, -50%);
	-ms-transform: translate(100%, -50%);
	transform: translate(100%, -50%);
	opacity: 1;
}

/*****/

.widgetButtonMainContainer
{
	position: relative;
	display: inline-block;

	transform: scale(.85);
	transition: transform .3s;
}
.buttonSocialFixed.active
{
	transform: scale(0.7);
	transition: transform .3s linear;
}
.widgetButtonMainContainer.beforeOpen
{
	transform: scale(1);
}
/**/
.widgetButtonMainContainer .messengerPre
{
	position: absolute;
	display: -ms-flex;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	border-radius: 100%;
	background-color: var(--color_colorScheme);
	-webkit-box-shadow: 0 0 0 8px var(--color_colorScheme_25);
	box-shadow: 0 0 0 8px var(--color_colorScheme_25);

	left: -7px;
	top: -7px;
	padding: 5px;
	width: 80px;
	height: 80px;

	visibility: hidden;
	opacity: 0;
	z-index: 10;
	cursor: pointer;
}
.widgetButtonMainContainer.beforeOpen .messengerPre
{
	visibility: visible;
	opacity: 1;
}

.widgetButtonMainContainer .messengerPre .messengerListItem
{
	position: relative;
	display: -ms-flex;
	display: flex;
	align-items: center;
	justify-content: center;

	border-radius: 100%;
	border: 1px solid var(--color_gray);
	margin: 2px;
	width: 25px;
	height: 25px;
	cursor: pointer;
}
.widgetButtonMainContainer .messengerPre .messengerListItem .icon
{
	display: inline-block;
}
.widgetButtonMainContainer .messengerPre .messengerListItem .icon img,
.widgetButtonMainContainer .messengerPre .messengerListItem .icon svg
{
	max-width: 15px;
	max-height: 15px;
}
.widgetButtonMainContainer .messengerPre .messengerListItem.form svg
{
	width: 15px;
	height: 15px;
}
.widgetButtonMainContainer .messengerPre .messengerListItem .icon svg path[fill]
{
	fill: var(--color_white);
}
.widgetButtonMainContainer .messengerPre .messengerListItem .icon svg path[stroke]
{
	stroke: var(--color_white);
}

/***/

.widgetButtonMainContainer .widgetMask
{
	position: absolute;
	border-radius: 100%;
	background-color: var(--color_colorScheme);
	top: -8px;
	left: -8px;
	width: calc(100% + 16px);
	min-width: 66px;
	height: 82px;
	opacity: .2;
}
.widgetButtonMainContainer .widgetMask.active
{
	background: var(--color_gray);
}
.widgetButtonMainContainer.active .widgetMask
{
	opacity: 0;
}

/***/

.widgetButtonMainContainer .widgetButton
{
	border-radius: 100%;
	width: 66px;
	height: 66px;
	overflow: hidden;
	cursor: pointer;
}
.widgetButtonMainContainer .widgetButton .widgetButtonPulse
{
	position:absolute;
	border: 1px solid var(--color_colorScheme);
	border-radius: 100%;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}
.widgetButtonMainContainer.beforeOpen .widgetButton .widgetButtonPulse
{
	border:1px solid var(--color_colorScheme)!important;
}
.widgetButtonMainContainer.active .widgetButton .widgetButtonPulse.widgetButtonPulseAnimate
{
	animation: none;
}

/****/

.widgetButtonMainContainer .widgetButton .widgetButtonBlock
{
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	border-radius: 100%;
	background-color: var(--color_colorScheme);
	height: 66px;
}
.widgetButtonMainContainer.active .widgetButton .widgetButtonBlock
{
	background-color: var(--color_gray) !important;
}

.widgetButtonMainContainer .widgetButton .widgetButtonBlock .widgetButtonContainer
{
	position:relative;
	-webkit-box-flex: 1;
	-webkit-flex: 1;
	-ms-flex: 1;
	flex: 1;
}
.widgetButtonMainContainer.active .widgetButton .widgetButtonBlock .widgetButtonContainer .widgetButtonIconAnimation
{
	opacity: 0;
	display: none;
}
.widgetButtonMainContainer .widgetButton .widgetButtonBlock .widgetButtonContainer .widgetButtonIconAnimation
{
	opacity: 1;
}

/**/

.widgetButtonMainContainer .widgetButton .widgetButtonItem
{
	position: absolute;
	top: 0;
	left: 0;
	padding: 20px 19px;
	transition: opacity .6s ease-out;
	animation: socialRotateBack .4s;

}
.widgetButtonMainContainer .widgetButton .widgetButtonItem svg
{
}
.widgetButtonMainContainer .widgetButton .widgetButtonItem svg path[fill]
{
	fill: var(--color_white);
}
.widgetButtonMainContainer .widgetButton .widgetButtonItem svg path[stroke]
{
	stroke: var(--color_white);
}

/***/

.widgetButtonMainContainer .widgetButton .widgetButtonItem.widgetButtonСlose
{
	display: none;
}
.widgetButtonMainContainer.active .widgetButton .widgetButtonItem.widgetButtonСlose
{
	display: block;
	animation: socialRotate .4s;
	opacity: 1;
}

.widgetButtonMainContainer.beforeOpen .widgetButton .widgetButtonPulse .widgetButtonIcon
{
	opacity: 1;
}

.widgetButton.active .widgetButtonIcon
{
	opacity:.7;
}

/************/

.widgetButtonItem
{
	position:absolute;
	top:0;
	left:0;
	padding:20px 19px;
	-webkit-transition:opacity .6s ease-out;
	transition:opacity .6s ease-out;
	-webkit-animation:socialRotateBack .4s;
	animation:socialRotateBack .4s;
	opacity:0;
}
.widgetButtonIcon {
	-webkit-transition:opacity .3s ease-out;
	transition:opacity .3s ease-out;
	cursor:pointer;
}
.widgetButtonIcon:hover {
	opacity:1;
}
.widgetButtonItem-active .widgetButtonIcon {
	opacity:1;
}

/**/

.widgetButtonСloseItem
{
	width:28px;
	height:28px;
	background-image:url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20width%3D%2229%22%20height%3D%2229%22%20viewBox%3D%220%200%2029%2029%22%3E%3Cpath%20fill%3D%22%23FFF%22%20fill-rule%3D%22evenodd%22%20d%3D%22M18.866%2014.45l9.58-9.582L24.03.448l-9.587%209.58L4.873.447.455%204.866l9.575%209.587-9.583%209.57%204.418%204.42%209.58-9.577%209.58%209.58%204.42-4.42%22/%3E%3C/svg%3E');
	background-repeat:no-repeat;
	background-position:center;
	cursor:pointer;
}

.widgetButtonPulseAnimate
{
	-webkit-animation:widgetPulse infinite 1.5s;
	animation:widgetPulse infinite 1.5s;
}




