.menu_block {
	position: fixed;
	right: 0;
	top: 0;
	height: 100%;
	width: 30%;
	background-color: rgba(229, 233, 236, 0.8);;
	z-index: 100;
	padding-right: 12.4rem;
	padding-top: 6.8rem;
	display: none;
	-webkit-transition: all 2s;
	-o-transition: all 2s;
	transition: all 2s;
 }
 @media screen and (max-height: 800px) and (orientation: landscape) {
 	.menu_block {
 		overflow-y: scroll;
 	}
 }
 .menu_block.active {
 	display: block;
 	animation: showMenu 0.5s ease-out;
 	-webkit-transition: all 3s;
	-o-transition: all 3s;
	transition: all 3s;
 }
 @keyframes showMenu {
 	0% {
 		opacity: 0;
 		-webkit-transform: translate(100%, 0);
 		-ms-transform: translate(100%, 0);
 		-o-transform: translate(100%, 0);
 		transform: translate(100%, 0);
 	}
 	100% {
 		opacity: 1;
 		-webkit-transform: translate(0, 0);
 		-ms-transform: translate(0, 0);
 		-o-transform: translate(0, 0);
 		transform: translate(0, 0);
 	}
 }
 .menu_block .menu_button {
 	justify-content: flex-end;
 	font-size: 1.8rem;
 	margin-bottom: 10.8rem;
 	cursor: pointer;
 }
 .menu_block .menu_button .text {
 	font-weight: 700;
 	margin-right: 2rem;
 	-webkit-transition: all 0.5s;
 	-o-transition: all 0.5s;
 	transition: all 0.5s;
 }
 .menu_block .menu_button:hover .text {
 	color: #EE1E1E;
 }
 .menu_block .menu_button .icon {
	width: 2.6rem;
	position: relative;
	-webkit-transition: all 1s;
	-o-transition: all 1s;
	transition: all 1s;
 }
 .menu_block .menu_button:hover .icon {
 	-webkit-transform: rotate(1turn);
 	-ms-transform: rotate(1turn);
 	-o-transform: rotate(1turn);
 	transform: rotate(1turn);
 }
 .menu_block .menu_button:hover .icon:before {
	background-color: #EE1E1E;
 }
 .menu_block .menu_button:hover .icon:after {
	background-color: #EE1E1E;
 }
 .menu_block .menu_button .icon:before {
	content: '';
	position: absolute;
	height: 2px;
	width: 100%;
	background-color: black;
	top: 0;
	left: 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
 }
 .menu_block .menu_button .icon:after {
	content: '';
	position: absolute;
	height: 2px;
	width: 100%;
	background-color: black;
	top: 0;
	left: 0;
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	transform: rotate(-45deg);
 }
 .menu_block .navigation {
 	height: 100%;
 	border-right: 1px solid black;
 	margin-left: auto;
 	margin-right: 1.2rem;
 }
 .menu_block .navigation .block {
 	text-align: right;
 	margin-bottom: 4.5rem;
 	cursor: pointer;
 	-webkit-transition: all 0.5s;
 	-o-transition: all 0.5s;
 	transition: all 0.5s;
 	font-size: 1.8rem;
 	font-weight: 700;
 	max-width: 27rem;
 	margin-left: auto;
 	padding-right: 5rem;
 	text-transform: uppercase;
 	position: relative;
 	-webkit-transform: translate(1.1rem, 0);
 	-ms-transform: translate(1.1rem, 0);
 	-o-transform: translate(1.1rem, 0);
 	transform: translate(1.1rem, 0);
 }
 .menu_block .navigation .block.active {
 	color: #EE1E1E;
 }
 .menu_block .navigation .block:hover {
 	color: #EE1E1E;
 }
 .menu_block .navigation .block:before {
 	position: absolute;
 	content: '';
 	height: 2rem;
 	width: 2rem;
 	background-color: #181818;
	top: 0.3rem;
	right: 0;
	-webkit-transform: matrix(0.71, -0.71, 0.71, 0.71, 0, 0);
	-ms-transform: matrix(0.71, -0.71, 0.71, 0.71, 0, 0);
	-o-transform: matrix(0.71, -0.71, 0.71, 0.71, 0, 0);
	transform: matrix(0.71, -0.71, 0.71, 0.71, 0, 0);
	-webkit-transition: all 0.5s;
 	-o-transition: all 0.5s;
 	transition: all 0.5s;
 }
 .menu_block .navigation .block.active:before {
 	background-color: #EE1E1E;
 }
 .menu_block .navigation .block:hover:before {
 	background-color: #EE1E1E;
 }
.disable_menu_button {
	position: fixed;
	z-index: 99;
	right: 12.4rem;
	top: 6.8rem;
	cursor: pointer;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
 }
 .disable_menu_button.hide {
 	opacity: 0;
 }
 .disable_menu_button .text {
 	font-size: 1.8rem;
 	font-weight: 700;
 	text-transform: uppercase;
 	margin-right: 0.8rem;
 }

.slider {
	width: 100%;
	top: 0;
	left: 0;
	z-index: 0;
 }
 .slider .main_wrap {
	height: 100%;
 }

