@charset "UTF-8";
/***
    The new CSS reset - version 1.8.5 (last updated 14.6.2023)
    GitHub page: https://github.com/elad2412/the-new-css-reset
***/
/*
    Remove all the styles of the "User-Agent-Stylesheet", except for the 'display' property
    - The "symbol *" part is to solve Firefox SVG sprite bug
    - The "html" attribute is exclud, because otherwise a bug in Chrome breaks the CSS hyphens property (https://github.com/elad2412/the-new-css-reset/issues/36)
 */
@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;
}

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

/* 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: #391616;
}

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;
}

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;
	overflow: auto;
}
table tr td,
table tr th {
	border: 1px solid #fff;
	padding: 15px;
}
table tr th {
	background: #290909;
	color: #fff;
	font-size: 18px;
	text-align: center;
}
table tr td:hover {
	background-color: rgba(94, 175, 251, 0.2117647059);
}

.header {
	position: sticky;
	width: 100%;
	top: 0;
	left: 0;
	z-index: 99;
	background: #290909;
	padding: 20px 0;
}
.header .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.header .container .auth {
	display: flex;
	align-items: center;
	gap: 15px;
}
.header .container .auth .btn {
	border-radius: 100px;
	padding: 12px 25px;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 150px;
	transition: all 0.2s ease-in-out;
}
.header .container .auth .btn-1 {
	border: 1px solid #ff7300;
	color: #ff7300;
}
.header .container .auth .btn-1:hover {
	background: rgba(166, 165, 165, 0.1254901961);
}
.header .container .auth .btn-2 {
	background: #ff7300;
	box-shadow: 0px 4px 0px 0px #703300;
	color: #fff;
	font-weight: 600;
}
.header .container .auth .btn-2:hover {
	background: linear-gradient(32.86deg, #ff7300 0%, #703300 100%);
}

.main {
	height: 100%;
	flex: 1 1 auto;
	padding: 50px 0;
}
.main .banner {
	background: url('/assets/images/bg.svg') no-repeat center center;
	background-size: cover;
	border-radius: 16px;
	background-blend-mode: screen;

	max-width: 70vw;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	flex-direction: column;
	align-items: center;
	gap: 20px;
	padding: 20px;
}
.main .banner__title {
	font-size: 32px;
	font-weight: 600;
	color: #ffd000;
}
.main .banner__btn {
	border-radius: 100px;
	padding: 12px 25px;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 200px;
	background: #ff7300;
	box-shadow: 0px 4px 0px 0px #703300;

	color: #fff;
	font-weight: 600;
}
.main .banner__btn:hover {
	background: linear-gradient(32.86deg, #ff7300 0%, #703300 100%);
}
.main .content {
	border-radius: 6px;
	padding: 20px 0;
	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: #ffffff1a;
	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: radial-gradient(
		75% 100% at 50.34% 100%,
		#20ff49 0%,
		#00ca54 100%
	);
	color: #fff;
	border-radius: 6px;
	font-weight: 600;
	position: relative;
	overflow: hidden;
}
.main__btn a:hover {
	background: radial-gradient(
		75% 100% at 50.34% 100%,
		#00ca54 0%,
		#20ff49 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 .soft {
	padding: 30px 0;
	background-color: #ffffff1a;
	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;
}

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

.footer {
	padding: 30px 0;
	background-color: #290909;
}
.footer .container {
	display: flex;
	justify-content: center;
	text-align: center;
}
.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;
}

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

@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;
	}
	.main {
		padding: 30px 0;
	}
	.main .banner {
		max-width: 100%;
	}
	.main .banner__title {
		font-size: 28px;
	}
	.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;
	}
}
@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;
	}
}
.footer-menu {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap:15px;
	list-style: none;
	margin-bottom: 20px;
}
.footer-menu a {
	color:#fff;
	text-decoration: none;
}