:root {
	--color-black: #000;
	--color-white: #fff;
	--color-primary: #06082a;
	--color-green: #0096ef;
	--color-red: #0096ef;
}

@font-face {
	font-display: swap;
	font-family: Poppins;
	font-style: normal;
	font-weight: 400;
	src: url(../fonts/poppins/Poppins-Regular.woff2) format('woff2');
}

@font-face {
	font-display: swap;
	font-family: Poppins;
	font-style: normal;
	font-weight: 500;
	src: url(../fonts/poppins/Poppins-Medium.woff2) format('woff2');
}

@font-face {
	font-display: swap;
	font-family: Poppins;
	font-style: normal;
	font-weight: 600;
	src: url(../fonts/poppins/Poppins-SemiBold.woff2) format('woff2');
}

@font-face {
	font-display: swap;
	font-family: Poppins;
	font-style: normal;
	font-weight: 700;
	src: url(../fonts/poppins/Poppins-Bold.woff2) format('woff2');
}

.container {
	margin: 0 auto;
	max-width: 1150px;
	padding: 0 15px;
}

.btn {
	border-radius: 5px;
	color: var(--color-white);
	display: block;
	font-weight: 600;
	padding: 5px;
	text-align: center;
	text-decoration: none;
	transition: all 0.3s ease;
	width: -moz-max-content;
	width: max-content;
}

@media (min-width: 768px) {
	.btn {
		padding: 8px 25px;
	}
}

.btn-primary {
	border: 1px solid var(--color-white);
}

.btn-primary:hover {
	background: var(--color-white);
	color: var(--color-black);
}

.btn-secondary {
	background: var(--color-green);
}

.btn-secondary:hover {
	background: var(--color-white);
	color: var(--color-black);
}

.btn-red {
	background: var(--color-red);
}

.btn-red:hover {
	background: var(--color-white);
	color: var(--color-black);
}

.btn-lg {
	padding: 12px 0;
	width: 100%;
}

@media (min-width: 768px) {
	.btn-lg {
		padding: 16px 45px;
		width: -moz-max-content;
		width: max-content;
	}
}

.header {
	align-items: center;
	display: flex;
	justify-content: space-between;
	padding: 13px 0;
}

.header__logo {
	position: relative;
	width: 70px;
	z-index: 2;
}

@media (min-width: 768px) {
	.header__logo {
		width: 115px;
	}
}

.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;
}

.content {
	padding-bottom: 50px;
	padding-top: 100px;
}

@media (min-width: 768px) {
	.content {
		padding-top: 35px;
	}
}

.content .btn {
	margin-bottom: 50px;
}

@media (min-width: 768px) {
	.content .btn {
		margin-bottom: 105px;
	}
}

.content p {
	margin-bottom: 20px;
	margin-top: 0;
}

.content h1 {
	font-size: 21px;
	font-weight: 700;
	line-height: 1;
	margin-bottom: 10px;
	margin-top: 0;
	text-align: center;
}

@media (min-width: 768px) {
	.content h1 {
		font-size: 44px;
		line-height: 1.0454545455;
		margin-bottom: 20px;
		text-align: left;
	}
}

.content h1 + p {
	margin-bottom: 20px;
	text-align: center;
}

@media (min-width: 768px) {
	.content h1 + p {
		margin-bottom: 30px;
		max-width: 900px;
		text-align: left;
	}
}

.content h2 {
	font-size: 18px;
	font-weight: 700;
	line-height: 1.3333333333;
	margin-bottom: 20px;
	margin-top: 0;
}

@media (min-width: 768px) {
	.content h2 {
		font-size: 32px;
		line-height: 1;
	}
}

.content h3 {
	font-size: 16px;
	font-weight: 700;
	line-height: 1.3333333333;
	margin-bottom: 20px;
	margin-top: 0;
}

@media (min-width: 768px) {
	.content h3 {
		font-size: 28px;
		line-height: 1;
	}
}

.content table {
	border-spacing: 0;
	margin-bottom: 20px;
	margin-top: 20px;
	width: 100%;
}

@media (min-width: 768px) {
	/* .content table {
        margin-bottom: 85px
    } */
}

.content tr:nth-child(odd) td {
	background: #13154a;
}

.content tr:nth-child(odd) td:nth-child(odd) {
	background: #1b1e62;
}

.content td {
	padding: 5px 16px;
}

.content td:nth-child(2n) {
	font-weight: 700;
}

.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: 13px;
	margin: 20px auto;
	max-width: 605px;
}

@media (min-width: 768px) {
	.content .img-cov {
		margin: 50px auto;
	}
}

.content .img-cov img {
	width: 100%;
}

.page {
	align-items: center;
	display: flex;
	justify-content: center;
	min-height: calc(100vh - 70px);
	padding: 100px 0;
}

.page h1 {
	font-size: 80px;
	line-height: 1;
	margin: 0;
}

@media (min-width: 768px) {
	.page h1 {
		font-size: 150px;
	}
}

.page__wrap {
	align-items: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.menu {
	background: var(--color-primary);
	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;
}

@media (min-width: 768px) {
	.menu__title {
		font-size: 32px;
		line-height: 1;
	}
}

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: var(--color-green);
}
.table {
	overflow: auto;
}

/*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:0 0 0 20px;
    background: #fff;
    border-radius:5px;
    color:#282A45;
    font-weight:700;
    font-size:18px;
    margin-right:20px;
    margin-bottom:105px;
}
.block__promo-btn {
    font-weight:400;
    background:#3F0CA6;
    cursor:pointer;
    border-radius:0 5px 5px 0;
    padding:14px;
    color:#ffffff;
}
@media screen and (max-width:768px){
    .block__promo {
        flex-direction:column;
    }
    .block__promo-info {
        margin-right:0;
        border-radius:8px;
        max-width:100%;
       margin-bottom:20px;
    }
    .block__promo-text, .block__promo-btn {
        font-size:14px;
    }
    .block__promo-btn {
        padding:10px 17px;
    }
}

.social{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 20px;
	padding-bottom: 15px;
}

.social img{
	height: 19px;
	width: auto;
}