.slider .slide .slide_wrap {
	min-height: 100vh;
	}
	.slider .slide {
		display: none;
	}
	.slider .slide.active {
		display: block;
		animation: fadeSlide 1s linear;
	}
	@keyframes fadeSlide {
		0% {
			opacity: 0;
		}
		100% {
			opacity: 1;
		}
	}
	.slider .slide .slide_wrap .main_wrap {
		min-height: 100vh;
		position: relative;
	}
	.slider .slide .slide_wrap .main_wrap .bg_line {
		z-index: 0;
	}
	.slider .slide .slide_wrap .main_wrap {
		padding-top: 6.3rem;
	}
	.slider .slide .slide_wrap .main_wrap .slide_title {
		width: 18rem;
		margin-bottom: 11.6rem;
		position: relative;
		z-index: 1;
		margin-left: 2rem;
	}
	.slider .slide .slide_wrap .main_wrap .middle_title {
		font-size: 7rem;
		position: relative;
		z-index: 1;
		padding-left: 2rem;
	}
	.slider .slide .slide_wrap .main_wrap .middle_title:before {
		content: '';
		position: absolute;
		height: 4px;
		width: 1000px;
		top: 2.7rem;
		left: -3rem;
		-webkit-transform: translate(-100%, 0);
		-ms-transform: translate(-100%, 0);
		-o-transform: translate(-100%, 0);
		transform: translate(-100%, 0);
		background-color: #EE1E1E;
	}
	.slider .slide .slide_wrap .main_wrap .download_block {
		bottom: 22%;
		left: 2rem;
		z-index: 1;
		text-decoration-color: #000;
	}
	.slider .slide .slide_wrap .main_wrap .download_block .icon {
		width: 4.5rem;
		margin-right: 1rem;
	}
	.slider .slide .slide_wrap .main_wrap .download_block .text {
		font-weight: 700;
		font-size: 2.5rem;
		color: #000;
		max-width: 51.2rem;
	}
	.slider .slide .slide_wrap .main_wrap .mail_block {
		bottom: 8rem;
		left: 2rem;
		font-size: 2.5rem;
		z-index: 5;
	}
	.slider .slide .slide_wrap .main_wrap .mail_block a {
		text-decoration: none;
		color: #181818;
		-webkit-transition: all 0.5s;
		-o-transition: all 0.5s;
		transition: all 0.5s;
	}
	.slider .slide .slide_wrap .main_wrap .mail_block a:hover {
		color: #EE1E1E;
	}
	.slider .slide .slide_wrap .main_wrap .slide_red_line {
		bottom: 15%;
		right: 40%;
		height: 1px;
		width: 4000px;
		background-color: #EE1E1E;
		z-index: 2;
	}
	.slider .slide .slide_wrap .main_wrap .scroll_logo {
		bottom: 5.6rem;
		left: calc(50% - 2.75rem);
		background: transparent url(../img/Scroll.png) center center no-repeat;
		-webkit-background-size: 100% 100%;
		background-size: 100% 100%;
		height: 4.8rem;
		width: 5.5rem;
		cursor: pointer;
	}
	.slider .slide .slide_wrap .main_wrap .scroll_logo:before {
		content: 'SCROLL';
		position: absolute;
		top: 40%;
		left: 50%;
		-webkit-transform: translate(-50%, -50%);
		-ms-transform: translate(-50%, -50%);
		-o-transform: translate(-50%, -50%);
		transform: translate(-50%, -50%);
		font-weight: 600;
		font-size: 1.6rem;
		font-family: 'Segoe UI';
	}
