@import url("https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@400;700&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: "Roboto Condensed";
	-ms-text-size-adjust: 100%;
	-moz-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
}

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

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: #000;
}

._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: 900;
	font-size: 80px;
	line-height: 1.2;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	color: #FFF;
	position: relative;
}
.title::before {
	content: "";
	position: absolute;
	z-index: -1;
	top: -5px;
	left: -20px;
	width: 479px;
	height: 46px;
	background: #C91DF4;
}
@media (max-width: 1366px) {
	.title::before {
		top: calc(-5px + -20 * ((100vw - 320px) / 1600));
		height: calc(20px + 40 * ((100vw - 320px) / 1600));
		width: calc(150px + 340 * ((100vw - 320px) / 1600));
	}
}
@media (max-width: 700px) {
	.title::before {
		left: 50%;
		-webkit-transform: translate(-50%, 0);
		    -ms-transform: translate(-50%, 0);
		        transform: translate(-50%, 0);
	}
}
@media (max-width: 1366px) {
	.title {
		font-size: calc(28px + 52 * ((100vw - 320px) / 1600));
	}
}
@media (max-width: 700px) {
	.title {
		text-align: center;
	}
}
@media (max-width: 480px) {
	.title {
		font-size: 28px;
	}
}

.text {
	font-weight: 500;
	font-size: 30px;
	line-height: 150%;
	color: #FFFFFF;
}
@media (max-width: 1366px) {
	.text {
		font-size: calc(14px + 16 * ((100vw - 320px) / 1600));
	}
}
@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 25px;
	background: #C91DF4;
	height: 60px;
	font-weight: 600;
	font-size: 20px;
	text-align: center;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	color: #FFF;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
@media (max-width: 1024px) {
	.btn {
		height: 45px;
		font-size: 18px;
	}
}
@media (min-width: 1024px) {
	.btn:hover {
		-webkit-transition: all 0.3s ease 0s;
		-o-transition: all 0.3s ease 0s;
		transition: all 0.3s ease 0s;
		background: #00EE76;
	}
}

.header {
	position: relative;
	z-index: 2;
	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: 20px 0px;
}
@media (max-width: 1024px) {
	.header__row {
		padding: 20px 55px 20px 0px;
	}
}
@media (max-width: 480px) {
	.header__row {
		padding: 10px 45px 10px 0px;
	}
}

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

.menu {
	padding: 0px 20px;
}

.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: 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-size: 20px;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	color: #FFF;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
@media (min-width: 1024px) {
	.menu__link:hover {
		color: #C91DF4;
		-webkit-transition: all 0.3s ease 0s;
		-o-transition: all 0.3s ease 0s;
		transition: all 0.3s ease 0s;
	}
}

