:root {
	--j-margin-section: 60px;
	--j-margin-section-mob: 30px;
	--j-margin-block: 40px;
	--j-margin-block-mob: 28px;

	--j-accent-color: #3D63F1;
	--j-secondary-color: #00C868;
	--j-header-color: #0D1428;
	--j-footer-color: #0D1428;
	--j-header-and-footer-text: #FFFFFF;
	--j-header-and-footer-secondary-text: #3F4A69;
	--j-text-color: #ffffff;
	--j-bg-color: #090E1A;
	--j-blocks-color: #0D1428;
	--j-text-blocks-color: #FFFFFF;
	--j-style1-color: #1D273F;
	--j-banners-color: #090909;
	--j-text-banners-color: #ffffff;

	--j-buttons-accent-bg: #3d63f1;
	--j-buttons-accent-bg-hover: #3d63f1;
	--j-buttons-accent-color: #ffffff;
	--j-buttons-secondary-bg: #00c868;
	--j-buttons-secondary-bg-hover: #00c868;
	--j-buttons-secondary-color: #ffffff;
	--j-buttons-style1-bg: #444e66;
	--j-buttons-style1-bg-hover: #444e66;
	--j-buttons-style1-color: #ffffff;
	--j-buttons-style2-bg: #ffffff;
	--j-buttons-style2-bg-hover: #ffffff;
	--j-buttons-style2-color: #000000;

	--j-rounded-large: 16px;
	--j-rounded-medium: 8px;
	--j-rounded-small: 6px;
	--j-rounded-button: 8px;

	--j-text-size: 16px;
	--j-text-size-secondary: 14px;
}

body {
	margin: 0;
	font-family: 'Montserrat', sans-serif;
	background: var(--j-bg-color);
	color: var(--j-text-color);
	font-size: var(--j-text-size);
	line-height: 130%;
}
li, h1, h2, h3, h4, h5 {
	margin: 0;
	padding: 0;
}
h1, h2, h3, h4, h5 {
	font-weight: 700;
	line-height: 120%;
	margin-bottom: 20px;
}
h1 {
	font-size: 38px;
	text-transform: uppercase;
}
h2 {
	width: 100%;
	padding-bottom: 10px;
	font-size: 30px;
	border-bottom: 4px solid var(--j-accent-color);
}
h3 {
	font-size: 24px;
}
h4 {
	font-size: 22px;
}
h5 {
	font-size: 18px;
}
.container {
	max-width: 1300px;
	width: 100%;
	padding-right: 14px;
	padding-left: 14px;
	margin: auto;
	padding-bottom: 0;
}
::-webkit-scrollbar {
	width: 4px;
	background: transparent;
}
::-webkit-scrollbar-thumb {
	background: var(--j-buttons-accent-bg);
}
@media (max-width: 1199px) {
	h1 {
		font-size: 28px;
	}
	h2 {
		font-size: 24px;
	}
	h3 {
		font-size: 20px;
	}
	h4 {
		font-size: 18px;
	}
	h5 {
		font-size: 16px;
	}
}

a {
	color: var(--j-buttons-secondary-bg);
	transition: color .3s ease;
}
a:hover {
	color: var(--j-buttons-secondary-bg-hover);
}

/**
	Header
 */
