* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

.container {
	max-width: 85%;
	margin: 0 auto;
}

.menu {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	align-items: center;
	list-style: none;
}

.menu li {
	margin: 15px;
	color: #fff;
	text-align: center;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	text-transform: uppercase;
	transition: all 0.3s ease-in;
}

.menu li:hover {
	color: #243EBB;
}

.menu li a {
	color: inherit;
	text-decoration: none;
	cursor: pointer;
}

body {
	background: #08092E;
	font-family: 'Inter', sans-serif;
}

header {
	position: absolute;
	top: 0;
	left: 0;
	padding: 40px 0;
	width: 100%;
	z-index: 9;
	transition: all 0.3s ease-in;
}

.wrapper .container {
	max-width: 65%;
}

.wrapper.active {
	background: #08092E;
}

header.active {
	background: #08092E;
}

header .row {
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

header.active .menu {
	top: 60%;
}

header .row .logo {
	text-decoration: none;
	width: auto;
	height: 30px;
}

header .row a.logo {
	transition: all 0.3s ease-in;
}

header .row a.logo:hover {
	transform: scale(1.05);
}
header .row .logo img {
	width: 100%;
	height: 100%;
}
header .row .logo p {
	display: flex;
	width: auto;
	height: auto;
}

header .row .burger {
	display: none;
	align-items: center;
	height: 40px;
}

header .row .burger p {
	font-size: 16px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	text-transform: uppercase;
	color: #fff;
	transition: all 0.3s ease-in;
	cursor: pointer;
}

header .row .burger .toggle {
	margin: 0 0 0 15px;
	width: 72px;
	height: 20px;
	background: url('../img/burger.webp') center / contain no-repeat;
	transition: all 0.3s ease-in;
	cursor: pointer;
}

header.active .row .burger .toggle {
	width: 40px;
	height: 40px;
	background: url('../img/close.webp') center / contain no-repeat;
}

.wrapper {
	position: relative;
	display: flex;
	flex-direction: column;
	width: 100%;
	overflow: hidden;
}

.wrapper::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 1000px;
	background: url('../img/bg.webp') center top / cover no-repeat;
	z-index: -1;
}

.inner {
	display: flex;
	flex-direction: column;
	padding: 186px 0;
}

.inner h1 {
	margin: 0 0 20px 0;
	text-align: center;
	font-size: 36px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	text-transform: uppercase;
	color: #fff;
}

.inner p {
	margin: 0 0 40px 0;
	text-align: center;
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: 140%;
	color: #a5aabe;
}

.inner .btn {
	display: flex;
	justify-content: center;
	padding: 20px 60px;
	align-items: center;
	background: linear-gradient(275deg, #32FDFF 0%, #243EBB 100%);
	border-radius: 56px;
	text-decoration: none;
	align-self: center;
	box-shadow: 0px 0px 26px 0px rgba(39, 99, 201, 1) inset;

	color: #fff;
	font-size: 14px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	text-transform: uppercase;
	transition: all 0.3s ease-in;
}

.inner .btn:hover {
	transform: scale(1.05);
}

.cnt {
	display: flex;
	flex-direction: column;
	margin: 0 auto;
}

.cnt h2 {
	margin: 0 0 35px 0;
	text-align: center;
	font-size: 28px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	text-transform: uppercase;
	color: #fff;
}

.cnt h3, .faq__head, .menu__title {
	margin: 0 0 30px 0;
	text-align: center;
	font-size: 24px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	text-transform: uppercase;
	color: #fff;
}
.table {
	width: 100%;
	overflow: auto;
	margin: 0 0 30px 0;
}
.cnt p,
.cnt span,
.cnt ul,
.cnt ol,
.cnt table,
.faq__content {
	margin: 0 0 20px 0;
}

.cnt ul,
.cnt ol {
	display: flex;
	flex-direction: column;
}

.cnt p,
.cnt span,
.cnt li,
.cnt td,
.cnt th,
.faq__content {
	font-size: 16px;
	text-align: center;
	font-style: normal;
	font-weight: 400;
	line-height: 140%;
	color: #a5aabe;
}
.faq__content span {
	font-weight:400 !important;
}

.cnt p.img-text {
	display: flex;
	width: 100%;
	height: auto;
	transition: all 0.3s ease-in;
}

.cnt p.img-text:hover {
	transform: scale(1.05);
}

.cnt p.img-text img {
	width: inherit;
	height: 100%;
}

.cnt li {
	align-self: center;
}

.cnt span {
	font-weight: 700;
	color: #a5aabe;
}

table {
	width: 100%;
	border-collapse: collapse;
	border-spacing: 0;
	overflow: auto;
	margin: 0 0 30px 0;
}

table,
td,
th {
	border: 1px solid #243EBB;
}
td,
th {
	padding: 3px;
	width: 30px;
	height: 25px;
}
th {
	background: #243EBB;
}

.cnt th {
	color: #000;
}

footer {
	margin: 55px 0 0 0;
	padding: 39px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.15);
}
p img {
	width: 100%;
	height: 100%;
}

.img-big-vertical {
	width: auto;
	height: 500px;
}
.img-big-vertical img {
	width: auto;
	height: 500px;
}

@media screen and (max-width:600px) {
	.img-big-vertical {
		width: 100%;		
	}
	.img-big-vertical img {
		width: 100%;
	}
}
.anchor__menu a {
	color:#a5aabe;
	text-decoration: none;
}
.anchor__menu a:hover {
	color:#243EBB;
}
.anchor__menu li {
	margin-bottom:15px;
}
.small-img {
	width: 200px;
	height: 200px;
	margin: 20px auto !important;
}
.small-img img {
	width: 200px;
	height: 200px;
	border-radius: 25px;
}