.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: -100%;
		width: 100%;
		height: 100vh;
		-webkit-transition: all 0.3s ease 0s;
		-o-transition: all 0.3s ease 0s;
		transition: all 0.3s ease 0s;
		background: #000;
		-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;
	}
	.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;
	}
}
@media (max-width: 1024px) and (max-width: 1024px) {
	.menu__body {
		padding: 200px 40px 75px 40px;
	}
}
@media (max-width: 1024px) and (max-width: 480px) {
	.menu__body {
		padding: 180px 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 {
	position: relative;
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 180px;
	        flex: 0 0 180px;
}
@media (max-width: 820px) {
	.header__btn {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 120px;
		        flex: 0 0 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 {
	padding: 140px 0px 30px 0px;
}
footer p {
	color: #808080;
	font-weight: 500;
	font-size: 18px;
}
@media (max-width: 480px) {
	footer p {
		font-size: 16px;
		text-align: center;
	}
}
@media (max-width: 480px) {
	footer {
		padding: 100px 0px 30px 0px;
	}
}

input {
	-webkit-appearance: none;
	-webkit-border-radius: 0;
	background: #000;
	min-width: 0;
}

input[type=number] {
	-moz-appearance: textfield;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
	-webkit-appearance: none;
}

textarea {
	resize: none;
}

.input._form-error {
	border: 3px solid red;
}

.form-sent-msg {
	position: fixed;
	z-index: 5;
	top: -100px;
	left: 50%;
	-webkit-transform: translate(-50%, 0);
	    -ms-transform: translate(-50%, 0);
	        transform: translate(-50%, 0);
	padding: 15px;
	background: #06CF27;
	border-radius: 50px;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	-webkit-box-shadow: 0px 5px 32px 5px rgba(146, 146, 146, 0.5);
	box-shadow: 0px 5px 32px 5px rgba(146, 146, 146, 0.5);
}
.form-sent-msg p {
	color: #fff;
	font-size: 20px;
	text-align: center;
}
.form-sent-msg._active {
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	top: 20px;
}

.hero-form {
	margin: 0px 0px 50px 0px;
	border: 1px solid #FFF;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-size: 0;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	width: 1120px;
	max-width: 100%;
}
.hero-form input {
	height: 60px;
	padding: 0px 20px;
	font-size: 20px;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	color: #FFF;
	width: 100%;
}
.hero-form input::-webkit-input-placeholder {
	color: #FFF;
}
.hero-form input::-moz-placeholder {
	color: #FFF;
}
.hero-form input:-ms-input-placeholder {
	color: #FFF;
}
.hero-form input::-ms-input-placeholder {
	color: #FFF;
}
.hero-form input::placeholder {
	color: #FFF;
}
@media (max-width: 820px) {
	.hero-form input {
		height: 50px;
		font-size: 16px;
	}
}
.hero-form .form__btn {
	display: block;
	background: #000;
	font-weight: 500;
	font-size: 16px;
	color: #FFFFFF;
	border-left: 1px #303030 solid;
	position: relative;
	padding: 0px 60px 0px 70px;
}
.hero-form .form__btn::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 22px;
	-webkit-transform: translate(0, -50%);
	    -ms-transform: translate(0, -50%);
	        transform: translate(0, -50%);
	width: 33px;
	height: 33px;
}
@media (max-width: 820px) {
	.hero-form .form__btn::before {
		width: 25px;
		height: 25px;
		left: 15px;
	}
}
@media (max-width: 480px) {
	.hero-form .form__btn::before {
		left: 10px;
	}
}
@media (max-width: 340px) {
	.hero-form .form__btn::before {
		width: 20px;
		height: 20px;
	}
}
.hero-form .form__btn::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 30px;
	-webkit-transform: translate(0, -50%);
	    -ms-transform: translate(0, -50%);
	        transform: translate(0, -50%);
	width: 14px;
	height: 14px;
	background: url("../img/icons/arrow.svg") no-repeat;
	background-size: contain;
	background-position: center;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
@media (max-width: 820px) {
	.hero-form .form__btn::after {
		right: 20px;
	}
}
@media (max-width: 480px) {
	.hero-form .form__btn::after {
		right: 10px;
	}
}
@media (max-width: 820px) {
	.hero-form .form__btn {
		padding: 0px 50px;
	}
}
@media (max-width: 700px) {
	.hero-form .form__btn {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 33.333%;
		        flex: 0 0 33.333%;
		padding: 0px;
	}
}
@media (min-width: 1024px) {
	.hero-form .form__btn:hover::after {
		-webkit-transition: all 0.3s ease 0s;
		-o-transition: all 0.3s ease 0s;
		transition: all 0.3s ease 0s;
		right: 25px;
	}
}
@media (max-width: 700px) {
	.hero-form {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
	}
}

.hero-form__buttons {
	min-height: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-size: 0;
}
@media (max-width: 700px) {
	.hero-form__buttons {
		border-top: 1px #303030 solid;
		width: 100%;
		height: 50px;
		-webkit-box-pack: justify;
		    -ms-flex-pack: justify;
		        justify-content: space-between;
	}
}

.form__btn_bnb::before {
	background: url("../img/icons/bnb.png") no-repeat;
	background-size: contain;
}

.form__btn_eth::before {
	background: url("../img/icons/eth.png") no-repeat;
	background-size: contain;
}

.form__btn_arb::before {
	background: url("../img/icons/arb.png") no-repeat;
	background-size: contain;
}

.swiper {
	overflow: hidden;
	position: relative;
}

.swiper-wrapper {
	width: 100%;
	height: 100%;
	-webkit-box-sizing: content-box;
	        box-sizing: content-box;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	position: relative;
}

.swiper-vertical .swiper-wrapper {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
}

.swiper-autoheight .swiper-wrapper {
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
}

.swiper-initialized .swiper-slide {
	-ms-flex-negative: 0;
	    flex-shrink: 0;
}

.swiper-android .swiper-slide,
.swiper-android .swiper-wrapper {
	-webkit-transform: translate3d(0px, 0, 0);
	        transform: translate3d(0px, 0, 0);
}

.swiper-button-lock,
.swiper-pagination-lock {
	display: none !important;
}

.swiper-pagination-bullets {
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-size: 0;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	margin: 0px 20px;
}

.swiper-pagination-bullet {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 10px;
	        flex: 0 0 10px;
	height: 10px;
	background: #969696;
	border-radius: 50%;
	margin: 0px 10px 0px 0px;
}
.swiper-pagination-bullet:last-child {
	margin: 0;
}

.swiper-pagination-bullet-active {
	background: #292929;
}

.slider-controls {
	position: absolute;
	left: 0;
	top: 50%;
	-webkit-transform: translate(0, -50%);
	    -ms-transform: translate(0, -50%);
	        transform: translate(0, -50%);
	padding: 40px 0px 0px 0px;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}
.slider-controls .button-prev,
.slider-controls .button-next {
	position: relative;
	top: 0;
	left: 0;
	right: 0;
	-webkit-transform: translate(0);
	    -ms-transform: translate(0);
	        transform: translate(0);
}
.slider-controls .button-prev {
	margin: 0px 20px 0px 0px;
}

.button-prev {
	position: absolute;
	top: 50%;
	left: 20px;
	-webkit-transform: translate(0, -50%);
	    -ms-transform: translate(0, -50%);
	        transform: translate(0, -50%);
	width: 50px;
	height: 50px;
	background: url("../img/icons/p-left.svg") no-repeat;
	background-size: contain;
	background-position: center;
	cursor: pointer;
}

.button-next {
	position: absolute;
	top: 50%;
	right: 20px;
	-webkit-transform: translate(0, -50%);
	    -ms-transform: translate(0, -50%);
	        transform: translate(0, -50%);
	width: 50px;
	height: 50px;
	background: url("../img/icons/p-right.svg") no-repeat;
	background-size: contain;
	background-position: center;
	cursor: pointer;
}

.swiper-scrollbar {
	border-radius: 10px;
	position: relative;
	-ms-touch-action: none;
	background: #D9D8D8;
}

.swiper-scrollbar-drag {
	height: 100%;
	width: 100%;
	position: relative;
	background: #F29BAB;
	border-radius: 10px;
	left: 0;
	top: 0;
}

.swiper-button-disabled {
	opacity: 0.6;
}

.marquee-slider {
	max-width: 100%;
	padding: 13px 0;
	background: #600F78;
	position: relative;
	z-index: 5;
}
.marquee-slider .swiper-wrapper {
	-webkit-transition-timing-function: linear !important;
	-o-transition-timing-function: linear !important;
	   transition-timing-function: linear !important;
}
.marquee-slider .swiper-slide {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-size: 0;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
.marquee-slider .swiper-slide img {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 33px;
	        flex: 0 0 33px;
	width: 33px;
	height: 33px;
	margin: 0px 20px 0px 0px;
}
@media (max-width: 820px) {
	.marquee-slider .swiper-slide img {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 28px;
		        flex: 0 0 28px;
		width: 28px;
		height: 28px;
		margin: 0px 12px 0px 0px;
	}
}
.marquee-slider .swiper-slide p {
	font-weight: 600;
	font-size: 25px;
	text-transform: uppercase;
	color: #FFFFFF;
	margin: 0px 20px 0px 0px;
	white-space: nowrap;
}
.marquee-slider .swiper-slide p span {
	color: #00EE76;
}
.marquee-slider .swiper-slide p:last-child {
	margin: 0;
}
@media (max-width: 820px) {
	.marquee-slider .swiper-slide p {
		font-size: 16px;
		margin: 0px 12px 0px 0px;
	}
}
@media (max-width: 820px) {
	.marquee-slider {
		padding: 5px 0px;
	}
}

.marquee-slider__block {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-size: 0;
}

.hero {
	min-height: 100vh;
	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;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	position: relative;
}
.hero::before {
	content: "";
	position: absolute;
	z-index: -1;
	top: -350px;
	left: 0;
	width: 705px;
	height: 1500px;
	background: url("../img/hero/decor.png") no-repeat;
	background-size: contain;
	-webkit-transform: scale(-1, -1);
	    -ms-transform: scale(-1, -1);
	        transform: scale(-1, -1);
	background-position: right top;
	pointer-events: none;
}
@media (max-width: 1360px) {
	.hero::before {
		width: 400px;
	}
}
.hero::after {
	content: "";
	position: absolute;
	z-index: -1;
	top: 0;
	right: 0;
	width: 705px;
	height: 1500px;
	background: url("../img/hero/decor.png") no-repeat;
	background-size: contain;
	background-position: right top;
	pointer-events: none;
}
@media (max-width: 1360px) {
	.hero::after {
		width: 400px;
	}
}
@media (max-width: 1024px) {
	.hero {
		min-height: unset;
	}
}

.hero__row {
	-webkit-box-flex: 1;
	    -ms-flex: 1 1 auto;
	        flex: 1 1 auto;
	width: 100%;
	height: 100%;
	padding: 50px 30px;
	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;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	position: relative;
	z-index: 1;
}
@media (max-width: 480px) {
	.hero__row {
		padding: 50px 15px;
	}
}
@media (max-width: 480px) {
	.hero__row {
		padding: 50px 15px 0px 15px;
	}
}

.hero__title {
	font-size: 60px;
	max-width: 1120px;
	text-align: center;
	margin: 0px 0px 30px 0px;
}
.hero__title::before {
	width: 377px;
	max-width: 100%;
	top: -5px;
	left: 50%;
	-webkit-transform: translate(-50%, 0);
	    -ms-transform: translate(-50%, 0);
	        transform: translate(-50%, 0);
}
@media (max-width: 1366px) {
	.hero__title::before {
		top: calc(-5px + -20 * ((100vw - 320px) / 1600));
		height: calc(20px + 40 * ((100vw - 320px) / 1600));
	}
}
@media (max-width: 1366px) {
	.hero__title {
		font-size: calc(22px + 38 * ((100vw - 320px) / 1600));
		margin: 0px 0px 20px 0px;
	}
}

.hero__block {
	position: relative;
	z-index: 2;
	width: 100%;
	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;
}

.hero__token {
	position: absolute;
	top: -70px;
	width: 220px;
}
.hero__token img {
	width: 100%;
}
@media (max-width: 1366px) {
	.hero__token {
		width: 160px;
		top: -50px;
	}
}
@media (max-width: 1024px) {
	.hero__token {
		display: none;
	}
}

.hero__token_eth {
	right: calc(100% - 220px);
}
@media (max-width: 1360px) {
	.hero__token_eth {
		right: calc(100% - 160px);
	}
}

.hero__token_arb {
	left: calc(100% - 220px);
}
@media (max-width: 1360px) {
	.hero__token_arb {
		left: calc(100% - 160px);
	}
}

.hero__text {
	font-weight: 500;
	font-size: 30px;
	line-height: 130.74%;
	text-align: center;
	color: #C91DF4;
	margin: 0px 0px 50px 0px;
	max-width: 480px;
}
@media (max-width: 1366px) {
	.hero__text {
		font-size: 26px;
		margin: 0px 0px 35px 0px;
	}
}
@media (max-width: 820px) {
	.hero__text {
		font-size: 20px;
	}
}
@media (max-width: 480px) {
	.hero__text {
		margin: 0px 0px 25px 0px;
		font-size: 18px;
	}
}

.hero__buttons {
	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;
	gap: 20px;
}
.hero__buttons .btn {
	padding: 0px 30px 0px 60px;
	position: relative;
}
.hero__buttons .btn::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 22px;
	-webkit-transform: translate(0, -50%);
	    -ms-transform: translate(0, -50%);
	        transform: translate(0, -50%);
	width: 28px;
	height: 28px;
}
@media (max-width: 820px) {
	.hero__buttons .btn {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 45%;
		        flex: 0 0 45%;
	}
}
@media (max-width: 480px) {
	.hero__buttons .btn {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 100%;
		        flex: 0 0 100%;
	}
}
@media (max-width: 480px) {
	.hero__buttons {
		max-width: 220px;
	}
}

.btn_certik::before {
	background: url("../img/icons/certik.svg") no-repeat;
	background-size: contain;
}

.btn_presale::before {
	background: url("../img/icons/web.svg") no-repeat;
	background-size: contain;
}

.btn_tw::before {
	width: 29px;
	height: 23px;
	background: url("../img/icons/tw.svg") no-repeat;
	background-size: contain;
}

.btn_tg::before {
	width: 27px;
	height: 23px;
	background: url("../img/icons/tg.svg") no-repeat;
	background-size: contain;
}

.explore {
	padding: 100px 0px 270px 0px;
}
@media (max-width: 1366px) {
	.explore {
		padding: 120px 0px 0px 0px;
	}
}

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

.explore__content {
	-webkit-box-flex: 0;
	    -ms-flex: 0 1 840px;
	        flex: 0 1 840px;
	padding: 0px 50px 0px 0px;
}
@media (max-width: 700px) {
	.explore__content {
		-webkit-box-flex: 0;
		    -ms-flex: 0;
		        flex: 0;
		margin: 0px 0px 40px 0px;
		padding: 0;
		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;
	}
}

.explore__title {
	margin: 0px 0px 30px 0px;
}

.explore__list {
	margin: 0px 0px 130px 0px;
}
.explore__list li {
	font-weight: 500;
	font-size: 30px;
	line-height: 193%;
	color: #FFFFFF;
	text-transform: uppercase;
	position: relative;
	padding: 0px 0px 0px 33px;
}
.explore__list li::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	-webkit-transform: translate(0, -50%);
	    -ms-transform: translate(0, -50%);
	        transform: translate(0, -50%);
	width: 14px;
	height: 14px;
	background: #00EE76;
}
@media (max-width: 480px) {
	.explore__list li::before {
		width: 10px;
		height: 10px;
	}
}
.explore__list li:nth-child(odd)::before {
	background: #C91DF4;
}
@media (max-width: 1366px) {
	.explore__list li {
		font-size: calc(14px + 16 * ((100vw - 320px) / 1600));
	}
}
@media (max-width: 480px) {
	.explore__list li {
		padding: 0px 0px 0px 25px;
		font-size: 16px;
	}
}
@media (max-width: 820px) {
	.explore__list {
		margin: 0px 0px 40px 0px;
	}
}

.explore__text {
	margin: 0px 0px 90px 0px;
}
@media (max-width: 1024px) {
	.explore__text {
		margin: 0px 0px 40px 0px;
	}
}

.explore__img {
	-webkit-box-flex: 0;
	    -ms-flex: 0 1 1000px;
	        flex: 0 1 1000px;
	position: relative;
	-webkit-transform: scale(1.2);
	    -ms-transform: scale(1.2);
	        transform: scale(1.2);
}
.explore__img img {
	width: 100%;
	-webkit-transform: scale(1.2);
	    -ms-transform: scale(1.2);
	        transform: scale(1.2);
}
@media (max-width: 1600px) {
	.explore__img img {
		-webkit-transform: scale(1);
		    -ms-transform: scale(1);
		        transform: scale(1);
	}
}
.explore__img::before {
	content: "";
	position: absolute;
	z-index: -1;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%) scale(1.5);
	    -ms-transform: translate(-50%, -50%) scale(1.5);
	        transform: translate(-50%, -50%) scale(1.5);
	width: 100%;
	height: 100%;
	background: url("../img/explore/shadow.svg") no-repeat;
	background-size: contain;
}
@media (max-width: 1600px) {
	.explore__img {
		margin: 0px 60px 0px 0px;
	}
}
@media (max-width: 700px) {
	.explore__img {
		-webkit-box-flex: 0;
		    -ms-flex: 0;
		        flex: 0;
		margin: 0;
		-webkit-transform: scale(1);
		    -ms-transform: scale(1);
		        transform: scale(1);
	}
}

.dotname {
	padding: 100px 0px 0px 0px;
}

.dotname__row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-size: 0;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
}
@media (max-width: 700px) {
	.dotname__row {
		-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;
	}
}