header.header {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 14px;
	position: sticky;
	top: 0;
	left: 0;
	color: var(--j-header-and-footer-text);
	background: var(--j-header-color);
	z-index: 1000;
	overflow: visible;
}
header.header.shadow {
	box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.25);
}
header.header ul {
	margin: 0;
}
header.header .head-container {
	max-width: 1300px;
	width: -webkit-fill-available;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 14px;
}
header.header .logo {
	max-width: 175px;
}
header.header .logo img {
	max-height: 50px;
}
header.header .line-1 {
	display: flex;
	gap: 20px;
	justify-content: space-between;
	flex-direction: row;
}
header.header .line-1 .first-block {
	display: flex;
	justify-content: space-between;
	width: -webkit-fill-available;
}
header.header .line-1 .first-block > div {
	display: flex;
	gap: 20px;
}
header.header .line-1 .first-block .nav-block {
	width: -webkit-fill-available;
}
header.header .line-1 .nav {
	width: -webkit-fill-available;
	max-width: 70%;
	display: flex;
	gap: 10px;
	align-items: center;
}
header.header .line-1 .nav > ul {
	display: flex;
	flex-direction: row;
	gap: 10px;
}
header.header .nav > ul li {
	position: relative;
}
header.header .nav > ul li .border {
	position: absolute;
	width: 100%;
	height: 100%;
	border: 2px solid var(--j-header-and-footer-secondary-text);
	border-radius: var(--j-rounded-medium);
	transition: border-color 0.3s ease;
}
header.header .nav > ul li:hover .border {
	border-color: var(--j-accent-color);
}
header.header .nav > ul li .sub-menu .border {
	display: none;
}
header.header .nav ul li .arrow {
	position: absolute;
	top: 0;
	right: 0;
	padding-right: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	z-index: 5;
	transform: translateY(-50%);
	cursor: pointer;
}
header.header .nav ul li .arrow i {
	transition: transform 0.3s ease;
	font-weight: 900;
	color: var(--j-header-and-footer-text);
}
header.header .nav > ul > li > a {
	position: relative;
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 6px;
	padding: 12px;
	font-size: 14px;
	font-weight: 600;
	line-height: 18.2px;
	text-transform: uppercase;
	color: var(--j-header-and-footer-text);
	background: transparent;
	z-index: 2;
}
header.header .line-1 .nav .header_add_menu {
	position: relative;
}
header.header .line-1 .nav .header_add_menu .header_menu_dots {
	height: 100%;
	padding: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 2px solid var(--j-header-and-footer-secondary-text);
	border-radius: var(--j-rounded-medium);
	cursor: pointer;
	transition: border 0.3s ease;
}
header.header .line-1 .nav .header_add_menu .header_menu_dots:hover {
	border: 2px solid var(--j-accent-color);
}
header.header .line-1 .nav .header_add_menu ul {
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	flex-direction: column;
	padding: 12px 0;
	margin: 0;
	list-style: none;
	z-index: 10;
	border-radius: 10px;
	border: 2px solid var(--j-header-and-footer-secondary-text);
	background-color: var(--j-header-color);
}
header.header .line-1 .nav .header_add_menu > ul {
	top: calc(100% + 10px);
}
header.header .line-1 .nav .header_add_menu > ul li a {
	display: flex;
	padding: 6px 12px;
	gap: 4px;
	font-weight: 600;
	font-size: 14px;
	line-height: 130%;
	text-transform: uppercase;
	text-align: center;
	color: var(--j-header-and-footer-text);
}
header.header .line-1 .nav .header_add_menu > ul > li > a {
	padding: 12px;
}
header.header .line-1 .nav .header_add_menu > ul li .sub-menu li {
	border: none;
	padding-top: 0;
	padding-bottom: 0;
}
header.header .line-1 .nav .header_add_menu > ul li .sub-menu {
	left: 100%;
	margin-left: 5px;
}
header.header .mobile-menu .nav > ul li {
	padding-right: 12px;
}
header.header .mobile-menu .download-buttons .btn {
	max-width: none;
}
header.header .nav > ul > li > .border:hover {
	border: 2px solid var(--j-accent-color);
	color: var(--j-header-and-footer-text);
	cursor: pointer;
}
header.header .line-1 .first-block .sub-menu {
	display: none;
	flex-direction: column;
	position: absolute;
	top: calc(100%);
	left: 0;
	z-index: 10;
	border-radius: var(--j-rounded-medium);
}
header.header .line-1 .first-block .sub-menu li:first-child {
	margin-top: 8px;
	padding-top: 26px;
	border-top: 2px solid var(--j-header-and-footer-secondary-text);
	border-top-left-radius: var(--j-rounded-medium);
	border-top-right-radius: var(--j-rounded-medium);
}
header.header .line-1 .nav .header_add_menu > ul li {
	position: relative;
	margin: 0 !important;
}
header.header .line-1 .first-block .sub-menu li:last-child {
	padding-bottom: 26px;
	border-bottom: 2px solid var(--j-header-and-footer-secondary-text);
	border-bottom-left-radius: var(--j-rounded-medium);
	border-bottom-right-radius: var(--j-rounded-medium);
}
header.header .line-1 .first-block .sub-menu li {
	width: 100%;
	display: flex;
	gap: 4px;
	align-items: center;
	padding: 6px 20px;
	text-transform: uppercase;
	border-right: 2px solid var(--j-header-and-footer-secondary-text);
	border-left: 2px solid var(--j-header-and-footer-secondary-text);
	background: var(--j-header-color);
}
header.header .line-1 .first-block .sub-menu li a {
	display: block;
	font-weight: 600;
	font-size: 14px;
	color: var(--j-header-and-footer-text);
	transition: color 0.3s ease;
}
header.header .line-1 .first-block .sub-menu li a:hover {
	color: var(--j-buttons-accent-bg);
}
header.header .line-1 .first-block .nav li:hover .sub-menu {
	display: flex;
	flex-direction: column;
}
header.header .line-1 .first-block .menu-mobile-icon {
	display: none;
	color: var(--j-buttons-style1-color);
}
header.header .line-1 .lang-block {
	width: max-content;
	position: relative;
	display: flex;
	gap: 6px;
	align-items: center;
	padding: 10px 12px;
	border: 2px solid var(--j-header-and-footer-secondary-text);
	border-radius: var(--j-rounded-medium);
	cursor: pointer;
}
header.header .line-1 .lang-block i {
	transition: transform 0.3s ease;
}
header.header .line-1 .lang-block img {
	width: 22px;
	height: 22px;
	border-radius: 50%;
}
header.header .line-1 .lang-block span {
	font-size: 14px;
	font-weight: 600;
	line-height: 18.2px;
	text-align: left;
	text-transform: uppercase;
}
header.header .line-1 .buttons {
	display: flex;
	gap: 10px;
}
header.header .line-1 .buttons .btn {
	width: -webkit-fill-available;
}
header.header .line-2 {
	padding-top: 14px;
	border-top: 2px solid var(--j-header-and-footer-secondary-text);
}
header.header .line-2 ul {
	display: flex;
	flex-direction: row;
	gap: 10px;
}
header.header .line-2 ul li {
	position: relative;
}
header.header .line-2 ul li a {
	position: relative;
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 6px;
	padding: 12px;
	font-size: 14px;
	font-weight: 600;
	line-height: 18.2px;
	text-transform: uppercase;
	color: var(--j-header-and-footer-text);
	background: transparent;
	z-index: 2;
	border-radius: var(--j-rounded-medium);
	border: 2px solid var(--j-header-and-footer-secondary-text);
	transition: border 0.3s ease;
}
header.header .line-2 ul li a:hover {
	border: 2px solid var(--j-accent-color);
	color: var(--j-header-and-footer-text);
	cursor: pointer;
}
header.header .mobile-menu {
	display: none;
	gap: 20px;
	flex-direction: column;
	justify-content: space-between;
	height: 100%;
}
header.header .mobile-menu nav {
	width: 100%;
}
header.header .mobile-menu nav ul {
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 8px;
}
header.header .mobile-menu nav li .sub-menu {
	width: 100%;
	margin-top: 8px;
	padding: 12px;
	display: none;
	flex-direction: column;
	gap: 12px;
	border: 2px solid var(--j-header-and-footer-secondary-text);
	border-radius: var(--j-rounded-medium);
	cursor: pointer;
}
header.header .mobile-menu nav .sub-menu li {
	width: 100%;
	font-size: 14px;
	font-weight: 600;
	line-height: 18.2px;
	text-transform: uppercase;
}
header.header .mobile-menu nav .sub-menu li .border {
	border: none;
}
header.header .mobile-menu nav .sub-menu li a {
	padding: 0;
	color: var(--j-header-and-footer-text);
}
header.header .mobile-menu nav .sub-menu li a:hover {
	border: none;
}
@media (max-width: 1199px) {
	header.header {
		padding: 14px;
	}
	header.header .line-1 {
		flex-direction: column;
	}
	header.header .line-1 .first-block .nav {
		display: none;
	}
	header.header .line-1 .first-block .menu-block {
		display: flex;
		gap: 20px;
	}
	header.header .line-1 .first-block .menu-mobile-icon {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 42px;
		height: 42px;
		border-radius: var(--j-rounded-medium);
		background-color: var(--j-buttons-style1-bg);
		cursor: pointer;
	}
	header.header .line-2 {
		display: none;
	}
	header.header .mobile-menu .nav > ul li {
		padding-right: 0;
	}
}

