/* ------------------------------------------------------------------------ */

* {
	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;
}

/* ---------------------------------------------------------------------------- */

:root {
	--font-family: "Helvetica Now Display", sans-serif;
	--second-family: "TT Firs Neue", sans-serif;
	--third-family: "Monocraft", sans-serif;
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: 120px;
}

body {
	font-family: var(--font-family);
	background: #070320;
}

.wrapper {
	overflow: hidden;
	position: relative;
}

.main {
	padding: 100px 0px 0px 0px;
}

section {
	margin: 0px 0px 80px 0px;
}

.container {
	max-width: 1360px;
	margin: 0 auto;
	padding: 0 40px;
}

.title {
	font-weight: 700;
	font-size: 72px;
	line-height: 118%;
	text-align: center;
	background: radial-gradient(100.00% 65.00% at 50.00% 50.00%, rgb(255, 255, 255) 30.000001192092896%, rgb(255, 255, 255) 100%);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.subtitle {
	font-weight: 400;
	font-size: 21px;
	line-height: 135%;
	letter-spacing: 0.02em;
	text-align: center;
	color: #b1accf;
}

.bg {
	position: absolute;
	top: 610px;
	bottom: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	min-width: 1920px;
}

.burger-menu {
	display: none;
}

/* --------------------------header--------------------- */

.header {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 10;

	background: #070320;
	border-bottom: 1px solid #211c3f;
	transition: all .3s ease;
}

.header-scroll {
	position: fixed;
}

.header--hide {
	opacity: 0;
	transform: translateY(-100%);
}

.header__container {}

.header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
	padding: 17px 0 22px 0;
}

.header__logo {
	display: flex;
	align-items: center;
	gap: 12px;
}

.header__logo-img {}

.header__logo-name {
	font-weight: 400;
	font-size: 18px;
	line-height: 100%;
	letter-spacing: 0.02em;
	color: #fff;
}

.header-dashboard .header__logo-name {
	font-weight: 400;
	font-size: 18px;
	line-height: 100%;
	letter-spacing: 0.02em;
	background: linear-gradient(90deg, #fff 0%, #dfabff 100%);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.header__list {
	max-width: 696px;
	width: 100%;
	padding: 10px 13px;

	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 15px;

	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.02);
}

.header-dashboard-overview .header__list {
	max-width: 531px;
}

.header__item {}

.header__item-link {
	display: flex;
	align-items: center;
	gap: 12px;

	font-weight: 400;
	font-size: 18px;
	line-height: 100%;
	letter-spacing: 0.02em;
	color: #fff;
}

.header__btn {
	display: flex;
	align-items: center;
	gap: 12px;

	font-weight: 500;
	font-size: 18px;
	line-height: 135%;
	letter-spacing: 0.02em;
	color: #fff;
	white-space: nowrap;

	background: #7000ff;
	padding: 11px 23.5px;
	border-radius: 4px;
}

.header__right {
	width: 100%;
	max-width: 905px;

	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}

.header-btn-settings {
	width: 216px;
	justify-content: center;
}

.header__link-settings {
	height: 24px;
}

/* ----------------------------secure-wallet--------------------- */

.page__secure-wallet {
	position: relative;
}

.page__secure-wallet::after {
	content: '';

	position: absolute;
	top: 480px;
	left: -250px;
	width: 500px;
	height: 500px;

	border-radius: 100%;
	background-color: #120d2e;
	filter: blur(120px);
	pointer-events: none;
}

.page__secure-wallet::before {
	content: '';

	position: absolute;
	top: 236px;
	right: -250px;
	width: 500px;
	height: 500px;

	border-radius: 100%;
	background-color: #120d2e;
	filter: blur(120px);
	pointer-events: none;
}

.secure-wallet__bg {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	max-width: 100%;
	z-index: -1;
}

.secure-wallet__container {}

.secure-wallet__inner {
	padding: 80px 0px 0px 0px;

	display: flex;
	flex-direction: column;
	gap: 80px;
}