.dotname__content {
	-webkit-box-flex: 0;
	    -ms-flex: 0 1 500px;
	        flex: 0 1 500px;
	margin: 0px 20px 0px 0px;
}
@media (max-width: 700px) {
	.dotname__content {
		-webkit-box-flex: 0;
		    -ms-flex: 0;
		        flex: 0;
		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;
		margin: 0px 0px 40px 0px;
	}
}

.dotname__title {
	margin: 0px 0px 30px 0px;
}

.dotname__text {
	margin: 0px 0px 120px 0px;
}
@media (max-width: 700px) {
	.dotname__text {
		margin: 0px 0px 40px 0px;
	}
}

.dotname__btn {
	width: 270px;
}

.dotname__img {
	-webkit-box-flex: 0;
	    -ms-flex: 0 1 835px;
	        flex: 0 1 835px;
}
.dotname__img img {
	width: 100%;
}
@media (max-width: 700px) {
	.dotname__img {
		-webkit-box-flex: 0;
		    -ms-flex: 0;
		        flex: 0;
	}
}

.discover {
	padding: 250px 15px 0px calc((100vw - 1300px) / 2);
}
.discover .tabs {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-size: 0;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
}
.discover .tabs__navigation {
	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;
}
.discover .tabs__title {
	background: #000;
	font-weight: 500;
	font-size: 30px;
	color: #FFFFFF;
	text-align: left;
	border: 2px solid #000;
	padding: 15px 30px;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
.discover .tabs__title._tab-active {
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	border: 2px solid #00EE76;
}
@media (max-width: 1366px) {
	.discover .tabs__title {
		font-size: 24px;
	}
}
@media (max-width: 820px) {
	.discover .tabs__title {
		font-size: 16px;
		padding: 15px;
	}
}
@media (max-width: 700px) {
	.discover .tabs__title {
		width: 100%;
		text-align: center;
		border: 2px solid #2A2A2A;
	}
}
.discover .tabs__content {
	position: relative;
}
.discover .tabs__body {
	position: relative;
}
.discover .tabs__body::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 65%;
	-webkit-transform: translate(-50%, -50%) scale(1.45);
	    -ms-transform: translate(-50%, -50%) scale(1.45);
	        transform: translate(-50%, -50%) scale(1.45);
	width: 100%;
	height: 100%;
	background: url("../img/discover/bg.webp") no-repeat;
	background-size: contain;
	pointer-events: none;
}
.discover .tabs__body img {
	position: relative;
	width: 100%;
}
.discover .tabs .tabs__decor {
	position: absolute;
	top: -40px;
	left: 15%;
	width: 312px;
	height: 100px;
	background: #C91DF4;
}
@media (max-width: 1366px) {
	.discover .tabs .tabs__decor {
		top: calc(-7px + -43 * ((100vw - 320px) / 1600));
		width: calc(50px + 280 * ((100vw - 320px) / 1600));
	}
}
@media (max-width: 1024px) {
	.discover .tabs {
		-webkit-box-align: end;
		    -ms-flex-align: end;
		        align-items: flex-end;
	}
}
@media (max-width: 700px) {
	.discover .tabs {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
	}
}
@media (max-width: 1360px) {
	.discover {
		padding: 100px 30px 0px 30px;
	}
}