/**
	Footer
 */
footer {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px 0;
	background: var(--j-footer-color);
}
footer .container {
	padding-top: 0;
}
footer .footer-container {
	display: flex;
	flex-direction: column;
	gap: 20px;
	width: -webkit-fill-available;
	color: var(--j-header-and-footer-text);
}
footer .footer-container .links {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	align-items: center;
	position: relative;
	z-index: 1;
}
footer .footer-container .links nav ul {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	margin: 0;
}
footer .footer-container .links nav ul li a {
	font-size: 14px;
	transition: color 0.2s ease-in-out;
	color: var(--j-header-and-footer-text);
}
footer .footer-container .links nav ul li a:hover {
	color: var(--j-accent-color);
}
footer .footer-container .links .socials {
	display: flex;
	gap: 10px;
}
footer .footer-container .links .socials li {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 35px;
	height: 35px;
	transition: background-color 0.2s ease-in-out;
	color: var(--j-buttons-style1-color);
	background: var(--j-buttons-style1-bg);
	border-radius: var(--j-rounded-medium);
}
footer .footer-container .links .socials li:hover {
	background-color: var(--j-accent-color);
}
footer .footer-container .divider {
	width: 100%;
	height: 2px;
	background-color: var(--j-header-and-footer-secondary-text);
}
footer .footer-container .links-2 {
	display: flex;
	gap: 20px;
	justify-content: space-between;
}
footer .footer-container .links-2 .payment {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
	margin: 0;
	color: var(--j-header-and-footer-text);
}
footer .footer-container .links-2 .payment li {
	display: flex;
	align-items: center;
	justify-content: center;
}
footer .footer-container .links-2 .payment img {
	height: 20px;
}
footer .footer-container .footer-bottom {
	display: flex;
	gap: 20px;
	justify-content: space-between;
	align-items: center;
}
footer .footer-container .footer-bottom .text {
	max-width: 980px;
	min-width: 50%;
	font-size: 12px;
	color: var(--j-header-and-footer-secondary-text);
}
footer .footer-container .footer-bottom .icons {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}
footer .footer-container .footer-bottom .icons img {
	height: 35px;
	max-width: none;
}
footer .footer-container .copyright {
	font-weight: 400;
	font-size: 12px;
	color: var(--j-header-and-footer-secondary-text);
}
@media (max-width: 1199px) {
	footer .footer-container .links,
	footer .footer-container .links-2,
	footer .footer-container .footer-bottom {
		flex-direction: column;
		align-items: flex-start;
	}
	footer .footer-container .links-2 .download-buttons {
		width: 100%;
	}
	footer .footer-container .footer-bottom .text {
		max-width: none;
		min-width: none;
	}
}

