@charset "UTF-8";

@import url(https://fonts.googleapis.com/css?family=Open+Sans:300,regular,500,600,700&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-weight: 400;
	font-family: 'Open Sans', sans-serif;
	color: #fff;
}

body {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	overflow-x: hidden;
	background: #050118;
}

.toctitle {
	display: flex;
	justify-content: center;
}

.toctitle ul {
	list-style: none;
	padding: 20;
	margin: 0;
	text-align: center;
	border: 2px solid #f7b636;
	border-radius: 10px;
}

.toctitle ul li {
	margin: 10px 0;
	color: #f7b636;
	font-weight: bold;
	background-color: #0f0449;
	padding: 10px;
	border-radius: 5px;
}

p {
	line-height: 150%;
}

h1 {
	font-size: 38px;
	font-weight: 600;
	text-align: center;
	margin: 25px 0;
}

h2 {
	font-size: 32px;
	font-weight: 600;
	margin: 20px 0;
	text-align: center;
	color: #f7b636;
}

h3 {
	font-size: 26px;
	font-weight: 600;
	margin: 15px 0;
	color: #f7b636;
	text-align: center;
}

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;
	overflow: auto;
}
table tr td,
table tr th {
	border: 1px solid #333;
	padding: 15px;
}
table tr th {
	background-color: #0f0449;
	color: #fff;
	font-size: 18px;
	text-align: center;
}
table tr td:hover {
	background-color: rgba(32, 147, 255, 0.231372549);
}