@media (max-width: 700px) {
	.tabs__content > *:not(:last-child) {
		margin: 0px 0px 30px 0px;
	}
}

.discover__block {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 500px;
	        flex: 0 0 500px;
}
@media (max-width: 1024px) {
	.discover__block {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 400px;
		        flex: 0 0 400px;
	}
}
@media (max-width: 820px) {
	.discover__block {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 300px;
		        flex: 0 0 300px;
	}
}
@media (max-width: 700px) {
	.discover__block {
		-webkit-box-flex: 0;
		    -ms-flex: 0;
		        flex: 0;
		width: 100%;
	}
}

.discover__title {
	font-size: 50px;
	margin: 0px 0px 120px 0px;
}
@media (max-width: 1366px) {
	.discover__title {
		margin: 0px 0px 60px 0px;
	}
}
@media (max-width: 1366px) {
	.discover__title {
		font-size: calc(22px + 38 * ((100vw - 320px) / 1600));
	}
}
@media (max-width: 480px) {
	.discover__title {
		font-size: 28px;
	}
}

.why {
	padding: 200px 0px 0px 0px;
}
@media (max-width: 820px) {
	.why {
		padding: 180px 0px 0px 0px;
	}
}
@media (max-width: 480px) {
	.why {
		padding: 120px 0px 0px 0px;
	}
}