/**
	Breadcrumbs
 */
.breadcrumbs {
	font-size: var(--j-text-size-secondary);
	color: var(--j-header-and-footer-secondary-text);
	margin-bottom: var(--j-margin-block);
}
.breadcrumbs a {
	text-decoration: none;
	color: var(--j-accent-color);
}
@media (max-width: 1199px) {
	.breadcrumbs {
		margin-bottom: var(--j-margin-block-mob);
	}
}

/**
	Common
 */
.section_title {
	width: 100%;
	padding-bottom: 10px;
	font-weight: 700;
	font-size: 30px;
	line-height: 120%;
	border-bottom: 4px solid var(--j-accent-color);
	color: var(--j-text-color);
}
main .paragraph {
	font-weight: 400;
	font-size: 16px;
	line-height: 130%;
	color: var(--j-text-color);
}
main .paragraph span {
	color: var(--j-secondary-color);
}
@media (max-width: 1199px) {
	.section_title {
		font-size: 24px;
	}
}

/**
	Buttons
 */
.btn,
.wp-block-buttons .wp-block-button .wp-block-button__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
	padding: 12px 24px;
	font-size: 14px;
	font-weight: 600;
	line-height: 18px;
	text-transform: uppercase;
	text-decoration: none;
	color: #fff;
	cursor: pointer;
	transition: color .3s ease, background-color .3s ease;
	border-radius: var(--j-rounded-button);
	font-family: 'Montserrat', sans-serif;
}
.btn.accent-btn {
	color: var(--j-buttons-accent-color);
	background: var(--j-buttons-accent-bg);
}
.wp-block-buttons .wp-block-button .wp-block-button__link {
	color: var(--j-buttons-accent-color);
	background: var(--j-buttons-accent-bg);
}
.btn.accent-btn:hover {
	background: var(--j-buttons-accent-bg-hover);
}
.wp-block-buttons .wp-block-button .wp-block-button__link:hover {
	background: var(--j-buttons-accent-bg-hover);
}
.btn.secondary-btn {
	color: var(--j-buttons-secondary-color);
	background-color: var(--j-buttons-secondary-bg);
}
.wp-block-buttons .wp-block-button.is-style-secondary .wp-block-button__link {
	color: var(--j-buttons-secondary-color);
	background-color: var(--j-buttons-secondary-bg);
}
.btn.secondary-btn:hover {
	background-color: var(--j-buttons-secondary-bg-hover);
}
.wp-block-buttons .wp-block-button.is-style-secondary .wp-block-button__link:hover {
	background-color: var(--j-buttons-secondary-bg-hover);
}
.btn.style1-btn {
	color: var(--j-buttons-style1-color);
	background-color: var(--j-buttons-style1-bg);
}
.wp-block-buttons .wp-block-button.is-style-style1 .wp-block-button__link {
	color: var(--j-buttons-style1-color);
	background-color: var(--j-buttons-style1-bg);
}
.btn.style1-btn:hover {
	background-color: var(--j-buttons-style1-bg-hover);
}
.wp-block-buttons .wp-block-button.is-style-style1 .wp-block-button__link:hover {
	background-color: var(--j-buttons-style1-bg-hover);
}
.btn.style2-btn {
	color: var(--j-buttons-style2-color);
	background-color: var(--j-buttons-style2-bg);
}
.wp-block-buttons .wp-block-button.is-style-style2 .wp-block-button__link {
	color: var(--j-buttons-style2-color);
	background-color: var(--j-buttons-style2-bg);
}
.btn.style2-btn:hover {
	background-color: var(--j-buttons-style2-bg-hover);
}
.wp-block-buttons .wp-block-button.is-style-style2 .wp-block-button__link:hover {
	background-color: var(--j-buttons-style2-bg-hover);
}
.wp-block-buttons {
	margin-bottom: var(--j-margin-block);
}
.wp-block-buttons .wp-block-button .wp-block-button__link > span {
	overflow: hidden;
	text-overflow: ellipsis;
	max-width: 100%;
}
.wp-block-buttons .wp-block-button .wp-block-button__link {
	min-width: 175px;
}
@media (max-width: 1199px) {
	.wp-block-buttons {
		margin-bottom: var(--j-margin-block-mob);
	}
}
@media (max-width: 575px) {
	.wp-block-buttons .wp-block-button {
		width: 100%;
	}
	.wp-block-buttons .wp-block-button .wp-block-button__link {
		width: 100%;
	}
}