.slider .slide:nth-child(1) .slide_wrap {
	background-color: #F4F5F6;
 }
 .slider .slide:nth-child(1) .slide_wrap .white_square {
 	background-color: #ffffff;
 	width: 50.7rem;
 	height: 46.2rem;
 	right: -2rem;
 	top: 0;
 }
 .slider .slide:nth-child(1) .slide_wrap .white_square:before {
 	content: '';
 	height: 15.1rem;
 	width: 1px;
 	background-color: #EE1E1E;
 	position: absolute;
 	left: 50%;
 	top: 0;
 }
 .slider .slide:nth-child(1) .slide_wrap .white_rectangle {
 	bottom: 0;
 	left: 50%;
 	background-color: #ffffff;
 	width: 50.3rem;
 	height: 4.7rem;
 	-webkit-transform: translate(-50%, 0);
 	-ms-transform: translate(-50%, 0);
 	-o-transform: translate(-50%, 0);
 	transform: translate(-50%, 0);
 }
 .slider .slide:nth-child(1) .slide_wrap .main_wrap .tabs_block {
	margin-top: 6rem;
	position: relative;
	z-index: 2;
 }
 .slider .slide:nth-child(1) .slide_wrap .main_wrap .tabs_block .tab_info {
 	width: 115rem;
 	padding-left: 2rem;
 }
 .slider .slide:nth-child(1) .slide_wrap .main_wrap .tabs_block .tab_info .tab_block {
 	width: 17.6rem;
 	height: 12.6rem;
 	background-color: rgba(229, 233, 236, 1);
 	font-size: 1.8rem;
 	text-align: center;
 	cursor: pointer;
 	animation: unactiveBlock 1.3s linear;
 	-webkit-transition: all 1.3s;
 	-o-transition: all 1.3s;
 	transition: all 1.3s;
 	box-shadow: none;
 	margin-right: 3rem;
 }.slider .slide:nth-child(1) .slide_wrap .main_wrap .tabs_block .tab_info .tab_block:last-child {
 	margin-right: 0;
 }
 @keyframes unactiveBlock {
 	0% {
 		color: transparent;
 		box-shadow: none;
 		width: 41.5rem;
 		height: 25.9rem;
 	}
 	50% {
 		width: 17.6rem;
 		height: 12.6rem;
 		font-size: 1.8rem;
 		color: transparent;
 		background-color: rgba(229, 233, 236, 1);
 	}
 	100% {
 		color: #000;
 	}
 }
 .slider .slide:nth-child(1) .slide_wrap .main_wrap .tabs_block .tab_info .tab_block.active {
	background-color: #fff;
	width: 41.5rem;
	height: auto;
	font-size: 5.5rem;
	text-align: left;
	font-weight: 700;
	padding: 2rem 0 2rem 2rem;
	animation: fade 1s linear;
	-webkit-box-shadow: 5px 5px 13px #0000000F;
	-moz-box-shadow: 5px 5px 13px #0000000F;
	box-shadow: 5px 5px 13px #0000000F;
 }
 .slider .slide:nth-child(1) .slide_wrap .main_wrap .tabs_block .tab_info .tab_block:nth-child(1).active {
	min-height: 25.9rem;
 }
 .slider .slide:nth-child(1) .slide_wrap .main_wrap .tabs_block .tab_info .tab_block:nth-child(2).active {
 	min-height: 33.2rem;
 }
 .slider .slide:nth-child(1) .slide_wrap .main_wrap .tabs_block .tab_info .tab_block:nth-child(3).active {
 	min-height: 33.2rem;
 }
 .slider .slide:nth-child(1) .slide_wrap .main_wrap .tabs_block .tab_info .tab_block:nth-child(4).active {
 	min-height: 25.9rem;
 }

 @keyframes fade {
 	0% {
 		opacity: 0.1;
 		color: transparent;
 		font-size: 1.8rem;
 	}
 	50% {
 		font-size: 1.8rem;
 		width: 41.5rem;
 		height: auto;
 		font-size: 5.5rem;
 		opacity: 1;
 		color: transparent;
 	}
 	60% {
 		color: #000;
 	}
 	100% {
 		color: #000;
 	}
 }
 .slider .slide:nth-child(1) .slide_wrap .main_wrap .tabs_block .tab_nav .tab_line {
 	width: 30rem;
 	height: 1px;
 	border-top: 1px solid #707070;
 	margin-right: 2rem;
 	padding-bottom: 0.5rem;
 	-webkit-flex-direction: row-reverse;
 	-moz-flex-direction: row-reverse;
 	-ms-flex-direction: row-reverse;
 	-o-flex-direction: row-reverse;
 	flex-direction: row-reverse;

 }
 .slider .slide:nth-child(1) .slide_wrap .main_wrap .tabs_block .tab_nav .tab_line .line {
 	width: 25%;
 	-webkit-transition: all 1s;
 	-o-transition: all 1s;
 	transition: all 1s;
 }
 .slider .slide:nth-child(1) .slide_wrap .main_wrap .tabs_block .tab_nav .tab_line .line.active {
 	background-color: #EE1E1E;
 	height: 4px;
 	-webkit-transform: translate(0, -2.5px);
 	-ms-transform: translate(0, -2.5px);
 	-o-transform: translate(0, -2.5px);
 	transform: translate(0, -2.5px);
 }
 .slider .slide:nth-child(1) .slide_wrap .main_wrap .tabs_block .tab_nav {
 	height: 12rem;
 	-ms-align-items: flex-end;
 	align-items: flex-end;
 }
 .slider .slide:nth-child(1) .slide_wrap .main_wrap .tabs_block .tab_nav .tab_num {
 	-ms-align-items: flex-end;
 	align-items: flex-end;
 }
 .slider .slide:nth-child(1) .slide_wrap .main_wrap .tabs_block .tab_nav .tab_num .num {
 	font-weight: 700;
 	font-size: 2.4rem;
 	color: #fff;
 	-webkit-transition: all 0.5s;
 	-o-transition: all 0.5s;
 	transition: all 0.5s;
 	padding: 0 0.3rem;
 }
 .slider .slide:nth-child(1) .slide_wrap .main_wrap .tabs_block .tab_nav .tab_num .num.active {
 	font-size: 5.5rem;
 	color: #E5E9EC;
 	line-height: 5.5rem;
 	padding: 0 0.7rem;
 }
 .slider .slide:nth-child(1) .slide_wrap .main_wrap .big_descr {
 	bottom: 21%;
 	right: 0;
 	min-height: 100px;
 	width: 120rem;
 }
 .slider .slide:nth-child(1) .slide_wrap .main_wrap .big_descr ul li {
 	font-size: 1.8rem;
 	margin-bottom: 0.5rem;
 	padding-left: 2rem;
 	position: relative;
 }
 .slider .slide:nth-child(1) .slide_wrap .main_wrap .big_descr ul li:before {
 	content: '';
 	height: 0.93rem;
 	width: 0.93rem;
 	left: 0;
 	top: calc(55% - 0.46rem);
 	background-color: #EE1E1E;
 	position: absolute;
 	-webkit-transform: rotate(45deg);
 	-ms-transform: rotate(45deg);
 	-o-transform: rotate(45deg);
 	transform: rotate(45deg);
 }
 .slider .slide:nth-child(1) .slide_wrap .main_wrap .small_bottom_right_red_line {
 	bottom: 0;
 	right: 21rem;
 	width: 1px;
 	height: 8rem;
 	background-color: #EE1E1E;
 }
 .slider .slide:nth-child(1) .slide_wrap .left_bottom_square {
 	bottom: 0;
 	left: 0;
 	background-color: #fff;
 	height: 65%;
 	width: 2%;
 	z-index: 0;
 }
 .slider .slide:nth-child(2) .slide_wrap .main_wrap .slide2_descr {
 	margin-top: 7rem;
 	font-size: 2.4rem;
 	padding-left: 2rem;
 }
 .slider .slide:nth-child(2) .slide_wrap .main_wrap .slide2_descr .title {
 	margin-bottom: 0.6rem;
 }
 .slider .slide:nth-child(2) .slide_wrap .main_wrap .slide2_descr ul li {
 	margin-bottom: 0.6rem;
 	padding-left: 2.5rem;
 	position: relative;
 }
 .slider .slide:nth-child(2) .slide_wrap .main_wrap .slide2_descr ul li:before {
 	content: '';
 	position: absolute;
 	height: 1.1rem;
 	width: 1.1rem;
 	background-color: #EE1E1E;
 	-webkit-transform: matrix(0.71, -0.71, 0.71, 0.71, 0, 0);
 	-ms-transform: matrix(0.71, -0.71, 0.71, 0.71, 0, 0);
 	-o-transform: matrix(0.71, -0.71, 0.71, 0.71, 0, 0);
 	transform: matrix(0.71, -0.71, 0.71, 0.71, 0, 0);
 	left: 0rem;
 	top: 1.5rem;
 }
 .slider .slide:nth-child(2) .slide_wrap .main_wrap .top_square {
 	position: absolute;
 	top: 0;
 	right: 40rem;
 	background-color: #E5E9EC;
 	height: 27rem;
 	width: 45rem;
 }
 .slider .slide:nth-child(2) .slide_wrap .main_wrap .bottom_square {
 	position: absolute;
 	bottom: 0;
 	right: -3rem;
 	background-color: #E5E9EC;
 	height: 30rem;
 	width: 40rem;
 }
 .slider .slide:nth-child(2) .slide_wrap .main_wrap .slide2_main_image {
 	left: 50%;
 	top: 15%;
 	width: 95rem;
 	height: 70rem;
 	z-index: 5;
 }
 .slider .slide:nth-child(2) .slide_wrap .main_wrap .slide2_red_line {
 	top: 0;
 	right: 13rem;
 	width: 1px;
 	height: 20rem;
 	background-color: #EE1E1E;
 }
 .slider .slide:nth-child(2) .slide_wrap .main_wrap .slide2_opacity_figure {
 	top: 0;
 	right: 10rem;
 	background-color: #E5E9EC;
 	height: 65rem;
 	width: 45rem;
 	opacity: 0.3;
 }
 .slider .slide:nth-child(3) .slide_wrap .main_wrap .slide3_descr {
 	font-size: 2.1rem;
 	max-width: 87rem;
 	line-height: 3.5rem;
 	margin-top: 7rem;
 	padding-left: 2rem;
 }
 .slider .slide:nth-child(3) .slide_wrap .main_wrap .slide3_descr p:first-child {
 	margin-bottom: 3rem;
 }
 .slider .slide:nth-child(3) .slide_wrap {
 	position: relative;
 }
 .slider .slide:nth-child(3) .slide_wrap .slide3_top_right_square {
 	width: 78rem;
 	height: 29rem;
 	right: 0;
 	top: 0;
 	background-color: #E5E9EC;
 	opacity: .3;
 }
 .slider .slide:nth-child(3) .slide_wrap .slide3_middle_square {
 	width: 50%;
 	height: 6.2rem;
 	right: 0;
 	bottom: 20%;
 	background-color: #E5E9EC;
 }
 .slider .slide:nth-child(3) .slide_wrap .slide3_bottom_square {
 	width: 38rem;
 	height: 16rem;
 	right: 0;
 	bottom: 0rem;
 	background-color: #E5E9EC;
 	opacity: .3;
 }
 .slider .slide:nth-child(3) .slide_wrap .main_wrap .slide3_middle_red_line {
 	background-color: #EE1E1E;
 	width: 1px;
 	height: 50rem;
 	top: 25rem;
 	right: 8rem;
 	z-index: 5;
 }
 .slider .slide:nth-child(3) .slide_wrap .main_wrap .slide3_bottom_middle_red_line {
 	background-color: #EE1E1E;
 	width: 1px;
 	height: 29rem;
 	bottom: 0;
 	right: 42%;
 	z-index: 5;
 }
 .slider .slide:nth-child(3) .slide_wrap .main_wrap .slide3_main_image {
 	right: -3rem;
 	bottom: 16%;
 	width: 94rem;
 }
 .slider .slide:nth-child(4) .slide_wrap {
 	position: relative;
 }
 .slider .slide:nth-child(4) .slide_wrap .slide4_bottom_right_square {
 	width: 30%;
 	height: 20rem;
 	background-color: #E5E9EC;
 	right: 0;
 	bottom: 0;
 }
 .slider .slide:nth-child(4) .slide_wrap .slide4_top_right_square {
 	right: 0;
 	top: 0;
 	width: 27rem;
 	height: 70%;
 	background-color: #E5E9EC;
 	opacity: .3;
 }
 .slider .slide:nth-child(4) .slide_wrap .main_wrap .slide4_top_middle_square {
	right: 20rem;
	top: 0;
	height: 20rem;
	width: 30rem;
	background-color: #E5E9EC;
 }
 .slider .slide:nth-child(4) .slide_wrap .main_wrap .top_right_red_line {
 	height: 20rem;
 	width: 1px;
 	background-color: #EE1E1E;
 	top: 0;
 	right: -6rem;
 	z-index: 5;
 }
 .slider .slide:nth-child(4) .slide_wrap .main_wrap .middle_bottom_red_line {
 	height: 19rem;
 	width: 1px;
 	background-color: #EE1E1E;
 	right: 70rem;
 	bottom: 0;
 }
 .slider .slide:nth-child(4) .slide_wrap .main_wrap .slide4_big_descr {
 	font-size: 2.1rem;
 	line-height: 3.5rem;
 	max-width: 65rem;
 	margin-top: 7rem;
 	padding-left: 2rem;
 }
 .slider .slide:nth-child(4) .slide_wrap .main_wrap .slide4_big_descr p:first-child {
 	margin-bottom: 8rem;
 }
 .slider .slide:nth-child(4) .slide_wrap .main_wrap .slide4_main_image {
 	right: 20rem;
 	top: 26rem;
	width: 72rem;
 }
 .slider .slide:nth-child(5) .slide_wrap .main_wrap .middle_big_line {
	left: 50%;
	top: 0;
	height: 100%;
	width: 25%;
	background-color: #E5E9EC;
 }
 .slider .slide:nth-child(5) .slide_wrap .main_wrap .bottom_right_square {
 	bottom: 0;
 	right: -5%;
 	height: 20rem;
 	width: 25%;
 	background-color: #E5E9EC;
 	opacity: .3;
 }
 .slider .slide:nth-child(5) .slide_wrap .top_right_red_line {
 	width: 15%;
 	height: 1px;
 	background-color: #EE1E1E;
 	top: 20rem;
 	right: 0;
 }
 .slider .slide:nth-child(5) .slide_wrap .main_wrap .main_image {
 	right: -5rem;
 	width: 100rem;
 	top: 15%;
 }
 .slider .slide:nth-child(5) .slide_wrap .main_wrap .slide5_descr {
 	font-size: 2.1rem;
 	margin-top: 4rem;
 	line-height: 3.5rem;
 	padding-left: 2rem;
 }
 .slider .slide:nth-child(5) .slide_wrap .main_wrap .slide5_descr .list_title {
 	display: block;
 	font-weight: 700;
 	margin-top: 4rem;
 }
 .slider .slide:nth-child(5) .slide_wrap .main_wrap .slide5_descr ul li {
 	padding-left: 2.5rem;
 	position: relative;
 }
 .slider .slide:nth-child(5) .slide_wrap .main_wrap .slide5_descr ul li:before {
 	content: '';
 	position: absolute;
 	height: 1.1rem;
 	width: 1.1rem;
 	background-color: #EE1E1E;
 	-webkit-transform: matrix(0.71, -0.71, 0.71, 0.71, 0, 0);
 	-ms-transform: matrix(0.71, -0.71, 0.71, 0.71, 0, 0);
 	-o-transform: matrix(0.71, -0.71, 0.71, 0.71, 0, 0);
 	transform: matrix(0.71, -0.71, 0.71, 0.71, 0, 0);
 	left: 0rem;
 	top: 1.5rem;
 }
 .mobile_tabs_blocks {
 	display: none;	
 }






