* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	font-family: 'Open Sans', sans-serif;
}
.container {
	max-width: 1120px;
	padding: 0 15px;
	margin: 0 auto;
}
body {
	background: #140230;
}
.header {
	padding: 35px 0;
	margin: 0 0 10px 0;
}
.header__wrapper {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 30px;
}

.header__logo {
	width: 215px;
	height: 50;
}
.header__logo img {
	width: 100%;
	height: 100%;
}

.header__buttons {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 10px;
}

.header__btn {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 15px;
	width: 160px;
	font-weight: 600;
	font-size: 16px;
	line-height: 100%;
	text-align: center;
	color: #fff;
	text-decoration: none;
	border-radius: 4px;
}

.header__btn:first-child {
	background: linear-gradient(180deg, #00ffe6 0%, #002bff 100%);
}
.header__btn:last-child {
	border: 1px solid #00ffe6;
}

.footer {
	background: #0c001d;
	padding: 30px 0;
}
.footer__text {
	color: #fff;
	font-weight: 400;
	font-size: 16px;
	line-height: 100%;
	text-align: center;
}

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

.promo__wrapper {
	padding: 30px;
	background: #3022f2;
	border-radius: 10px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
}

.promo__img {
	width: 250px;
	height: 250px;
}
.promo__img img {
	width: 100%;
	height: 100%;
	border-radius: 10px;
}
.promo__img .img-cov {
	margin: 0 !important;
}

.promo__text {
	color: #fff;
	max-width: 420px;
	font-weight: 600;
	font-size: 40px;
	line-height: 100%;
	text-align: right;
	margin: 0 0 20px 0;
}

.promo__btn {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 15px;
	width: 160px;
	font-weight: 600;
	font-size: 16px;
	line-height: 100%;
	text-align: center;
	color: #fff;
	text-decoration: none;
	border-radius: 4px;
	background: linear-gradient(180deg, #00ffe6 0%, #ff7700 100%);
	margin-left: auto;
}

.img-cov {
	width: 100%;
	max-width: 900px;
	margin: 30px auto !important;
}
.img-cov img {
	width: 100%;
	height: 100%;
	border-radius: 10px;
}

.content {
	padding: 0 0 50px 0;
}

.content h1 {
	color: #fff;
	font-weight: 600;
	font-size: 38px;
	line-height: 100%;
	text-align: center;
	margin: 0 0 25px 0;
}
.content h2,
.content strong {
	display: block;
	color: #fff;
	font-weight: 600;
	font-size: 32px;
	line-height: 100%;
	text-align: center;
	margin: 0 0 20px 0;
}
.content strong {
	text-align: left;
}
.pageMenu li a {
	color: #00ffe6;
}
.content h3 {
	color: #fff;
	font-weight: 600;
	font-size: 26px;
	line-height: 100%;
	text-align: left;
	margin: 0 0 20px 0;
}
.content p {
	color: #fff;
	font-weight: 400;
	font-size: 16px;
	line-height: 24px;
	margin: 0 0 15px 0;
	text-align: left;
}
.content ul,
.content ol {
	margin: 0 0 15px 0;
	padding: 0 0 0 20px;
}
.content ul ul {
	list-style: lower-roman;
}
.content ul li,
.content ol li {
	color: #fff;
	font-weight: 400;
	font-size: 16px;
	line-height: 24px;
	margin: 0 0 5px 0;
	text-align: left;
}
.table {
	width: 100%;
	overflow-x: auto;
	margin: 30px auto;
}
.table table {
	width: 100%;
	border-collapse: collapse;
}
.table table td {
	padding: 10px 15px;
	color: #fff;
	width: max-content;
	border: 1px solid #fff;
}

@media (max-width: 768px) {
	.header__wrapper {
		flex-direction: column;
	}
	.promo__wrapper {
		flex-direction: column;
	}
	.promo__text {
		font-size: 30px;
		max-width: 260px;
		text-align: center;
	}
	.promo__btn {
		margin: 0 auto;
	}
	.content h1 {
		font-size: 30px;
		margin: 0 0 20px 0;
	}
	.content h2 {
		font-size: 24px;
		margin: 0 0 15px 0;
	}
	.content h3 {
		font-size: 18px;
		margin: 0 0 15px 0;
	}
}
.footer-menu {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap:15px;
	list-style: none;
	margin-bottom: 20px;
}
.footer-menu a {
	color:#fff;
	text-decoration: none;
}