/**
	Section
 */
.wp-block-hb-g-section {
	margin-bottom: var(--j-margin-section);
}
.wp-block-hb-g-section .wp-block-image img {
	border-radius: var(--j-rounded-large);
}
.wp-block-hb-g-section ol {
	list-style: none;
	padding: 0;
	margin-bottom: var(--j-list-margin-bottom);
	counter-reset: item;
}
.wp-block-hb-g-section ol li ul {
	margin-top: 8px;
	margin-bottom: 0;
}
.wp-block-hb-g-section ol li ol {
	margin-top: 8px;
	margin-bottom: 0;
}
.wp-block-hb-g-section ol > li {
	position: relative;
	padding-left: 34px;
	margin-bottom: 8px;
}
.wp-block-hb-g-section ol > li {
	counter-increment: item;
}
.wp-block-hb-g-section ol > li:before {
	position: absolute;
	left: 0;
	top: -1px;
	content: counter(item);
	display: flex;
	width: 24px;
	height: 24px;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	font-weight: 700;
	color: var(--theme-color-style3);
	background-color: var(--theme-color-accent);
	border-radius: 50%;
}
.wp-block-hb-g-section ul {
	list-style: none;
	padding: 0;
	margin-bottom: var(--j-list-margin-bottom);
}
.wp-block-hb-g-section ul li ol {
	margin-top: 8px;
	margin-bottom: 0;
}
.wp-block-hb-g-section ul li ul {
	margin-top: 8px;
	margin-bottom: 0;
}
.wp-block-hb-g-section ul > li {
	position: relative;
	padding-left: 34px;
	margin-bottom: 8px;
}
.wp-block-hb-g-section ul > li:before {
	position: absolute;
	left: 0;
	top: -1px;
	content: "✓";
	display: flex;
	width: 24px;
	height: 24px;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	font-weight: 700;
	color: var(--theme-color-style3);
	background-color: var(--theme-color-accent);
	border-radius: 50%;
}
.wp-block-hb-g-section > *:last-child {
	margin-bottom: 0;
}
.wp-block-hb-g-section ul {
	list-style: none;
	padding: 0;
}
.wp-block-hb-g-section ul li {
	position: relative;
	padding-left: 34px;
	margin-bottom: 10px;
}
.wp-block-hb-g-section ul li:last-child {
	margin-bottom: 0;
}
.wp-block-hb-g-section ul li span {
	font-weight: 400;
	font-size: 16px;
	line-height: 130%;
}
.wp-block-hb-g-section ul > li:before {
	font-family: "Font Awesome 6 Pro";
	content: "";
	position: absolute;
	left: 0;
	top: -2px;
	display: flex;
	width: 24px;
	height: 24px;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	line-height: normal;
	color: var(--j-secondary-color);
}
.wp-block-hb-g-section ol {
	list-style: none;
	padding: 0;
}
.wp-block-hb-g-section ol li {
	position: relative;
	padding-left: 34px;
	margin-bottom: 10px;
}
.wp-block-hb-g-section ol li:last-child {
	margin-bottom: 0;
}
.wp-block-hb-g-section ol li span {
	font-weight: 400;
	font-size: 16px;
	line-height: 130%;
}
.wp-block-hb-g-section ol {
	counter-reset: item;
}
.wp-block-hb-g-section ol > li {
	counter-increment: item;
}
.wp-block-hb-g-section ol > li:before {
	position: absolute;
	left: 0;
	top: -2px;
	content: counter(item);
	display: flex;
	width: 24px;
	height: 24px;
	align-items: center;
	justify-content: center;
	font-weight: 600;
	font-size: 16px;
	color: var(--j-secondary-color);
	line-height: 130%;
}
@media (max-width: 1199px) {
	.wp-block-hb-g-section {
		margin-bottom: var(--j-margin-section-mob);
	}
	.wp-block-hb-g-section ol {
		margin-bottom: var(--j-list-margin-bottom);
	}
	.wp-block-hb-g-section ul {
		margin-bottom: var(--j-list-margin-bottom);
	}
}