.why__title {
	margin: 0px 0px 50px 0px;
}

.why-table {
	border: 2px solid #FFFFFF;
}

.why-table__item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-size: 0;
	border-bottom: 2px solid #FFFFFF;
}
.why-table__item:last-child {
	border: 0;
}
@media (max-width: 700px) {
	.why-table__item {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
	}
}

.why-table__left {
	padding: 30px 45px;
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 53%;
	        flex: 0 0 53%;
	border-right: 2px solid #FFFFFF;
}
@media (max-width: 1024px) {
	.why-table__left {
		padding: 20px 25px;
	}
}
@media (max-width: 700px) {
	.why-table__left {
		border-right: 0;
	}
}

.why-table__title {
	font-weight: 900;
	font-size: 60px;
	line-height: 112%;
	text-transform: uppercase;
	margin: 0px 0px 30px 0px;
}
@media (max-width: 1366px) {
	.why-table__title {
		font-size: 50px;
	}
}
@media (max-width: 1024px) {
	.why-table__title {
		font-size: 45px;
	}
}
@media (max-width: 820px) {
	.why-table__title {
		font-size: 30px;
		margin: 0px 0px 15px 0px;
	}
}
@media (max-width: 480px) {
	.why-table__title {
		font-size: 26px;
	}
}

