:root {
	--color-black: #000;
	--color-white: #292929;
	--color-blue-1: #ffffff;
}

.container {
	margin: 0 auto;
	max-width: 1310px;
	padding: 0 15px;
}

.btn {
	border-radius: 19px;
	color: var(--color-white);
	display: block;
	font-size: 18px;
	font-weight: 400;
	line-height: 28px;
	padding: 15px 35px;
	text-align: center;
	text-decoration: none;
	transition: all 0.3s ease;
	width: -moz-max-content;
	width: max-content;
}

.btn-primary {
	border: 1px solid #fb4d00;
}

.btn-primary:hover {
	background: #fb4d00;
	color: #fff;
}

.btn-secondary {
	background: #3f0ca6;
	color: #fff;
	box-shadow: inset 0 4px 6px 0 hsla(0, 0%, 100%, 0.31);
	border: 1px solid #3f0ca6;
}

.btn-secondary:hover {
	background: #fff;
	color: #3f0ca6;
}

.btn-green {
	background: #fb4d00;
	color: #fff;
	box-shadow: inset 0 4px 6px 0 hsla(0, 0%, 100%, 0.31);
	border: 1px solid #fb4d00;
}

.btn-green:hover {
	background: #fff;
	color: #fb4d00;
}

.btn-lg {
	padding: 22px 60px;
}

.header {
	align-items: center;
	display: flex;
	justify-content: space-between;
	padding: 25px 0;
}

.header__logo {
	position: relative;
	width: 180px;
	z-index: 2;
}

.header__logo img {
	width: 100%;
}

.header__buttons {
	align-items: center;
	gap: 20px;
}

.burger,
.header__buttons {
	display: flex;
	position: relative;
	z-index: 2;
}

.burger {
	cursor: pointer;
	display: block;
	height: 28px;
	transition: all 0.3s;
	width: 28px;
}

@media (min-width: 768px) {
	.burger {
		display: none;
	}
}

.burger span {
	background-color: var(--color-white);
	display: block;
	float: right;
	height: 2px;
	transition: all 0.3s;
	width: 100%;
}

.burger span:nth-of-type(2) {
	margin: 8px 0;
	width: 50%;
}

.burger.active {
	padding-top: 12px;
}

.burger.active span {
	float: none;
}

.burger.active span:first-of-type {
	height: 2px;
	transform: rotate(45deg);
	transition-delay: 0.3s;
}

.burger.active span:nth-of-type(2) {
	height: 0;
	margin: -2px;
	opacity: 0;
}

.burger.active span:nth-of-type(3) {
	height: 2px;
	transform: rotate(-45deg);
	transition-delay: 0.3s;
}

