:root {
	--color-black: #000;
	--color-white: #fff;
	--color-blue-1: #0d0d0d;
}

.container {
	margin: 0 auto;
	max-width: 1310px;
	padding: 0 15px;
}

.btn {
	border-radius: 19px;
	color: #fff;
	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 #83c045;
	color: #fff;
}

.btn-primary:hover {
	background: var(--color-white);
	color: var(--color-black);
}

.btn-secondary {
	background: #14a699;
	box-shadow: inset 0 4px 6px 0 hsla(0, 0%, 100%, 0.31);
}

.btn-secondary:hover {
	background: var(--color-white);
	color: var(--color-black);
}

.btn-green {
	background: #14a699;
	box-shadow: inset 0 4px 6px 0 hsla(0, 0%, 100%, 0.31);
}

.btn-green:hover {
	background: var(--color-white);
	color: var(--color-black);
}

.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:nth-child(odd) td {
	background: #1a2031;
}

.content tr:nth-child(odd) td:nth-child(odd) {
	background: #272f45;
}

.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: 120px;
	}

	.header {
		padding: 20px 0;
	}

	.content .btn {
		margin-top: 20px;
	}
}