.why-table__text {
	font-size: 25px;
}
@media (max-width: 1024px) {
	.why-table__text {
		font-size: 20px;
	}
}
@media (max-width: 820px) {
	.why-table__text {
		font-size: 16px;
	}
}

.why-table__right {
	-webkit-box-flex: 0;
	    -ms-flex: 0 1 47%;
	        flex: 0 1 47%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-size: 0;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}

.why-table__item_1 .why-table__title {
	color: #C91DF4;
}
.why-table__item_1 .why-table__right img {
	width: 417px;
	max-width: 100%;
}

.why-table__item_2 .why-table__title {
	color: #00EE76;
}
.why-table__item_2 .why-table__right {
	padding: 30px 0px 0px 0px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-size: 0;
	-webkit-box-align: end;
	    -ms-flex-align: end;
	        align-items: flex-end;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}
.why-table__item_2 .why-table__right img {
	width: 100%;
}

.why-table__item_3 .why-table__title {
	color: #32B5FF;
}
.why-table__item_3 .why-table__right img {
	width: 500px;
	max-width: 100%;
}

.why-table__item_4 .why-table__title {
	color: #C91DF4;
}
.why-table__item_4 .why-table__right img {
	width: 500px;
	max-width: 100%;
}

.why-table__item_5 .why-table__title {
	color: #00EE76;
}
.why-table__item_5 .why-table__right img {
	width: 600px;
	max-width: 100%;
}

.why__btn {
	width: 270px;
	margin: 70px 0px 0px 0px;
	position: relative;
	top: 0;
	left: 50%;
	-webkit-transform: translate(-50%, 0);
	    -ms-transform: translate(-50%, 0);
	        transform: translate(-50%, 0);
}
@media (max-width: 480px) {
	.why__btn {
		width: 200px;
		margin: 40px 0px 0px 0px;
	}
}

.tokenomics {
	padding: 180px 0px 0px 0px;
}
@media (max-width: 480px) {
	.tokenomics {
		padding: 120px 0px 0px 0px;
	}
}

