@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=Outfit&display=swap");
* {
	padding: 0px;
	margin: 0px;
	border: 0px;
}

*,
*:before,
*:after {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

:focus,
:active {
	outline: none;
}

a:focus,
a:active {
	outline: none;
}

aside,
nav,
footer,
header,
section {
	display: block;
}

html,
body {
	height: 100%;
	min-width: 320px;
}

body {
	line-height: 1;
	font-family: "Montserrat";
	-ms-text-size-adjust: 100%;
	-moz-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
}

input,
button,
textarea {
	font-family: "Montserrat";
}

input::-ms-clear {
	display: none;
}

button {
	cursor: pointer;
}

button::-moz-focus-inner {
	padding: 0;
	border: 0;
}

a,
a:visited {
	text-decoration: none;
}

a:hover {
	text-decoration: none;
}

ul li {
	list-style: none;
}

img {
	vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: inherit;
	font-size: inherit;
}

html.lock, body._lock {
	overflow: hidden;
	-ms-touch-action: none;
	    touch-action: none;
}

body {
	background: #010203;
}

._ibg {
	position: relative;
}
._ibg img {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	-o-object-fit: cover;
	   object-fit: cover;
}

body.ie ._ibg {
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}
body.ie ._ibg img {
	width: 0;
	height: 0;
	opacity: 0;
	visibility: hidden;
}

.wrapper {
	min-height: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	overflow: hidden;
}
.wrapper > main {
	-webkit-box-flex: 1;
	    -ms-flex: 1 1 auto;
	        flex: 1 1 auto;
}
.wrapper > * {
	min-width: 0;
}

._container {
	max-width: 1360px;
	margin: 0 auto;
	padding: 0 30px;
}
@media (max-width: 480px) {
	._container {
		padding: 0 15px;
	}
}

.title {
	font-weight: 700;
	font-size: 100px;
	line-height: 110%;
	text-align: center;
	color: #FFFFFF;
	position: relative;
}
@media (max-width: 1366px) {
	.title {
		font-size: calc(32px + 68 * ((100vw - 320px) / 1600));
	}
}

.text {
	font-size: 20px;
	line-height: 130%;
	color: #FFFFFF;
	font-weight: 700;
}
@media (max-width: 820px) {
	.text {
		font-size: 18px;
	}
}
@media (max-width: 480px) {
	.text {
		font-size: 16px;
	}
}

.btn {
	cursor: pointer;
	-webkit-appearance: none;
	-webkit-border-radius: 0;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	padding: 10px;
	background: #ADFF00;
	border-radius: 15px;
	height: 60px;
	color: #000;
	font-weight: 500;
	font-size: 20px;
	width: 200px;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	position: relative;
}
@media (max-width: 820px) {
	.btn {
		height: 45px;
		width: 150px;
		font-size: 16px;
		border-radius: 10px;
	}
}
@media (min-width: 1024px) {
	.btn:hover {
		-webkit-transform: scale(1.08);
		    -ms-transform: scale(1.08);
		        transform: scale(1.08);
		-webkit-transition: all 0.3s ease 0s;
		-o-transition: all 0.3s ease 0s;
		transition: all 0.3s ease 0s;
	}
}

.btn_b {
	background: #0050FF;
	color: #fff;
}

.btn_tg span {
	padding: 0px 0px 0px 35px;
	position: relative;
}
.btn_tg span::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	-webkit-transform: translate(0, -50%);
	    -ms-transform: translate(0, -50%);
	        transform: translate(0, -50%);
	width: 26px;
	height: 26px;
	background: url("../img/icons/tg.svg") no-repeat;
	background-size: contain;
	background-position: center;
}

.header {
	position: relative;
	z-index: 5;
	top: 0;
	left: 0;
	width: 100%;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}

.header__row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-size: 0;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	padding: 36px 0px;
}
@media (max-width: 1024px) {
	.header__row {
		margin: 0px 55px 0px 0px;
		padding: 20px 0px;
	}
}
@media (max-width: 480px) {
	.header__row {
		margin: 0px 45px 0px 0px;
	}
}

.header__logo {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 148px;
	        flex: 0 0 148px;
	position: relative;
	z-index: 5;
}
.header__logo img {
	width: 100%;
}
@media (max-width: 1360px) {
	.header__logo {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 120px;
		        flex: 0 0 120px;
	}
}
@media (max-width: 360px) {
	.header__logo {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 100px;
		        flex: 0 0 100px;
	}
}

.menu__list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-size: 0;
}
.menu__list li {
	margin: 0px 60px 0px 0px;
}
.menu__list li:last-child {
	margin: 0;
}
@media (max-width: 1360px) {
	.menu__list li {
		margin: 0px 30px 0px 0px;
	}
}
@media (max-width: 1024px) {
	.menu__list {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
		-webkit-box-align: end;
		    -ms-flex-align: end;
		        align-items: flex-end;
	}
	.menu__list li {
		margin: 0px 0px 30px 0px;
	}
}