.faq__item {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.content {
	padding-bottom: 50px;
	padding-top: 85px;
}

.content .btn {
	margin-top: 35px;
}

.content__wrap {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	padding-top: 225px;
}

.content .head {
	flex-shrink: 0;
	width: 50%;
}

.content .text {
	width: 48%;
}

.content p {
	margin-bottom: 20px;
	margin-top: 0;
}

.content h1 {
	font-size: 96px;
	font-weight: 800;
	line-height: 83px;
	margin-bottom: 35px;
	margin-top: 0;
	zoom: 0.7;
	-ms-zoom: 0.7;
	-webkit-zoom: 0.7;
	-moz-transform: scale(0.7, 0.7);
	-moz-transform-origin: left center;
}

.content h1 + p {
	max-width: 930px;
}

.content h2 {
	font-size: 64px;
}

.content h2,
.content h3 {
	font-weight: 800;
	line-height: 1.1636363636;
	margin-bottom: 30px;
	margin-top: 0;
}

.content h3 {
	font-size: 44px;
}

.content .table {
	overflow-x: auto;
	width: 100%;
}

.content table {
	border-spacing: 0;
	margin-bottom: 30px;
	width: 100%;
}

.content tr td:nth-child(2n) {
	font-weight: 700;
}

.content tr:nth-child(odd) td {
	background: #f0f0f0;
}

.content tr:nth-child(odd) td:nth-child(odd) {
	background: #ebebeb;
}

.content td {
	padding: 5px 16px;
}

.content td:first-child {
	border-bottom-left-radius: 5px;
	border-top-left-radius: 5px;
}

.content td:last-child {
	border-bottom-right-radius: 5px;
	border-top-right-radius: 5px;
}

.content .img-cov {
	border-radius: 19px;
	margin-bottom: 30px;
	max-width: 605px;
}

.content .img-cov img {
	width: 100%;
}

.user .content__wrap {
	padding-top: 110px;
}

.page {
	align-items: center;
	display: flex;
	justify-content: center;
	min-height: calc(100vh - 70px);
	padding: 100px 0;
	text-align: center;
}

.page h1 {
	font-size: 48px;
	line-height: 1;
	margin: 0;
}

@media (min-width: 768px) {
	.page h1 {
		font-size: 96px;
	}
}

.page .btn {
	margin: 0 auto;
}

.menu {
	background: var(--color-blue-1);
	display: block;
	left: 0;
	opacity: 0;
	padding: 45px 15px 0;
	position: absolute;
	right: 0;
	top: 0;
	transition: all 0.3s ease;
	visibility: hidden;
	z-index: 0;
}

@media (min-width: 768px) {
	.menu {
		display: none;
	}
}

.menu.active {
	opacity: 1;
	visibility: visible;
}

.menu__lang {
	align-items: center;
	color: #fff;
	display: flex;
	font-size: 14px;
	font-weight: 500;
	justify-content: flex-end;
	padding: 20px 0;
	text-decoration: none;
}

.menu__lang img {
	display: block;
	margin-left: 18px;
}

.menu__list {
	border-top: 1px solid #222727;
	list-style: none;
	margin: 0;
	padding: 10px 0;
}

.menu__item {
	color: #fff;
	display: block;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.5;
	padding: 10px 0;
	text-decoration: none;
}

.menu__title {
	font-size: 18px;
	font-weight: 700;
	line-height: 1.3333333333;
	margin-bottom: 20px;
	margin-top: 0;
}

ol,
ul {
	list-style-position: inside;
	padding-left: 0;
}

.anchor__menu li {
	margin-bottom: 3px;
}

.anchor__menu a {
	color: var(--color-white);
	text-decoration: none;
}

.anchor__menu a:hover {
	color: #7a74fb;
}

@media (max-width: 1024px) {
	.faq__item {
		display: block;
	}

	.content {
		padding-top: 50px;
	}

	.content__wrap {
		display: block;
		padding-top: 30px;
	}

	.content .head,
	.content .text {
		width: 100%;
	}

	.content h1 {
		font-size: 48px;
		line-height: 41px;
		margin-bottom: 20px;
	}

	.content h2 {
		font-size: 32px;
		line-height: 28px;
	}

	.content h3 {
		font-size: 30px;
		line-height: 27px;
	}

	.user .content__wrap {
		padding-top: 30px;
	}

	.btn {
		border-radius: 8px;
		font-size: 12px;
		line-height: 18px;
		padding: 5px 8px;
	}

	.btn-lg {
		font-size: 14px;
		padding: 17px;
		width: 100%;
	}

	.header__logo {
		width: 75px;
	}

	.header {
		padding: 20px 0;
	}

	.content .btn {
		margin-top: 20px;
	}
}

/*promo*/
.block__promo {
    display:flex;
    align-items: center;
}
.block__promo-info {
    display:flex;
    align-items: center;
    justify-content: space-between;
    max-width: 290px;
    width:100%;
    padding:5px 20px;
    background: #333333;
    border-radius:19px;
    color:#FFFFFF;
    font-weight:700;
    font-size:18px;
    margin-top:35px;
    margin-right:20px;
}
.block__promo-btn {
    font-weight:400;
    background:#3F0CA6;
    cursor:pointer;
    border-radius:12px;
    padding:17px;
}
@media screen and (max-width:1024px){
    .block__promo {
        flex-direction:column;
    }
    .block__promo-info {
        margin-right:0;
        border-radius:8px;
        max-width:100%;
    }
    .block__promo-text, .block__promo-btn {
        font-size:14px;
    }
    .block__promo-btn {
        padding:10px 17px;
    }
}