.tokenomics__row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-size: 0;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	border: 2px solid #FFFFFF;
	padding: 48px;
}
@media (max-width: 1024px) {
	.tokenomics__row {
		-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__row {
		padding: 20px 15px;
	}
}

.tokenomics__left {
	margin: 0px 20px 0px 0px;
}
@media (max-width: 1024px) {
	.tokenomics__left {
		width: 100%;
		margin: 0px 0px 40px 0px;
	}
}

.tokenomics__title {
	color: #C91DF4;
	font-size: 60px;
	margin: 0px 0px 35px 0px;
}
.tokenomics__title::before {
	display: none;
}
@media (max-width: 1366px) {
	.tokenomics__title {
		font-size: calc(28px + 52 * ((100vw - 320px) / 1600));
	}
}
@media (max-width: 700px) {
	.tokenomics__title {
		text-align: left;
	}
}
@media (max-width: 480px) {
	.tokenomics__title {
		font-size: 28px;
	}
}

.tokenomics__lines {
	margin: 0px 0px 80px 0px;
}
@media (max-width: 820px) {
	.tokenomics__lines {
		margin: 0px 0px 40px 0px;
	}
}

.tokenomics__line {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-size: 0;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	font-size: 20px;
	margin: 0px 0px 20px 0px;
}
.tokenomics__line p {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 110px;
	        flex: 0 0 110px;
	color: #949494;
}
@media (max-width: 1360px) {
	.tokenomics__line p {
		-webkit-box-flex: 0;
		    -ms-flex: 0;
		        flex: 0;
		margin: 0px 0px 5px 0px;
	}
}
@media (max-width: 480px) {
	.tokenomics__line p {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 100px;
		        flex: 0 0 100px;
	}
}
.tokenomics__line span {
	color: #fff;
}
@media (max-width: 1360px) {
	.tokenomics__line {
		font-size: 18px;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
		-webkit-box-align: start;
		    -ms-flex-align: start;
		        align-items: flex-start;
	}
}
@media (max-width: 480px) {
	.tokenomics__line {
		font-size: 16px;
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		    -ms-flex-direction: row;
		        flex-direction: row;
		margin: 0px 0px 15px 0px;
	}
}

.tokenomics__buttons {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-size: 0;
}
.tokenomics__buttons .btn {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 150px;
	        flex: 0 0 150px;
	margin: 0px 20px 0px 0px;
}
.tokenomics__buttons .btn:last-child {
	margin: 0;
}
@media (max-width: 1024px) {
	.tokenomics__buttons .btn {
		-webkit-box-flex: 0;
		    -ms-flex: 0;
		        flex: 0;
		width: 200px;
		margin: 0px 20px 0px 0px;
	}
}
@media (max-width: 480px) {
	.tokenomics__buttons .btn {
		margin: 0px 0px 20px 0px;
		width: 100%;
	}
}
@media (max-width: 480px) {
	.tokenomics__buttons {
		-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;
		width: 200px;
		position: relative;
		top: 0;
		left: 50%;
		-webkit-transform: translate(-50%, 0);
		    -ms-transform: translate(-50%, 0);
		        transform: translate(-50%, 0);
	}
}

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

.tokenomics__line_cont {
	margin: 40px 0px 0px 0px;
}
@media (max-width: 1360px) {
	.tokenomics__line_cont span {
		font-size: 16px;
	}
}
@media (max-width: 480px) {
	.tokenomics__line_cont span {
		font-size: 14px;
	}
}
@media (max-width: 480px) {
	.tokenomics__line_cont {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
		margin: 30px 0px 0px 0px;
	}
	.tokenomics__line_cont p {
		-webkit-box-flex: 0;
		    -ms-flex: 0;
		        flex: 0;
	}
}

.tokenomics__right {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-size: 0;
	-webkit-box-flex: 0;
	    -ms-flex: 0 1 658px;
	        flex: 0 1 658px;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
}
@media (max-width: 1024px) {
	.tokenomics__right {
		-webkit-box-flex: 0;
		    -ms-flex: 0;
		        flex: 0;
		-webkit-box-orient: vertical;
		-webkit-box-direction: reverse;
		    -ms-flex-direction: column-reverse;
		        flex-direction: column-reverse;
		width: 100%;
	}
}

.tokenomics__values {
	margin: 0px 30px 0px 0px;
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 200px;
	        flex: 0 0 200px;
}

.tokenomics__value {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-size: 0;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	margin: 0px 0px 10px 0px;
}
.tokenomics__value span {
	width: 24px;
	height: 24px;
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 24px;
	        flex: 0 0 24px;
	margin: 0px 15px 0px 0px;
}
.tokenomics__value p {
	font-weight: 600;
	font-size: 18px;
	letter-spacing: 0.03em;
	color: #FFFFFF;
	text-transform: uppercase;
}
@media (max-width: 1360px) {
	.tokenomics__value p {
		font-size: 16px;
	}
}

.tokenomics__value_1 span {
	background: #00EE76;
}

.tokenomics__value_2 span {
	background: #C91DF4;
}

.tokenomics__value_3 span {
	background: #32B5FF;
}

.tokenomics__value_4 span {
	background: #0F364C;
}

.tokenomics__value_5 span {
	background: #3C0949;
}

.tokenomics__value_6 span {
	background: #00A753;
}

.tokenomics__value_7 span {
	background: #000;
	outline: 1px solid #fff;
	outline-offset: -1px;
}

.tokenomics__value_8 span {
	background: #595959;
}

.tokenomics__value_9 span {
	background: #fff;
}

.tokenomics__img {
	-webkit-box-flex: 0;
	    -ms-flex: 0 1 430px;
	        flex: 0 1 430px;
}
.tokenomics__img img {
	width: 100%;
}
@media (max-width: 1024px) {
	.tokenomics__img {
		-webkit-box-flex: 0;
		    -ms-flex: 0;
		        flex: 0;
		margin: 0px 0px 30px 0px;
	}
}

.partners {
	padding: 254px 0px 0px 0px;
}
@media (max-width: 820px) {
	.partners {
		padding: 180px 0px 0px 0px;
	}
}
@media (max-width: 480px) {
	.partners {
		padding: 120px 0px 0px 0px;
	}
}

.partners__row {
	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;
}

.partners__item {
	border: 2px solid #FFFFFF;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-size: 0;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 33.333%;
	        flex: 0 0 33.333%;
	margin: -1px;
	padding: 40px 15px;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
.partners__item img {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 110px;
	        flex: 0 0 110px;
	width: 110px;
	margin: 0px 45px 0px 0px;
}
@media (max-width: 1200px) {
	.partners__item img {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 80px;
		        flex: 0 0 80px;
		width: 80px;
		margin: 0px 25px 0px 0px;
	}
}
@media (max-width: 820px) {
	.partners__item img {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 60px;
		        flex: 0 0 60px;
		width: 60px;
		margin: 0px 15px 0px 0px;
	}
}
@media (max-width: 480px) {
	.partners__item img {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 40px;
		        flex: 0 0 40px;
		width: 40px;
	}
}
.partners__item p {
	font-weight: 500;
	font-size: 37px;
	color: #FFFFFF;
}
@media (max-width: 1200px) {
	.partners__item p {
		font-size: 25px;
	}
}
@media (max-width: 820px) {
	.partners__item p {
		font-size: 20px;
	}
}
@media (max-width: 480px) {
	.partners__item p {
		font-size: 16px;
	}
}
@media (max-width: 1200px) {
	.partners__item {
		padding: 30px 15px;
	}
}
@media (max-width: 700px) {
	.partners__item {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 50%;
		        flex: 0 0 50%;
	}
}
@media (max-width: 480px) {
	.partners__item {
		padding: 15px;
	}
}
@media (min-width: 1024px) {
	.partners__item:hover {
		-webkit-transition: all 0.3s ease 0s;
		-o-transition: all 0.3s ease 0s;
		transition: all 0.3s ease 0s;
		background: #C91DF4;
	}
}

.partners__btns {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-size: 0;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	margin: 45px 0px 0px 0px;
}
.partners__btns .btn {
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 183px;
	        flex: 0 0 183px;
	padding: 0px 30px 0px 60px;
	margin: 0px 20px 0px 0px;
	position: relative;
}
.partners__btns .btn::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 22px;
	-webkit-transform: translate(0, -50%);
	    -ms-transform: translate(0, -50%);
	        transform: translate(0, -50%);
	width: 28px;
	height: 28px;
}
.partners__btns .btn:last-child {
	margin: 0;
}
@media (max-width: 480px) {
	.partners__btns .btn {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 45px;
		        flex: 0 0 45px;
		margin: 0px 0px 20px 0px;
	}
}
@media (max-width: 480px) {
	.partners__btns {
		width: 200px;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
		position: relative;
		top: 0;
		left: 50%;
		-webkit-transform: translate(-50%, 0);
		    -ms-transform: translate(-50%, 0);
		        transform: translate(-50%, 0);
	}
}

.become {
	padding: 245px 0px 0px 0px;
}
@media (max-width: 820px) {
	.become {
		padding: 180px 0px 0px 0px;
	}
}
@media (max-width: 480px) {
	.become {
		padding: 120px 0px 0px 0px;
	}
}

.become__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: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
}
@media (max-width: 700px) {
	.become__row {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
	}
}