@media screen and (max-height: 900px) {
	.slider .slide .slide_wrap .main_wrap .slide_title {
		margin-bottom: 2.6rem;
	}
	.slider .slide:nth-child(1) .slide_wrap .white_square {
		height: 33.2rem;
	}
	.slider .slide:nth-child(1) .slide_wrap .main_wrap .tabs_block {
		margin-top: 3rem;
	}
	.slider .slide:nth-child(2) .slide_wrap .main_wrap .slide2_descr {
		margin-top: 3rem;
	}
	.slider .slide:nth-child(4) .slide_wrap .main_wrap .slide4_main_image {
		top: 17%;
	}
	.slider .slide:nth-child(3) .slide_wrap .main_wrap .slide3_descr {
		margin-top: 3rem;
	}
	.slider .slide:nth-child(4) .slide_wrap .main_wrap .slide4_big_descr p:first-child {
	    margin-bottom: 3rem;
	}
	.slider .slide:nth-child(5) .slide_wrap .main_wrap .slide5_descr .list_title {
		margin-top: 3rem;
	}
}





@media screen and (max-width: 1900px) {
	.slider .slide:nth-child(2) .slide_wrap .main_wrap .slide2_red_line {
		right: 31rem;
	}
	.slider .slide:nth-child(4) .slide_wrap .main_wrap .slide4_top_middle_square {
		right: 30rem;
	}
 }
 @media screen and (max-width: 1800px) { 
 	.slider .slide:nth-child(1) .slide_wrap .left_bottom_square {
 		display: none;
 	}
 	.main_wrap {
 		margin-left: 4rem;
 		margin-right: 4rem;
 	}
 }
 @media screen and (max-width: 1700px) {
	.slider .slide:nth-child(3) .slide_wrap .main_wrap .slide3_bottom_middle_red_line {
		right: auto;
		left: 53%;
	}
 }
 @media screen and (max-width: 1600px) {
 	html {
 		font-size: 8px;
 	}
 	.slider .slide:nth-child(3) .slide_wrap .slide3_middle_square {
 		bottom: 20%;
 	}
 }
  @media screen and (max-width: 1600px) and (max-height: 740px) {
  	html {
 		font-size: 7px;
 	}
  }
 @media screen and (max-width: 1400px) {
 	html {
 		font-size: 7.5px;
 	}
 	.slider .slide:nth-child(2) .slide_wrap .main_wrap .slide2_main_image {
 		left: auto;
 		right: 0;
 	}
 }
 @media screen and (max-width: 1400px) and (max-height: 640px) {
	 html {
	     font-size: 6.5px;
	 }
}
 @media screen and (max-width: 1300px) {
 	html {
 		font-size: 7px;
 	}
 	.slider .slide:nth-child(1) .slide_wrap .main_wrap .tabs_block {
 		margin-top: 15rem;
 	}
 	.slider .slide:nth-child(2) .slide_wrap .main_wrap .top_square {
 		height: 20rem;
 	}
 	.slider .slide:nth-child(4) .slide_wrap .main_wrap .slide4_main_image {
 		right: 10rem;
 	}
 	.slider .slide:nth-child(4) .slide_wrap .main_wrap .middle_bottom_red_line {
 		right: 59rem;
 	}
 	.slider .slide:nth-child(5) .slide_wrap .main_wrap .main_image {
 		top: 18%;
 	}
 	.slider .slide:nth-child(5) .slide_wrap .main_wrap .slide5_descr {
 		margin-top: 12rem;
 	}
 	.slider .slide:nth-child(5) .slide_wrap .main_wrap .middle_big_line {
 		left: auto;
 		right: 0;
 		width: 22%;
 	}
 }
  @media screen and (max-width: 1300px) and (max-height: 780px) {
	.slider .slide:nth-child(1) .slide_wrap .main_wrap .tabs_block {
	    margin-top: 5rem;
	}
	.slider .slide:nth-child(5) .slide_wrap .main_wrap .slide5_descr {
	    margin-top: 7rem;
	}
  }
  @media screen and (max-width: 1300px) and (max-height: 640px) {
	 html {
	     font-size: 6.5px;
	 }
 }
 @media screen and (max-width: 1200px) {
 	html {
 		font-size: 6.5px;
 	}
 	.slider .slide .slide_wrap .main_wrap .middle_title {
 		font-size: 8rem;
 	}
 	.slider .slide:nth-child(1) .slide_wrap .main_wrap .tabs_block .tab_info {
 		width: 105rem;
 		-webkit-flex-wrap: wrap;
 		-moz-flex-wrap: wrap;
 		-ms-flex-wrap: wrap;
 		-o-flex-wrap: wrap;
 		flex-wrap: wrap;
 		padding-right: 2rem;
 	}
 	.slider .slide:nth-child(1) .slide_wrap .main_wrap .tabs_block .tab_info .tab_block {
 		margin-right: 0;
 	}
 	.slider .slide:nth-child(1) .slide_wrap .white_square {
 		width: 46.7rem;
 		height: 32.2rem;
 	}
 	.slider .slide:nth-child(1) .slide_wrap .main_wrap .big_descr {
 		width: 65%;
 	}
 	.slider .slide:nth-child(1) .slide_wrap .main_wrap .big_descr ul {
 		padding-right: 2rem;
 	}
 	.slider .slide .slide_wrap .main_wrap .middle_title:before, .slider .slide:nth-child(1) .slide_wrap .white_square:before {
 		display: none;
 	}
 	.slider .slide:nth-child(2) .slide_wrap .main_wrap .slide2_main_image {
 		top: 30rem;
 	}
 	.slider .slide:nth-child(3) .slide_wrap .main_wrap .slide3_descr {
 		margin-top: 19rem;
 	}
 	.slider .slide:nth-child(3) .slide_wrap .main_wrap .slide3_main_image {
 		bottom: 26%;
 	}
 	.slider .slide:nth-child(3) .slide_wrap .slide3_middle_square {
 		bottom: 30%;
 	}
 	.slider .slide:nth-child(3) .slide_wrap .main_wrap .slide3_descr {
 		max-width: 64rem;
 	}
 	.slider .slide:nth-child(3) .slide_wrap .slide3_top_right_square {
 		height: 21rem;
 	}
 	.slider .slide:nth-child(4) .slide_wrap .main_wrap .slide4_main_image {
 		right: 0;
 		top: 19%;
 	}
 	.slider .slide:nth-child(5) .slide_wrap .main_wrap .main_image {
 		top: 20%;
 	}
 	.slider .slide:nth-child(5) .slide_wrap .main_wrap .slide5_descr {
 		margin-top: 15rem;
 	}
 }
 @media screen and (max-width: 1200px) and (max-height: 760px) {
 	.slider .slide:nth-child(5) .slide_wrap .main_wrap .slide5_descr {
 	    margin-top: 5rem;
 	}
 	.slider .slide:nth-child(3) .slide_wrap .main_wrap .slide3_descr {
 	    margin-top: 3rem;
 	}
 	.slider .slide:nth-child(3) .slide_wrap .main_wrap .slide3_main_image {
 	    bottom: 10%;
 	    right: -7rem;
 	}
 	.slider .slide:nth-child(3) .slide_wrap .slide3_middle_square {
 	    bottom: 15%;
 	}
 	.slider .slide:nth-child(2) .slide_wrap .main_wrap .slide2_main_image {
 	    top: 15%;
 	}
 }