.secure-wallet__head {
	max-width: 608px;
	margin: 0 auto;
	text-align: center;
}

.secure-wallet__title {
	margin: 0px 0px 12px 0px;
}

.secure-wallet__subtitle {
	margin: 0px 0px 50px 0px;
}

.secure-wallet__btn {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	margin: 0 auto;

	font-weight: 500;
	font-size: 18px;
	line-height: 135%;
	letter-spacing: 0.02em;
	color: #000;

	background: linear-gradient(90deg, #eae2ff 0%, #c6b1ff 100%);
	padding: 21px 24px;
	border-radius: 4px;
}

.secure-wallet__main {
	max-width: 896px;
	width: 100%;
	margin: 0 auto;
	padding: 0 119px;
	position: relative;
}

.secure-wallet__main-bg {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	object-fit: cover;
}

.secure-wallet__cards {
	position: relative;
}

.secure-wallet__card {
	background: #070320;
	border-radius: 9px;
	max-width: 358px;
	position: relative;
	z-index: -1;
}

.secure-wallet__card-elem {
	position: absolute;
}

.secure-wallet__card-elem-4 {
	right: -46px;
	top: -10px;
}

.secure-wallet__card-elem-5 {
	right: -254px;
	top: 5px;
}

.secure-wallet__card-elem-6 {
	right: 10px;
	top: -50px;
}

.secure-wallet__card-head {
	padding: 17px 14px 9px 14px;
	border-bottom: 0.7px solid #42365b;
}

.secure-wallet__card-logo {
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 0px 0px 18px 0px;
}

.secure-wallet__card-logo-img {
	max-width: 42px;
}

.secure-wallet__card-logo-name {
	font-weight: 400;
	font-size: 12px;
	line-height: 100%;
	letter-spacing: 0.02em;
	color: #fff;
}

.secure-wallet__card-warning {
	font-weight: 500;
	font-size: 12px;
	line-height: 100%;
	letter-spacing: 0.02em;
	text-align: center;
	color: #ff005c;
}

.secure-wallet__card-box {
	margin: 18px 14px;
	background: linear-gradient(180deg, #070320 0%, #171139 100%);
	border: 0.71px solid #42365b;
	border-radius: 9px;
}

.secure-wallet__card-box-name {
	padding: 18px 20px 0px 20px;

	font-weight: 500;
	font-size: 14px;
	line-height: 100%;
	letter-spacing: 0.02em;
	color: #f3eeff;
}

.secure-wallet__card-box-list {
	padding: 18px 20px 26px 20px;

	display: flex;
	align-items: start;
	gap: 20px 52px;
	flex-wrap: wrap;
}

.secure-wallet__card-box-item {}

.secure-wallet__card-box-item-text {
	font-weight: 400;
	font-size: 11px;
	line-height: 100%;
	letter-spacing: 0.02em;
	color: #8f8bad;

	display: flex;
	align-items: center;
	gap: 10px;
	margin: 0px 0px 8px 0px;
}

.secure-wallet__card-box-item-name {
	display: flex;
	align-items: center;
	gap: 8px;

	font-weight: 400;
	font-size: 12px;
	line-height: 100%;
	letter-spacing: 0.02em;
	text-align: center;
	color: #f3eeff;
}

.secure-wallet__card-box-warn {
	padding: 12px 25px 12px 22px;
	background: #5226ff;
	position: relative;
}

.secure-wallet__card-box-warn::after {
	content: '';

	position: absolute;
	top: -9px;
	left: 60px;
	width: 15px;
	height: 10px;

	background-image: url("../img/secure-wallet/Polygon.svg");
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}

.secure-wallet__card-box-warn-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	margin: 0px 0px 4px 0px;
}

.secure-wallet__card-box-warn-left {
	display: flex;
	align-items: center;
	gap: 8px;
}

.secure-wallet__card-box-warn-text {
	font-weight: 500;
	font-size: 12px;
	line-height: 100%;
	letter-spacing: 0.02em;
	color: #fff;
}

.secure-wallet__card-box-warn-right {}

.secure-wallet__card-box-warn-desc {
	font-weight: 400;
	font-size: 12px;
	line-height: 100%;
	letter-spacing: 0.02em;
	color: rgba(255, 255, 255, 0.8);
}

.secure-wallet__card-box-desc {
	max-width: 264px;
	padding: 18px 22px;

	font-weight: 400;
	font-size: 12px;
	line-height: 135%;
	letter-spacing: 0.02em;
	color: #f3eeff;
}

.secure-wallet__card-currency {
	padding: 0 14px 4px 14px;
}

.secure-wallet__card-currency-text {
	font-weight: 400;
	font-size: 12px;
	line-height: 120%;
	letter-spacing: 0.02em;
	color: #8f8bad;

	margin: 0px 0px 18px 0px;
}

.secure-wallet__card-currency__rows {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.secure-wallet__card-currency-row {
	padding: 13.5px 18px;
	border: 0.71px solid #211c3f;
	border-radius: 9px;

	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
}

.secure-wallet__card-currency-name {
	display: flex;
	align-items: center;
	gap: 8px;
}

.secure-wallet__card-currency-name-text {
	font-weight: 500;
	font-size: 12px;
	line-height: 135%;
	letter-spacing: 0.02em;
	color: #fff;
}

.secure-wallet__card-currency-value {
	font-weight: 500;
	font-size: 12px;
	line-height: 135%;
	letter-spacing: 0.02em;
	color: #fff500;
}

.secure-wallet__card-min {
	position: absolute;
	bottom: 132px;
	right: 0;
	width: 100%;
	max-width: 358px;
	z-index: 2;

	background: #070320;
	border-radius: 9px;
	padding: 8px 0 0px 0;
}

.secure-wallet__card-btns {
	padding: 17px 14px;
	margin: 13px 0px 0px 0px;
	border-top: 0.7px solid #42365b;

	display: flex;
	gap: 18px;
}

.secure-wallet__card-btn {
	width: 100%;

	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	border-radius: 3px;
	padding: 15px;
}

.secure-wallet__card-btn-reject {
	font-weight: 500;
	font-size: 12px;
	line-height: 135%;
	letter-spacing: 0.02em;
	color: #fff;
	background: #7000ff;
}

.secure-wallet__card-btn-continue {
	font-weight: 500;
	font-size: 12px;
	line-height: 135%;
	letter-spacing: 0.02em;
	color: #000;
	background: linear-gradient(90deg, #eae2ff 0%, #c6b1ff 100%);
}

.secure-wallet__transaction-cards {
	display: flex;
	gap: 40px;
}

.secure-wallet__transaction-card {
	width: 100%;
	border: 1px solid #211c3f;
	border-radius: 15px;
	background: #070320;
	position: relative;
	z-index: 1;
	overflow: hidden;
}

.secure-wallet__transaction-card-2 {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.secure-wallet__transaction-card-pic {
	position: absolute;
	top: 0;
	max-width: 451px;
	z-index: -1;
	background: #070320;
}

.secure-wallet__transaction-card-pic::after {
	content: '';

	position: absolute;
	top: 62%;
	transform: translateY(-50%);
	left: -80px;
	width: 329px;
	height: 313px;
	z-index: -2;

	border-radius: 100%;
	background-color: #2e0a10;
	filter: blur(50px);
}

.secure-wallet__transaction-card-pic-2.secure-wallet__transaction-card-pic::after {
	left: auto;
	right: -110px;
}

.secure-wallet__transaction-card-pos {
	mix-blend-mode: color-dodge;
}

.secure-wallet__transaction-card-pic-1 {
	left: 0;
}

.secure-wallet__transaction-card-pic-2 {
	right: 0;
}

.secure-wallet__transaction-card-head {
	padding: 53px 20px 40px 20px;
	max-width: 388px;
	margin: 0 auto;
}

.secure-wallet__transaction-card-title {
	font-weight: 500;
	font-size: 32px;
	line-height: 135%;
	letter-spacing: 0.01em;
	text-align: center;
	color: #f3eeff;
	font-family: var(--second-family);

	margin: 0px 0px 12px 0px;
}

.secure-wallet__transaction-card-desc {
	font-weight: 500;
	font-size: 18px;
	line-height: 135%;
	letter-spacing: 0.01em;
	text-align: center;
	color: #b1accf;
}

.secure-wallet__transaction-card-main {
	padding: 0 20px 20px 20px;
}

.secure-wallet__transaction-card-main .secure-wallet__card-currency-name-text {
	font-size: 14px;
}

.secure-wallet__transaction-card-main .secure-wallet__card-currency-value {
	font-size: 14px;
}

.secure-wallet__transaction-card-main .secure-wallet__card-btn-reject {
	font-size: 14px;
}

.secure-wallet__transaction-card-main .secure-wallet__card-min {
	position: unset;
	max-width: 395px;
	margin: -17px auto 0 auto;
	background: #070320;
	border: 1.08px solid #211c3f;
	border-radius: 9px;
	padding: 19px 0 0 0;
	transform: unset;
}

.secure-wallet__transaction-card-main-warning {
	font-weight: 500;
	font-size: 19px;
	line-height: 100%;
	letter-spacing: 0.02em;
	text-align: center;
	color: #ff005c;
	padding: 18px 22px;

	border: 1.08px solid #211c3f;
	border-radius: 13px;
	backdrop-filter: blur(27.106740951538086px);
	background: rgba(7, 3, 32, 0.53);

	max-width: 287px;
	margin: 0 auto;

	position: relative;
}

.secure-wallet__transaction-card-main-warning::after {
	content: 'High Risk Transaction';

	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;

	filter: blur(14px);
}

.secure-wallet__transaction-card-2 {}

.secure-wallet__transaction-card-2 .secure-wallet__transaction-card-main {
	padding: 0;
}

.secure-wallet__transaction-card-main-img {
	max-width: 100%;
	margin: -90px 0px 0px 0px;
}

.secure-wallet__malicious {
	border: 1px solid #211c3f;
	border-radius: 15px;
	overflow: hidden;
	background: #080421;
	padding: 60px 73px;
	position: relative;
	z-index: 1;
}

.secure-wallet__malicious-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: -1;
}

.secure-wallet__malicious-head {
	max-width: 650px;
	margin: 0px 0px 70px 0px;
	display: flex;
	align-items: center;
	gap: 25px;
}

.secure-wallet__malicious-head-img {}

.secure-wallet__malicious-head-text {
	font-weight: 500;
	font-size: 32px;
	line-height: 120%;
	color: #fff;
	font-family: var(--second-family);
}

.secure-wallet__malicious-head-text-sp {
	font-weight: 400;
}

.secure-wallet__malicious-cards {
	display: flex;
	flex-direction: column;
	gap: 50px;
}

.secure-wallet__malicious-card {
	max-width: 936px;
}

.secure-wallet__malicious-card-name {
	font-weight: 500;
	font-size: 32px;
	line-height: 120%;
	color: #fff;
	font-family: var(--second-family);

	max-width: 204px;
	margin: 0px 0px 18px 0px;
}

.secure-wallet__malicious-card-list {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}

.secure-wallet__malicious-card-item {
	font-weight: 400;
	font-size: 18px;
	color: #b1accf;
}

/* --------------------------page__dashboard----------------------- */

.page__dashboard {}

.dashboard__container {}

.dashboard__inner {}

.dashboard__title {
	margin: 0px 0px 50px 0px;
}

.dashboard__cards {
	display: flex;
	justify-content: space-between;
	gap: 20px;

	margin: 0px 0px 116px 0px;
}

.dashboard__card {
	border: 0.71px solid #211c3f;
	border-radius: 9px;
	padding: 15px 18px;
	background: #070320;

	font-weight: 500;
	font-size: 16px;
	line-height: 135%;
	letter-spacing: 0.02em;
	color: #979bff;
	text-align: center;

	position: relative;
}

.dashboard__card::after {
	content: '';

	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	width: 1px;
	height: 120px;

	border-right: 1px dashed #6459a7;
	z-index: -1;
}

.dashboard {}

.dashboard__image {
	max-width: 100%;
}

/* ------------------------safety-center----------------------- */

.page__safety-center {}

.safety-center__container {}

.safety-center__inner {}

.safety-center__head {
	max-width: 1014px;
	margin: 0px auto 80px auto;
}

.safety-center__title {
	margin: 0px 0px 12px 0px;
}

.safety-center__subtitle {
	font-weight: 400;
	font-size: 21px;
	line-height: 135%;
	letter-spacing: 0.02em;
	text-align: center;
	color: #b1accf;
}

.safety-center__cards {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(402px, 1fr));
	gap: 40px;
}

.safety-center__card {
	padding: 35px 30px;
	border: 1px solid #211c3f;
	border-radius: 15px;
	background: #070320;

	display: flex;
	flex-direction: column;
	align-items: start;
	gap: 50px;
}

.safety-center__card-content {
	display: flex;
	flex-direction: column;
	align-items: start;
	justify-content: space-between;
	gap: 50px;
	height: 100%;
}

.safety-center__img {
	padding: 20px 15px;
	border: 1.64px solid #1c2b3e;
	border-radius: 20px;
	background: #0b0820;

	position: relative;
}

.safety-center__img-text {
	position: absolute;
	top: 60px;
	right: 33px;
	z-index: 2;

	border: 0.79px solid #35113e;
	border-radius: 9px;
	padding: 11px;
	background: #8f00ff;

	font-weight: 500;
	font-size: 18px;
	color: #e2fcff;
	font-family: var(--third-family);
}

.safety-center__img-text::after {
	content: '';

	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;

	filter: blur(40.986610412597656px);
	background: #8f00ff;
}

.safety-center__image {
	width: 100%;
}

.safety-center__image-1 {
	mix-blend-mode: hard-light;
}

.safety-center__desc {
	max-width: 380px;

	display: flex;
	flex-direction: column;
	gap: 25px;
}

.safety-center__text {
	font-weight: 700;
	font-size: 20px;
	line-height: 145%;
	color: #fff;
}

.safety-center__desc-text {
	font-weight: 500;
	font-size: 20px;
	line-height: 145%;
	color: #b1accf;
}

.safety-center__link {
	display: inline-flex;
	align-items: center;
	gap: 12px;

	font-weight: 500;
	font-size: 18px;
	line-height: 135%;
	letter-spacing: 0.02em;
	color: #fff;

	padding: 20px 70px;
	border: 1px solid #211c3f;
	border-radius: 4px;
	background: #0f0b2b;
}

/* ---------------------faq---------------------- */

.page__faq {}

.faq__container {}

.faq__inner {}

.faq__title {
	margin: 0px 0px 50px 0px;
}

.faq__accordions {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.faq__accordion {
	border: 1px solid #282945;
	border-radius: 5px;
	background: #090423;
}

.faq__accordion-head {
	padding: 22px 41px 22px 20px;

	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	cursor: pointer;

	transition: all .2s ease;
}

.faq__accordion-head--active {
	border-bottom: 1px solid #282945;
	border-radius: 5px;
}

.faq__accordion-name {
	font-weight: 500;
	font-size: 18px;
	line-height: 130%;
	color: #fff;
}

.faq__accordion-icon {
	transition: all .2s ease;
}

.faq__accordion-head--active .faq__accordion-icon {
	transform: rotate(90deg);
}

.faq__accordion-icon-line {
	transition: all .2s ease;
}

.faq__accordion-head--active .faq__accordion-icon-line {
	opacity: 0;
}

.faq__accordion-content {
	max-height: 0;
	overflow: hidden;
	transition: all .2s ease;
}

.faq__accordion-content-text {
	font-weight: 400;
	font-size: 18px;
	line-height: 140%;
	letter-spacing: 0.01em;
	color: #b1accf;

	max-width: 1160px;
	padding: 16px 20px 40px 20px;
}

/* ---------------------------footer----------------------- */

.footer {
	padding: 20px 0 100px 0;
}

.footer__container {}

.footer__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
	flex-wrap: wrap;
}

.footer__logo {
	display: flex;
	align-items: center;
	gap: 12px;
}

.footer__img {}

.footer__logo-name {
	font-weight: 400;
	font-size: 18px;
	line-height: 100%;
	letter-spacing: 0.02em;
	color: #fff;

	background: linear-gradient(90deg, #fff 0%, #dfabff 100%);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.social {
	display: flex;
	align-items: center;
	gap: 50px;
}

.social__item {}

.social__item-link {}

.footer__links {
	display: flex;
	align-items: center;
	gap: 50px;
}

.footer__link {
	font-weight: 400;
	font-size: 18px;
	line-height: 100%;
	letter-spacing: 0.02em;
	color: #b1accf;
}

/* --------------------------------------- */

.burger-btn {
	display: none;
}

/* -------------------------------------- */

@media(max-width:1180px) {

	.header .header__list,
	.header .header__btn {
		display: none;
	}

	.burger-btn {
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		width: 30px;
		height: 20px;
	}

	.burger-btn-line {
		width: 100%;
		height: 2px;
		background-color: #fff;
		transition: all .3s ease;
	}

	.burger-btn--active .b1 {
		transform: translate(0, 9px) rotate(45deg);
	}

	.burger-btn--active .b2 {
		opacity: 0;
	}

	.burger-btn--active .b3 {
		transform: translate(0, -8.5px) rotate(-45deg);
	}

	.header__inner {
		padding: 15px 0;
	}

	.header__logo-img {
		max-width: 50px;
	}

	.main {
		padding: 80px 0px 0px 0px;
	}

	.title {
		font-size: 54px;
	}

	.subtitle {
		font-size: 18px;
	}

	.burger-menu {
		display: block;
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		z-index: 5;

		background: #05021c;
		padding: 120px 20px 20px 20px;

		transform: translateY(-100%);
		transition: all .3s ease;
	}

	.burger-menu--visible {
		transform: translateY(0%);
	}

	.header__list {
		flex-direction: column;
		max-width: unset;
		margin: 0px 0px 40px 0px;
		padding: 0;
		gap: 0px;
	}

	.header__btn {
		width: 100%;
		justify-content: center;
	}

	.header__item {
		width: 100%;
	}

	.header__item-link {
		width: 100%;
		padding: 20px;
	}

	.header__item:not(:last-child) {
		border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	}

	.header__right {
		width: unset;
	}






	.secure-wallet__subtitle {
		margin: 0px 0px 30px 0px;
	}


	.secure-wallet__transaction-cards {
		gap: 20px;
	}






	.safety-center__head {
		margin: 0px 0px 40px 0px;
	}

	.safety-center__cards {
		gap: 20px;
	}

}

@media(max-width:920px) {
	.secure-wallet__transaction-cards {
		flex-direction: column;
	}

	.secure-wallet__transaction-card-main-img {
		width: 100%;
	}

	.safety-center__cards {
		display: flex;
		flex-direction: column;
	}

	.safety-center__card {
		justify-content: center;
		align-items: center;
		text-align: center;
		gap: 20px;
		padding: 25px;
	}

	.safety-center__card-content {
		gap: 20px;
	}

	.safety-center__desc {
		gap: 15px;
	}

	.safety-center__link {
		margin: 0 auto;
	}

	.secure-wallet__card-elem-5 {
		display: none;
	}
}

@media(max-width:768px) {
	.container {
		padding: 0 20px;
	}

	.burger-btn {
		width: 25px;
		height: 14px;
	}

	.header__logo-img {
		max-width: 40px;
	}

	.title {
		font-size: 38px;
	}

	.main {
		padding: 70px 0px 0px 0px;
	}

	section {
		margin: 0px 0px 40px 0px;
	}

	.burger-menu {
		padding: 100px 20px 20px 20px;
	}

	.bg {
		min-width: 1920px;
	}

	.burger-btn--active .b1 {
		transform: translate(0, 6px) rotate(45deg);
	}

	.burger-btn--active .b3 {
		transform: translate(0, -5.5px) rotate(-45deg);
	}

	/* -----------secure-wallet----------- */


	.secure-wallet__subtitle {
		margin: 0px 0px 20px 0px;
	}

	.subtitle {
		font-size: 16px;
	}

	.secure-wallet__inner {
		gap: 40px;
	}

	.secure-wallet__btn {
		padding: 16px;
		gap: 8px;
		font-size: 16px;
	}

	.secure-wallet__main {
		padding: 0 0px;
	}

	.secure-wallet__card:first-child {
		opacity: .5;
	}

	.secure-wallet__card-min {
		bottom: 50%;
		transform: translateY(50%);
	}

	.secure-wallet__card-btns {
		gap: 10px;
	}

	.secure-wallet__transaction-card-head {
		padding: 20px;
	}

	.secure-wallet__transaction-card-title {
		font-size: 24px;
	}

	.secure-wallet__transaction-card-desc {
		font-size: 16px;
	}

	.secure-wallet__transaction-card-main-warning {
		max-width: 230px;
		font-size: 16px;
	}

	.secure-wallet__transaction-card-pic {
		top: -20%;
	}

	.secure-wallet__malicious {
		padding: 40px;
	}

	.secure-wallet__malicious-head-text,
	.secure-wallet__malicious-card-name {
		font-size: 24px;
	}

	.secure-wallet__malicious-card-item {
		font-size: 16px;
	}

	.secure-wallet__malicious-head {
		margin: 0px 0px 30px 0px;
	}

	.secure-wallet__malicious-cards {
		gap: 20px;
	}

	/* -----------dashboard---------*/

	.dashboard__card::after {
		display: none;
	}

	.dashboard__cards {
		display: grid;
		grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
		gap: 10px;
		margin: 0px 0px 30px 0px;
	}

	/* ------------safety-center------------- */

	.safety-center__card {
		padding: 15px;
	}

	.safety-center__img {
		border-radius: 12px;
	}

	.safety-center__text,
	.safety-center__desc-text {
		font-size: 16px;
	}

	.safety-center__link {
		font-size: 16px;
		padding: 16px;
		width: 100%;
		justify-content: center;
	}

	/* ------------faq--------- */

	.faq__title {
		margin: 0px 0px 30px 0px;
	}

	.faq__accordion-head {
		padding: 20px 30px 20px 20px;
	}

	.faq__accordion-name {
		font-size: 16px;
	}

	.faq__accordion-content-text {
		font-size: 16px;
		padding: 16px 20px 30px 20px;
	}

	/* -----------footer--------- */

	.footer__inner {
		flex-direction: column;
		gap: 40px;
	}

	.footer__links {
		flex-direction: column;
		gap: 20px;
	}

	.footer {
		padding: 20px 0 40px 0;
	}

}

@media(max-width:500px) {
	.secure-wallet__transaction-card-pic {
		display: none;
	}

	.secure-wallet__malicious-head-text,
	.secure-wallet__malicious-card-name {
		font-size: 20px;
	}

	.secure-wallet__malicious-card-item {
		font-size: 14px;
	}

	.secure-wallet__malicious {
		padding: 20px;
	}

	.secure-wallet__malicious-head {
		flex-wrap: wrap;
		gap: 10px;
	}
}