@charset "UTF-8";

@import url(https://fonts.googleapis.com/css?family=Open+Sans:300,regular,500,600,700,800&display=swap);
*:where(
		:not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)
	) {
	all: unset;
	display: revert;
}

/* Preferred box-sizing value */
*,
*::before,
*::after {
	box-sizing: border-box;
}

/* Reapply the pointer cursor for anchor tags */
a,
button {
	cursor: revert;
}

/* Remove list styles (bullets/numbers) */
ol,
ul,
menu {
	list-style: none;
}

/* For images to not be able to exceed their container */
img {
	max-inline-size: 100%;
	max-block-size: 100%;
}

/* removes spacing between cells in tables */
table {
	border-collapse: collapse;
}

/* Safari - solving issue when using user-select:none on the <body> text input doesn't working */
input,
textarea {
	-webkit-user-select: auto;
}

/* revert the 'white-space' property for textarea elements on Safari */
textarea {
	white-space: revert;
}

/* minimum style to allow to style meter element */
meter {
	-webkit-appearance: revert;
	-moz-appearance: revert;
	appearance: revert;
}

/* preformatted text - use only for this feature */
:where(pre) {
	all: revert;
}

/* reset default text opacity of input placeholder */
::-moz-placeholder {
	color: unset;
}
::placeholder {
	color: unset;
}

/* remove default dot (•) sign */
::marker {
	content: initial;
}

/* fix the feature of 'hidden' attribute.
   display:revert; revert to element instead of attribute */
:where([hidden]) {
	display: none;
}

/* revert for bug in Chromium browsers
   - fix for the content editable attribute will work properly.
   - webkit-user-select: auto; added for Safari in case of using user-select:none on wrapper element */
:where([contenteditable]:not([contenteditable='false'])) {
	-moz-user-modify: read-write;
	-webkit-user-modify: read-write;
	overflow-wrap: break-word;
	-webkit-line-break: after-white-space;
	-webkit-user-select: auto;
}

/* apply back the draggable feature - exist only in Chromium and Safari */
:where([draggable='true']) {
	-webkit-user-drag: element;
}

/* Revert Modal native behavior */
:where(dialog:modal) {
	all: revert;
}

html,
body {
	font-family: 'Open Sans', sans-serif;
	font-weight: 400;
}

body {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	overflow-x: hidden;
	background: url('/assets/img/bg.jpg') center/cover no-repeat;
	background-attachment: fixed;
}

p {
	line-height: 150%;
}

strong {
	font-weight: 600;
}

/*///*/

.promocode {
	border-radius: 10px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	padding-bottom: 12px;
	width: 305px;
	animation: glowing 1500ms infinite;
}

.promocode__icon {
	max-width: 50px;
	margin: 0 auto;
}

.promocode__text {
	text-align: center;
	background-color: rgb(54, 0, 247);
	border-radius: 10px;
	padding: 16px;
	color: #fff;
	margin-top: -23px;
}

.promocode__title {
	font-size: 14px;
}
.promocode__bonus {
	font-size: 20px;
	font-weight: 600;
}
.promocode__input {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
}
.promocode__input input {
	border: 1px solid #0088ff;
	border-right: none;
	border-radius: 10px 0 0 10px;
	font-weight: 600;
	font-size: 16px;
	text-transform: uppercase;
	padding: 7px 20px 6px;
	outline: none;
	height: 40px;
	width: 50%;
}
.promocode__input button {
	cursor: pointer;
}
.promocode__input a {
	justify-content: center;
	align-items: center;
}
.promocode__input button,
.promocode__input a {
	background-color: #0088ff;
	height: 40px;
	width: 35%;
	font-weight: 600;
	text-transform: uppercase;
	color: #fff;
	border-radius: 0 10px 10px 0;
	text-align: center;
}
/*///*/
h1 {
	font-size: 38px;
	font-weight: 600;
	text-align: center;
	margin: 25px 0;
}

h2 {
	font-size: 38px;
	font-weight: 600;
	text-align: center;
	position: relative;
	padding-bottom: 20px;
}
h2::before {
	content: '';
	position: absolute;
	width: 100%;
	height: 2px;
	left: 50%;
	transform: translate(-50%);
	bottom: 0;
	background-color: #0088ff;
	max-width: 400px;
}

h3 {
	font-size: 26px;
	font-weight: 600;
	margin: 15px 0;
}

ol {
	list-style: decimal;
	padding: 15px 25px;
}

ul {
	list-style: disc;
	padding: 15px 25px;
}

li {
	line-height: 150%;
}

ol li::marker,
ul li::marker {
	color: #233d50;
}

table {
	border-collapse: collapse;
	width: 100%;
	overflow-x: auto;
	margin: 20px 0;
}
table tr td,
table tr th {
	border: 1px solid #333;
	padding: 15px;
}
table tr th {
	background-color: #f2ce74;
	color: #fff;
	font-size: 18px;
	text-align: center;
}
table tr td:hover {
	background-color: #e3e3e3;
}

