/* ------------------------------------------------------------------------ */

* {
	padding: 0;
	margin: 0;
	border: 0;
}

*,
*:before,
*:after {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

:focus,
:active {
	outline: none;
}

a:focus,
a:active {
	outline: none;
}

nav,
footer,
header,
aside {
	display: block;
}

html,
body {
	height: 100%;
	width: 100%;
	font-size: 100%;
	line-height: 1;
	font-size: 14px;
	-ms-text-size-adjust: 100%;
	-moz-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
}

input,
button,
textarea {
	font-family: inherit;
}

input::-ms-clear {
	display: none;
}

button {
	cursor: pointer;
	background-color: transparent;
}

button::-moz-focus-inner {
	padding: 0;
	border: 0;
}

a {
	color: inherit;
}

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-size: inherit;
	font-weight: 400;
}

svg {
	display: block;
}

/* ---------------------------------------------------------------------------- */

:root {
	--font-family: "SF Pro Display", sans-serif;
	--second-family: "Inter", sans-serif;
	--font3: "Satoshi", sans-serif;
}

body {
	font-family: var(--font-family);
	background: #171717;
	line-height: normal;
	color: #fff;
}

.container {
	max-width: 1360px;
	margin: 0 auto;
	padding: 0 40px;
}

.title {
	font-family: var(--font-family);
	font-weight: 700;
	font-size: 64px;
	line-height: 120%;
	letter-spacing: 0.01em;
	text-align: center;
	color: #fff;
}

/* -------------------------header------------------------- */

.header {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 2;
	padding: 61px 0px;
	background: #171717;

	transition: all .3s ease;
}

.header--hide {
	opacity: 0;
	transform: translateY(-100%);
}

.header-scroll {
	position: fixed;
}

.header__container {}

.header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
}

.header__logo {}

.header__logo-img {}

.header__list {
	display: flex;
	align-items: center;
	gap: 35px;
	max-width: 397px;
	width: 100%;

	border: 1px solid #313030;
	border-radius: 125px;
	padding: 24px 49px;
	background: #262525;
	margin: 0px 0px 0px 146px;
}

.header__item {}

.header__item-link {
	font-family: var(--third-family);
	font-weight: 400;
	font-size: 18px;
	line-height: 160%;
	letter-spacing: 0.07em;
	text-align: center;
	color: #838383;

	transition: all .2s ease;
}

.header__item-link:active {
	color: #fff;
}

@media(hover:hover) {
	.header__item-link:hover {
		color: #fff;
	}
}

.header__item-link--active {
	color: #fff;
}

.header__btn {
	display: block;
	position: relative;
	z-index: 1;
	padding: 25px 60px;
	border-radius: 125px;

	font-family: var(--third-family);
	font-weight: 400;
	font-size: 18px;
	line-height: 160%;
	letter-spacing: 0.07em;
	color: #fff;
}