.header {
	position: sticky;
	width: 100%;
	top: 0;
	left: 0;
	z-index: 99;
	background: #0f0449;
	box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.6);
	padding: 20px 0;
}
.header .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.header .container .logo {
	flex: 0 0 150px;
}
.header .container .logo img {
	width: 100%;
}
.header .container .auth {
	display: flex;
	align-items: center;
	gap: 15px;
}
.header .container .auth .btn {
	border-radius: 15px;
	padding: 12px 25px;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 150px;
}
.header .container .auth .btn-1 {
	border: 1px solid #f7b636;
}
.header .container .auth .btn-1:hover {
	background: rgba(255, 255, 255, 0.1254901961);
}
.header .container .auth .btn-2 {
	background: linear-gradient(180deg, #f7b83d 0%, #916002 100%);

	color: #fff;
	font-weight: 600;
}
.header .container .auth .btn-2:hover {
	background: linear-gradient(180deg, #916002 0%, #f7b83d 100%);
}

.main {
	height: 100%;
	flex: 1 1 auto;
	padding: 50px 0;
}
.main .banner {
	background: url('../images/bg.webp') center center / cover no-repeat;
	border-radius: 16px;
	background-blend-mode: screen;
	box-shadow:
		0 64px 40px -40px rgba(0, 19, 57, 0.25),
		0 64px 40px -40px rgba(0, 19, 57, 0.25);
	max-width: 70vw;
	height: 250px;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	flex-direction: column;
	align-items: flex-start;
	gap: 20px;
	padding: 20px;
}
.main .banner__title {
	font-size: 32px;
	font-weight: 600;
	text-shadow: #fff 1px 0 10px;
	max-width: 50%;
}
.main .banner__btn {
	border-radius: 15px;
	padding: 12px 25px;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 200px;
	background: linear-gradient(180deg, #f7b83d 0%, #916002 100%);
	white-space: nowrap;
	color: #fff;
	font-weight: 600;
}
.main .banner__btn:hover {
	background: linear-gradient(180deg, #916002 0%, #f7b83d 100%);
}
.main .soft {
	padding: 30px 0;
	background-color: #2c3357;
	margin-top: 30px;
}
.main .soft-items {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
	justify-content: space-around;
}
.main .soft-items img {
	height: auto;
}
.main .cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	justify-content: center;
	gap: 20px;
	margin: 30px 0;
}
.main .cards .card {
	border-radius: 10px;
	cursor: pointer;
	position: relative;
}
.main .cards .card:hover .card__hover {
	opacity: 1;
}
.main .cards .card .card__img img {
	margin: 0;
	border-radius: 10px;
}
.main .cards .card .card__hover {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: radial-gradient(
		75% 100% at 50.34% 100%,
		rgba(32, 147, 255, 0.6352941176) 0%,
		rgba(11, 60, 221, 0.7882352941) 100%
	);
}
.main .cards .card .card__hover {
	position: absolute;
	width: 100%;
	height: 100%;
	border: 1px solid #0b3ddd;
	border-radius: 10px;
	opacity: 0;
	transition: opacity 0.3s ease;
}
.main .cards .card .card__hover .title {
	text-align: center;
	color: #fff;
}
.main .cards .card .card__wrapper {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.main .cards .card .card-btn {
	background: url('../images/play.svg') center/cover no-repeat;
	width: 50px;
	height: 50px;
	display: block;
}
.main .cards .card .card-btn:hover {
	background: url('../images/play-hover.svg') center/cover no-repeat;
}
.main .content {
	border-radius: 6px;
	padding: 20px;
	margin: 20px 0;
}
.main .content p {
	margin: 15px 0;
}
.main .content img {
	display: flex;
	margin: 0 auto;
	max-width: 500px;
}
.main .payments {
	display: flex;
	justify-content: space-around;
	align-items: center;
	flex-wrap: wrap;
	gap: 20px;
	padding: 50px 16px;
	background-color: rgba(0, 0, 0, 0.4784313725);
	border-radius: 6px;
}
.main .payments .payment {
	cursor: pointer;
	transition: filter 0.4s ease-in-out;
}
.main .payments .payment svg path {
	transition: fill 0.4s ease-in-out;
}
.main .payments .payment:nth-child(1):hover {
	filter: drop-shadow(0px 0px 16px #1f46ff);
}
.main .payments .payment:nth-child(1):hover svg path {
	fill: #1f46ff;
}
.main .payments .payment:nth-child(2):hover {
	filter: drop-shadow(0px 0px 16px #ff8000);
}
.main .payments .payment:nth-child(2):hover svg path {
	fill: #ff8000;
}
.main .payments .payment:nth-child(3):hover {
	filter: drop-shadow(0px 0px 16px #ffc200);
}
.main .payments .payment:nth-child(3):hover svg path {
	fill: #ffc200;
}
.main .payments .payment:nth-child(4):hover {
	filter: drop-shadow(0px 0px 16px #f7931a);
}
.main .payments .payment:nth-child(4):hover svg path {
	fill: #f7931a;
}
.main .payments .payment:nth-child(5):hover {
	filter: drop-shadow(0px 0px 16px #c718e3);
}
.main .payments .payment:nth-child(5):hover svg path {
	fill: #c718e3;
}
.main .payments .payment:nth-child(6):hover {
	filter: drop-shadow(0px 0px 16px #28d49f);
}
.main .payments .payment:nth-child(6):hover svg path {
	fill: #28d49f;
}
.main__btn a {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 15px 25px;
	width: 250px;
	margin: 25px auto;
	background: linear-gradient(180deg, #f7b83d 0%, #916002 100%);

	color: #fff;
	border-radius: 15px;
	font-weight: 600;
	position: relative;
	overflow: hidden;
}
.main__btn a:hover {
	background: linear-gradient(180deg, #916002 0%, #f7b83d 100%);
}
.main__btn a::before {
	content: '';
	background-color: rgba(255, 255, 255, 0.5);
	height: 100%;
	width: 3em;
	display: block;
	position: absolute;
	top: 0;
	left: -4.5em;
	transition: none;
	animation: _ngcontent-wlc-app-c30_sheen 2.5s infinite;
}
.main .faq {
	margin: 50px auto;
	padding: 40px;
	max-width: 70vw;
	background-color: #5c3df545;
	border-radius: 6px;
	display: flex;
	flex-direction: column;
	gap: 50px;
}
.faq__title {
	color: #f7b636;
}

.main .faq__item {
	border-top: 1px solid rgb(86, 66, 141);
	padding: 24px 0;
}
.main .faq__item.active .faq__body {
	display: block;
}
.main .faq__item.active .faq__question-button {
	background-color: #916002;
}
.main .faq__item.active .faq__icon {
	transform: translateY(-50%) rotate(45deg);
}
.main .faq__title {
	font-size: 30px;
	font-weight: 600;
}
.main .faq__body {
	margin-top: 40px;
	display: none;
}
.main .faq__body p {
	margin: 15px 0;
}
.main .faq__question {
	position: relative;
	width: 100%;
	text-align: left;
	padding-right: 44px;
	font-weight: 600;
	font-size: 20px;
	cursor: pointer;
}
.main .faq__question-button {
	display: block;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	transition: all 0.3s;
	z-index: 1;
	right: 0;
	width: 40px;
	height: 40px;
	background-color: #f7b636;
	border-radius: 15px;
}
.main .faq__icon {
	position: absolute;
	top: 50%;
	z-index: 2;
	right: 8px;
	width: 24px;
	height: 24px;
	transform: translateY(-50%);
	transition: all 0.3s;
}
.main .faq__icon span {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
}

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

.footer {
	padding: 30px 0;
	background-color: #0f0449;
}
.footer .container {
	display: flex;
	justify-content: space-around;
}
.footer .container .flex-1 .list-title {
	font-size: 18px;
	text-transform: uppercase;
}
.footer .container .flex-1 ul {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding: 0;
}
.footer .container .flex-1 ul li {
	color: rgba(255, 255, 255, 0.7019607843);
}
.footer .container .flex-1 ul li:hover {
	color: rgba(255, 255, 255, 0.4705882353);
}
.footer .container .flex-2 {
	flex: 0 0 30%;
}
.footer .container .flex {
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.footer .container .icons {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
}
.footer .container .icons img {
	height: 40px;
}

.scroll-btn {
	position: fixed;
	cursor: pointer;
	right: 30px;
	bottom: 30px;
	z-index: 99;
	display: none;
}
.scroll-btn svg {
	border-radius: 6px;
}

.table {
	width: 100%;
	overflow-x: auto;
}

.img-cov {
	max-width: 800px;
	width: 100%;
	height: 100%;
	margin: 15px auto !important;
}
.img-cov img {
	width: 100%;
	height: 100%;
	max-width: 100% !important;
	object-fit: cover;
	border-radius: 15px;
}

.table .img-cov {
	max-width: 150px;
	min-width: 100px;
}

.contact__form div {
	margin: 0 0 20px 0;
}

@media (max-width: 768px) {
	h1 {
		margin: 20px 0;
		font-size: 30px;
	}
	h2 {
		font-size: 24px;
		margin: 15px 0;
	}
	h3 {
		font-size: 20px;
		margin: 10px 0;
	}
	.container {
		max-width: 100%;
	}
	.header .container {
		flex-direction: column;
		gap: 15px;
	}
	.header .container .logo {
		flex: auto;
	}
}
@media (max-width: 768px) and (max-width: 768px) {
	table {
		display: inline-table;
	}
	h1 {
		margin: 20px 0;
		font-size: 30px;
	}
	h2 {
		font-size: 24px;
		margin: 15px 0;
	}
	h3 {
		font-size: 20px;
		margin: 10px 0;
	}
	.container {
		max-width: 100%;
	}
	.header .container {
		flex-direction: column;
		gap: 15px;
	}
	.main {
		padding: 30px 0;
	}
	.main .banner {
		max-width: 100%;
		background: #0f0449;
		align-items: center;
		position: relative;
		z-index: 1;
	}
	.main .banner::before {
		content: '';
		background: url('../images/bg.webp') no-repeat center center;
		background-size: cover;
		width: 100%;
		height: 100%;
		opacity: 0.2;
		position: absolute;
		z-index: -1;
	}
	.main .banner__title {
		font-size: 28px;
		max-width: 100%;
		text-align: center;
	}
	.main .cards {
		grid-template-columns: repeat(auto-fit, minmax(150px, 2fr));
	}
	.main .content img {
		max-width: 100%;
	}
	.main .faq {
		max-width: 100%;
		margin: 30px 0;
		gap: 30px;
	}
	.main .faq__title {
		font-size: 24px;
	}
	.main .faq__question {
		font-size: 16px;
	}
	.main .faq__question-button {
		width: 30px;
		height: 30px;
	}
	.main .faq__icon {
		width: 14px;
		height: 14px;
	}
	.main .faq__body {
		margin-top: 20px;
		font-size: 14px;
	}
	.footer .container {
		flex-direction: column;
		gap: 20px;
	}
}
@keyframes _ngcontent-wlc-app-c30_sheen {
	0% {
		transform: skewY(-45deg) translateX(0);
	}
	50%,
	100% {
		transform: skewX(-45deg) translateX(22em);
		transition: all 0.5s ease-in-out;
	}
}