.become__left {
	-webkit-box-flex: 0;
	    -ms-flex: 0 1 720px;
	        flex: 0 1 720px;
	margin: 0px 30px 0px 0px;
}
@media (max-width: 700px) {
	.become__left {
		-webkit-box-flex: 0;
		    -ms-flex: 0;
		        flex: 0;
		margin: 0px 0px 40px 0px;
	}
}

.become__title {
	margin: 0px 0px 30px 0px;
}

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

.become__right {
	width: 200px;
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 200px;
	        flex: 0 0 200px;
	border: 1.62416px solid #FFFFFF;
	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;
}
@media (max-width: 820px) {
	.become__right {
		width: 150px;
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 150px;
		        flex: 0 0 150px;
	}
}
@media (max-width: 700px) {
	.become__right {
		width: 100%;
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		    -ms-flex-direction: row;
		        flex-direction: row;
		-webkit-box-flex: 0;
		    -ms-flex: 0;
		        flex: 0;
	}
}

.become__link {
	width: 100%;
	height: 200px;
	border-bottom: 1.62416px solid #FFFFFF;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-size: 0;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
.become__link img {
	width: 76px;
}
@media (max-width: 820px) {
	.become__link img {
		width: 60px;
	}
}
@media (max-width: 480px) {
	.become__link img {
		width: 50px;
	}
}
.become__link:last-child {
	border: 0;
}
@media (min-width: 1024px) {
	.become__link:hover {
		-webkit-transition: all 0.3s ease 0s;
		-o-transition: all 0.3s ease 0s;
		transition: all 0.3s ease 0s;
		background: #C91DF4;
	}
}
@media (max-width: 820px) {
	.become__link {
		height: 150px;
	}
}
@media (max-width: 700px) {
	.become__link {
		border-bottom: 0;
		border-right: 1.62416px solid #FFFFFF;
		height: calc(100px + 350 * ((100vw - 320px) / 1600));
	}
}

.become__btn {
	width: 270px;
}
@media (max-width: 480px) {
	.become__btn {
		width: 200px;
		position: relative;
		top: 0;
		left: 50%;
		-webkit-transform: translate(-50%, 0);
		    -ms-transform: translate(-50%, 0);
		        transform: translate(-50%, 0);
	}
}