* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

h1,
h2,
h3 {
	margin: 0;
	padding: 0;
}

p {
	margin: 0;
	padding: 0;
}

a {
	text-decoration: none;
	color: #f2f2f2;
}

body {
	font-family: 'Manrope', sans-serif;
	top: 0;
	left: 0;
	background: #000;
	padding: 0;
	margin: 0;
	width: 100%;
	height: 100%;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

@font-face {
	font-family: 'Druk Text Wide Cyr';
	src: url("DrukWideCyrBold.otf");
	font-weight: 700;
}

html,
body {
	width: 100vw;
	min-width: 100vw;
	overflow-x: hidden;
}

::-webkit-scrollbar {
	width: 5px;
	background-color: #ffffff;
	height: 5px;
	border-radius: 10px;
}

::-webkit-scrollbar-thumb {
	border-radius: 10px;
	background-color: #f15f2c;
	width: 5px;
}

::-webkit-scrollbar-track {
	-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.2);
	border-radius: 10px;
	background-color: #ffffff;
}

.header {
	width: 100%;
	height: 100px;
}

.header_container {
	width: 100%;
	max-width: 640px;
	display: block;
	margin: 0 auto;
}

.header_items {
	display: flex;
	align-items: center;
	padding-top: 40px;
	padding-bottom: 40px;
    margin-bottom: 150px;
}

.header_item:last-child {
	margin-left: auto;
}

.header_item_logo {
	vertical-align: middle;
}

.header_item_navs {
	display: flex;
	align-items: center;
	list-style: none;
}

.header_item_nav {
	margin-right: 32px;
}

.header_item_nav:last-child {
	margin-right: 0px;
}

.header_item_nav a {
	color: rgba(242, 242, 242, 0.41);
	leading-trim: both;
	text-edge: cap;
	font-family: 'Manrope', sans-serif;
	font-size: 18px;
	font-style: normal;
	font-weight: 700;
	line-height: 140%;
	/* 25.2px */
	letter-spacing: 0.18px;
	text-transform: uppercase;
	cursor: pointer;
	transition: all 0.5s;
}

.header_item_nav a:hover {
	color: #fff;
}

.main {
}

.container {
	width: 100%;
	max-width: 1125px;
	display: block;
	margin: 0 auto;
	
}

.main_images {
	position: relative;
}

.main_img {
	vertical-align: middle;
	display: block;
	margin: 0 auto;
	width:100%;
	max-width: 600px;
	
}

.main_img_logo {
	vertical-align: middle;
	display: block;
	margin: 0 auto;
	position: absolute;
	left: calc(50% - 130px);
	bottom: 0;
	
}

.main_block {
	padding-bottom: 50px;
}

.main_block_tittle {
	color: #f2f2f2;
	text-align: center;
	leading-trim: both;
	text-edge: cap;
	font-family: 'Druk Text Wide Cyr';
	font-size: 48px;
	font-style: normal;
	font-weight: 700;
	line-height: 110%;
	/* 52.8px */
	text-transform: uppercase;
}

.main_block_button {
	display: block;
	margin: 0 auto;
	margin-top: 36px;
	border-radius: 16px;
	background: linear-gradient(92deg, #55ffb8 1.34%, #93ffd2 100.08%), #55ffb8;
	padding: 32px 48px;
	color: #1c1c1c;
	leading-trim: both;
	text-edge: cap;
	font-family: 'Manrope', sans-serif;
	font-size: 18px;
	font-style: normal;
	font-weight: 700;
	line-height: 140%;
	cursor: pointer;
	transition: all 0.5s;
	/* 25.2px */
	letter-spacing: 0.18px;
	outline: none;
	border: none;
	text-transform: uppercase;
}

.main_block_button:hover {
	opacity: 0.5;
}

.main_block_button img {
	vertical-align: middle;
	margin-left: 8px;
}

@media (min-width: 320px) and (max-width: 799px) {
	.header_container {
		padding-left: 20px;
		padding-right: 20px;
	}

	.container {
		padding-left: 20px;
		padding-right: 20px;
	}

	.header_items {
		flex-direction: column;
		padding-top: 20px;
		padding-bottom: 20px;
	}

	.main_img_logo {
		position: static;
		width: 150px;
	}

	.header_item_nav a {
		font-size: 13px;
	}

	.header_item:last-child {
		margin-left: 0px;
		margin-top: 20px;
	}

	.main_block_tittle {
		font-size: 30px;
	}

	.main_block_button {
		font-size: 15px;
		padding: 20px 30px;
	}
}