/* Hero Section */
.hero {
	display: flex;
	align-items: center;
	flex-direction: column;
	gap: 20px;
	padding: 40px 14px;
	width: -webkit-fill-available;
	position: relative;
	background-color: var(--j-header-color);
	margin-bottom: 40px;
}
.hero .background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: var(--background_image, none);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}
.hero .text-block {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 20px;
	max-width: 1080px;
	position: relative;
	text-align: center;
	z-index: 1;
}
.hero .text-block .top {
	display: flex;
	flex-direction: column;
	gap: 10px;
	align-items: center;
}
.hero .text-block h1 {
	margin: 0;
}
.hero .text-block b {
	color: var(--j-secondary-color);
	font-weight: inherit;
}
.hero .text-block .top .divider {
	width: 100px;
	height: 4px;
	border-radius: var(--j-rounded-medium);
	background-color: var(--j-secondary-color);
}
.hero .image-bg {
	max-width: 880px;
}
.hero .image-bg img {
	border-radius: var(--j-rounded-large);
}
.hero .breadcrumbs {
	z-index: 1;
	text-align: center;
	margin-bottom: 0;
}
.hero .download-buttons {
	width: 100%;
	max-width: 600px;
}
@media (max-width: 1199px) {
	.hero {
		padding: 40px 14px 14px;
		margin-bottom: 0;
	}
	.hero .background {
		background: transparent;
	}
}

/**
	App Buttons
 */