.menu__link {
	font-weight: 500;
	font-size: 20px;
	color: #FFFFFF;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	position: relative;
}
.menu__link::before {
	content: "";
	position: absolute;
	bottom: -10px;
	left: 0;
	width: 100%;
	height: 1px;
	background: #B7FF39;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
@media (max-width: 1360px) {
	.menu__link {
		font-size: 16px;
	}
}
@media (max-width: 1024px) {
	.menu__link {
		font-size: 18px;
	}
}
@media (min-width: 1024px) {
	.menu__link:hover {
		-webkit-transition: all 0.3s ease 0s;
		-o-transition: all 0.3s ease 0s;
		transition: all 0.3s ease 0s;
	}
	.menu__link:hover::before {
		-webkit-transition: all 0.3s ease 0s;
		-o-transition: all 0.3s ease 0s;
		transition: all 0.3s ease 0s;
		bottom: 0;
		opacity: 1;
		visibility: visible;
	}
}

.menu__body {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-size: 0;
	position: relative;
}
@media (max-width: 1024px) {
	.menu__body {
		position: fixed;
		top: 0;
		right: 0;
		width: 100%;
		height: 100vh;
		-webkit-transition: all 0.3s ease 0s;
		-o-transition: all 0.3s ease 0s;
		transition: all 0.3s ease 0s;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
		-webkit-box-align: end;
		    -ms-flex-align: end;
		        align-items: flex-end;
		padding: 30px 40px;
		overflow: auto;
		opacity: 0;
		visibility: hidden;
		-webkit-backdrop-filter: blur(16px);
		        backdrop-filter: blur(16px);
	}
	.menu__body._active {
		right: 0;
		-webkit-transition: all 0.3s ease 0s;
		-o-transition: all 0.3s ease 0s;
		transition: all 0.3s ease 0s;
		opacity: 1;
		visibility: visible;
	}
}
@media (max-width: 1024px) and (max-width: 1024px) {
	.menu__body {
		padding: 125px 40px 75px 40px;
	}
}
@media (max-width: 1024px) and (max-width: 480px) {
	.menu__body {
		padding: 100px 20px;
	}
}

.icon-menu {
	display: none;
}
@media (max-width: 1024px) {
	.icon-menu {
		display: block;
		position: absolute;
		top: 50%;
		right: 30px;
		-webkit-transform: translate(0, -50%);
		    -ms-transform: translate(0, -50%);
		        transform: translate(0, -50%);
		width: 30px;
		height: 18px;
		cursor: pointer;
		z-index: 5;
	}
	.icon-menu span {
		-webkit-transition: all 0.3s ease 0s;
		-o-transition: all 0.3s ease 0s;
		transition: all 0.3s ease 0s;
		top: calc(50% - 1px);
		left: 0px;
		position: absolute;
		width: 100%;
		height: 2px;
		background-color: #fff;
	}
	.icon-menu span:first-child {
		top: 0px;
	}
	.icon-menu span:last-child {
		top: auto;
		bottom: 0px;
	}
	.icon-menu._active span {
		-webkit-transform: scale(0);
		    -ms-transform: scale(0);
		        transform: scale(0);
	}
	.icon-menu._active span:first-child {
		-webkit-transform: rotate(-45deg);
		    -ms-transform: rotate(-45deg);
		        transform: rotate(-45deg);
		top: calc(50% - 1px);
	}
	.icon-menu._active span:last-child {
		-webkit-transform: rotate(45deg);
		    -ms-transform: rotate(45deg);
		        transform: rotate(45deg);
		bottom: calc(50% - 1px);
	}
}
@media (max-width: 480px) {
	.icon-menu {
		right: 15px;
	}
}

.header__btn {
	width: 170px;
	font-weight: 700;
	background: -o-radial-gradient(104.71% 127.5%, 54.71% 210.87%, #ADFF00 13.03%, rgba(173, 255, 0, 0) 100%), -o-radial-gradient(6.76% 0%, 59.3% 102.33%, #0041FF 16.71%, rgba(0, 65, 255, 0.43) 55.89%, rgba(255, 255, 255, 0.22) 100%), #FFFFFF;
	background: radial-gradient(54.71% 210.87% at 104.71% 127.5%, #ADFF00 13.03%, rgba(173, 255, 0, 0) 100%), radial-gradient(59.3% 102.33% at 6.76% 0%, #0041FF 16.71%, rgba(0, 65, 255, 0.43) 55.89%, rgba(255, 255, 255, 0.22) 100%), #FFFFFF;
}
@media (max-width: 820px) {
	.header__btn {
		width: 120px;
	}
}

body::after {
	content: "";
	background-color: rgba(0, 0, 0, 0.8);
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	opacity: 0;
	-webkit-transition: opacity 0.8s ease 0s;
	-o-transition: opacity 0.8s ease 0s;
	transition: opacity 0.8s ease 0s;
	pointer-events: none;
	z-index: 149;
}

.popup-show body::after {
	opacity: 1;
}

.popup {
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	padding: 30px 10px;
	-webkit-transition: visibility 0.8s ease 0s;
	-o-transition: visibility 0.8s ease 0s;
	transition: visibility 0.8s ease 0s;
	visibility: hidden;
	pointer-events: none;
}

.popup_show {
	z-index: 150;
	visibility: visible;
	overflow: auto;
	pointer-events: auto;
}

.popup_show .popup__content {
	visibility: visible;
	-webkit-transform: scale(1);
	    -ms-transform: scale(1);
	        transform: scale(1);
}

.popup__wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	min-height: 100%;
	-webkit-box-flex: 1;
	    -ms-flex: 1 1 auto;
	        flex: 1 1 auto;
	width: 100%;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	align-items: center;
}

.popup__content {
	visibility: hidden;
	-webkit-transform: scale(0);
	    -ms-transform: scale(0);
	        transform: scale(0);
	-webkit-transition: -webkit-transform 0.3s ease 0s;
	transition: -webkit-transform 0.3s ease 0s;
	-o-transition: transform 0.3s ease 0s;
	transition: transform 0.3s ease 0s;
	transition: transform 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
	background-color: #eee;
	width: 100%;
	max-width: 900px;
	border-radius: 20px;
}
.lock .popup__content {
	visibility: visible;
}

.popup__close {
	position: absolute;
	top: 20px;
	right: 20px;
	width: 20px;
	height: 20px;
	background: url("../img/icons/close.svg") no-repeat;
	background-size: contain;
}

.callback-popup .popup__content {
	max-width: 730px;
}
.popup-video .popup__content {
	max-width: 1500px;
}
.popup-video .popup__close {
	top: -35px;
	right: 5px;
	width: 30px;
	height: 30px;
}
@media (max-width: 1400px) {
	.popup-video .popup__close {
		right: 0px;
		top: 0px;
	}
}
.popup-video iframe, .popup-video video {
	width: 100%;
	height: calc(100vh - 100px);
}

footer {
	position: relative;
	padding: 40px 0px;
}

.footer__row > *:not(:last-child) {
	margin: 0px 0px 20px 0px;
}

.footer__line {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-size: 0;
}
.footer__line p, .footer__line span, .footer__line a {
	font-weight: 500;
	font-size: 20px;
	line-height: 130%;
	color: #FFFFFF;
}
@media (max-width: 1024px) {
	.footer__line p, .footer__line span, .footer__line a {
		font-size: 16px;
	}
}
.footer__line span {
	margin: 0px 40px 0px 0px;
}
@media (max-width: 820px) {
	.footer__line span {
		margin: 0px 0px 5px 0px;
	}
}
@media (min-width: 1024px) {
	.footer__line a:hover {
		text-decoration: underline;
	}
}
@media (max-width: 820px) {
	.footer__line {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
	}
}

@media (max-width: 480px) {
	.footer__line_hash p {
		font-size: 12px;
	}
}

.hero {
	position: relative;
}

.hero__bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.hero__bg img {
	width: 100%;
	height: 100%;
	-o-object-fit: contain;
	   object-fit: contain;
	-o-object-position: center;
	   object-position: center;
	-webkit-transform: scale(1.1);
	    -ms-transform: scale(1.1);
	        transform: scale(1.1);
}
@media (max-width: 1024px) {
	.hero__bg img {
		-o-object-fit: cover;
		   object-fit: cover;
	}
}
@media (max-width: 480px) {
	.hero__bg img {
		opacity: 0.5;
	}
}

.hero__bg1 {
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.hero__bg1 img {
	width: 100%;
	height: 100%;
	-o-object-fit: contain;
	   object-fit: contain;
	-o-object-position: center;
	   object-position: center;
}

.hero__content {
	position: relative;
	padding: 0px 0px 340px 0px;
}
.hero__content::before {
	content: "";
	position: absolute;
	width: 1600px;
	height: 1600px;
	top: 0;
	left: 50%;
	-webkit-transform: translate(-50%, 0);
	    -ms-transform: translate(-50%, 0);
	        transform: translate(-50%, 0);
	background: url("../img/hero/grid.svg") no-repeat;
	background-size: cover;
	background-position: 0 100px;
}
@media (max-width: 1360px) {
	.hero__content::before {
		width: calc(500px + 1100 * ((100vw - 320px) / 1600));
		height: calc(500px + 1100 * ((100vw - 320px) / 1600));
	}
}
@media (max-width: 820px) {
	.hero__content {
		padding: 0px 0px 200px 0px;
	}
}
@media (max-width: 480px) {
	.hero__content {
		padding: 0px 0px 100px 0px;
	}
}

.hero__row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-size: 0;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	position: relative;
}
@media (max-width: 700px) {
	.hero__row {
		padding: 20px 0px 0px 0px;
	}
}

.hero__title {
	font-size: 130px;
	margin: 0px 0px 53px 0px;
	color: #fff;
}
@media (max-width: 1366px) {
	.hero__title {
		font-size: calc(40px + 90 * ((100vw - 320px) / 1600));
	}
}
@media (max-width: 480px) {
	.hero__title {
		margin: 0px 0px 25px 0px;
	}
}

.hero__text {
	text-align: center;
	max-width: 460px;
	margin: 0px 0px 36px 0px;
}

.hero__buttons {
	position: relative;
	z-index: 2;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-size: 0;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	margin: 0px 0px 62px 0px;
	gap: 20px;
}

.hero__buttons .btn {
	font-weight: 700;
}
@media (max-width: 480px) {
	.hero__buttons {
		margin: 0px 0px 30px 0px;
	}
}
@media (max-width: 360px) {
	.hero__buttons {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
	}
}

.hero__items {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-size: 0;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	margin: -6px;
	width: 100%;
	padding: 0px 30px;
}
@media (max-width: 1360px) {
	.hero__items {
		margin: -3px 0px;
		padding: 0;
	}
}

.hero-item {
	padding: 6px;
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 33.333%;
	        flex: 0 0 33.333%;
}
@media (max-width: 1360px) {
	.hero-item {
		padding: 3px 0;
	}
}
@media (max-width: 700px) {
	.hero-item {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 50%;
		        flex: 0 0 50%;
	}
}

.hero-item__row {
	padding: 25px;
}
@media (max-width: 1360px) {
	.hero-item__row {
		padding: 15px;
	}
}
@media (max-width: 480px) {
	.hero-item__row {
		padding: 10px;
	}
}

.hero-item__block {
	padding: 0px 0px 99.5% 0px;
	border-radius: 20px;
}

.hero-item__arrow {
	position: absolute;
	top: 30px;
	right: 30px;
	width: 62px;
	height: 62px;
	background: url("../img/icons/arrow.png") no-repeat;
	background-size: contain;
	background-position: top right;
}
@media (max-width: 1360px) {
	.hero-item__arrow {
		width: calc(10px + 60 * ((100vw - 320px) / 1600));
		height: calc(10px + 60 * ((100vw - 320px) / 1600));
	}
}
@media (max-width: 1024px) {
	.hero-item__arrow {
		top: 20px;
		right: 20px;
	}
}
@media (max-width: 480px) {
	.hero-item__arrow {
		width: 25px;
		height: 25px;
		top: 15px;
		right: 15px;
	}
}

.hero-item__title {
	position: absolute;
	bottom: 20px;
	left: 25px;
	font-weight: 700;
	font-size: 56px;
	line-height: 130%;
}
@media (max-width: 1360px) {
	.hero-item__title {
		font-size: calc(10px + 46 * ((100vw - 320px) / 1600));
	}
}
@media (max-width: 1024px) {
	.hero-item__title {
		bottom: 10px;
		left: 15px;
	}
}
@media (max-width: 480px) {
	.hero-item__title {
		font-size: 20px;
	}
}

.hero-item_1 .hero-item__title {
	background: -o-linear-gradient(187.31deg, #FFFFFF 1.64%, rgba(255, 255, 255, 0) 107.55%);
	background: linear-gradient(262.69deg, #FFFFFF 1.64%, rgba(255, 255, 255, 0) 107.55%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-fill-color: transparent;
}
@media (max-width: 480px) {
	.hero-item_1 .hero-item__title {
		background: none;
		-webkit-text-fill-color: inherit;
		color: #fff;
	}
}
.hero-item_1 .hero-item__block {
	background: -o-radial-gradient(75.8% 73.54%, 46.04% 42.01%, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0) 100%), -o-linear-gradient(208.09deg, #0041FF -49.49%, rgba(0, 65, 255, 0) 81.68%), #0B0E14;
	background: radial-gradient(46.04% 42.01% at 75.8% 73.54%, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0) 100%), linear-gradient(-118.09deg, #0041FF -49.49%, rgba(0, 65, 255, 0) 81.68%), #0B0E14;
	background-blend-mode: overlay, normal, normal;
	-webkit-box-shadow: 0px 37px 70px #000514;
	        box-shadow: 0px 37px 70px #000514;
	border-radius: 20px;
}
@media (max-width: 700px) {
	.hero-item_1 .hero-item__block {
		background: -o-linear-gradient(61deg, #0e183b 19%, #1731ac 100%);
		background: linear-gradient(29deg, #0e183b 19%, #1731ac 100%);
	}
}
@media (max-width: 700px) {
	.hero-item_1 {
		-webkit-box-ordinal-group: 2;
		    -ms-flex-order: 1;
		        order: 1;
	}
}

.hero-item_2 {
	position: relative;
	z-index: 2;
}
@media (max-width: 700px) {
	.hero-item_2 {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 100%;
		        flex: 0 0 100%;
	}
}
.hero-item_2 .hero-item__row {
	position: relative;
}
.hero-item_2 .hero-item__back {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0.5;
}
.hero-item_2 .hero-item__back img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	   object-fit: cover;
	-o-object-position: center;
	   object-position: center;
	border-radius: 40px;
}
@media (max-width: 1360px) {
	.hero-item_2 .hero-item__back img {
		border-radius: 34px;
	}
}
@media (max-width: 480px) {
	.hero-item_2 .hero-item__back img {
		border-radius: 28px;
	}
}
.hero-item_2 .hero-item__title {
	color: #fff;
}
.hero-item_2 .hero-item__block {
	background: url("../img/hero/bg.webp") no-repeat;
	background-size: cover;
	-webkit-box-shadow: 0px 37px 70px #000514;
	        box-shadow: 0px 37px 70px #000514;
}
.hero-item_2 .hero-item__block .hero-item__icon {
	position: absolute;
	top: 30px;
	left: 30px;
	width: 62px;
	height: 100px;
}
.hero-item_2 .hero-item__block .hero-item__icon img {
	width: 100%;
	height: 100%;
	-o-object-fit: contain;
	   object-fit: contain;
	-o-object-position: top center;
	   object-position: top center;
}
@media (max-width: 1024px) {
	.hero-item_2 .hero-item__block .hero-item__icon {
		top: 20px;
		left: 20px;
		width: calc(30px + 40 * ((100vw - 320px) / 1600));
		height: 50px;
	}
}
@media (max-width: 480px) {
	.hero-item_2 .hero-item__block .hero-item__icon {
		top: 15px;
		left: 15px;
	}
}
@media (max-width: 700px) {
	.hero-item_2 .hero-item__block {
		padding: 0px 0px 50% 0px;
	}
}
@media (max-width: 700px) {
	.hero-item_2 {
		-webkit-box-ordinal-group: 4;
		    -ms-flex-order: 3;
		        order: 3;
	}
}

.hero-item_3 .hero-item__title {
	background: -o-linear-gradient(333.56deg, #FFFFFF 6.68%, rgba(255, 255, 255, 0) 110.46%);
	background: linear-gradient(116.44deg, #FFFFFF 6.68%, rgba(255, 255, 255, 0) 110.46%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-fill-color: transparent;
}
@media (max-width: 480px) {
	.hero-item_3 .hero-item__title {
		background: none;
		-webkit-text-fill-color: inherit;
		color: #fff;
	}
}
.hero-item_3 .hero-item__block {
	background: -o-radial-gradient(75.8% 73.54%, 46.04% 42.01%, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0) 100%), -o-linear-gradient(330.49deg, #0041FF -48.28%, rgba(0, 65, 255, 0) 86.86%), #0B0E14;
	background: radial-gradient(46.04% 42.01% at 75.8% 73.54%, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0) 100%), linear-gradient(119.51deg, #0041FF -48.28%, rgba(0, 65, 255, 0) 86.86%), #0B0E14;
	background-blend-mode: overlay, normal, normal;
	-webkit-box-shadow: 0px 37px 70px;
	        box-shadow: 0px 37px 70px;
}
@media (max-width: 700px) {
	.hero-item_3 .hero-item__block {
		background: -o-linear-gradient(61deg, #0e183b 19%, #1731ac 100%);
		background: linear-gradient(29deg, #0e183b 19%, #1731ac 100%);
	}
}
@media (max-width: 700px) {
	.hero-item_3 {
		-webkit-box-ordinal-group: 3;
		    -ms-flex-order: 2;
		        order: 2;
	}
}

.hero-item_4 .hero-item__title {
	background: -o-linear-gradient(187.31deg, #FFFFFF 1.64%, rgba(255, 255, 255, 0) 107.55%);
	background: linear-gradient(262.69deg, #FFFFFF 1.64%, rgba(255, 255, 255, 0) 107.55%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-fill-color: transparent;
	opacity: 0.5;
}
@media (max-width: 480px) {
	.hero-item_4 .hero-item__title {
		background: none;
		-webkit-text-fill-color: inherit;
		color: #fff;
		opacity: 1;
	}
}
.hero-item_4 .hero-item__block {
	background: -o-radial-gradient(75.8% 73.54%, 46.04% 42.01%, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0) 100%), -o-linear-gradient(150.45deg, #0041FF -78.09%, rgba(0, 65, 255, 0) 50.69%), #0B0E14;
	background: radial-gradient(46.04% 42.01% at 75.8% 73.54%, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0) 100%), linear-gradient(-60.45deg, #0041FF -78.09%, rgba(0, 65, 255, 0) 50.69%), #0B0E14;
	background-blend-mode: overlay, normal, normal;
	-webkit-box-shadow: 0px 37px 70px #000514;
	        box-shadow: 0px 37px 70px #000514;
}
@media (max-width: 700px) {
	.hero-item_4 .hero-item__block {
		background: -o-linear-gradient(61deg, #0e183b 19%, #1731ac 100%);
		background: linear-gradient(29deg, #0e183b 19%, #1731ac 100%);
	}
}
@media (max-width: 700px) {
	.hero-item_4 {
		-webkit-box-ordinal-group: 5;
		    -ms-flex-order: 4;
		        order: 4;
	}
}

.hero-item_5 .hero-item__title {
	background: -webkit-gradient(linear, left top, left bottom, color-stop(-51.37%, #FFFFFF), to(rgba(255, 255, 255, 0))), rgba(255, 255, 255, 0.1);
	background: -o-linear-gradient(top, #FFFFFF -51.37%, rgba(255, 255, 255, 0) 100%), rgba(255, 255, 255, 0.1);
	background: linear-gradient(180deg, #FFFFFF -51.37%, rgba(255, 255, 255, 0) 100%), rgba(255, 255, 255, 0.1);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-fill-color: transparent;
}
@media (max-width: 480px) {
	.hero-item_5 .hero-item__title {
		background: none;
		-webkit-text-fill-color: inherit;
		color: #fff;
	}
}
.hero-item_5 .hero-item__block {
	background: -o-radial-gradient(75.8% 73.54%, 46.04% 42.01%, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0) 100%), -o-radial-gradient(50% -198.71%, 350.57% 350.57%, rgba(0, 65, 255, 0.78) 0%, rgba(0, 65, 255, 0) 100%), #0B0E14;
	background: radial-gradient(46.04% 42.01% at 75.8% 73.54%, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0) 100%), radial-gradient(350.57% 350.57% at 50% -198.71%, rgba(0, 65, 255, 0.78) 0%, rgba(0, 65, 255, 0) 100%), #0B0E14;
	background-blend-mode: overlay, normal, normal;
	-webkit-box-shadow: 0px 37px 70px;
	        box-shadow: 0px 37px 70px;
}
@media (max-width: 700px) {
	.hero-item_5 .hero-item__block {
		background: -o-linear-gradient(61deg, #0e183b 19%, #1731ac 100%);
		background: linear-gradient(29deg, #0e183b 19%, #1731ac 100%);
	}
}
@media (max-width: 700px) {
	.hero-item_5 {
		-webkit-box-ordinal-group: 6;
		    -ms-flex-order: 5;
		        order: 5;
	}
}

.hero-item_6 .hero-item__title {
	background: -o-linear-gradient(333.56deg, #FFFFFF 6.68%, rgba(255, 255, 255, 0) 110.46%);
	background: linear-gradient(116.44deg, #FFFFFF 6.68%, rgba(255, 255, 255, 0) 110.46%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-fill-color: transparent;
	opacity: 0.5;
}
@media (max-width: 480px) {
	.hero-item_6 .hero-item__title {
		background: none;
		-webkit-text-fill-color: inherit;
		color: #fff;
		opacity: 1;
	}
}
.hero-item_6 .hero-item__block {
	background: -o-radial-gradient(75.8% 73.54%, 46.04% 42.01%, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0) 100%), -o-linear-gradient(29.88deg, #0041FF -47.71%, rgba(0, 65, 255, 0) 50.16%), #0B0E14;
	background: radial-gradient(46.04% 42.01% at 75.8% 73.54%, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0) 100%), linear-gradient(60.12deg, #0041FF -47.71%, rgba(0, 65, 255, 0) 50.16%), #0B0E14;
	background-blend-mode: overlay, normal, normal;
	-webkit-box-shadow: 0px 37px 70px #000514;
	        box-shadow: 0px 37px 70px #000514;
}
@media (max-width: 700px) {
	.hero-item_6 .hero-item__block {
		background: -o-linear-gradient(61deg, #0e183b 19%, #1731ac 100%);
		background: linear-gradient(29deg, #0e183b 19%, #1731ac 100%);
	}
}
@media (max-width: 700px) {
	.hero-item_6 {
		-webkit-box-ordinal-group: 6;
		    -ms-flex-order: 5;
		        order: 5;
	}
}

.whatis {
	position: relative;
}

.whatis__bg {
	position: absolute;
	top: -100px;
	left: 0;
	width: 100%;
	height: 100%;
}
.whatis__bg img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	   object-fit: cover;
	-o-object-position: center;
	   object-position: center;
	-webkit-transform: scale(1.2);
	    -ms-transform: scale(1.2);
	        transform: scale(1.2);
}
@media (max-width: 480px) {
	.whatis__bg {
		top: 0;
	}
}

.whatis__content {
	position: relative;
	padding: 0px 0px 200px 0px;
}
.whatis__content::before {
	content: "";
	position: absolute;
	width: 1600px;
	height: 1600px;
	top: 0;
	left: 50%;
	-webkit-transform: translate(-50%, 0);
	    -ms-transform: translate(-50%, 0);
	        transform: translate(-50%, 0);
	background: url("../img/whatis/grid.svg") no-repeat;
	background-size: cover;
	background-position: 0 -100px;
}
@media (max-width: 1360px) {
	.whatis__content::before {
		width: calc(500px + 1100 * ((100vw - 320px) / 1600));
		height: calc(500px + 1100 * ((100vw - 320px) / 1600));
	}
}
@media (max-width: 700px) {
	.whatis__content {
		padding: 0px 0px 100px 0px;
	}
}

.whatis__row {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-size: 0;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}

.whatis__title {
	margin: 0px 0px 110px 0px;
}
@media (max-width: 820px) {
	.whatis__title {
		margin: 0px 0px 60px 0px;
	}
}
@media (max-width: 480px) {
	.whatis__title {
		margin: 0px 0px 25px 0px;
	}
}

.whatis__text {
	max-width: 967px;
	text-align: center;
	margin: 0px 0px 76px 0px;
}
@media (max-width: 480px) {
	.whatis__text {
		margin: 0px 0px 40px 0px;
	}
}

.whatis__img {
	max-width: 1030px;
}
.whatis__img img {
	width: 100%;
	height: 100%;
	-o-object-fit: contain;
	   object-fit: contain;
	-o-object-position: center;
	   object-position: center;
}

.video {
	position: relative;
	padding: 0px 0px 160px 0px;
}
@media (max-width: 480px) {
	.video {
		padding: 0px 0px 100px 0px;
	}
}

.video__bg {
	position: absolute;
	top: -100px;
	left: 0;
	width: 100%;
	height: 100%;
}
.video__bg img {
	width: 100%;
	height: 100%;
	-o-object-fit: contain;
	   object-fit: contain;
	-o-object-position: center;
	   object-position: center;
	-webkit-transform: scale(2);
	    -ms-transform: scale(2);
	        transform: scale(2);
}
@media (max-width: 1024px) {
	.video__bg img {
		-o-object-fit: cover;
		   object-fit: cover;
		-webkit-transform: scale(1.5);
		    -ms-transform: scale(1.5);
		        transform: scale(1.5);
	}
}
@media (max-width: 480px) {
	.video__bg img {
		opacity: 0.5;
	}
}

.video__content {
	position: relative;
}

.video__row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-size: 0;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}

.video__title {
	margin: 0px 0px 27px 0px;
	text-align: center;
}

.video__text {
	margin: 0px 0px 78px 0px;
	text-align: center;
}
@media (max-width: 480px) {
	.video__text {
		margin: 0px 0px 30px 0px;
	}
}

.video__player {
	width: 100%;
	border-radius: 40px;
	padding: 25px;
	background: url("../img/video/1.jpg") no-repeat;
	background-size: cover;
	margin: 0px 0px 63px 0px;
}
@media (max-width: 820px) {
	.video__player {
		padding: 10px;
	}
}
@media (max-width: 480px) {
	.video__player {
		margin: 0px 0px 30px 0px;
		border-radius: 20px;
	}
}

.video__block {
	padding: 0px 0px 58% 0px;
	background: #fff;
	cursor: pointer;
	border-radius: 24px;
	overflow: hidden;
}
.video__block img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	   object-fit: cover;
	-o-object-position: center;
	   object-position: center;
}
@media (max-width: 480px) {
	.video__block {
		border-radius: 10px;
	}
}

.video__btn {
	font-weight: 500;
}

.same {
	position: relative;
}

.same__bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.same__bg img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	   object-fit: cover;
	-o-object-position: center;
	   object-position: center;
}
@media (max-width: 480px) {
	.same__bg img {
		-webkit-transform: scale(1.3);
		    -ms-transform: scale(1.3);
		        transform: scale(1.3);
		opacity: 0.7;
	}
}

.same__content {
	position: relative;
	padding: 0px 0px 200px 0px;
}
.same__content::before {
	content: "";
	position: absolute;
	width: 1600px;
	height: 1600px;
	top: 0;
	left: 50%;
	-webkit-transform: translate(-50%, 0);
	    -ms-transform: translate(-50%, 0);
	        transform: translate(-50%, 0);
	background: url("../img/same/grid.svg") no-repeat;
	background-size: cover;
	background-position: 0 -100px;
}
@media (max-width: 1360px) {
	.same__content::before {
		width: calc(500px + 1100 * ((100vw - 320px) / 1600));
		height: calc(500px + 1100 * ((100vw - 320px) / 1600));
	}
}
@media (max-width: 480px) {
	.same__content {
		padding: 0px 0px 100px 0px;
	}
}

.same__title {
	margin: 0px 0px 132px 0px;
}
@media (max-width: 820px) {
	.same__title {
		margin: 0px 0px 60px 0px;
	}
}
@media (max-width: 480px) {
	.same__title {
		margin: 0px 0px 25px 0px;
	}
}

.same__row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-size: 0;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}

.same__items {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-size: 0;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	margin: -25px;
	min-width: 100%;
}
@media (max-width: 1360px) {
	.same__items {
		margin: -10px;
	}
}

.same-item {
	padding: 25px;
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 33.333%;
	        flex: 0 0 33.333%;
}
@media (max-width: 1360px) {
	.same-item {
		padding: 10px;
	}
}
@media (max-width: 700px) {
	.same-item {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 100%;
		        flex: 0 0 100%;
	}
}

.same-item__row {
	padding: 25px;
	border: 2px solid rgba(255, 255, 255, 0.2);
	border-radius: 40px;
	height: 100%;
}
@media (max-width: 1360px) {
	.same-item__row {
		padding: 15px;
	}
}
@media (max-width: 700px) {
	.same-item__row {
		border-radius: 32px;
	}
}
@media (max-width: 480px) {
	.same-item__row {
		padding: 10px;
	}
}

.same__block {
	background: url("../img/hero/") no-repeat;
	background-size: contain;
	position: relative;
	padding: 0px 0px 100% 0px;
}
@media (max-width: 700px) {
	.same__block {
		padding: 0px 0px 50% 0px;
	}
}

.same-item__bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.same-item__bg img {
	border-radius: 20px;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	   object-fit: cover;
	-o-object-position: center;
	   object-position: center;
}

.same-item__icon {
	position: absolute;
	top: 30px;
	right: 30px;
	width: 100px;
	height: 100px;
}
.same-item__icon img {
	width: 100%;
}
@media (max-width: 1360px) {
	.same-item__icon {
		top: 20px;
		right: 20px;
		width: calc(30px + 40 * ((100vw - 320px) / 1600));
		height: calc(30px + 40 * ((100vw - 320px) / 1600));
	}
}
@media (max-width: 480px) {
	.same-item__icon {
		top: 15px;
		right: 15px;
		width: 40px;
		height: 40px;
	}
}

.same-item__title {
	position: absolute;
	bottom: 30px;
	left: 30px;
	font-weight: 500;
	font-size: 48px;
	line-height: 130%;
	color: #FFFFFF;
}
@media (max-width: 1360px) {
	.same-item__title {
		font-size: calc(10px + 46 * ((100vw - 320px) / 1600));
	}
}
@media (max-width: 1024px) {
	.same-item__title {
		bottom: 10px;
		left: 15px;
	}
}
@media (max-width: 480px) {
	.same-item__title {
		font-size: 20px;
	}
}

.same__text {
	line-height: 130%;
	color: #fff;
	margin: 58px 0px 15px 0px;
}
@media (max-width: 820px) {
	.same__text {
		font-size: 16px;
		margin: 20px 0px 5px 0px;
	}
}

.same__btn {
	margin: 70px 0px 0px 0px;
}
@media (max-width: 480px) {
	.same__btn {
		margin: 40px 0px 0px 0px;
	}
}

.ecosystem {
	position: relative;
}

.ecosystem__bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.ecosystem__bg img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	   object-fit: cover;
	-o-object-position: center;
	   object-position: center;
}

.ecosystem__content {
	position: relative;
	padding: 0px 0px 200px 0px;
}
.ecosystem__content::before {
	content: "";
	position: absolute;
	width: 1600px;
	height: 1600px;
	top: 0;
	left: 50%;
	-webkit-transform: translate(-50%, 0);
	    -ms-transform: translate(-50%, 0);
	        transform: translate(-50%, 0);
	background: url("../img/ecosystem/grid.svg") no-repeat;
	background-size: cover;
	background-position: 0 -100px;
}
@media (max-width: 1360px) {
	.ecosystem__content::before {
		width: calc(500px + 1100 * ((100vw - 320px) / 1600));
		height: calc(500px + 1100 * ((100vw - 320px) / 1600));
	}
}
@media (max-width: 480px) {
	.ecosystem__content {
		padding: 0px 0px 100px 0px;
	}
}

.ecosystem__title {
	margin: 0px 0px 165px 0px;
}
@media (max-width: 820px) {
	.ecosystem__title {
		margin: 0px 0px 60px 0px;
	}
}
@media (max-width: 480px) {
	.ecosystem__title {
		margin: 0px 0px 25px 0px;
	}
}

.ecosystem__items {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-size: 0;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	margin: -25px;
}
@media (max-width: 1360px) {
	.ecosystem__items {
		margin: -10px;
	}
}

.ecosystem-item {
	padding: 25px;
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 33.333%;
	        flex: 0 0 33.333%;
}
@media (max-width: 1360px) {
	.ecosystem-item {
		padding: 10px;
	}
}
@media (max-width: 700px) {
	.ecosystem-item {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 50%;
		        flex: 0 0 50%;
	}
}

.ecosystem-item__row {
	padding: 25px;
	position: relative;
}
@media (max-width: 1360px) {
	.ecosystem-item__row {
		padding: 15px;
	}
}
@media (max-width: 700px) {
	.ecosystem-item__row {
		border-radius: 32px;
	}
}
@media (max-width: 480px) {
	.ecosystem-item__row {
		padding: 10px;
	}
}

.ecosystem-item__bg,
.ecosystem-item__back {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.ecosystem-item__bg img,
.ecosystem-item__back img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	   object-fit: cover;
	-o-object-position: center;
	   object-position: center;
	border-radius: 20px;
}

.ecosystem-item__back img {
	border-radius: 40px;
}
@media (max-width: 1360px) {
	.ecosystem-item__back img {
		border-radius: 30px;
	}
}

.ecosystem-item__block {
	position: relative;
	padding: 0px 0px 100% 0px;
}

.ecosystem-item__title {
	position: absolute;
	bottom: 25px;
	left: 30px;
	font-weight: 700;
	font-size: 47px;
	line-height: 130%;
	color: #FFFFFF;
}
@media (max-width: 1360px) {
	.ecosystem-item__title {
		font-size: calc(10px + 46 * ((100vw - 320px) / 1600));
	}
}
@media (max-width: 1024px) {
	.ecosystem-item__title {
		bottom: 10px;
		left: 15px;
	}
}
@media (max-width: 480px) {
	.ecosystem-item__title {
		font-size: 20px;
	}
}

.ecosystem-item__title_s {
	font-size: 39px;
}
@media (max-width: 1360px) {
	.ecosystem-item__title_s {
		font-size: calc(10px + 46 * ((100vw - 320px) / 1600));
	}
}
@media (max-width: 1024px) {
	.ecosystem-item__title_s {
		bottom: 10px;
		left: 15px;
	}
}
@media (max-width: 480px) {
	.ecosystem-item__title_s {
		font-size: 16px;
	}
}

.ecosystem-item__icon {
	position: absolute;
	top: 30px;
	left: 30px;
	width: 72px;
	height: 72px;
}
.ecosystem-item__icon img {
	width: 100%;
	height: 100%;
	-o-object-fit: contain;
	   object-fit: contain;
	-o-object-position: top left;
	   object-position: top left;
}
@media (max-width: 1360px) {
	.ecosystem-item__icon {
		width: calc(30px + 40 * ((100vw - 320px) / 1600));
		height: calc(30px + 40 * ((100vw - 320px) / 1600));
	}
}
@media (max-width: 1024px) {
	.ecosystem-item__icon {
		top: 15px;
		left: 15px;
	}
}
@media (max-width: 480px) {
	.ecosystem-item__icon {
		width: 30px;
		height: 30px;
	}
}

.tokenomics .hero__buttons {
	margin: 60px 0px 0px 0px;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}

.tokenomics__row {
	position: relative;
}
.tokenomics__row::before {
	content: "";
	position: absolute;
	width: 1600px;
	height: 1600px;
	top: 0;
	left: 50%;
	-webkit-transform: translate(-50%, 0);
	    -ms-transform: translate(-50%, 0);
	        transform: translate(-50%, 0);
	background: url("../img/same/grid.svg") no-repeat;
	background-size: cover;
	background-position: 0 -200px;
}
@media (max-width: 1360px) {
	.tokenomics__row::before {
		width: calc(500px + 1100 * ((100vw - 320px) / 1600));
		height: calc(500px + 1100 * ((100vw - 320px) / 1600));
	}
}

.tokenomics__title {
	margin: 0px 0px 160px 0px;
}
@media (max-width: 820px) {
	.tokenomics__title {
		margin: 0px 0px 60px 0px;
	}
}
@media (max-width: 480px) {
	.tokenomics__title {
		margin: 0px 0px 25px 0px;
	}
}

.tokenomics__block {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-size: 0;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	margin: 0px 0px 40px 0px;
}
@media (max-width: 600px) {
	.tokenomics__block {
		-ms-flex-wrap: wrap;
		    flex-wrap: wrap;
		margin: 0px 0px 40px 0px;
	}
}

.tokenomics-desc > *:not(:last-child) {
	margin: 0px 0px 70px 0px;
}
@media (max-width: 820px) {
	.tokenomics-desc > *:not(:last-child) {
		margin: 0px 0px 40px 0px;
	}
}
@media (max-width: 480px) {
	.tokenomics-desc > *:not(:last-child) {
		margin: 0px 0px 30px 0px;
	}
}
@media (max-width: 600px) {
	.tokenomics-desc {
		-webkit-box-flex: 1;
		    -ms-flex: 1 1 auto;
		        flex: 1 1 auto;
		-webkit-box-ordinal-group: 2;
		    -ms-flex-order: 1;
		        order: 1;
	}
}
@media (max-width: 480px) {
	.tokenomics-desc {
		margin: 0px 0px 30px 0px;
	}
}

.tokenomics-desc__item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-size: 0;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
.tokenomics-desc__item span {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 30px;
	        flex: 0 0 30px;
	width: 30px;
	height: 30px;
	border-radius: 10px;
}
.tokenomics-desc__item p {
	font-weight: 500;
	font-size: 18px;
	color: #FFFFFF;
}
@media (max-width: 820px) {
	.tokenomics-desc__item p {
		font-size: 16px;
	}
}
.tokenomics-desc__item > *:not(:last-child) {
	margin: 0px 15px 0px 30px;
}

.tokenomics__img {
	margin: -70px 0px 0px 0px;
	-webkit-box-flex: 0;
	    -ms-flex: 0 1 460px;
	        flex: 0 1 460px;
	-webkit-transform: scale(1.2);
	    -ms-transform: scale(1.2);
	        transform: scale(1.2);
}
.tokenomics__img img {
	width: 100%;
}
@media (max-width: 820px) {
	.tokenomics__img {
		margin: 0;
		-webkit-transform: scale(1);
		    -ms-transform: scale(1);
		        transform: scale(1);
	}
}

.tokenomics-info {
	width: 950px;
	max-width: 100%;
	margin: 0 auto;
	font-weight: 700;
	position: relative;
}

.tokenomics-info__row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-size: 0;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	margin: -20px -15px;
}
@media (max-width: 480px) {
	.tokenomics-info__row {
		margin: -15px;
	}
}

.tokenomics-info__item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-size: 0;
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 50%;
	        flex: 0 0 50%;
	padding: 20px 15px;
	font-size: 20px;
	line-height: 130%;
	color: #FFFFFF;
}
.tokenomics-info__item p {
	font-weight: 700;
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 180px;
	        flex: 0 0 180px;
	padding: 0px 15px 0px 0px;
}
@media (max-width: 700px) {
	.tokenomics-info__item p {
		-webkit-box-flex: 0;
		    -ms-flex: 0;
		        flex: 0;
		padding: 0;
	}
}
@media (max-width: 700px) {
	.tokenomics-info__item span {
		-webkit-box-flex: 0;
		    -ms-flex: 0;
		        flex: 0;
	}
}
@media (max-width: 700px) {
	.tokenomics-info__item {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 100%;
		        flex: 0 0 100%;
		display: inline-block;
	}
}
@media (max-width: 700px) {
	.tokenomics-info__item {
		text-align: center;
	}
}
@media (max-width: 480px) {
	.tokenomics-info__item {
		font-size: 16px;
		padding: 15px;
	}
}

.tokenomics__contract {
	width: 950px;
	max-width: 100%;
	position: relative;
	top: 0;
	left: 50%;
	-webkit-transform: translate(-50%, 0);
	    -ms-transform: translate(-50%, 0);
	        transform: translate(-50%, 0);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-size: 0;
	font-size: 20px;
	color: #FFFFFF;
	margin: 40px 0px 0px 0px;
	font-weight: 700;
}
.tokenomics__contract p {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 180px;
	        flex: 0 0 180px;
	padding: 0px 15px 0px 0px;
}
@media (max-width: 700px) {
	.tokenomics__contract p {
		-webkit-box-flex: 0;
		    -ms-flex: 0;
		        flex: 0;
		margin: 0px 0px 5px 0px;
	}
}
@media (max-width: 700px) {
	.tokenomics__contract {
		text-align: center;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
		-webkit-box-align: center;
		    -ms-flex-align: center;
		        align-items: center;
	}
}
@media (max-width: 480px) {
	.tokenomics__contract {
		margin: 30px 0px 0px 0px;
		font-size: 16px;
	}
	.tokenomics__contract span {
		font-size: 12px;
	}
}

.roadmap {
	padding: 200px 0px 0px 0px;
}
.roadmap .same__content::before {
	display: none;
}
.roadmap .same__block {
	padding: 0;
	height: 170px;
}
@media (max-width: 480px) {
	.roadmap .same__block {
		height: 120px;
	}
}
.roadmap .same-item__title {
	font-size: 30px;
	bottom: 20px;
}
@media (max-width: 1360px) {
	.roadmap .same-item__title {
		font-size: calc(10px + 46 * ((100vw - 320px) / 1600));
	}
}
@media (max-width: 1024px) {
	.roadmap .same-item__title {
		bottom: 10px;
		left: 15px;
	}
}
@media (max-width: 480px) {
	.roadmap .same-item__title {
		font-size: 22px;
	}
}
.roadmap .roadmap__date {
	position: absolute;
	top: 20px;
	left: 30px;
	font-weight: 500;
	font-size: 40px;
	line-height: 130%;
	color: #FFFFFF;
}
@media (max-width: 1360px) {
	.roadmap .roadmap__date {
		font-size: calc(20px + 30 * ((100vw - 320px) / 1600));
	}
}
@media (max-width: 1024px) {
	.roadmap .roadmap__date {
		top: 10px;
		left: 15px;
	}
}
@media (max-width: 480px) {
	.roadmap .roadmap__date {
		font-size: 28px;
	}
}
@media (max-width: 480px) {
	.roadmap {
		padding: 100px 0px 0px 0px;
	}
}

.roadmap__list {
	margin: 46px 0px 10px 0px;
}
.roadmap__list li {
	font-size: 16px;
	line-height: 135%;
	color: #FFFFFF;
	font-weight: 700;
	margin: 0px 0px 50px 0px;
	position: relative;
	padding: 0px 0px 0px 20px;
}
.roadmap__list li::before {
	content: "";
	position: absolute;
	top: 7px;
	left: 0;
	width: 10px;
	height: 10px;
	background: #fff;
	border-radius: 50%;
}
.roadmap__list li:last-child {
	margin: 0;
}
@media (max-width: 1024px) {
	.roadmap__list li {
		margin: 0px 0px 25px 0px;
	}
}
@media (max-width: 480px) {
	.roadmap__list {
		margin: 30px 0px 10px 0px;
	}
}

.partners {
	position: relative;
	padding: 0px 0px 250px 0px;
}
.partners::before {
	content: "";
	position: absolute;
	width: 1600px;
	height: 1600px;
	top: 0;
	left: 50%;
	-webkit-transform: translate(-50%, 0);
	    -ms-transform: translate(-50%, 0);
	        transform: translate(-50%, 0);
	background: url("../img/partners/grid.svg") no-repeat;
	background-size: cover;
	background-position: 0 -500px;
}
@media (max-width: 1360px) {
	.partners::before {
		width: calc(500px + 1100 * ((100vw - 320px) / 1600));
		height: calc(500px + 1100 * ((100vw - 320px) / 1600));
	}
}
@media (max-width: 480px) {
	.partners {
		padding: 0px 0px 100px 0px;
	}
}

.partners__title {
	margin: 0px 0px 112px 0px;
}
@media (max-width: 820px) {
	.partners__title {
		margin: 0px 0px 60px 0px;
	}
}
@media (max-width: 480px) {
	.partners__title {
		margin: 0px 0px 25px 0px;
	}
}

.partners__row {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-size: 0;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	margin: -25px;
}
@media (max-width: 1024px) {
	.partners__row {
		margin: -15px;
	}
}

.partners-logo {
	padding: 25px;
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 33.333%;
	        flex: 0 0 33.333%;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
@media (max-width: 1024px) {
	.partners-logo {
		padding: 15px;
	}
}
@media (max-width: 480px) {
	.partners-logo {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 100%;
		        flex: 0 0 100%;
	}
}
@media (min-width: 1024px) {
	.partners-logo:hover {
		-webkit-transform: scale(1.05);
		    -ms-transform: scale(1.05);
		        transform: scale(1.05);
		-webkit-transition: all 0.3s ease 0s;
		-o-transition: all 0.3s ease 0s;
		transition: all 0.3s ease 0s;
	}
}

.partners-logo__row {
	background: url("../img/partners/bg.webp") no-repeat;
	background-size: cover;
	border-radius: 40px;
	padding: 40px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-size: 0;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
.partners-logo__row p {
	font-weight: 500;
	font-size: 40px;
	color: #FFFFFF;
}
@media (max-width: 1360px) {
	.partners-logo__row p {
		font-size: calc(20px + 30 * ((100vw - 320px) / 1600));
	}
}
@media (max-width: 820px) {
	.partners-logo__row {
		padding: 20px;
		border-radius: 30px;
	}
}

.partners-logo__img {
	width: 110px;
	margin: 0px 20px 0px 0px;
}
.partners-logo__img img {
	width: 100%;
}
@media (max-width: 1360px) {
	.partners-logo__img {
		width: calc(80px + 70 * ((100vw - 320px) / 1600));
	}
}

.join .ecosystem__bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.join .ecosystem__bg img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	   object-fit: cover;
	-o-object-position: center -300px;
	   object-position: center -300px;
}
@media (max-width: 480px) {
	.join .ecosystem__bg img {
		opacity: 0.5;
		-o-object-position: center -100px;
		   object-position: center -100px;
	}
}
.join .ecosystem__content {
	position: relative;
	padding: 0;
}
.join .ecosystem__content::before {
	background: url("../img/join/grid.svg") no-repeat;
}
.join .ecosystem-item__row {
	position: relative;
	z-index: 2;
}
.join .ecosystem__title {
	margin: 0px 0px 40px 0px;
}
.join .ecosystem-item {
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
@media (min-width: 1024px) {
	.join .ecosystem-item:hover {
		-webkit-transform: scale(1.03);
		    -ms-transform: scale(1.03);
		        transform: scale(1.03);
		-webkit-transition: all 0.3s ease 0s;
		-o-transition: all 0.3s ease 0s;
		transition: all 0.3s ease 0s;
	}
}
.join .ecosystem__items {
	margin: 0px 0px 200px 0px;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}
@media (max-width: 480px) {
	.join .ecosystem__items {
		margin: 0px 0px 100px 0px;
	}
}

.join__text {
	text-align: center;
	max-width: 860px;
	position: relative;
	top: 0;
	left: 50%;
	-webkit-transform: translate(-50%, 0);
	    -ms-transform: translate(-50%, 0);
	        transform: translate(-50%, 0);
	margin: 0px 0px 110px 0px;
}
@media (max-width: 480px) {
	.join__text {
		margin: 0px 0px 40px 0px;
	}
}