.header {
	background: transparent;
	padding: 30px 0;
}
.header .container {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 70px;
}
.header .container .logo {
	flex: 0 0 300px;
}
.header .container .nav {
	flex: 1;
}
.header .container .nav .list {
	display: flex;
	align-items: center;
	gap: 50px;
	list-style: none;
	font-size: 20px;
	font-weight: 600;
	color: #fff;
}
.header .container .nav .list li:hover {
	color: #0088ff;
	text-shadow: 4px 4px 10px #0088ff;
}

.main {
	height: 100%;
	flex: 1 1 auto;
}
.main .first-screen {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	gap: 30px;
	align-items: flex-start;
	padding: 50px 0 100px;
	color: #fff;
}
.main .first-screen .title {
	font-size: 65px;
	font-weight: 700;
	text-align: left;
	line-height: 180%;
}
.main .first-screen .main-btn {
	display: flex;
	gap: 30px;
}
.main .first-screen .main-btn .btn {
	padding: 20px 15px;
	text-align: center;
	font-size: 24px;
	border: 1px solid transparent;
	width: 200px;
	border-radius: 100px;
	transition: all 0.5s;
}
.main .first-screen .main-btn .btn:first-child {
	background-color: #0088ff;
	animation: glowing2 1300ms infinite;
}
.main .first-screen .main-btn .btn:first-child:hover {
	background-color: #0b5ea6;
}
.main .first-screen .main-btn .btn:last-child {
	border: 1px solid #0088ff;
	color: #0088ff;
	animation: glowing 1300ms infinite;
}
.main .first-screen .main-btn .btn:last-child:hover {
	border: 1px solid #fff;
	color: #fff;
}
.main section {
	padding: 70px 0;
}
.main section p {
	margin: 15px 0;
}
.main section img {
	margin: 20px auto;
	max-width: 500px;
	display: flex;
}
.main .register {
	background-color: #e8eef7;
}
.main .register .flex {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 100px;
}
.main .register .flex .item {
	flex: 0 0 50%;
}
.main .register .flex .title {
	font-weight: 700;
	color: #333;
}
.main .white {
	background-color: #143157;
}
.main .white .flex {
	display: flex;
	justify-content: space-between;
	gap: 50px;
}
.main .white .flex .item {
	flex: 0 0 50%;
	background-color: #e8eef7;
	border-radius: 20px;
	padding: 30px;
}
.main .summary {
	background-color: #143157;
}
.main .summary .content {
	padding-top: 30px;
}
.main .default-container {
	background: #143157;
}
.main .default-container .container {
	max-width: 90vw;
	background: #fff;
	padding: 30px;
}

.footer {
	background-color: #041327;
	padding: 30px 0;
	color: #fff;
	display: flex;
	justify-content: center;
	flex-direction: column;
}

.container {
	max-width: 70vw;
	margin: 0 auto;
	padding: 0 16px;
}

@media (max-width: 768px) {
	h1 {
		margin: 20px 0;
		font-size: 30px;
	}
	h2 {
		font-size: 30px;
		margin: 15px 0;
	}
	h3 {
		font-size: 20px;
		margin: 10px 0;
	}
	.container {
		max-width: 100%;
	}
	.header .container {
		flex-direction: column;
		gap: 10px;
	}
	.header .container .logo {
		flex: auto;
	}
	.main section {
		padding: 30px 0;
	}
	.main section img {
		width: 100%;
	}
	.main .first-screen {
		display: flex;
		flex-direction: column;
		align-items: center;
		min-height: auto;
		padding: 0 0 100px;
	}
	.main .first-screen .title {
		font-size: 30px;
		line-height: 150%;
		text-align: center;
	}
	.main .first-screen .main-btn {
		flex-direction: column;
	}
	.main .register .flex {
		flex-direction: column;
		gap: 20px;
	}
	.main .register .flex img {
		width: 100%;
	}
	.main .white .flex {
		flex-direction: column;
		padding: 0 16px;
	}
	.main .white .flex img {
		width: 100%;
	}
}
@keyframes glowing {
	0% {
		box-shadow: 0 0 5px #4d4d4d;
	}
	50% {
		box-shadow: 0 0 30px #0088ff;
	}
	100% {
		box-shadow: 0 0 5px #0088ff;
	}
}
@keyframes glowing2 {
	0% {
		box-shadow: 0 0 5px #4d4d4d;
	}
	50% {
		box-shadow: 0 0 30px #0088ff;
	}
	100% {
		box-shadow: 0 0 5px #0088ff;
	}
}
.footer-menu ul {
	list-style: none;
	display: flex;
	justify-content: center;
	gap:20px;
	flex-wrap:wrap;
}
.footer-menu ul a:hover {
	text-decoration: underline;
}