.header__btn::after {
	content: '';

	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;

	z-index: -1;
	background: linear-gradient(90deg, #5e00ff 0%, #a9a9a9 100%);
	border-radius: 125px;
	transition: all .4s ease-in-out;
}

.header__btn::before {
	content: '';

	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;

	z-index: -1;
	background: linear-gradient(91deg, #b5b5b5 0%, #50f 100%);
	border-radius: 125px;
	transition: all .4s ease-in-out;
	opacity: 0;
}

.header__btn:active::after {
	opacity: 0;
}

.header__btn:active::before {
	opacity: 1;
}

@media(hover:hover) {
	.header__btn:hover::after {
		opacity: 0;
	}

	.header__btn:hover::before {
		opacity: 1;
	}
}

.burder-btn {
	width: 30px;
	height: 20px;

	display: none;
	flex-direction: column;
	justify-content: space-between;
}

.burder-btn-line {
	height: 2px;
	width: 100%;
	background-color: #fff;
	transition: all .3s ease;
}

.burger-btn--active .b1 {
	transform: translate(0px, 9px) rotate(45deg);
}

.burger-btn--active .b2 {
	opacity: 0;
}

.burger-btn--active .b3 {
	transform: translate(0px, -9px) rotate(-45deg);
}



.burger-menu {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	height: calc(100% - 80px);
	z-index: 20;
	background: #171717;

	transition: all .3s ease;
	transform: translateX(-100%);
}

.burger-menu--visible {
	transform: translateX(0%);
}

.burger-menu__window {}

/* -------------------------preview------------------------- */

.page__preview {
	position: relative;
	z-index: 1;

	border-bottom: 1px solid #2a2727;
	border-radius: 0 0 237px 237px;
	padding: 237px 0;
	margin: 0px 0px 100px 0px;
	overflow: hidden;
}

.page__preview::after {
	content: '';

	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 125%;
	height: 620px;

	filter: blur(9.368470191955566px);
	background: radial-gradient(107.13% 130% at 50% 10%, rgba(26, 25, 25, 0) 37.41%, #5d00fe 69.27%, #ac7cff 100%);
}

.preview__container {}

.preview__inner {
	position: relative;
	z-index: 1;
}

.preview-elem {
	position: absolute;
	z-index: -1;
}

.preview-elem-1 {
	left: 144px;
	top: 73px;
}

.preview-elem-2 {
	bottom: 123px;
	left: -14px;
}

.preview-elem-3 {
	top: 73px;
	right: 128px;
}

.preview-elem-4 {
	bottom: 123px;
	right: -14px;
}

.preview__head {
	max-width: 700px;
	margin: 0 auto 36px auto;

	display: flex;
	flex-direction: column;
	gap: 25px;
}

.preview__title {}

.preview__subtitle {
	font-family: var(--third-family);
	font-weight: 400;
	font-size: 18px;
	line-height: 160%;
	letter-spacing: 0.07em;
	text-align: center;
	color: #7c7c7c;
}

.preview__btn {
	display: flex;
	align-items: center;
	justify-content: center;
}

.preview__button {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;

	padding: 25px;
	max-width: 319px;
	width: 100%;
	background: #5e00ff;
	border-radius: 25px;

	font-family: var(--third-family);
	font-weight: 400;
	font-size: 18px;
	line-height: 160%;
	letter-spacing: 0.07em;
	color: #fff;

	transition: all .2s ease;
}

.preview__button:active {
	background: #4300b8;
}

@media(hover:hover) {
	.preview__button:hover {
		background: #4300b8;
	}
}

/* -------------------------tools------------------------- */

.page__tools {
	margin: 0px 0px 30px 0px;
}

.tools__container {}

.tools__inner {}

.tools__head {
	margin: 0px 0px 60px 0px;
}

.tools__title {
	margin: 0px 0px 25px 0px;
}

.tools__subtitle {
	font-family: var(--font-family);
	font-weight: 400;
	font-size: 24px;
	line-height: 160%;
	letter-spacing: 0.01em;
	text-align: center;
	color: #7c7c7c;
}

.tools__cards {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
	gap: 74px 96px;
}

.tools__card {
	border: 1px solid #252323;
	border-radius: 15px;
	padding: 47px;
	background: #1a1919;
}

.tools__card-img {
	display: flex;
	align-items: center;
	justify-content: center;

	margin: 0px 0px 50px 0px;
}

.tools__card-image {
	max-width: 100%;
}

.tools__card-list {
	display: flex;
	flex-direction: column;
	gap: 25px;
}

.tools__card-name {
	font-weight: 500;
	font-size: 24px;
	line-height: 125%;
	letter-spacing: 0.01em;
	color: #fff;
}

.tools__card-desc {
	font-weight: 400;
	font-size: 18px;
	line-height: 145%;
	letter-spacing: 0.01em;
	color: rgba(124, 124, 124, 0.5);
}

/* -------------------------airdrop------------------------- */

.page__airdrop {
	margin: 0px 0px 100px 0px;
}

.airdrop__container {}

.airdrop__inner {}

.airdrop__head {
	max-width: 797px;
	margin: 0 auto 50px auto;
}

.airdrop__title {
	margin: 0px 0px 25px 0px;
}

.airdrop__subtitle {
	font-weight: 400;
	font-size: 24px;
	line-height: 160%;
	letter-spacing: 0.01em;
	text-align: center;
	color: #7c7c7c;
}

.airdrop__cards {
	display: flex;
	flex-direction: column;
	gap: 50px;
}

.airdrop__card {
	border: 1px solid #252323;
	border-radius: 15px;
	background: #1a1919;
	overflow: hidden;

	display: flex;
	justify-content: space-between;
	gap: 40px;
}

.airdrop__card-1 {
	padding: 49px 75px 0 49px;
	align-items: end;
}

.airdrop__card-content {
	max-width: 750px;
	width: 100%;
}

.airdrop__card-1 .airdrop__card-content {
	padding: 0px 0px 46px 0px;
}

.airdrop__card-2 .airdrop__card-content {
	padding: 50px 0px 0px 0px;
}

.airdrop__card-title {
	font-weight: 500;
	font-size: 32px;
	line-height: 120%;
	letter-spacing: 0.024em;
	color: #fff;

	margin: 0px 0px 25px 0px;
}

.airdrop__card-list {
	display: flex;
	flex-direction: column;
	gap: 25px;
}

.airdrop__card-item {
	position: relative;
	padding: 0px 0px 0px 36px;

	font-weight: 400;
	font-size: 24px;
	line-height: 160%;
	letter-spacing: 0.01em;
	color: #7c7c7c;
}

.airdrop__card-item::after {
	content: '';

	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 0;
	width: 24px;
	height: 24px;

	background-image: url("../img/airdrop/icon.svg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

.airdrop__card-img {
	max-width: 336px;
	width: 100%;

	box-shadow: 25px 125px 250px 0 rgba(255, 110, 134, 0.25);
	background: #171717;
	overflow: hidden;
}

.airdrop__card-img-1 {
	border-radius: 8px 8px 0 0;
}

.airdrop__card-image {
	width: 100%;
}

.airdrop__card-2 {
	padding: 0 75px 35px 49px;
}

.airdrop__card-img-2 {
	box-shadow: 0 4px 267px 0 rgba(255, 115, 122, 0.25);
	border-radius: 0 0 12px 12px;
}

/* -------------------------axiom------------------------- */

.page__axiom {
	margin: 0px 0px 100px 0px;
}

.axiom__container {}

.axiom__inner {}

.axiom__head {
	max-width: 780px;
	margin: 0 auto 50px auto;
}

.axiom__title {
	margin: 0px 0px 25px 0px;
}

.axiom__subtitle {
	font-weight: 400;
	font-size: 24px;
	line-height: 160%;
	letter-spacing: 0.01em;
	text-align: center;
	color: #7c7c7c;
}

.axiom__cards {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 20px 128px;
	margin: 0px 0px 100px 0px;
}

.axiom__card {
	flex: 1 1 400px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;

	border-radius: 15px;
	padding: 34px;
}

.axiom__card-1 {
	border: 1px solid #5e00ff;
	background: rgba(94, 0, 255, 0.15);
}

.axiom__card-name {
	font-weight: 500;
	font-size: 24px;
	line-height: 120%;
	letter-spacing: 0.01em;
	color: #fff;
}

.axiom__card-link {
	font-weight: 500;
	font-size: 24px;
	line-height: 120%;
	letter-spacing: 0.03em;
	color: #5e00ff;

	border: 1px solid #252323;
	border-radius: 15px;
	padding: 15px;
	background: rgba(94, 0, 255, 0.15);

	transition: all .2s ease;
}

.axiom__card-link:active {
	background: rgba(94, 0, 255, 0.5);
}

@media(hover:hover) {
	.axiom__card-link:hover {
		color: #6d1ef7;
		background: rgba(94, 0, 255, 0.5);
	}
}

.axiom__card-2 {
	border: 1px solid #252323;
	background: #1a1919;
	padding: 34px 27.5px;
}

.axiom__card-2 .axiom__card-name {
	filter: blur(4px);
	user-select: none;
}

.axiom__card-soon {
	font-weight: 500;
	font-size: 24px;
	line-height: 120%;
	letter-spacing: 0.02em;
	color: #fff;

	border: 1px solid #252323;
	border-radius: 15px;
	padding: 15px;
	background: #201e1e;
}

.axiom-banners {
	border: 1px solid #252323;
	border-radius: 15px;
	background: #701dff;
	position: relative;
	z-index: 1;
	overflow: hidden;

	padding: 95px 124px;
}

.axiom-banners::after {
	content: '';

	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 2160px;
	height: 1080px;
	background: radial-gradient(50% 50% at 50% 50%, #7b02e3 0%, #040337 100%);
	pointer-events: none;

	z-index: -2;
}

.axiom-banners__content {
	max-width: 434px;
	width: 100%;

	display: flex;
	flex-direction: column;
	gap: 25px;
	align-items: start;
}

.axiom-banners__title {
	font-weight: 700;
	font-size: 52px;
	line-height: 120%;
	letter-spacing: 0.01em;
	color: #fff;
}

.axiom-banners__subtitle {
	font-weight: 400;
	font-size: 18px;
	line-height: 160%;
	letter-spacing: 0.01em;
	color: #fff;
}

.axiom-banners__btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;

	padding: 25px;
	max-width: 272px;
	width: 100%;
	border-radius: 25px;
	background: #171717;

	font-weight: 500;
	font-size: 18px;
	line-height: 160%;
	letter-spacing: 0.01em;
	color: #fff;

	transition: all .2s ease;
}

.axiom-banners__btn:active {
	background: #5e00ff;
}

@media(hover:hover) {
	.axiom-banners__btn:hover {
		background: #5e00ff;
	}
}

.axiom-banners__img {
	position: absolute;
	bottom: 0;
	right: 0;
	max-width: 100%;
	z-index: 2;
	padding: 0px 0px 0px 400px;
	pointer-events: none;
}

.axiom-banners__img-2 {
	mix-blend-mode: plus-lighter;
	position: absolute;
	bottom: 0;
	right: 0;
	max-width: 100%;
	padding: 0px 0px 0px 500px;
	pointer-events: none;
}

/* -------------------------footer------------------------- */

.footer {}

.footer__container {}

.footer__inner {
	padding: 52px 0;
	border-top: 1px solid #323232;

	display: flex;
	align-items: center;
	justify-content: center;
}

.footer__logo {}

.footer__logo-img {}

/* -------------------------media------------------------- */

@media(max-width:1040px) {

	.header .header__list,
	.header .header__btn {
		display: none;
	}

	.header {
		padding: 40px 0px;
	}

	.burder-btn {
		display: flex;
	}

	.page__preview {
		padding: 160px 0;
	}

	.preview-elem-1 {
		left: 40px;
		top: -50px;
	}

	.preview-elem-3 {
		top: -41px;
		right: 0px;
	}

	.page__preview {
		border-radius: 0 0 100px 100px;
	}

	.preview-elem-4 {
		bottom: 4px;
	}

	.preview-elem-2 {
		bottom: -60px;
	}






	.tools__cards {
		gap: 20px;
	}






	.airdrop__card-1 {
		padding: 25px 25px 0 25px;
	}

	.airdrop__card-2 {
		padding: 0 25px 25px 25px;
	}

	.airdrop__card-2 .airdrop__card-content {
		padding: 25px 0px 0px 0px;
	}

	.airdrop__card-img {
		max-width: 250px;
	}

	.airdrop__cards {
		gap: 25px;
	}




	.burger-menu__window {
		padding: 60px 20px 40px 20px;

		display: flex;
		flex-direction: column;
		justify-content: space-between;
		gap: 20px;
		height: 100%;
		overflow: auto;
	}

	.header__list {
		margin: 0;
		flex-direction: column;
		align-items: center;
		background-color: unset;
		padding: 0;
		border: none;
		border-radius: 0;
		max-width: unset;
		gap: 20px;
	}

	.header__item-link {
		font-size: 24px;
	}

	.header__btn {
		text-align: center;
		padding: 20px;
	}
}

@media(max-width:768px) {
	.title {
		font-size: 40px;
	}

	.preview-elem-1,
	.preview-elem-3 {
		top: -70px;
	}

	.preview__head {
		gap: 16px;
		max-width: unset;
		margin: 0px 0px 25px 0px;
	}

	.preview__subtitle {
		font-size: 16px;
	}

	.page__preview::after {
		height: 400px;
	}

	.preview-elem {
		max-width: 50px;
	}

	.page__preview {
		margin: 0px 0px 60px 0px;
	}

	.container {
		padding: 0 20px;
	}




	.tools__head {
		margin: 0px 0px 30px 0px;
	}

	.tools__subtitle {
		font-size: 20px;
	}

	.tools__title {
		margin: 0px 0px 15px 0px;
	}

	.tools__card-list {
		gap: 10px;
		text-align: center;
	}

	.tools__card {
		padding: 25px;
	}

	.tools__card-img {
		margin: 0px 0px 25px 0px;
	}

	.tools__cards {
		display: flex;
		flex-direction: column;
	}









	.airdrop__subtitle {
		font-size: 20px;
	}

	.airdrop__title {
		margin: 0px 0px 15px 0px;
	}

	.airdrop__head {
		margin: 0px 0px 30px 0px;
	}

	.airdrop__card-img {
		display: none;
	}

	.airdrop__card-item {
		font-size: 20px;
	}

	.airdrop__card-list {
		gap: 16px;
	}

	.airdrop__card-title {
		font-size: 24px;
	}

	.page__airdrop {
		margin: 0px 0px 60px 0px;
	}





	.axiom__title {
		margin: 0px 0px 15px 0px;
	}

	.axiom__subtitle {
		font-size: 20px;
	}

	.axiom__head {
		margin: 0px 0px 30px 0px;
	}

	.axiom__card {
		padding: 24px;
	}

	.axiom__cards {
		margin: 0px 0px 40px 0px;
	}

	.axiom__card-link,
	.axiom__card-soon {
		font-size: 20px;
	}





	.axiom-banners {
		padding: 60px 40px;
	}

	.axiom-banners__title {
		font-size: 34px;
	}

	.axiom-banners__subtitle {
		font-size: 16px;
	}

	.axiom-banners__btn {
		padding: 20px;
	}

	.page__axiom {
		margin: 0px 0px 50px 0px;
	}





	.footer__inner {
		padding: 40px 0;
	}

}

@media(max-width:640px) {

	.axiom-banners__img,
	.axiom-banners__img-2 {
		display: none;
	}

	.axiom-banners__btn {
		max-width: unset;
	}

	.axiom-banners {
		padding: 40px 24px;
	}

	.axiom-banners__content {
		max-width: unset;
	}

}

@media(max-width:520px) {
	.page__preview {
		padding: 160px 0 80px 0;
		border-radius: 0 0 40px 40px;
	}

	.preview__button {
		padding: 20px;
	}

	.page__preview::after {
		height: 300px;
	}

	.title {
		font-size: 32px;
	}

	.preview-elem-1 {
		left: -4px;
		top: -56px;
	}

	.axiom__card-link,
	.axiom__card-soon {
		font-size: 16px;
	}

	.preview-elem-4 {
		bottom: -40px;
	}
}