.download-buttons {
	display: flex;
	gap: 10px;
	height: fit-content;
}
.download-buttons .btn {
	display: flex;
	gap: 10px;
	width: -webkit-fill-available;
	font-size: 12px;
	font-weight: 400;
	line-height: 16.8px;
	padding: 6px 24px;
	text-align: left;
	text-transform: none;
	color: var(--j-buttons-style2-color);
	background-color: var(--j-buttons-style2-bg);
}
.download-buttons .btn:hover {
	background-color: var(--j-buttons-style2-bg-hover);
}
.download-buttons .btn > div:last-child {
	display: flex;
	flex-direction: column;
}
.download-buttons .btn span {
	font-weight: 700;
	white-space: nowrap;
}

/**
	arrow-up
 */
.arrow-up {
	position: fixed;
	right: 5%;
	bottom: -20%;
	width: 44px;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: bottom 0.3s ease;
	z-index: 100;
	box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.25);
	color: var(--j-buttons-style1-color);
	background: var(--j-buttons-style1-bg);
	border-radius: var(--j-rounded-medium);
}
.arrow-up.active {
	bottom: 5%;
}

/**
	Panel
 */
.mobile-panel {
	display: none;
	justify-content: space-between;
	align-items: center;
	gap: 10px;
	position: fixed;
	left: 0;
	bottom: -20%;
	padding: 14px;
	width: -webkit-fill-available;
	transition: bottom 0.5s ease;
	border-top: 2px solid var(--j-accent-color);
	box-shadow: 0 -8px 20px 0 rgba(0, 0, 0, 0.25);
	background: var(--j-header-color);
}
.mobile-panel.active {
	bottom: 0;
	z-index: 10;
}
.mobile-panel .main-text {
	display: flex;
	gap: 10px;
	color: var(--j-text-color);
}
.mobile-panel .main-text .icon {
	border-radius: var(--j-rounded-medium);
	padding: 10px;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--j-buttons-accent-bg);
}
.mobile-panel .main-text .icon i {
	font-size: 30px;
}
.mobile-panel .main-text .text {
	display: flex;
	justify-content: center;
	flex-direction: column;
}
.mobile-panel .main-text .bonus-title {
	font-weight: 700;
	font-size: 16px;
	text-transform: uppercase;
}
.mobile-panel .main-text .bonus-text {
	font-size: 10px;
	line-height: 140%;
}
.mobile-panel .download-buttons .btn {
	padding: 6px 14px;
}
@media (max-width: 1199px) {
	.arrow-up {
		right: 14px;
	}
	.mobile-panel {
		display: flex;
	}
	.container {
		padding: 30px 14px;
		padding-bottom: 0;
	}
}

/**
	table of content
 */
.lwptoc {
	margin: 0 0 var(--j-margin-section) !important;
	background-color: transparent !important;
}
.lwptoc_i {
	padding: 20px;
	display: flex;
	flex-direction: column;
	gap: 20px;
	border: 2px solid var(--j-accent-color);
	background-color: transparent !important;
	border-radius: var(--j-rounded-large);
}
.lwptoc_i .lwptoc_header {
	margin: 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	color: var(--j-text-color);
}
.lwptoc_i .lwptoc_header .lwptoc_title {
	font-weight: 700;
	font-size: 18px;
	line-height: 130%;
	color: var(--j-text-color);
}
.lwptoc_i .lwptoc_header .lwptoc_toggle_arrow {
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--j-buttons-style1-bg);
	border-radius: var(--j-rounded-small);
	cursor: pointer;
	transition: transform 0.3s ease;
}
.lwptoc_i .lwptoc_header .lwptoc_toggle_arrow svg {
	fill: var(--j-buttons-style1-color);
	transition: transform 0.3s ease;
}
.lwptoc_i .lwptoc_items .lwptoc_itemWrap {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 10px;
	width: 100%;
}
.lwptoc_i .lwptoc_items .lwptoc_itemWrap li:before {
	display: none;
}
.lwptoc_i .lwptoc_items .lwptoc_itemWrap li a:hover {
	border: none !important;
}
.lwptoc_i .lwptoc_items .lwptoc_itemWrap li a {
	display: flex;
	font-size: 16px;
	line-height: 130%;
}
.lwptoc_i .lwptoc_items .lwptoc_itemWrap li a .lwptoc_item_number {
	font-weight: 600;
	color: var(--j-secondary-color);
	padding: 0 8px;
}
.lwptoc_i .lwptoc_items .lwptoc_itemWrap li a .lwptoc_item_label {
	font-weight: 400;
	color: var(--j-text-color);
}
@media (max-width: 1199px) {
	.lwptoc {
		margin: 0 0 var(--j-margin-section-mob) !important;
	}
	.lwptoc_i .lwptoc_header .lwptoc_title {
		font-size: 16px;
	}
	.lwptoc_i .lwptoc_items .lwptoc_itemWrap {
		grid-template-columns: 1fr;
	}
}

