* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	font-family: 'Roboto', sans-serif;
}
body {
	padding: 0 0 30px 0;
	background: #0e162f;
}

.container {
	max-width: 1230px;
	margin: 0 auto;
	padding: 0 15px;
}

.header {
	padding: 10px 0;
	background: #001571;
}
.header__burger {
	display: none;
}
.header__wrapper {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 15px;
}

.header__list {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
	list-style: none;
}
.header__list a {
	text-decoration: none;
	font-weight: 600;
	font-size: 18px;
	line-height: 18px;
	color: #91b7ae;
}

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

.header__btn {
	padding: 9px 16px;
	font-weight: 700;
	font-size: 14px;
	line-height: 18px;
	background: #f600ff;
	color: #131713;
	text-decoration: none;
	border-radius: 2px;
}
.header__btn:first-child {
	border: 1px solid #f600ff;
	background: none;
	color: white;
}

/* footer */

.footer__block {
	border-top: 1px solid #ffffff1a;
	padding: 16px 25px;
	background: #000516;
}
.footer__block:last-child {
	padding: 30px;
	border-radius: 0 0 4px 4px;
}
.footer__block h3 {
	font-weight: 700;
	font-size: 17px;
	line-height: 18px;
	color: #f8faf9;
	margin: 0 0 16px 0;
}

.footer__payments {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 30px;
}

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

.footer__images {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 20px;
}

.footer__descr {
	font-weight: 400;
	font-size: 13px;
	line-height: 18px;
	color: #f8faf9;
}

.footer__info {
	font-weight: 400;
	font-size: 17px;
	line-height: 18px;
	text-align: center;
	color: #f8faf9;
}

/* promo */
.promo {
	margin: 10px 0;
}
.promo__block {
	border-radius: 5px;
	padding: 90px 20px;
	background: url('/images/web-bg.png') center center / cover no-repeat;
}
.promo__title {
	font-weight: 700;
	font-size: 45px;
	line-height: 54px;
	color: #ffffff;
	margin: 0 0 10px 0;
}
.promo p {
	color: #fff;
	font-weight: 400;
	font-size: 26px;
	line-height: 18px;
	margin: 0 0 20px 0;
}
.promo__btn {
	padding: 9px 16px;
	font-weight: 700;
	font-size: 14px;
	line-height: 18px;
	background: #f600ff;
	color: #131713;
	text-decoration: none;
	border-radius: 2px;
}

/* content */

.content__block {
	padding: 35px 25px;
	background: #02001f;
	color: #fff;
}
.content__block h1 {
	font-weight: 700;
	font-size: 45px;
	line-height: 54px;
	color: #ffffff;
	padding: 0 0 20px 0;
	margin: 0 0 20px 0;
	border-bottom: 1px solid #ffffff1a;
}
.content__block h2 {
	font-weight: 700;
	font-size: 29px;
	line-height: 58px;
	padding: 0 0 20px 0;
	margin: 0 0 20px 0;
	border-bottom: 1px solid #ffffff1a;
}
.content__block h3 {
	font-weight: 700;
	font-size: 23px;
	line-height: 36px;
	padding: 0 0 15px 0;
	border-bottom: 1px solid #ffffff1a;
	margin: 0 0 20px 0;
}
.content__block p {
	font-weight: 400;
	font-size: 17px;
	line-height: 27px;
	margin: 0 0 20px 0;
}
.content__block ul,
.content__block ol {
	padding: 0 0 0 20px;
	margin: 20px 0;
}
.content__block ul li,
.content__block ol li {
	margin: 0 0 5px 0;
}
.content__block ul {
	list-style: disc;
}
.content__block ol {
	list-style: auto;
}

.table {
	width: 100%;
	overflow-x: auto;
	margin: 15px 0;
}
.table table {
	width: 100%;
	border-collapse: collapse;
}
.table table thead {
	background: #0e102f;
}
.table table td,
.table table th {
	width: max-content;
	padding: 10px 15px;
	border: 2px solid #ffffff;
}
.img-cov {
	width: 100%;
	height: 100%;
	margin: 15px 0;
}
.img-cov img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.menu__info {
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 20px;
}
.menuPage {
	min-width: 400px;
	padding: 20px 10px;
	background: #0e102f;
	border-radius: 4px;
	border: 1px solid #333333;
}
.menuPage ul li a {
	color: #f600ff;
	text-decoration: none;
}

@media (max-width: 768px) {
	/* header */
	.header {
		position: relative;
		padding: 16px 0;
	}
	.header__wrapper {
		flex-direction: column;
		justify-content: center;
		gap: 10px;
	}
	.header__nav {
		display: none;
	}
	.header__burger {
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		right: 20px;
		width: 30px;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		gap: 4px;
	}
	.header__burger span {
		display: block;
		width: 100%;
		height: 4px;
		background: white;
	}

	/* footer */
	.footer__payments {
		flex-wrap: wrap;
		justify-content: center;
		gap: 10px;
	}
	.footer__wrapper {
		flex-direction: column;
	}
	.footer__images {
		gap: 10px;
		justify-content: center;
	}
	.footer__block {
		padding: 10px;
	}
	.footer__block h3 {
		text-align: center;
	}
	.footer__block-img {
		text-align: center;
	}

	/* promo */
	.promo {
		margin: 30px 0 20px 0;
	}
	.promo__block {
		padding: 45px 20px;
		background: url('/images/mob-bg.png') center center / cover no-repeat;
	}
	.promo__title {
		font-size: 26px;
		line-height: 32px;
	}
	.promo p {
		font-size: 16px;
	}

	/* content */
	.content__block {
		padding: 25px 15px;
	}
	.content__block h1 {
		font-size: 26px;
		line-height: 32px;
	}
	.content__block h2 {
		font-size: 24px;
		line-height: 28px;
	}
	.content__block h3 {
		font-size: 20px;
		line-height: 24px;
	}
	.menu__info {
		flex-direction: column;
	}
	.menuPage {
		min-width: 100%;
	}
}

.footer__menu {
	display: flex;
	gap: 15px;
	flex-wrap: wrap;
	justify-content: center;
	font-size: 14px;
	padding: 0;
	margin-bottom: 10px;
}

.footer__menu a {
	color: #fff;
}