@media screen and (max-height: 780px) and (min-width: 1601px) and (orientation: landscape) {
	html {
		font-size: 7.5px;
	}
}
@media screen and (max-height: 680px) and (min-width: 1601px) and (orientation: landscape) {
	html {
		font-size: 7px;
	}
}

@media screen and (max-width: 1050px) {
	html {
		font-size: 21px;
	}
	.slider .slide .slide_wrap .main_wrap {
		padding-bottom: 4rem;
	}
	.slider .slide .slide_wrap .main_wrap .bg_line, .slider .slide:nth-child(1) .slide_wrap .white_square {
		display: none;
	}
	.slider .slide .slide_wrap .main_wrap .middle_title:before {
		display: block;
		left: 0;
	}
	.slider .slide:nth-child(1) .slide_wrap .main_wrap .big_descr, .slider .slide .slide_wrap .main_wrap .download_block {
		position: static;
	}
	.disable_menu_button {
		top: 1.8rem;	
		right: 3.3rem;	
	}
	.slider .slide .slide_wrap .main_wrap .slide_title {
		width: 9.4rem;	
		left: 3rem;	
		margin-bottom: 2.3rem;	
	}
	.slider .slide .slide_wrap .main_wrap {
		padding-top: 6rem;
		margin: 0;		
	}
	.slider .slide .slide_wrap .main_wrap .middle_title {
		font-size: 2rem;
		margin-bottom: 1rem;	
		padding-left: 3rem;	
	}
	.slider .slide:nth-child(1) .slide_wrap .main_wrap .big_descr {
		-webkit-flex-wrap: wrap;
		-moz-flex-wrap: wrap;
		-ms-flex-wrap: wrap;
		-o-flex-wrap: wrap;
		flex-wrap: wrap;
		width: calc(100% - 3rem);	
		background-color: #fff;
		padding: 1.66rem 3rem;
		margin-bottom: 1rem;
		padding-right: 1rem;
	}
	.slider .slide:nth-child(1) .slide_wrap .main_wrap .big_descr ul {
		width: 100%;
	}
	.slider .slide:nth-child(1) .slide_wrap .main_wrap .big_descr ul li {
		font-size: 1rem;	
	}
	.slider .slide .slide_wrap .main_wrap .download_block {
		padding-left: 3rem;	
		padding-right: 3rem;
		padding-bottom: 1.5rem;
	}
	.slider .slide .slide_wrap .main_wrap .download_block .icon {
		min-width: 2.37rem;	
		margin-right: 1.12rem;	
	}
	.slider .slide .slide_wrap .main_wrap .download_block .text {
		font-size: 1.4rem;	
	}
	.slider .slide:nth-child(1) .slide_wrap .main_wrap .tabs_block {
		display: none;	
	}
	.disable_menu_button .text {
		font-size: 1.1rem;	
		padding-bottom: 0.2rem;	
		margin-right: 0.7rem;	
	}
	.disable_menu_button .icon {
		width: 2.32rem;	
	}
	.mobile_tabs_blocks {
		display: block;	
		width: 100%;
		padding: 0 3rem;
	}
	.mobile_tabs_blocks .block {
		background-color: #E5E9EC;
		text-align: center;
		padding: 0.6rem 0;
		margin-bottom: 0.5rem;
		font-size: 1rem;
		-webkit-transition: all 0.5s;
		-o-transition: all 0.5s;
		transition: all 0.5s;
	}
	.mobile_tabs_blocks .block:last-child {
		margin-bottom: 1.7rem; 
	}
	.mobile_tabs_blocks .block.active {
		background-color: #EE1E1E;
		color: 	#fff;
	}
	.slider .slide .slide_wrap .main_wrap .scroll_logo, .slider .slide .slide_wrap .main_wrap .slide_red_line, .slider .slide:nth-child(1) .slide_wrap .main_wrap .small_bottom_right_red_line {
		display: none;	
	}
	.slider .slide .slide_wrap .main_wrap .mail_block {
		bottom: 2.8rem;
		left: 50%;
		-webkit-transform: translate(-50%, 0);
		-ms-transform: translate(-50%, 0);
		-o-transform: translate(-50%, 0);
		transform: translate(-50%, 0);
		padding: 0 3rem;
		text-align: center;
		font-size: 1rem;
		width: 100%;
	}
	.slider .slide:nth-child(1) .slide_wrap .white_rectangle {
		left: auto;	
		right: 0;
		-webkit-transform: translate(0, 0);
		-ms-transform: translate(0, 0);
		-o-transform: translate(0, 0);
		transform: translate(0, 0);
		width: 21.1rem;	
		height: 1.7rem;
	}
	.slider .slide:nth-child(2) .slide_wrap .main_wrap .slide2_red_line, .slider .slide:nth-child(2) .slide_wrap .main_wrap .bottom_square, .slider .slide:nth-child(2) .slide_wrap .main_wrap .top_square {
		display: none;
	}
	.slider .slide:nth-child(2) .slide_wrap .main_wrap .slide2_opacity_figure {
		background-color: #fff;
		opacity: 1;
		width: 21.1rem;
		height: 6.8rem;
	}
	.slider .slide:nth-child(2) {
		background-color: #F4F5F6;
	}
	.slider .slide:nth-child(2) .slide_wrap .main_wrap .slide2_main_image {
		position: static;
		width: 24.7rem;
		height: auto;
		margin-right: auto;
		margin-left: auto;
	}
	.slider .slide:nth-child(2) .slide_wrap .main_wrap .slide2_main_image img {
		-webkit-transform: scale(1.2);
		-ms-transform: scale(1.2);
		-o-transform: scale(1.2);
		transform: scale(1.2);
	}
	.slider .slide:nth-child(2) .slide_wrap .main_wrap .slide2_descr {
		margin: 0;
		padding: 1.8rem 1.9rem 0 3rem;
		display: inline-block;
		background-color: #fff;
		position: relative;
	}
	.slider .slide:nth-child(2) .slide_wrap .main_wrap .slide2_descr:before {
		content: '';
		width: 100%;
		height: 1000px;
		background-color: #fff;
		-webkit-transform: translate(0, 100%);
		-ms-transform: translate(0, 100%);
		-o-transform: translate(0, 100%);
		transform: translate(0, 100%);
		left: 0;
		bottom: 0;
		position: absolute;
	}
	.slider .slide:nth-child(2) .slide_wrap .main_wrap .slide2_descr ul {
		margin-bottom: 1.5rem;
	}
	.slider .slide:nth-child(2) .slide_wrap .main_wrap .slide2_descr ul li {
		font-size: 1rem;
		padding-left: 1.5rem;
	}
	.slider .slide:nth-child(2) .slide_wrap .main_wrap .slide2_descr .title {
		font-size: 1rem;
		margin-bottom: 1rem;
	}
	.slider .slide:nth-child(2) .slide_wrap .main_wrap .slide2_descr ul li:before {
		top: 0.2rem;
		width: 0.93rem;
		height: 0.93rem;
	}
	.slider .slide:nth-child(3) .slide_wrap .main_wrap .slide3_main_image {
		position: static;
		width: 24.7rem;
		margin-right: auto;
		margin-left: auto;

	}
	.slider .slide:nth-child(3) {
		background-color: #F4F5F6;
	}
	.slider .slide:nth-child(3) .slide_wrap .slide3_top_right_square {
		background-color: #fff;
		opacity: 1;
		width: 20.7rem;
		height: 6.8rem;
		right: auto;
		left: 0;
	}
	.slider .slide:nth-child(3) .slide_wrap .main_wrap .slide3_middle_red_line, .slider .slide:nth-child(3) .slide_wrap .main_wrap .slide3_bottom_middle_red_line {
		display: none;
	}
	.slider .slide:nth-child(3) .slide_wrap .main_wrap .slide3_descr {
		margin-top: 0;
		font-size: 1rem;
		line-height: 1.5rem;
		padding: 0 3rem;
		margin-bottom: 1.5rem;
	}
	.slider .slide:nth-child(3) .slide_wrap .slide3_middle_square {
		background-color: #fff;
		bottom: 5.7rem;
		width: 7.2rem;
		height: 28.4rem;
	}
	.slider .slide:nth-child(3) .slide_wrap .slide3_bottom_square {
		display: none;
	}
	.slider .slide:nth-child(3) .slide_wrap .main_wrap .slide3_descr p:first-child {
		margin-bottom: 1rem;
	}
	.slider .slide:nth-child(4) .slide_wrap .slide4_bottom_right_square {
		width: 20.4rem;
		height: 13.8rem;
		right: 50%;
		-webkit-transform: translate(50%, 0);
		-ms-transform: translate(50%, 0);
		-o-transform: translate(50%, 0);
		transform: translate(50%, 0);
		background-color: #fff;
	}
	.slider .slide:nth-child(4) .slide_wrap .slide4_top_right_square, .slider .slide:nth-child(4) .slide_wrap .main_wrap .slide4_top_middle_square, .slider .slide:nth-child(4) .slide_wrap .main_wrap .top_right_red_line, .slider .slide:nth-child(4) .slide_wrap .main_wrap .middle_bottom_red_line {
		display: none;
	}
	.slider .slide:nth-child(4) {
		background-color: #F4F5F6;
	}
	.slider .slide:nth-child(4) .slide_wrap .main_wrap .slide4_main_image {
		position: static;
		width: 23.7rem;
		margin-right: auto;
		margin-left: auto;
	}
	.slider .slide:nth-child(4) .slide_wrap .main_wrap .slide4_big_descr {
		margin-top: 0;
		padding: 0 3rem;
		font-size: 1rem;
		line-height: 1.5rem;
		margin-bottom: 1.5rem;
	}
	.slider .slide:nth-child(4) .slide_wrap .main_wrap .slide4_big_descr p:first-child {
		margin-bottom: 1rem;
	}
	.slider .slide:nth-child(5) {
		background-color: #F4F5F6;
	}
	.slider .slide:nth-child(5) .slide_wrap .main_wrap .middle_big_line {
		width: 20.4rem;
		height: 15.8rem;
		right: 50%;
		-webkit-transform: translate(50%, 0);
		-ms-transform: translate(50%, 0);
		-o-transform: translate(50%, 0);
		transform: translate(50%, 0);
		background-color: #fff;
	}
	.slider .slide:nth-child(5) .slide_wrap .main_wrap .bottom_right_square {
		background-color: #fff;
		right: 50%;
		opacity: 1;
		-webkit-transform: translate(50%, 0);
		-ms-transform: translate(50%, 0);
		-o-transform: translate(50%, 0);
		transform: translate(50%, 0);
		width: 20.4rem;
		height: 1.6rem;
	}
	.slider .slide:nth-child(5) .slide_wrap .main_wrap .main_image {
		position: static;
		width: 24.7rem;
		margin-right: auto;
		margin-left: auto;
	}
	.slider .slide:nth-child(5) .slide_wrap .main_wrap .slide5_descr {
		padding: 0 3rem;
		font-size: 1rem;
		line-height: 1.5rem;
		margin-top: 0;
	}
	.slider .slide:nth-child(5) .slide_wrap .main_wrap .slide5_descr .list_title {
		margin-top: 1rem;
		margin-bottom: 0.6rem;
	}
	.slider .slide:nth-child(5) .slide_wrap .main_wrap .slide5_descr {
		margin-bottom: 1.5rem;
		max-width: 100%;
	}
	.slider .slide:nth-child(5) .slide_wrap .main_wrap .slide5_descr ul li {
		padding-left: 1.5rem;
		margin-bottom: 0.6rem;
	}
	.slider .slide:nth-child(5) .slide_wrap .main_wrap .slide5_descr ul li:before {
		top: 0.2rem;
		width: 0.93rem;
		height: 0.93rem;
	}
	.slider .slide:nth-child(5) .slide_wrap .top_right_red_line {
		display: none;
	}
	.menu_block {
		width: 24rem;
		padding-left: 3rem;
		padding-top: 1.9rem;
		padding-right: 3rem;
		background-color: rgba(229, 233, 236, 1);
	}
	.menu_block .menu_button .icon {
		width: 2.23rem;
	}
	.menu_block .menu_button .text {
		font-size: 1.1rem;
		margin-right: 0.7rem;
	}
	.menu_block .menu_button {
		margin-bottom: 5.8rem;
	}
	.menu_block .navigation .block {
		font-size: 1rem;
		-webkit-transform: translate(0.6rem, 0);
		-ms-transform: translate(0.6rem, 0);
		-o-transform: translate(0.6rem, 0);
		transform: translate(0.6rem, 0);
		padding-right: 2.2rem;
	}
	.menu_block .navigation .block:before {
		width: 1.2rem;
		height: 1.2rem;
	}
	.menu_block .menu_button:hover .icon:before {
		display: none;
	}
	.menu_block .menu_button:hover .icon {
		display: none;
	}
	.slider .slide .slide_wrap .main_wrap .slide_title {
		position: fixed;
		margin-bottom: 0;
		left: 0;
		top: 0;
		background-color: #F4F5F6;
		width: 100%;
		padding: 1.3rem 3rem;
		z-index: 50;
		margin-left: 0;
	}
	.slider .slide .slide_wrap .main_wrap .slide_title img {
		width: 9.4rem;
	}
	.slider .slide:nth-child(2) .slide_wrap .main_wrap .slide2_opacity_figure, .slider .slide:nth-child(3) .slide_wrap .slide3_top_right_square {
		display: none;
	}
}

@media screen and (max-width: 890px) {
	html {
		font-size: 21px;
	}
}
@media screen and (max-width: 850px) {
	html {
		font-size: 20px;
	}
}
@media screen and (max-width: 810px) {
	html {
		font-size: 19px;
	}
}
@media screen and (max-width: 770px) {
	html {
		font-size: 18px;
	}
}
@media screen and (max-width: 720px) {
	html {
		font-size: 17px;
	}
}
@media screen and (max-width: 680px) {
	html {
		font-size: 16px;
	}
}
@media screen and (max-width: 635px) {
	html {
		font-size: 15px;
	}
}
@media screen and (max-width: 590px) {
	html {
		font-size: 14px;
	}
}
@media screen and (max-width: 460px) {
	html {
		font-size: 13px;
	}
}
@media screen and (max-width: 410px) {
	html {
		font-size: 12px;
	}
}
@media screen and (max-width: 361px) {
	html {
		font-size: 11px;
	}
}
@media screen and (max-width: 330px) {
	html {
		font-size: 10px;
	}
}






 



 
 
 