* {
	padding: 0;
	margin: 0;
	border: 0;
	font-family: 'Poppins', sans-serif;
}

*,
*:before,
*:after {
	box-sizing: border-box;
}

:focus,
:active {
	outline: none;
}

a:focus,
a:active {
	outline: none;
}

body.hidden {
	overflow-y: hidden;
}

nav,
footer,
header,
aside {
	display: block;
}
body {
}

html,
body {
	height: 100%;
	width: 100%;
	font-size: 100%;
	line-height: 1;
	font-size: 14px;
	-ms-text-size-adjust: 100%;
	-moz-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
	overflow-x: hidden;
}
html.hidden,
body.hidden {
	overflow: hidden;
}

input,
button,
textarea {
	font-family: inherit;
}

input::-ms-clear {
	display: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
	display: none;
}

input[type='number'] {
	-moz-appearance: textfield;
	/* Firefox */
}

button {
	cursor: pointer;
}

button::-moz-focus-inner {
	padding: 0;
	border: 0;
}

a,
a:visited {
	text-decoration: none;
}

a:hover {
	text-decoration: none;
}

img {
	vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6,
.menu__title {
	font-size: inherit;
	font-weight: inherit;
}

select {
	/* for Firefox */
	-moz-appearance: none;
	/* for Safari, Chrome, Opera */
	-webkit-appearance: none;
}

/* for IE10 */
select::-ms-expand {
	display: none;
}
body.hidden {
	overflow: hidden;
}
body {
	background: url('../img/blur.png') 0 500px / cover no-repeat;
}
.wrapper {
	padding: 16px 0;
	min-height: 100%;
	display: flex;
	flex-direction: column;
	background-color: #1b1c2d;
	position: relative;
}

.main {
	flex: 1 1 auto;
	z-index: 2;
}
.main.none {
	pointer-events: none;
}

.container {
	max-width: 1150px;
	margin: 0 auto;
	padding: 0 15px;
}

/* header */
.header {
	z-index: 2;
}

.header__wrapper {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.header__item {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
}

.header__item-link {
	padding: 13px 37px;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #fff;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	border-radius: 100px;
	background: #ef1d00;
	transition: all 0.3s ease;
	border: 1px solid #ef1d00;
}
.header__item-link:hover {
	transition: all 0.3s ease;
	border: 1px solid #fff;

	background: transparent;
	color: #fff;
}

.header__item-link:first-child {
	border: 1px solid #fff;

	background: transparent;
}
.header__item-link:first-child:hover {
	background: #ef1d00;
	border: 1px solid #ef1d00;

	color: #fff;
}

/* main */
.main {
	margin: 55px 0 0 0;
}

.bg {
	position: absolute;
	/*background: url('../img/bg.png') 0 0 / cover no-repeat;*/
	top: 0;
	left: 0;
	width: 100%;
	height: 490px;
}

.main h1 {
	color: var(--white, #fff);
	font-size: 44px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
}
.main h2 {
	color: var(--white, #fff);
	font-size: 32px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	margin: 0 0 5px 0;
}
.main h3, .menu__title {
	color: var(--white, #fff);
	font-size: 24px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
}
.main strong {
	display: block;
	color: var(--white, #fff);
	font-size: 24px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
}
.main p {
	padding: 0 0 0 40px;
	margin: 16px 0;
	color: var(--grey, #fff);
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 24px;
}
.main ul, .main ol {
	padding: 0 0 0 60px;
}
.main li {
	margin: 16px 0;
	color: var(--grey, #fff);
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 24px;
	margin: 0 0 2px 0;
}
.main a {
	display: inline-block;
	margin: 30px 0 70px 0;
	padding: 17px 35px;
	border-radius: 100px;
	background: #3942da;
	border: 1px solid #3942da;
	color: #fff;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	transition: all 0.3s ease;
}
.main a:hover {
	background: transparent;
	color: #fff;
}

.main ul a {
	margin: 16px 0;
	color: var(--grey, #fff);
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 24px;
	padding: 0;
	background: transparent;
	border: none;
	text-align: left;
	transition: all 0.3s ease;
}
.main ul a:hover {
	color: #ef1d00;
}
.burger {
	display: none;
	background-image: url('../img/burger.svg');
	background-size: 29px 27px;
	width: 29px;
	height: 27px;
}
.burger.active {
	background-image: url('../img/close.svg');
	z-index: 11;
}

.burger__content {
	padding: 15px;
	display: none;
	position: fixed;
	top: 55px;
	left: 0;
	width: 100%;
	height: 120px;
	z-index: 10;
	background-color: #281638;
}
.burger__language {
	border-bottom: 1px solid #222727;
	padding: 0 0 15px 0;
	display: flex;
	align-items: center;
	justify-content: end;
	gap: 15px;
	color: #fff;
	font-size: 14px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
}
.burger__link {
	margin: 15px 0 0 0;
	display: inline-block;
	color: #fff;
	font-size: 16px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
}
.burger__content.active {
	display: block;
}

.table {
	width: 100%;
	max-width: 100%;
	overflow: auto;
}

.table table {
	border-collapse: collapse;
	width: 100%;
}

.table td:nth-child(2n) {
	color: #fff;
	font-weight: 700;
}

.table tr:nth-child(2n) td:first-child div {
	background: transparent;
}

.table tr:nth-child(2n) td:last-child div {
	background: transparent;
}

.table tr td:first-child div {
	border-radius: 15px 0px 0px 15px;
	background: #ef1d00;
}
.table tr:nth-child(2n+1) div {
	background: #3942da;
	border-radius:0;
}
.table tr td:last-child div {
	border-radius: 0px 15px 15px 0px;
	background: #3942da;
}

.table td {
	width: 50%;
	color: var(--grey, #fff);
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}

.table td div {
	margin: 0 0 5px 0;
	white-space: nowrap;
	max-height: 37px;
	min-height: 37px;
}

.table td:nth-child(1n) div {
	/*border-radius: 5px 0 0 5px;*/
	padding: 7px 16px;
}

.table td:nth-child(2n) div {
	/*border-radius: 0 5px 5px 0;*/
	padding: 7px 16px;
}

.table td:nth-child(3n) div {
	border-radius: 0 5px 5px 0;
	padding: 7px 16px;
}

.main p img {
	max-width: 100%;
}
.flag img {
	width: 24px;
	height: 24px;
}
/* media */
@media (max-width: 768px) {
	.main h1 {
		margin: 120px 0 0 0;
		font-size: 21px;
		text-align: center;
	}
	.header-text {
		text-align: center;
	}
	.main h2 {
		font-size: 18px;
	}
	.main h3, .menu__title {
		font-size: 16px;
	}
	.main p {
		padding: 0;
		font-size: 12px;
		margin: 6px 0;
	}
	.main ul {
		padding: 0;
	}
	.main li {
		font-size: 12px;
	}
	.main a {
		font-size: 12px;
		width: 100%;
		text-align: center;
	}
	.table td {
		font-size: 12px;
	}
	.header__item-link {
		font-size: 12px;
		padding: 10px;
	}
	.header__logo img {
		width: 80%;
	}
	.burger {
		display: block;
	}
	.bg {
		/*background: url('../img/bg-mob.png') center 0 / 320px 320px no-repeat;*/
	}
}

/* @media (max-width: 530px) {
    .bg {
        background: url("../img/bg-mob.png") 0 -15px / cover no-repeat;
        height: 295px;
    }
} */

.block__promo {
display:flex;
align-items: center;
max-width:194px;
width:100%;
height:60px;
border: 1px solid #3942da;
border-radius: 100px;
justify-content: center;
}

.block__promo-text {
color:#ffffff;
font-weight:700;
margin-right:auto;
margin-left: 10px;
}
.but-prom {
width:100%;
height:100%;
background: #3942da;
color: #ffffff;
max-width:90px;
border-radius:0 100px 100px 0;
font-size:16px;

}
@media (max-width: 768px) {
.block__promo {
max-width:100%;
}
.but-prom {
max-width:150px;
font-size:12px;
}
}

.anchor__menu a {
    color:inherit;
    text-decoration:none;
    margin: 0;
    padding: 0;
    border-radius: 0;
    background: none;
    border: none;
}
.anchor__menu a:hover {
    color:#3942da;
}

.img-text {
    width:100%;
    display:flex;
    margin:20px auto;
}
.img-text img {
    width:100%;
    border-radius:10px;
}
.img-cov {
    width:200px;
    height:200px;
    padding: 0 !important;
    
}
.img-cov img {
    height:100%;
    height:100%;
    border-radius:25px;
}
@media screen and (max-width:600px) {
    .img-cov {
        float:none !important;
        margin:20px auto !important;
    }
}
.table-responsive {
    overflow:auto;
}

.table-responsive table{
width: 100%;
border-collapse:collapse;
border-spacing:0;
color:#ffffff;
font-size:inherit;
margin:20px auto;

}
.table-responsive table, .table-responsive td, .table-responsive th{
border: 1px solid #595959;
}
.table-responsive td, .table-responsive th{
padding: 10px;
width: 30px;
height: 25px;
}
.img-text-vertical {
    width:30%;
    margin:20px auto !important;
}
.menu {
    display:flex;
    list-style:none;
   }
.menu li {
    margin-right:10px;
}
.menu a {
    color:#ffffff;
}
.menu a:hover {
    color:#3942da;
}
@media screen and (max-width: 768px) {
    .table-responsive table {
        font-size:12px;
    }
    .img-text-vertical {
    width:100%;
}
.menu li {
    font-size:10px;
}
}

/*block promo*/
.block__info {
    display:none;
    padding:10px;
    width:100%;
    background:#2B2D43;
    position: fixed;
    z-index: 100;
    bottom: 20px;
}
.block__info-text {
    color:#fff;
    padding:17px 10px;
    border-radius:60px;
    border:2px solid #5CC974;
    width:48%;
    text-align:center;
    font-size:12px;
}
.block__info-btn {
    width:48%;
}
.block__info-text span {
    color:#5CC974;
}
.block__info-btn a {
    margin:0;
}
@media screen and (max-width: 768px) { 
    .main {
        padding-bottom:80px;
    }
    .block__info {
        display:flex;
      align-items: center;
      justify-content: space-between;
    }
    
}    