/* WP Table */
.wp-block-table {
	margin-bottom: var(--j-p-margin-bottom);
	overflow: auto;
	max-width: 94vw;
}
.wp-block-table table {
	min-width: max-content;
	width: 100%;
}
.wp-block-table table tr {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	grid-auto-flow: column;
}
.wp-block-table table tr th,
.wp-block-table table tr td {
	border: none;
	font-weight: 400;
	font-size: 16px;
	line-height: 130%;
	padding: 8px 10px;
}
.wp-block-table table thead {
	border: none;
}
.wp-block-table table thead tr th {
	background-color: var(--j-accent-color);
}
.wp-block-table table thead tr {
	margin-bottom: 6px;
}
.wp-block-table table thead tr th:first-child {
	border-top-left-radius: var(--j-rounded-medium);
	border-bottom-left-radius: var(--j-rounded-medium);
}
.wp-block-table table thead tr th:last-child {
	border-top-right-radius: var(--j-rounded-medium);
	border-bottom-right-radius: var(--j-rounded-medium);
}
.wp-block-table table tbody tr:not(:first-child) {
	margin-top: 6px;
}
.wp-block-table table tbody tr td {
	background-color: var(--j-style1-color);
}
.wp-block-table table tbody tr td:first-child {
	border-top-left-radius: var(--j-rounded-medium);
	border-bottom-left-radius: var(--j-rounded-medium);
}
.wp-block-table table tbody tr td:last-child {
	border-top-right-radius: var(--j-rounded-medium);
	border-bottom-right-radius: var(--j-rounded-medium);
}
.wp-block-table::-webkit-scrollbar {
	height: 5px;
}
.wp-block-table::-webkit-scrollbar-track {
	background: transparent; /* Цвет фона трека полосы прокрутки */
	border-radius: 10px;
	margin-top: 10px;
	padding-top: 10px;
}
.wp-block-table::-webkit-scrollbar-track {
	border-radius: 10px;
}
@media (max-width: 1199px) {
	.wp-block-table {
		padding-bottom: 20px;
	}
}

/* 404 */
.error404 {
	display: flex;
	flex-direction: column;
	height: 100vh;
	justify-content: space-between;
}
.error-page {
	flex-grow: 1;
	max-height: 460px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	gap: 60px;
	margin: 40px 0;
}
.error-page .error-container {
	display: flex;
	flex-direction: column;
	gap: 20px;
	padding: 0 12px;
}
.error-page .error-container .head-block {
	display: flex;
	flex-direction: column;
	gap: 10px;
	text-align: center;
	color: var(--j-accent-color);
}
.error-page .error-container .head-block .message {
	font-size: 28px;
	font-weight: 700;
	line-height: 33.6px;
	text-align: center;
	text-transform: uppercase;
}
.error-page .error-container .head-block .error-type {
	font-size: 180px;
	font-weight: 700;
	line-height: 180px;
	text-align: center;
}
.error-page .error-container .error-description {
	max-width: 420px;
	text-align: center;
	font-size: 16px;
	font-weight: 600;
	line-height: 19.2px;
}
.error-page .copyright {
	font-size: 12px;
	font-weight: 400;
	line-height: 15.6px;
	text-align: center;
	color: var(--j-header-and-footer-secondary-text);
}
@media (max-width: 1199px) {
	.error-page .error-container .head-block .error-type {
		font-size: 100px;
		line-height: 100px;
	}
}

/**
	Post LastUpdate
 */
.post_modified_date {
	font-size: 12px;
	color: var(--j-header-and-footer-secondary-text);
	margin-bottom: var(--j-margin-block);
}
@media (max-width: 1199px) {
	.post_modified_date {
		margin-bottom: var(--j-margin-block-mob);
	}
}
