@charset 'utf-8';

:root {
	--font-title: 'Chreed', sans-serif;
	--font-content: 'Schibsted Grotesk', sans-serif;
	--first-color: #15182f;
	--second-color: #afb1c1;
	--third-color: #9fca00;
	--fourth-color: #d6ed16;
	--fifth-color: #05071d;
	--sixth-color: #373b59;
}

html,
body {
	font-family: var(--font-content);
	font-smoothing: antialiased;
	font-variant-ligatures: none;
	font-weight: 400;
	margin: 0;
	padding: 0;
	text-rendering: optimizeLegibility;
	text-shadow: 0 0 1px rgba(0,0,0,.01);
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	-webkit-font-variant-ligatures: none;
	-webkit-text-size-adjust: 100%;
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: 90px;
}

body {
	overflow-x: hidden;
}

body.no__overflow {
	overflow-y: hidden;
}

* {
	box-sizing: border-box !important;
	margin: 0;
	outline: none !important;
	padding: 0;
	resize: none !important;
}

a,
a:link,
a:visited,
a:hover,
a:active {
	text-decoration: none;
}

.img-fluid {
	display: block;
	height: auto;
	max-width: 100%;
}

.img-full {
	display: block;
	height: auto;
	width: 100%;
}

.img-center {
	display: block;
	margin: auto;
}

.container {
	margin: auto;
	max-width: 1390px;
	padding-left: 15px;
	padding-right: 15px;
	position: relative;
}

select {
	appearance: none;
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
	background-position: calc(100% - 15px);
	background-repeat: no-repeat;
	background-size: auto 14px;
	padding-right: 40px !important;
	-moz-appearance: none;
	-ms-appearance: none;
	-webkit-appearance: none;
}

.form__dropdown {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
	background-position: calc(100% - 15px);
	background-repeat: no-repeat;
	background-size: auto 14px;
	border: 1px solid #888a9b;
	border-radius: 10px;
	color: #888a9b;
	cursor: pointer;
	display: block;
	height: 60px;
	font-family: var(--font-content);
	font-size: 16px;
	position: relative;
	width: 100%;
}

.form__dropdown .dropdown__title {
	align-items: center;
	display: flex;
	height: 100%;
	gap: 10px;
	justify-content: flex-start;
	padding: 0 40px 0 20px;
}

.form__dropdown ul.dropdown__options {
	background-color: #fff;
	border: 1px solid #888a9b;
	border-radius: 10px;
	display: none;
	left: 0;
	list-style: none;
	overflow: hidden;
	position: absolute;
	top: 100%;
	right: 0;
	z-index: 1;
}

.form__dropdown ul.dropdown__options.show {
	display: block;
}

.form__dropdown ul.dropdown__options li {
	cursor: pointer;
	padding: 10px 20px;
	transition: background-color .3s, color .3s;
}

.form__dropdown ul.dropdown__options li:hover {
	background-color: var(--second-color);
	color: var(--first-color);
	transition: background-color .3s, color .3s;
}

.form__dropdown + select {
	display: none !important;
}

.arrow {
	aspect-ratio: 1/1;
	box-shadow: inset -1.5px -1.5px 0 0 currentColor;
	display: inline-flex;
	flex-shrink: 0;
	height: 1cap;
}

.arrow.up {
	transform: rotate(-135deg);
}

.arrow.right {
	transform: rotate(-45deg);
}

.arrow.down {
	transform: rotate(45deg) translateY(-3px);
}

.arrow.left {
	transform: rotate(135deg);
}

.btn__green,
.btn__blue {
	align-items: center;
	border: 0;
	border-radius: 100px;
	color: #000;
	cursor: pointer;
	display: inline-flex;
	font-family: var(--font-content);
	font-size: 18px;
	font-weight: 800;
	gap: 20px;
	isolation: isolate;
	justify-content: center;
	min-height: 55px;
	overflow: hidden;
	padding: 10px 32px;
	position: relative;
	text-align: center;
	text-transform: uppercase;
	transition: box-shadow .3s;
}

.btn__blue {
	background-color: var(--first-color);
	color: #fff;
}

.btn__green:has(.btn__arrow, .btn__image),
.btn__blue:has(.btn__arrow, .btn__image) {
	padding-right: 10px;
}

.btn__green.big,
.btn__blue.big {
	padding: 15px 15px 15px 37px;
}

.btn__green .btn__arrow,
.btn__blue .btn__arrow {
	box-shadow: inset 0 0 0 2px currentColor;
	border-radius: 100px;
	flex-shrink: 0;
	height: 34px;
	position: relative;
	transition: background-color .3s, box-shadow .3s, color .3s;
	width: 34px;
}

.btn__green .btn__arrow i,
.btn__blue .btn__arrow i {
	box-shadow: inset -2px -2px 0 0 currentColor;
	height: .8cap;
	left: calc(50% - .55cap);
	position: absolute;
	top: calc(50% - .4cap);
}

.btn__green .btn__image,
.btn__blue .btn__image {
	align-items: center;
	display: flex;
	height: 34px;
	justify-content: flex-start;
	width: 34px;
}

.btn__green .btn__image img,
.btn__blue .btn__image img {
	display: block;
	max-height: 100%;
	width: auto;
}

.btn__green:before,
.btn__green:after {
	background-image: linear-gradient(20deg, var(--third-color), var(--fourth-color));
	content: '';
	inset: 0;
	position: absolute;
	z-index: -1;
}

.btn__green:after {
	background-image: linear-gradient(-20deg, var(--third-color), var(--fourth-color));
	opacity: 0;
	transition: opacity .3s;
}

.btn__green.bright,
.btn__green.bright__hover:hover {
	box-shadow: -15px 15px 45px 0 color-mix(in srgb, var(--third-color), #fff 15%);
	transition: box-shadow .3s;
}

.btn__green:hover:after {
	opacity: 1;
	transition: opacity .3s;
}

.btn__green:hover .btn__arrow {
	background-color: #000;
	box-shadow: inset 0 0 0 2px #000;
	color: var(--third-color);
	transition: background-color .3s, box-shadow .3s, color .3s;
}

.btn__blue:hover .btn__arrow {
	background-color: #fff;
	box-shadow: inset 0 0 0 2px #fff;
	color: var(--first-color);
	transition: background-color .3s, box-shadow .3s, color .3s;
}

.btn__blue.btn__outline {
	background-color: #fff;
	border: 2px solid var(--first-color);
	color: var(--first-color);
	transition: background-color .3s, color .3s;
}

.btn__blue.btn__outline:hover {
	background-color: var(--first-color);
	color: #fff;
	transition: background-color .3s, color .3s;
}

.text__green {
	background-image: linear-gradient(to right, var(--fourth-color), var(--third-color));
	background-clip: text;
	color: transparent;
}

/* Alert */

.site__alert {
	background-color: var(--third-color);
	display: none;
}

.site__alert.active {
	display: block;
}

.site__alert .container {
	align-items: center;
	display: flex;
	gap: 10px;
	height: 50px;
}

.site__alert .alert__close img {
	cursor: pointer;
	height: 10px;
	width: auto;
}

.site__alert .alert__title {
	font-size: 12px;
}

.site__alert .alert__title b,
.site__alert .alert__title strong {
	font-weight: 800;
}

.site__alert .alert__btn {
	align-items: center;
	background-color: var(--first-color);
	border-radius: 100px;
	color: #fff;
	display: inline-flex;
	font-size: 12px;
	font-weight: 800;
	justify-content: center;
	margin-left: auto;
	padding: 5px 12px;
	transition: background-color .3s, color .3s;
}

.site__alert .alert__btn:hover {
	background-color: #fff;
	color: var(--first-color);
	transition: background-color .3s, color .3s;
}

/* Header */

.site__header {
	left: 0;
	position: fixed;
	top: 0;
	transition: transform .3s;
	width: 100%;
	z-index: 9;
}

.site__alert.active ~ .site__header {
	top: 55px;
}

.site__header.relative {
	background-color: var(--fifth-color);
	position: sticky;
	top: 0;
}

.site__alert.active ~ .site__header.relative {
	top: 0;
}

.site__header.scrolled {
	transform: translateY(-35px);
	transition: transform .3s;
}

.site__alert.active ~ .site__header.scrolled {
	transform: translateY(-90px);
}

.site__header .header__pre {
	background-color: var(--first-color);
	color: #fff;
}

.site__header .header__pre .container {
	align-items: stretch;
	display: flex;
	height: 35px;
	justify-content: space-between;
}

.site__header .header__pre .preheader__menu > ul {
	align-items: center;
	display: flex;
	height: 100%;
	list-style: none;
}

.site__header .header__pre .preheader__menu > ul > li {
	height: 100%;
}

.site__header .header__pre .preheader__menu > ul > li > a {
	align-items: center;
	color: var(--second-color);
	display: flex;
	font-size: 12px;
	font-weight: 600;
	height: 100%;
	justify-content: center;
	padding: 0 15px;
	text-align: center;
	transition: color .3s;
}

.site__header .header__pre .preheader__menu > ul > li.featured > a {
	box-shadow: inset 0 -1px 0 0 var(--third-color);
	color: #fff;
	font-weight: 800;
}

.site__header .header__pre .preheader__menu > ul > li > a:hover {
	color: #fff;
	transition: color .3s;
}

.site__header .header__pre .preheader__links {
	margin-left: auto;
	/*margin-right: 15px;*/
}

.site__header .header__pre .preheader__links > ul {
	align-items: center;
	display: flex;
	gap: 30px;
	height: 100%;
	list-style: none;
}

.site__header .header__pre .preheader__links > ul > li {
	height: 100%;
}

.site__header .header__pre .preheader__links > ul > li > a {
	align-items: center;
	color: #fff;
	display: flex;
	font-size: 12px;
	font-weight: 600;
	height: 100%;
	justify-content: center;
	text-align: center;
	transition: color .3s;
}

.site__header .header__pre .preheader__links > ul > li > a:hover {
	color: var(--second-color);
	transition: color .3s;
}

.site__header .header__pre .preheader__lang {
	margin-left: 15px;
	position: relative;
}

.site__header .header__pre .preheader__lang .lang__current {
	align-items: center;
	color: var(--second-color);
	cursor: pointer;
	display: flex;
	font-size: 12px;
	font-weight: 600;
	gap: 5px;
	height: 100%;
}

.site__header .header__pre .preheader__lang .lang__current strong {
	color: var(--fourth-color);
	font-weight: 700;
}

.site__header .header__pre .preheader__lang .lang__current span:before {
	content: '|';
	margin-right: 5px;
}

.site__header .header__pre .preheader__lang .lang__current .arrow {
	color: #fff;
	height: .75cap;
}

.site__header .header__pre .preheader__lang .lang__dropdown {
	background-color: var(--first-color);
	border: 1px solid var(--sixth-color);
	border-radius: 5px;
	min-width: 320px;
	opacity: 0;
	position: absolute;
	right: -15px;
	top: 100%;
	transition: opacity .3s, visibility .3s;
	visibility: hidden;
	z-index: 9;
}

.site__header .header__pre .preheader__lang:hover .lang__dropdown {
	opacity: 1;
	transition: opacity .3s, visibility .3s;
	visibility: visible;
}

.site__header .header__pre .preheader__lang .lang__dropdown ul {
	column-count: 2;
	list-style: none;
	padding: 12px;
}

.site__header .header__pre .preheader__lang .lang__dropdown ul li a {
	align-items: center;
	color: var(--second-color);
	display: flex;
	font-size: 12px;
	font-weight: 600;
	gap: 6px;
	padding: 8px;
}

.site__header .header__pre .preheader__lang .lang__dropdown ul li a strong {
	color: var(--fourth-color);
	font-weight: 700;
	transition: color .3s;
}

.site__header .header__pre .preheader__lang .lang__dropdown ul li a span:before {
	content: '|';
	margin-right: 5px;
}

.site__header .header__pre .preheader__lang .lang__dropdown ul li a:hover strong {
	color: #fff;
	transition: color .3s;
}

.site__header .header__content {
	transition: background-color .3s, box-shadow .3s;
}

.site__header.scrolled .header__content {
	background-color: var(--first-color);
	box-shadow: 0 0 50px 0 rgba(0,0,0,.1);
	transition: background-color .3s, box-shadow .3s;
}

.site__header .header__content .container {
	align-items: center;
	display: flex;
	justify-content: space-between;
	padding-bottom: 38px;
	padding-top: 38px;
	transition: padding-bottom .3s, padding-top .3s;
}

.site__header.scrolled .header__content .container,
.site__header.relative .header__content .container {
	padding-bottom: 18px;
	padding-top: 18px;
	transition: padding-bottom .3s, padding-top .3s;
}

.site__header.download .header__content .container {
	padding-bottom: 25px;
	padding-top: 25px;
}

.site__header .header__content .content__menu {
	margin-left: auto;
	margin-right: auto;
}

.site__header .header__content .content__menu > ul {
	align-items: center;
	display: flex;
	gap: 40px;
	justify-content: center;
	list-style: none;
	text-align: center;
}

.site__header .header__content .content__menu > ul > li > a {
	align-items: center;
	color: var(--second-color);
	display: flex;
	font-size: 15px;
	font-weight: 700;
	justify-content: center;
	padding: 10px 0;
	position: relative;
	transition: color .3s;
}

.site__header .header__content .content__menu > ul > li > a.current,
.site__header .header__content .content__menu > ul > li > a:hover {
	color: #fff;
	transition: color .3s;
}

.site__header .header__content .content__menu > ul > li > a.current:after {
	background-color: var(--third-color);
	border-radius: 3px;
	bottom: 0;
	content: '';
	height: 3px;
	position: absolute;
	width: 20px;
}

.site__header .header__content .content__btns {
	align-items: center;
	display: flex;
	gap: 10px;
	justify-content: center;
}

.site__header .header__content .content__btns a {
	box-shadow: inset 0 0 0 1px currentColor;
	border-radius: 100px;
	color: #fff;
	cursor: pointer;
	font-size: 15px;
	font-weight: 500;
	padding: 9px 22px;
	transition: background-color .3s, box-shadow .3s, color .3s;
}

.site__header .header__content .content__btns a.btn__register {
	box-shadow: inset 0 0 0 2px currentColor;
	color: var(--fourth-color);
}

.site__header .header__content .content__btns a:hover {
	background-color: #fff;
	box-shadow: inset 0 0 0 1px #fff;
	color: var(--fifth-color);
	transition: background-color .3s, box-shadow .3s, color .3s;
}

.site__header .header__content .content__btns a.btn__register:hover {
	background-color: var(--fourth-color);
	box-shadow: inset 0 0 0 1px var(--fourth-color);
}

.site__header .header__content .content__download {
	margin-left: 10px;
}

.site__header .header__content .content__logged_in {
	background-color: var(--first-color);
	border-radius: 100px;
	color: #fff;
	display: flex;
	gap: 35px;
	margin-left: auto;
	padding-left: 25px;
	transition: background-color .3s;
}

.site__header.scrolled .header__content .content__logged_in {
	background-color: var(--fifth-color);
	transition: background-color .3s;
}

.site__header .header__content .content__logged_in .logged_in__user {
	align-items: center;
	display: flex;
	gap: 10px;
}

.site__header .header__content .content__logged_in .logged_in__user span {
	font-size: 15px;
	font-weight: 700;
}

.site__header .header__content .content__logged_in .logged_in__balance {
	align-items: center;
	display: flex;
	color: var(--fourth-color);
	font-size: 20px;
	font-weight: 700;
}

.site__header .header__content .content__logged_in .logged_in__balance small {
	font-size: 15px;
}

.site__header .header__content .content__open_menu {
	align-items: center;
	background-color: transparent;
	border: 0;
	cursor: pointer;
	display: flex;
	justify-content: center;
	margin-left: 20px;
}

.site__header .header__content .content__download ~ .content__open_menu {
	display: none;
}

/* Menu Mobile */

.site__menu_mobile {
	height: 100%;
	inset: 0;
	isolation: isolate;
	opacity: 0;
	position: fixed;
	transition: opacity .3s, visibility .3s;
	visibility: hidden;
	width: 100%;
	z-index: 99;
}

.site__menu_mobile.active {
	opacity: 1;
	transition: opacity .3s, visibility .3s;
	visibility: visible;
}

.site__menu_mobile .menu_mobile__content {
	background-color: #fff;
	margin-left: auto;
	height: 100%;
	overflow-x: hidden;
	overflow-y: auto;
	transform: translateX(100%);
	transition: transform .3s;
	width: 420px;
}

.site__menu_mobile.active .menu_mobile__content {
	transform: translateX(0);
	transition: transform .3s;
}

.site__menu_mobile .menu_mobile__content .content__user {
	align-items: center;
	background-image: url('../images/bg_5.webp');
	background-repeat: repeat;
	display: flex;
	gap: 10px;
	padding: 20px;
}

.site__menu_mobile .menu_mobile__content .content__user .user__icon {
	align-items: center;
	background-color: var(--first-color);
	border-radius: 10px;
	display: flex;
	height: 40px;
	justify-content: center;
	width: 40px;
}

.site__menu_mobile .menu_mobile__content .content__user .user__data {
	font-size: 16px;
	line-height: 1;
}

.site__menu_mobile .menu_mobile__content .content__user .user__data small {
	font-size: 12px;
}

.site__menu_mobile .menu_mobile__content .content__user .user__close {
	align-items: center;
	cursor: pointer;
	display: flex;
	justify-content: center;
	margin-left: auto;
}

.site__menu_mobile .menu_mobile__content .content__btns {
	background-color: #fff;
	display: flex;
	gap: 10px;
	padding: 20px;
}

.site__menu_mobile .menu_mobile__content .content__btns a {
	flex-grow: 1;
	flex-shrink: 0;
}

.site__menu_mobile .menu_mobile__content .content__balance {
	align-items: center;
	background-color: var(--first-color);
	display: flex;
	gap: 10px;
	justify-content: space-between;
	padding: 20px;
}

.site__menu_mobile .menu_mobile__content .content__balance .balance__value span {
	align-items: center;
	display: flex;
	color: var(--fourth-color);
	font-size: 20px;
	font-weight: 700;
	line-height: 1;
}

.site__menu_mobile .menu_mobile__content .content__balance .balance__value span small {
	font-size: 15px;
}

.site__menu_mobile .menu_mobile__content .content__balance .balance__value a {
	color: var(--second-color);
	font-size: 12px;
	font-weight: 500;
	transition: color .3s;
}

.site__menu_mobile .menu_mobile__content .content__balance .balance__value a:hover {
	color: #fff;
	transition: color .3s;
}

.site__menu_mobile .menu_mobile__content .content__balance .balance__btns {
	align-items: center;
	display: flex;
	gap: 10px;
}

.site__menu_mobile .menu_mobile__content .content__balance .balance__btns a {
	border: 1px solid var(--second-color);
	border-radius: 8px;
	color: var(--second-color);
	cursor: pointer;
	font-size: 13px;
	font-weight: 500;
	padding: 8px 12px;
	transition: border-color .3s, color .3s;
}

.site__menu_mobile .menu_mobile__content .content__balance .balance__btns a:hover,
.site__menu_mobile .menu_mobile__content .content__balance .balance__btns a.active {
	border-color: #fff;
	color: #fff;
	transition: border-color .3s, color .3s;
}

.site__menu_mobile .menu_mobile__content .content__wrapper {
	display: flex;
	flex-direction: column;
	gap: 20px;
	padding: 20px;
}

.site__menu_mobile .menu_mobile__content .content__menu > ul {
	border-bottom: 1px solid #ddd;
	list-style: none;
}

.site__menu_mobile .menu_mobile__content .content__menu > ul > li {
	border-top: 1px solid #ddd;
}

.site__menu_mobile .menu_mobile__content .content__menu > ul > li > a {
	align-items: center;
	color: var(--first-color);
	display: flex;
	font-size: 18px;
	font-weight: 700;
	gap: 10px;
	padding: 12px 0;
	transition: color .3s;
}

.site__menu_mobile .menu_mobile__content .content__menu > ul > li:has(ul) > a:after {
	aspect-ratio: 1/1;
	box-shadow: inset -1.5px -1.5px 0 0 var(--second-color);
	content: '';
	height: .75cap;
	transform: rotate(45deg) translateY(5px) translateX(-5px);
	margin-left: auto;
}

.site__menu_mobile .menu_mobile__content .content__menu > ul > li.active > a:after {
	transform: rotate(-135deg) translateY(-7px) translateX(3px);
}

.site__menu_mobile .menu_mobile__content .content__menu > ul > li.active > a,
.site__menu_mobile .menu_mobile__content .content__menu > ul > li > a:hover {
	color: var(--second-color);
	transition: color .3s;
}

.site__menu_mobile .menu_mobile__content .content__menu > ul > li > ul {
	display: none;
	flex-direction: column;
	gap: 12px;
	list-style: none;
	padding: 10px 30px 30px;
}

.site__menu_mobile .menu_mobile__content .content__menu > ul > li.active > ul {
	display: flex;
}

.site__menu_mobile .menu_mobile__content .content__menu > ul > li > ul > li > a {
	align-items: center;
	color: var(--first-color);
	display: flex;
	font-size: 16px;
	gap: 8px;
	transition: color .3s;
}

.site__menu_mobile .menu_mobile__content .content__menu > ul > li > ul > li > a:before {
	aspect-ratio: 1/1;
	box-shadow: inset -1.5px -1.5px 0 0 var(--second-color);
	content: '';
	height: .75cap;
	transform: rotate(-45deg);
}

.site__menu_mobile .menu_mobile__content .content__menu > ul > li > ul > li > a:hover {
	color: var(--second-color);
	transition: color .3s;
}

.site__menu_mobile .menu_mobile__content .content__links > ul {
	display: flex;
	flex-direction: column;
	gap: 12px;
	list-style: none;
	padding-bottom: 12px;
}

.site__menu_mobile .menu_mobile__content .content__links > ul > li > a {
	align-items: center;
	color: var(--first-color);
	display: flex;
	font-size: 16px;
	gap: 8px;
	transition: color .3s;
}

.site__menu_mobile .menu_mobile__content .content__links > ul > li > a:before {
	aspect-ratio: 1/1;
	box-shadow: inset -1.5px -1.5px 0 0 var(--second-color);
	content: '';
	height: .75cap;
	transform: rotate(-45deg);
}

.site__menu_mobile .menu_mobile__content .content__links > ul > li > a:hover {
	color: var(--second-color);
	transition: color .3s;
}

.site__menu_mobile .menu_mobile__content .content__logout {
	align-items: center;
	border: 1px solid var(--first-color);
	border-radius: 100px;
	color: var(--first-color);
	display: flex;
	font-size: 15px;
	font-weight: 700;
	gap: 10px;
	padding: 12px;
	text-transform: uppercase;
	transition: background-color .3s, color .3s;
}

.site__menu_mobile .menu_mobile__content .content__logout img {
	transition: filter .3s;
}

.site__menu_mobile .menu_mobile__content .content__logout:hover {
	background-color: var(--first-color);
	color: #fff;
	transition: background-color .3s, color .3s;
}

.site__menu_mobile .menu_mobile__content .content__logout:hover img {
	filter: brightness(0) invert(1);
	transition: filter .3s;
}

.site__menu_mobile .menu_mobile__content .content__user .user__logo img {
	height: 35px;
	margin: 2.5px 0;
}

.site__menu_mobile .menu_mobile__content .content__download a {
	width: 100%;
}

.site__menu_mobile .menu_mobile__content .content__download a .btn__arrow {
	margin-left: auto;
}

.site__menu_mobile .menu_mobile__content .content__login_register {
	align-items: center;
	display: flex;
	gap: 10px;
}

.site__menu_mobile .menu_mobile__content .content__login_register a {
	align-items: center;
	border: 1px solid var(--first-color);
	border-radius: 100px;
	color: var(--first-color);
	display: flex;
	flex: 1 0 auto;
	font-size: 15px;
	font-weight: 500;
	justify-content: center;
	padding: 8px 15px;
	text-align: center;
	transition: background-color .3s, border-color .3s, color .3s;
}

.site__menu_mobile .menu_mobile__content .content__login_register a.btn__register {
	background-color: var(--first-color);
	color: #fff;
	font-weight: 700;
}

.site__menu_mobile .menu_mobile__content .content__login_register a:hover {
	background-color: var(--third-color);
	border-color: var(--third-color);
	color: var(--first-color);
	transition: background-color .3s, border-color .3s, color .3s;
}

.site__menu_mobile .menu_mobile__overlay {
	background-color: var(--fifth-color);
	height: 100%;
	inset: 0;
	opacity: .95;
	position: absolute;
	width: 100%;
	z-index: -1;
}

/* Login */

.site__login {
	align-items: center;
	display: flex;
	height: 100%;
	inset: 0;
	isolation: isolate;
	justify-content: center;
	opacity: 0;
	overflow-y: auto;
	padding: 20px;
	position: fixed;
	transition: opacity .3s, visibility .3s;
	visibility: hidden;
	width: 100%;
	z-index: 99;
}

.site__login.active {
	opacity: 1;
	transition: opacity .3s, visibility .3s;
	visibility: visible;
}

.site__login .login__content {
	background-color: #fff;
	margin: auto;
	width: 540px;
}

.site__login .login__content .content__head {
	align-items: center;
	background-image: url('../images/bg_5.webp');
	background-repeat: repeat;
	display: flex;
	justify-content: space-between;
	padding: 30px 40px;
}

.site__login .login__content .content__head .head__title {
	font-size: 24px;
	font-weight: 700;
}

.site__login .login__content .content__head .head__close {
	align-items: center;
	cursor: pointer;
	display: flex;
	justify-content: center;
}

.site__login .login__content .content__body {
	padding: 30px 40px;
}

.site__login .login__content .content__body .body__form {
	margin-bottom: 20px;
}

.site__login .login__content .content__body .body__form label {
	display: block;
	font-size: 14px;
	font-weight: 700;
	margin-bottom: 10px;
}

.site__login .login__content .content__body .body__form input,
.site__login .login__content .content__body .body__form select {
	border: 1px solid #888a9b;
	border-radius: 10px;
	color: #888a9b;
	display: block;
	height: 60px;
	font-family: var(--font-content);
	font-size: 16px;
	padding: 0 20px;
	width: 100%;
}

.site__login .login__content .content__body .body__remember {
	float: left;
}

.site__login .login__content .content__body .body__remember label {
	align-items: center;
	display: flex;
	gap: 10px;
}

.site__login .login__content .content__body .body__remember label input {
	flex-shrink: 0;
	height: 20px;
	width: 20px;
}

.site__login .login__content .content__body .body__remember label span {
	font-size: 16px;
	font-weight: 500;
}

.site__login .login__content .content__body .body__lost_password {
	float: right;
}

.site__login .login__content .content__body .body__lost_password a {
	color: var(--first-color);
	font-size: 16px;
	font-weight: 500;
	text-decoration: underline;
	transition: color .3s;
}

.site__login .login__content .content__body .body__lost_password a:hover {
	color: var(--third-color);
	transition: color .3s;
}

.site__login .login__content .content__body .body__btn {
	clear: both;
	padding-top: 20px;
	text-align: center;
}

.site__login .login__content .content__body .body__btn button {
	width: 40%;
}

.site__login .login__content .content__body .body__or {
	align-items: center;
	display: flex;
	font-size: 14px;
	font-weight: 700;
	gap: 20px;
	margin-bottom: 20px;
	margin-top: 20px;
	text-transform: uppercase;
	text-align: center;
}

.site__login .login__content .content__body .body__or:before,
.site__login .login__content .content__body .body__or:after {
	background-color: #ddd;
	content: '';
	height: 1px;
	flex-grow: 1;
}

.site__login .login__content .content__body .body__btns {
	align-items: center;
	display: flex;
	gap: 10px;
	justify-content: center;
}

.site__login .login__content .content__body .body__btns a {
	align-items: center;
	border: 2px solid var(--second-color);
	border-radius: 5px;
	color: var(--first-color);
	display: inline-flex;
	flex-grow: 1;
	flex-shrink: 0;
	font-size: 16px;
	font-weight: 700;
	gap: 10px;
	height: 45px;
	justify-content: center;
	text-align: center;
	transition: border-color .3s;
}

.site__login .login__content .content__body .body__btns a:hover {
	border-color: var(--first-color);
	transition: border-color .3s;
}

.site__login .login__content .content__body .body__register {
	margin-top: 20px;
	text-align: center;
}

.site__login .login__content .content__body .body__register a {
	color: var(--first-color);
	font-size: 16px;
	font-weight: 500;
	transition: color .3s;
}

.site__login .login__content .content__body .body__register a u {
	color: var(--third-color);
	font-weight: 700;
}

.site__login .login__content .content__body .body__register a:hover {
	color: var(--third-color);
	transition: color .3s;
}

.site__login .login__overlay {
	background-color: var(--fifth-color);
	height: 100%;
	inset: 0;
	opacity: .95;
	position: absolute;
	width: 100%;
	z-index: -1;
}

/* Main */

.site__main {
	background-color: var(--first-color);
	overflow-x: hidden;
	padding-top: 35px;
}

.site__main.padding-0 {
	padding-top: 0;
}

.site__block_1 {
	background-image: url('../images/bg_1.webp');
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	color: var(--second-color);
	position: relative;
	z-index: 1;
}

.site__block_1 .container {
	padding-top: 50px;
}

.site__block_1 .block__columns {
	display: grid;
	grid-template-columns: repeat(2,minmax(0,1fr));
}

.site__block_1 .block__columns .columns__left {
	align-items: flex-start;
	display: flex;
	flex-direction: column;
	justify-content: center;
	position: relative;
	z-index: 1;
}

.site__block_1 .column__title {
	color: #fff;
	font-family: var(--font-title);
	font-size: 118px;
	font-weight: 300;
	line-height: 1;
	text-transform: uppercase;
	word-spacing: -10px;
}

.site__block_1 .column__title b,
.site__block_1 .column__title strong {
	font-size: 270px;
	font-weight: 900;
	line-height: .8;
}

.site__block_1 .column__description {
	display: flex;
	flex-direction: column;
	font-size: 18px;
	font-weight: 500;
	gap: 15px;
	line-height: 1.5;
	margin-bottom: -10px;
	margin-top: -15px;
	text-wrap: balance;
}

.site__block_1 .column__btns {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	justify-content: flex-start;
	margin-top: 35px;
}

.site__block_1 .column__image {
	align-items: flex-start;
	display: flex;
	justify-content: center;
	transform: translateY(70px);
}

.site__block_1 .column__image img {
	height: auto;
	pointer-events: none;
	user-select: none;
	width: 1070px;
}

.site__block_2 {
	background-color: #fff;
}

.site__block_2 .container {
	padding-bottom: 80px;
	padding-top: 130px;
}

.site__block_2 .block__columns {
	display: grid;
	grid-gap: 20px;
	grid-template-columns: repeat(2,minmax(0,1fr));
}

.site__block_2 .block__columns .columns__right {
	align-items: flex-start;
	display: flex;
	flex-direction: column;
	justify-content: center;
	position: relative;
	z-index: 1;
}

.site__block_2 .column__image {
	align-items: flex-start;
	display: flex;
	justify-content: flex-end;
}

.site__block_2 .column__image img {
	height: auto;
	pointer-events: none;
	user-select: none;
	width: 894px;
}

.site__block_2 .column__title {
	color: var(--first-color);
	font-family: var(--font-title);
	font-size: 80px;
	font-weight: 300;
	line-height: 1;
	text-transform: uppercase;
	word-spacing: -10px;
}

.site__block_2 .block__columns .columns__left .column__title {
	display: none;
}

.site__block_2 .column__title b,
.site__block_2 .column__title strong {
	font-size: 134px;
	font-weight: 900;
	line-height: .8;
}

.site__block_2 .column__description {
	display: flex;
	flex-direction: column;
	font-size: 18px;
	font-weight: 500;
	gap: 15px;
	line-height: 1.5;
	text-wrap: balance;
}

.site__block_2 .column__btns {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	justify-content: flex-start;
	margin-top: 25px;
}

.site__block_3 {
	background-image: url('../images/bg_2.webp');
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	color: var(--second-color);
}

.site__block_3 .block__columns {
	display: grid;
	grid-template-columns: repeat(2,minmax(0,1fr));
}

.site__block_3 .block__columns .columns__left {
	align-items: flex-start;
	display: flex;
	flex-direction: column;
	justify-content: center;
	position: relative;
	z-index: 1;
}

.site__block_3 .column__img_1,
.site__block_3 .column__img_2 {
	pointer-events: none;
	position: absolute;
	user-select: none;
	z-index: -1;
}

.site__block_3 .column__img_1 {
	right: calc(100% + 30px);
	top: 110px;
}

.site__block_3 .column__img_2 {
	right: 200px;
	top: 90px;
}

.site__block_3 .column__title {
	color: #fff;
	font-family: var(--font-title);
	font-size: 118px;
	font-weight: 300;
	line-height: 1;
	text-transform: uppercase;
	word-spacing: -10px;
}

.site__block_3 .column__title b,
.site__block_3 .column__title strong {
	font-size: 270px;
	font-weight: 900;
	line-height: .8;
}

.site__block_3 .column__description {
	display: flex;
	flex-direction: column;
	font-size: 18px;
	font-weight: 500;
	gap: 15px;
	line-height: 1.5;
	text-wrap: balance;
}

.site__block_3 .column__btns {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	justify-content: flex-start;
	margin-top: 35px;
}

.site__block_3 .column__image {
	align-items: center;
	display: flex;
	justify-content: center;
	transform: translateY(-90px);
}

.site__block_3 .column__image img {
	height: auto;
	pointer-events: none;
	user-select: none;
	width: 926px;
}

.site__block_4 {
	background-image: url('../images/bg_3.webp');
	background-repeat: repeat;
	color: var(--second-color);
}

.site__block_4 .container {
	padding-bottom: 100px;
	padding-top: 100px;
}

.site__block_4 .block__columns {
	display: grid;
	grid-gap: 50px;
	grid-template-columns: repeat(1,minmax(0,1fr));
}

.site__block_4 .column__title {
	color: #fff;
	font-family: var(--font-title);
	font-size: 118px;
	font-weight: 300;
	line-height: 1;
	text-align: center;
	text-transform: uppercase;
	word-spacing: -10px;
}

.site__block_4 .column__title b,
.site__block_4 .column__title strong {
	font-size: 150px;
	font-weight: 900;
	line-height: .7;
}

.site__block_4 .column__topics {
	display: grid;
	grid-gap: 40px;
	grid-template-columns: repeat(3,minmax(0,1fr));
	scroll-behavior: smooth;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
}

.site__block_4 .column__topics .topics__item {
	background-image: url('../images/bg_4.webp');
	background-repeat: repeat;
	border-radius: 20px;
	color: var(--second-color);
	display: flex;
	flex-direction: column;
	padding: 50px 60px 60px;
	scroll-snap-align: start;
}

.site__block_4 .column__topics .topics__item .item__title {
	color: #fff;
	font-size: 18px;
	font-weight: 800;
	margin-top: 20px;
}

.site__block_4 .column__topics .topics__item .item__description {
	display: flex;
	flex-direction: column;
	font-size: 16px;
	font-weight: 500;
	gap: 15px;
	line-height: 1.6;
	margin-top: 5px;
}

.site__block_4 .column__topics .topics__item .item__btn {
	align-items: center;
	color: var(--fourth-color);
	display: flex;
	gap: 8px;
	margin-top: 20px;
	transition: color .3s;
}

.site__block_4 .column__topics .topics__item .item__btn .arrow {
	height: .75cap;
	transition: margin-left .3s;
}

.site__block_4 .column__topics .topics__item:hover .item__btn {
	color: #fff;
	transition: color .3s;
}

.site__block_4 .column__topics .topics__item:hover .item__btn .arrow {
	margin-left: 5px;
	transition: margin-left .3s;
}

.site__block_4 .column__nav {
	align-items: center;
	display: none;
	gap: 8px;
	justify-content: center;
	margin-top: 30px;
}

.site__block_4 .column__nav a {
	background-color: #fff;
	border-radius: 4px;
	cursor: pointer;
	font-size: 0;
	height: 4px;
	width: 24px;
}

.site__block_4 .column__nav a.active {
	background-color: var(--fourth-color);
}

.site__block_5 {
	background-image: url('../images/bg_5.webp');
	background-repeat: repeat;
	color: var(--first-color);
}

.site__block_5 .container {
	padding-bottom: 60px;
	padding-top: 100px;
}

.site__block_5 .block__columns {
	display: grid;
	grid-gap: 50px;
	grid-template-columns: repeat(1,minmax(0,1fr));
}

.site__block_5 .column__title {
	font-family: var(--font-title);
	font-size: 80px;
	font-weight: 300;
	line-height: 1;
	text-align: center;
	text-transform: uppercase;
	word-spacing: -10px;
}

.site__block_5 .column__title b,
.site__block_5 .column__title strong {
	font-size: 140px;
	font-weight: 900;
	line-height: .8;
}

.site__block_5 .column__topics {
	display: grid;
	grid-gap: 40px;
	grid-template-columns: repeat(3,minmax(0,1fr));
	scroll-behavior: smooth;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
}

.site__block_5 .column__topics .topics__item {
	background-color: #fff;
	border-radius: 20px;
	color: var(--fifth-color);
	display: flex;
	flex-direction: column;
	padding: 50px 60px 60px;
	scroll-snap-align: start;
}

.site__block_5 .column__topics .topics__item .item__title {
	color: var(--first-color);
	font-size: 18px;
	font-weight: 800;
	margin-top: 20px;
}

.site__block_5 .column__topics .topics__item .item__description {
	color: #696d8d;
	display: flex;
	flex-direction: column;
	font-size: 16px;
	font-weight: 500;
	gap: 15px;
	line-height: 1.6;
	margin-top: 5px;
}

.site__block_5 .column__nav {
	align-items: center;
	display: none;
	gap: 8px;
	justify-content: center;
	margin-top: 30px;
}

.site__block_5 .column__nav a {
	background-color: var(--sixth-color);
	border-radius: 4px;
	cursor: pointer;
	font-size: 0;
	height: 4px;
	width: 24px;
}

.site__block_5 .column__nav a.active {
	background-color: var(--fourth-color);
}

.site__block_6 {
	background-image: url('../images/bg_5.webp');
	background-repeat: repeat;
}

.site__block_6 .block__image img {
	pointer-events: none;
	user-select: none;
}

.site__block_7 {
	background-image: url('../images/bg_5.webp');
	background-repeat: repeat;
}

.site__block_7 .container {
	padding-bottom: 70px;
}

.site__block_7 .block__columns {
	background-image: url('../images/bg_4.webp');
	background-repeat: repeat;
	border-radius: 20px;
	box-shadow: 0 0 0 20px rgba(0,0,0,.05);
	color: var(--second-color);
	display: grid;
	grid-gap: 50px;
	grid-template-columns: 45% auto;
	margin-top: -200px;
	padding: 80px 120px;
	position: relative;
}

.site__block_7 .block__columns .columns__left,
.site__block_7 .block__columns .columns__right {
	align-items: flex-start;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.site__block_7 .block__columns .columns__right {
	gap: 80px;
}

.site__block_7 .column__img_1,
.site__block_7 .column__img_2,
.site__block_7 .column__img_3 {
	pointer-events: none;
	position: absolute;
	user-select: none;
}

.site__block_7 .column__img_1 {
	left: -75px;
	top: 20px;
}

.site__block_7 .column__img_2 {
	right: -170px;
	top: -110px;
}

.site__block_7 .column__img_3 {
	bottom: -90px;
	left: -190px;
}

.site__block_7 .column__title {
	color: #fff;
	font-family: var(--font-title);
	font-size: 70px;
	font-weight: 300;
	line-height: 1;
	text-transform: uppercase;
	word-spacing: -10px;
}

.site__block_7 .column__title b,
.site__block_7 .column__title strong {
	font-size: 120px;
	font-weight: 900;
	line-height: .8;
}

.site__block_7 .column__steps {
	display: flex;
	flex-direction: column;
	gap: 50px;
	margin-top: 30px;
	position: relative;
	isolation: isolate;
}

.site__block_7 .column__steps .steps__item {
	align-items: center;
	display: flex;
	gap: 15px;
	position: relative;
}

.site__block_7 .column__steps .steps__item + .steps__item:before {
	border-left: 3px dotted var(--second-color);
	bottom: 0;
	content: '';
	left: calc(32px - 1.5px);
	position: absolute;
	top: 0;
	transform: translateY(-100%);
	width: 3px;
	z-index: -1;
}

.site__block_7 .column__steps .steps__item .item__number {
	align-items: center;
	background-image: url('../images/bg_4.webp');
	background-repeat: repeat;
	border: 3px solid var(--second-color);
	border-radius: 100px;
	color: #fff;
	display: flex;
	flex-shrink: 0;
	font-family: var(--font-title);
	font-size: 40px;
	font-weight: 800;
	height: 64px;
	justify-content: center;
	line-height: 0;
	padding-top: 8px;
	position: relative;
	text-align: center;
	width: 64px;
	z-index: 1;
}

.site__block_7 .column__steps .steps__item .item__description {
	font-size: 18px;
	line-height: 1.5;
}

.site__block_7 .column__steps .steps__item .item__description b,
.site__block_7 .column__steps .steps__item .item__description strong {
	color: var(--fourth-color);
	font-weight: 800;
}

.site__block_7 .column__device {
	display: flex;
	flex-direction: column;
	gap: 20px;
	width: 100%;
}

.site__block_7 .column__device.mobile {
	display: none;
}

.site__block_7 .column__device .device__title {
	align-items: center;
	color: #fff;
	display: flex;
	font-family: var(--font-title);
	font-size: 50px;
	font-weight: 300;
	gap: 20px;
	line-height: 1;
	text-transform: uppercase;
}

.site__block_7 .column__device .device__btns {
	align-items: flex-start;
	display: flex;
	flex-direction: column;
	gap: 20px;
	justify-content: flex-start;
}

.site__block_7 .column__device .device__btns p {
	font-size: 16px;
	margin-top: 30px;
}

.site__block_7 .column__device .device__btns p b,
.site__block_7 .column__device .device__btns p strong {
	color: #fff;
	font-size: 18px;
}

.site__block_7 .column__device .device__btns a {
	width: 100%;
}

.site__block_7 .column__device .device__btns a .btn__arrow {
	margin-left: auto;
}

.site__block_7 .column__description {
	font-size: 16px;
	line-height: 1.6;
}

.site__block_7 .column__description b,
.site__block_7 .column__description strong {
	font-size: 18px;
}

.site__block_7 .column__description a {
	color: var(--fourth-color);
	transition: color .3s;
}

.site__block_7 .column__description a .arrow {
	height: .75cap;
	transition: margin-left .3s;
}

.site__block_7 .column__description a:hover {
	color: #fff;
	transition: color .3s;
}

.site__block_7 .column__description a:hover .arrow {
	margin-left: 5px;
	transition: margin-left .3s;
}

.site__block_8 {
	background-image: url('../images/bg_5.webp');
	background-repeat: repeat;
}

.site__block_8 .container {
	padding-top: 70px;
}

.site__block_8 .block__columns {
	display: grid;
	grid-gap: 40px;
	grid-template-columns: repeat(1,minmax(0,1fr));
}

.site__block_8 .block__columns .columns__top {
	text-align: center;
}

.site__block_8 .block__columns .columns__bottom {
	padding-left: 200px;
	padding-right: 200px;
}

.site__block_8 .column__title {
	color: var(--sixth-color);
	font-size: 16px;
	font-weight: 500;
	letter-spacing: 5px;
	line-height: 1.4;
	text-transform: uppercase;
}

.site__block_8 .column__subtitle {
	font-size: 36px;
	font-weight: 800;
	line-height: 1.2;
}

.site__block_8 .column__toggle {
	counter-reset: count;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.site__block_8 .column__toggle .toggle__item {
	background-color: #fff;
	border-radius: 20px;
	counter-increment: count;
}

.site__block_8 .column__toggle .toggle__item .item__question {
	align-items: center;
	color: var(--sixth-color);
	cursor: pointer;
	display: flex;
	font-size: 20px;
	font-weight: 500;
	gap: 15px;
	line-height: 1.4;
	padding: 30px;
}

.site__block_8 .column__toggle .toggle__item .item__question:before {
	color: var(--third-color);
	content: counter(count, decimal-leading-zero) '.';
	font-size: 36px;
	font-weight: 800;
	line-height: 1;
}

.site__block_8 .column__toggle .toggle__item .item__question:after {
	aspect-ratio: 1/1;
	background-image: url('data:image/svg+xml,<svg viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><g><path d="M 7 0 L 7 7 L 0 7 L 0 13 L 7 13 L 7 20 L 13 20 L 13 13 L 20 13 L 20 7 L 13 7 L 13 0 L 7 0 Z" fill="%23353957"/></g></svg>');
	background-size: cover;
	content: '';
	flex-shrink: 0;
	margin-left: auto;
	width: 16px;
}

.site__block_8 .column__toggle .toggle__item.active .item__question:after {
	background-image: url('data:image/svg+xml,<svg viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><g><path d="M 0 7 L 0 13 L 20 13 L 20 7 L 0 7 Z" fill="%23353957"/></g></svg>');
}

.site__block_8 .column__toggle .toggle__item .item__answer {
	display: none;
	flex-direction: column;
	gap: 15px;
	padding: 0 30px 30px;
}

.site__block_8 .column__toggle .toggle__item.active .item__answer {
	color: #696d8d;
	display: flex;
}

.site__block_8 .block__image {
	align-items: center;
	display: flex;
	justify-content: center;
	margin-top: 40px;
}

.site__block_8 .block__image img {
	display: block;
	height: auto;
	pointer-events: none;
	user-select: none;
	width: 1818px;
}

/* Internal Pages */

.site__register {
	background-image: linear-gradient(-45deg, var(--third-color) 50%, var(--fifth-color) 50%);
	padding: 20px;
}

.site__register .container {
	align-items: center;
	display: flex;
	justify-content: center;
	min-height: 100vh;
}

.site__register .register__content {
	display: flex;
	flex-direction: column;
	gap: 50px;
	width: 540px;
}

.site__register .register__content .content__head {
	align-items: center;
	display: flex;
	justify-content: space-between;
}

.site__register .register__content .content__head .head__lang {
	position: relative;
}

.site__register .register__content .content__head .head__lang .lang__current {
	align-items: center;
	color: var(--second-color);
	cursor: pointer;
	display: flex;
	font-size: 12px;
	font-weight: 600;
	gap: 5px;
	height: 100%;
	padding: 10px 0;
}

.site__register .register__content .content__head .head__lang .lang__current strong {
	color: var(--fourth-color);
	font-weight: 700;
}

.site__register .register__content .content__head .head__lang .lang__current span:before {
	content: '|';
	margin-right: 5px;
}

.site__register .register__content .content__head .head__lang .lang__current .arrow {
	color: #fff;
	height: .75cap;
}

.site__register .register__content .content__head .head__lang .lang__dropdown {
	background-color: var(--first-color);
	border: 1px solid var(--sixth-color);
	border-radius: 5px;
	min-width: 320px;
	opacity: 0;
	position: absolute;
	right: -15px;
	top: 100%;
	transition: opacity .3s, visibility .3s;
	visibility: hidden;
	z-index: 9;
}

.site__register .register__content .content__head .head__lang:hover .lang__dropdown {
	opacity: 1;
	transition: opacity .3s, visibility .3s;
	visibility: visible;
}

.site__register .register__content .content__head .head__lang .lang__dropdown ul {
	column-count: 2;
	list-style: none;
	padding: 12px;
}

.site__register .register__content .content__head .head__lang .lang__dropdown ul li a {
	align-items: center;
	color: var(--second-color);
	display: flex;
	font-size: 12px;
	font-weight: 600;
	gap: 6px;
	padding: 8px;
}

.site__register .register__content .content__head .head__lang .lang__dropdown ul li a strong {
	color: var(--fourth-color);
	font-weight: 700;
	transition: color .3s;
}

.site__register .register__content .content__head .head__lang .lang__dropdown ul li a span:before {
	content: '|';
	margin-right: 5px;
}

.site__register .register__content .content__head .head__lang .lang__dropdown ul li a:hover strong {
	color: #fff;
	transition: color .3s;
}

.site__register .register__content .content__body {
	background-color: #fff;
}

.site__register .register__content .content__body .body__head {
	align-items: center;
	background-image: url('../images/bg_5.webp');
	background-repeat: repeat;
	display: flex;
	gap: 20px;
	padding: 30px 40px;
}

.site__register .register__content .content__body .body__head a {
	color: var(--first-color);
}

.site__register .register__content .content__body .body__head a .arrow {
	box-shadow: inset -2px -2px 0 0 currentColor;
	height: 1.25cap;
}

.site__register .register__content .content__body .body__head .head__title {
	font-size: 24px;
	font-weight: 700;
}

.site__register .register__content .content__body .body__main {
	padding: 30px 40px;
}

.site__register .register__content .content__body .body__main .main__steps {
	display: flex;
	isolation: isolate;
	margin-bottom: 20px;
	position: relative;
}

.site__register .register__content .content__body .body__main .main__steps:before {
	background-color: #cfd0d7;
	border-radius: 6px;
	content: '';
	height: 6px;
	left: 0;
	position: absolute;
	right: 0;
	top: 12px;
	z-index: -1;
}

.site__register .register__content .content__body .body__main .main__steps .steps__item {
	align-items: center;
	display: flex;
	flex: 1 0 0;
	flex-direction: column;
	isolation: isolate;
	justify-content: flex-start;
	position: relative;
	text-align: center;
}

.site__register .register__content .content__body .body__main .main__steps .steps__item.active:before {
	background-color: #888a9b;
	border-radius: 6px;
	content: '';
	height: 6px;
	left: 0;
	position: absolute;
	right: 0;
	top: 12px;
	z-index: -1;
}

.site__register .register__content .content__body .body__main .main__steps .steps__item .item__number {
	align-items: center;
	background-color: #cfd0d7;
	border-radius: 100px;
	color: #fff;
	display: flex;
	font-size: 16px;
	font-weight: 800;
	height: 30px;
	justify-content: center;
	text-align: center;
	width: 30px;
}

.site__register .register__content .content__body .body__main .main__steps .steps__item.active .item__number {
	background-color: #fff;
	box-shadow: inset 0 0 0 4px #888a9b;
	color: #888a9b;
}

.site__register .register__content .content__body .body__main .main__steps .steps__item .item__title {
	color: #cfd0d7;
	font-size: 11px;
	font-weight: 500;
	margin-top: 10px;
}

.site__register .register__content .content__body .body__main .main__steps .steps__item.active .item__title {
	color: #888a9b;
}

.site__register .register__content .content__body .body__main .main__form {
	margin-bottom: 20px;
}

.site__register .register__content .content__body .body__main .main__form label {
	display: block;
	font-size: 14px;
	font-weight: 700;
	margin-bottom: 10px;
}

.site__register .register__content .content__body .body__main .main__form input,
.site__register .register__content .content__body .body__main .main__form select {
	border: 1px solid #888a9b;
	border-radius: 10px;
	color: #888a9b;
	display: block;
	height: 60px;
	font-family: var(--font-content);
	font-size: 16px;
	padding: 0 20px;
	width: 100%;
}

.site__register .register__content .content__body .body__main .main__btn {
	padding-top: 20px;
	text-align: center;
}

.site__register .register__content .content__body .body__main .main__btn button {
	width: 40%;
}

.site__breadcrumbs {
	background-color: var(--first-color);
}

.site__breadcrumbs .breadcrumbs__menu > ul {
	align-items: center;
	display: flex;
	gap: 30px;
	height: 100%;
	list-style: none;
}

.site__breadcrumbs .breadcrumbs__menu > ul > li {
	height: 100%;
}

.site__breadcrumbs .breadcrumbs__menu > ul > li > a {
	align-items: center;
	color: var(--second-color);
	display: flex;
	font-size: 12px;
	font-weight: 600;
	height: 100%;
	justify-content: center;
	padding: 15px 0;
	text-align: center;
	transition: color .3s;
}

.site__breadcrumbs .breadcrumbs__menu > ul > li.featured > a {
	color: #fff;
	font-weight: 800;
}

.site__breadcrumbs .breadcrumbs__menu > ul > li > a:hover {
	color: #fff;
	transition: color .3s;
}

.site__block_9 {
	background-image: url('../images/bg_5.webp');
	background-repeat: repeat;
}

.site__block_9 .container {
	padding-bottom: 50px;
	padding-top: 50px;
}

.site__block_9 .block__title {
	font-size: 36px;
	font-weight: 800;
	margin-bottom: 30px;
}

.site__block_9 .block__columns {
	display: grid;
	grid-gap: 20px;
	grid-template-columns: 340px auto;
}

.site__block_9 .column__links > ul {
	display: flex;
	flex-direction: column;
	gap: 15px;
	list-style: none;
}

.site__block_9 .column__links > ul > li > a {
	align-items: center;
	background-color: #fff;
	border-radius: 20px;
	color: color-mix(in srgb, var(--first-color), #fff 35%);
	display: flex;
	font-size: 20px;
	font-weight: 500;
	justify-content: space-between;
	padding: 30px 40px;
	transition: color .3s;
}

.site__block_9 .column__links > ul > li > a > i {
	height: .8cap;
}

.site__block_9 .column__links > ul > li > a:hover,
.site__block_9 .column__links > ul > li.current > a {
	color: var(--first-color);
	transition: color .3s;
}

.site__block_9 .column__links > ul > li.current > a {
	box-shadow: inset 0 0 0 3px color-mix(in srgb, var(--first-color), #fff 35%);
}

.site__block_9 .column__content {
	background-color: #fff;
	border-radius: 20px;
	color: var(--sixth-color);
	font-size: 16px;
	font-weight: 500;
	line-height: 1.8;
	padding: 20px 50px;
}

.site__block_9 .column__content > * {
	margin-block: 20px;
}

.site__block_9 .column__content h1,
.site__block_9 .column__content h2,
.site__block_9 .column__content h3,
.site__block_9 .column__content h4,
.site__block_9 .column__content h5,
.site__block_9 .column__content h6 {
	color: var(--first-color);
	font-size: 18px;
	font-weight: 800;
}

.site__block_9 .column__content a {
	text-decoration: underline;
}

.site__block_10 {
	background-image: url('../images/bg_1.webp');
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	color: var(--second-color);
	position: relative;
	z-index: 1;
}

.site__block_10 .block__columns {
	display: grid;
	grid-template-columns: repeat(2,minmax(0,1fr));
}

.site__block_10 .block__columns .columns__left {
	display: flex;
	flex-direction: column;
	gap: 40px;
	justify-content: center;
	padding-right: 180px;
	position: relative;
	z-index: 1;
}

.site__block_10 .column__title {
	align-items: center;
	color: #fff;
	display: flex;
	font-family: var(--font-title);
	font-size: 50px;
	font-weight: 300;
	gap: 15px;
	text-transform: uppercase;
}

.site__block_10 .column__download {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.site__block_10 .column__download + .column__download {
	margin-top: 20px;
}

.site__block_10 .column__download p {
	font-size: 16px;
}

.site__block_10 .column__download p b,
.site__block_10 .column__download p strong {
	color: #fff;
	font-size: 18px;
}

.site__block_10 .column__download a .mobile {
	display: none;
}

.site__block_10 .column__download a .btn__arrow {
	margin-left: auto;
}

.site__block_10 .column__image {
	align-items: center;
	display: flex;
	justify-content: center;
	margin-bottom: -170px;
}

.site__block_10 .column__image img {
	height: auto;
	pointer-events: none;
	user-select: none;
	width: 926px;
}

.site__block_11 {
	background-image: url('../images/bg_3.webp');
	background-repeat: repeat;
	color: var(--second-color);
}

.site__block_11 .container {
	padding-bottom: 120px;
	padding-top: 120px;
}

.site__block_11 .block__columns {
	display: grid;
	grid-gap: 40px;
	grid-template-columns: repeat(1,minmax(0,1fr));
}

.site__block_11 .column__title {
	color: #fff;
	font-family: var(--font-title);
	font-size: 94px;
	font-weight: 300;
	line-height: 1;
	text-transform: uppercase;
	word-spacing: -10px;
}

.site__block_11 .column__title b,
.site__block_11 .column__title strong {
	font-size: 150px;
	font-weight: 900;
	line-height: .8;
}

.site__block_11 .column__topics {
	display: grid;
	grid-gap: 50px;
	grid-template-columns: repeat(2,minmax(0,1fr));
}

.site__block_11 .column__topics .topics__item {
	background-image: url('../images/bg_4.webp');
	background-repeat: repeat;
	border-radius: 20px;
	display: flex;
	flex-direction: column;
	gap: 30px;
	padding: 50px;
}

.site__block_11 .column__topics .topics__item .item__title {
	align-items: center;
	display: flex;
	gap: 15px;
}

.site__block_11 .column__topics .topics__item .item__title span b,
.site__block_11 .column__topics .topics__item .item__title span strong {
	color: #fff;
	font-size: 36px;
	font-weight: 800;
	line-height: 1.1;
	text-transform: uppercase;
}

.site__block_11 .column__topics .topics__item ul.item__list {
	display: flex;
	flex-direction: column;
	gap: 10px;
	list-style: none;
}

.site__block_11 .column__topics .topics__item ul.item__list li {
	border: 1px solid rgba(255,255,255,.15);
	border-radius: 15px;
	color: #fff;
	padding: 15px 20px;
}

.site__block_11 .column__topics .topics__item .item__btn .mobile {
	display: none;
}

.site__block_11 .column__topics .topics__item .item__btn .btn__arrow {
	margin-left: auto;
}

/* Footer */

.site__footer {
	background-color: color-mix(in srgb, var(--fifth-color), #000 15%);
	color: #fff;
}

.site__footer .footer__block {
	padding: 50px 0;
}

.site__footer .footer__block:nth-child(2) {
	border-bottom: 1px solid rgba(255,255,255,.1);
	border-top: 1px solid rgba(255,255,255,.1);
}

.site__footer .footer__head {
	align-items: flex-start;
	display: flex;
	gap: 30px;
}

.site__footer .footer__head .head__column {
	align-items: flex-start;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
	gap: 25px;
	justify-content: flex-start;
}

.site__footer .footer__head .head__column .head__lang {
	background-color: var(--sixth-color);
	border-radius: 5px;
	cursor: pointer;
	display: flex;
	flex-direction: column;
	gap: 5px;
	padding: 15px 25px;
	position: relative;
	min-width: 320px;
}

.site__footer .footer__head .head__column .head__lang .lang__title {
	color: var(--second-color);
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
}

.site__footer .footer__head .head__column .head__lang .lang__current {
	position: relative;
}

.site__footer .footer__head .head__column .head__lang .arrow {
	color: var(--second-color);
	position: absolute;
	right: 25px;
	top: calc(50% - .5cap);
}

.site__footer .footer__head .head__column .head__lang .lang__dropdown {
	background-color: var(--fifth-color);
	border-radius: 0 0 5px 5px;
	left: 0;
	max-height: 35vh;
	opacity: 0;
	overflow-x: hidden;
	overflow-y: auto;
	position: absolute;
	right: 0;
	top: 100%;
	transition: opacity .3s, visibility .3s;
	visibility: hidden;
}

.site__footer .footer__head .head__column .head__lang:hover .lang__dropdown {
	opacity: 1;
	transition: opacity .3s, visibility .3s;
	visibility: visible;
}

.site__footer .footer__head .head__column .head__lang .lang__dropdown::-webkit-scrollbar {
	height: 5px;
	width: 5px;
}

.site__footer .footer__head .head__column .head__lang .lang__dropdown::-webkit-scrollbar-track {
	border-radius: 5px;
	background-color: var(--sixth-color);
}

.site__footer .footer__head .head__column .head__lang .lang__dropdown::-webkit-scrollbar-track:hover {
	background-color: var(--sixth-color);
}

.site__footer .footer__head .head__column .head__lang .lang__dropdown::-webkit-scrollbar-track:active {
	background-color: var(--sixth-color);
}

.site__footer .footer__head .head__column .head__lang .lang__dropdown::-webkit-scrollbar-thumb {
	border-radius: 5px;
	background-color: var(--second-color);
}

.site__footer .footer__head .head__column .head__lang .lang__dropdown::-webkit-scrollbar-thumb:hover {
	background-color: var(--second-color);
}

.site__footer .footer__head .head__column .head__lang .lang__dropdown::-webkit-scrollbar-thumb:active {
	background-color: var(--second-color);
}

.site__footer .footer__head .head__column .head__lang .lang__dropdown ul {
	list-style: none;
	padding: 12px;
}

.site__footer .footer__head .head__column .head__lang .lang__dropdown ul li a {
	align-items: center;
	color: var(--second-color);
	display: flex;
	font-size: 14px;
	font-weight: 600;
	gap: 6px;
	padding: 8px;
	transition: color .3s;
}

.site__footer .footer__head .head__column .head__lang .lang__dropdown ul li a:hover {
	color: #fff;
	transition: color .3s;
}

.site__footer .footer__head .head__column .head__social {
	align-items: center;
	display: flex;
	gap: 15px;
}

.site__footer .footer__head .head__column .head__social a {
	align-items: center;
	color: var(--fourth-color);
	display: flex;
	justify-content: center;
	transition: color .3s;
}

.site__footer .footer__head .head__column .head__social a svg {
	height: 26px;
	width: auto;
}

.site__footer .footer__head .head__column .head__social a:hover {
	color: var(--third-color);
	transition: color .3s;
}

.site__footer .footer__head .head__column .head__title {
	color: #fff;
	font-size: 18px;
	font-weight: 700;
}

.site__footer .footer__head .head__column .head__title:after {
	background-color: var(--third-color);
	border-radius: 3px;
	content: '';
	display: block;
	height: 3px;
	margin-top: 10px;
	width: 20px;
}

.site__footer .footer__head .head__column .head__menu > ul {
	display: flex;
	flex-direction: column;
	gap: 10px;
	list-style: none;
}

.site__footer .footer__head .head__column .head__menu > ul > li > a {
	color: var(--second-color);
	font-size: 16px;
	transition: color .3s;
}

.site__footer .footer__head .head__column .head__menu > ul > li > a:hover {
	color: #fff;
	transition: color .3s;
}

.site__footer .footer__head .head__column .head__info {
	color: var(--second-color);
	display: flex;
	flex-direction: column;
	font-size: 16px;
	gap: 25px;
	line-height: 1.6;
	transition: color .3s;
}

.site__footer .footer__head .head__column .head__btns {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.site__footer .footer__head .head__column .head__btns a {
	align-items: center;
	border: 1px solid #888a9b;
	border-radius: 15px;
	color: #888a9b;
	display: flex;
	font-size: 16px;
	font-weight: 800;
	gap: 10px;
	justify-content: flex-start;
	padding: 8px 20px;
	transition: background-color .3s, border-color .3s, color .3s;
}

.site__footer .footer__head .head__column .head__btns a img {
	display: block;
	filter: brightness(0) invert(1);
	height: 1.5cap;
	transition: filter .3s;
	width: auto;
}

.site__footer .footer__head .head__column .head__btns a:hover {
	background-color: #fff;
	border-color: #fff;
	color: var(--fifth-color);
	transition: background-color .3s, border-color .3s, color .3s;
}

.site__footer .footer__head .head__column .head__btns a:hover img {
	filter: inherit;
	transition: filter .3s;
}

.site__footer .footer__head .head__column ul.head__payment {
	color: var(--second-color);
	display: flex;
	flex-direction: column;
	font-size: 16px;
	gap: 10px;
	line-height: 1.6;
	list-style: none;
	transition: color .3s;
}

.site__footer .footer__head .head__column ul.head__payment li {
	align-items: center;
	display: flex;
	gap: 10px;
}

.site__footer .footer__head .head__column ul.head__payment li img {
	height: 18px;
	object-fit: contain;
	width: 22px;
}

.site__footer .footer__main .main__content,
.site__footer .footer__foot .foot__content {
	color: var(--second-color);
	display: flex;
	flex-direction: column;
	font-size: 12px;
	gap: 8px;
	line-height: 1.8;
}

.site__footer .footer__main .main__content .content__title,
.site__footer .footer__foot .foot__content .content__title {
	color: var(--third-color);
	font-size: 14px;
	font-weight: 700;
}

.site__footer .footer__main .main__content .content__title a,
.site__footer .footer__foot .foot__content .content__title a {
	color: var(--third-color);
}

.site__footer .footer__main .main__logos {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	justify-content: space-evenly;
}

.site__footer .footer__main .main__logos a img {
	display: block;
	filter: grayscale(1);
	height: 2.7rem;
	object-fit: contain;
	margin: auto;
	max-width: 9rem;
	width: auto;
}

.site__footer .footer__main .main__logos a.first img {
	filter: inherit;
}

.site__footer .footer__main .main__logos a img.white {
	filter: brightness(0) invert(1);
}

.site__footer .footer__foot {
	align-items: center;
	display: flex;
	gap: 30px;
	justify-content: space-between;
}

.site__back_to_top {
	align-items: center;
	background-image: linear-gradient(to bottom, var(--fourth-color), var(--third-color));
	border-radius: 100px;
	bottom: 20px;
	box-shadow: 0 0 0 10px rgba(0,0,0,.05);
	cursor: pointer;
	display: flex;
	height: 55px;
	isolation: isolate;
	justify-content: center;
	opacity: 0;
	position: fixed;
	right: 20px;
	transition: opacity .3s, visibility .3s;
	visibility: hidden;
	width: 55px;
	z-index: 9;
}

.site__back_to_top.active {
	opacity: 1;
	transition: opacity .3s, visibility .3s;
	visibility: visible;
}

.site__back_to_top:before {
	background-image: linear-gradient(to bottom, var(--third-color), var(--fourth-color));
	border-radius: 100px;
	content: '';
	inset: 0;
	opacity: 0;
	position: absolute;
	transition: opacity .3s;
	z-index: -1;
}

.site__back_to_top .arrow {
	height: 1.25cap;
	position: absolute;
}

.site__back_to_top .arrow:first-child {
	top: 20px;
}

.site__back_to_top .arrow:last-child {
	top: 26px;
}

.site__back_to_top:hover:before {
	opacity: 1;
	transition: opacity .3s;
}

/* Media Queries */

/* Desktops */

@media (max-width: 1199px) {

	.container {
		max-width: 960px;
	}

	.btn__green,
	.btn__blue {
		font-size: 15px;
		min-height: 45px;
		padding: 8px 26px;
	}

	.btn__green:has(.btn__arrow, .btn__image),
	.btn__blue:has(.btn__arrow, .btn__image) {
		padding-right: 8px;
	}

	.btn__green.big,
	.btn__blue.big {
		padding: 10px 10px 10px 32px;
	}

	.site__header .header__content .content__logo img {
		height: 30px;
	}

	.site__header .header__content .content__menu > ul {
		gap: 11px;
	}

	.site__header .header__content .content__menu > ul > li > a {
		font-size: 13px;
	}

	.site__header .header__content .content__btns a {
		font-size: 13px;
		padding: 6px 16px;
	}

	.site__block_1 .column__title {
		font-size: 80px;
	}

	.site__block_1 .column__title b,
	.site__block_1 .column__title strong {
		font-size: 180px;
	}

	.site__block_1 .column__description {
		font-size: 16px;
		margin-top: -5px;
	}

	.site__block_1 .column__btns {
		gap: 10px;
	}

	.site__block_1 .column__image {
		transform: translateY(50px);
	}

	.site__block_1 .column__image img {
		width: 820px;
	}

	.site__block_2 .column__image img {
		width: 694px;
	}

	.site__block_2 .column__title {
		font-size: 55px;
	}

	.site__block_2 .column__title b,
	.site__block_2 .column__title strong {
		font-size: 90px;
	}

	.site__block_2 .column__description {
		font-size: 16px;
	}

	.site__block_3 .column__img_2 {
		right: 80px;
		top: 60px;
	}

	.site__block_3 .column__title {
		font-size: 80px;
	}

	.site__block_3 .column__title b,
	.site__block_3 .column__title strong {
		font-size: 180px;
	}

	.site__block_3 .column__description {
		font-size: 16px;
	}

	.site__block_3 .column__btns {
		gap: 10px;
	}

	.site__block_3 .column__image {
		transform: translateY(-60px);
	}

	.site__block_3 .column__image img {
		width: 620px;
	}

	.site__block_4 .container {
		padding-bottom: 80px;
		padding-top: 80px;
	}

	.site__block_4 .column__title {
		font-size: 80px;
		line-height: 1.1;
	}

	.site__block_4 .column__title b,
	.site__block_4 .column__title strong {
		font-size: 120px;
	}

	.site__block_4 .column__topics {
		grid-gap: 25px;
	}

	.site__block_4 .column__topics .topics__item {
		padding: 40px;
	}

	.site__block_4 .column__topics .topics__item .item__description {
		font-size: 15px;
	}

	.site__block_4 .column__topics .topics__item .item__btn {
		font-size: 14px;
	}

	.site__block_5 .container {
		padding-bottom: 60px;
		padding-top: 80px;
	}

	.site__block_5 .column__title {
		font-size: 80px;
		line-height: 1.1;
	}

	.site__block_5 .column__title b,
	.site__block_5 .column__title strong {
		font-size: 120px;
	}

	.site__block_5 .column__topics {
		grid-gap: 25px;
	}

	.site__block_5 .column__topics .topics__item {
		padding: 40px;
	}

	.site__block_5 .column__topics .topics__item .item__description {
		font-size: 15px;
	}

	.site__block_6 .block__image img {
		left: 50%;
		position: relative;
		transform: translateX(-50%);
		width: 150%;
	}

	.site__block_7 .block__columns {
		grid-template-columns: 40% auto;
		margin-top: -150px;
		padding: 50px 60px;
	}

	.site__block_7 .block__columns {
		grid-gap: 30px;
	}

	.site__block_7 .block__columns .columns__right {
		gap: 50px;
	}

	.site__block_7 .column__img_1 {
		left: -95px;
	}

	.site__block_7 .column__img_2 {
		right: -210px;
		transform: scale(0.8);
	}

	.site__block_7 .column__img_3 {
		left: -210px;
		transform: scale(0.8);
	}

	.site__block_7 .column__title {
		font-size: 50px;
	}

	.site__block_7 .column__title b,
	.site__block_7 .column__title strong {
		font-size: 100px;
	}

	.site__block_7 .column__steps .steps__item + .steps__item:before {
		left: calc(25px - 1.5px);
	}

	.site__block_7 .column__steps .steps__item .item__number {
		font-size: 30px;
		height: 50px;
		padding-top: 6px;
		width: 50px;
	}

	.site__block_7 .column__steps .steps__item .item__description {
		font-size: 15px;
	}

	.site__block_7 .column__steps .steps__item .item__description b,
	.site__block_7 .column__steps .steps__item .item__description strong {
		font-size: 16px;
	}

	.site__block_7 .column__device .device__title {
		font-size: 35px;
	}

	.site__block_7 .column__device .device__title img {
		height: 1.25cap;
		transform: translateY(-3px);
		width: auto;
	}

	.site__block_7 .column__device .device__btns {
		gap: 15px;
	}

	.site__block_7 .column__device .device__btns a {
		min-width: 210px;
	}

	.site__block_7 .column__device .device__btns a span {
		flex-shrink: 0;
	}

	.site__block_7 .column__device .device__btns a span img {
		height: 1.2cap;
		width: auto;
	}

	.site__block_7 .column__description {
		font-size: 15px;
	}

	.site__block_8 .container {
		padding-top: 50px;
	}

	.site__block_8 .column__title {
		font-size: 15px;
		letter-spacing: 4px;
	}

	.site__block_8 .column__subtitle {
		font-size: 32px;
	}

	.site__block_8 .block__columns .columns__bottom {
		padding-left: 100px;
		padding-right: 100px;
	}

	.site__block_8 .column__toggle .toggle__item .item__question {
		font-size: 18px;
		padding: 20px 25px;
	}

	.site__block_8 .column__toggle .toggle__item .item__question:before {
		font-size: 30px;
	}

	.site__block_8 .column__toggle .toggle__item .item__question:after {
		width: 14px;
	}

	.site__block_8 .column__toggle .toggle__item .item__answer {
		font-size: 14px;
		padding: 0 25px 25px;
	}

	.site__block_8 .block__image img {
		width: 100%;
	}

	.site__block_9 .block__title {
		font-size: 32px;
	}

	.site__block_9 .block__columns {
		grid-template-columns: 280px auto;
	}

	.site__block_9 .column__links > ul > li > a {
		font-size: 16px;
		padding: 30px;
	}

	.site__block_10 .block__columns .columns__left {
		padding-right: 70px;
	}

	.site__block_10 .column__title {
		font-size: 40px;
	}

	.site__block_10 .column__title img {
		height: 40px;
		width: 40px;
	}

	.site__block_10 .column__download p {
		font-size: 15px;
	}

	.site__block_10 .column__download p b,
	.site__block_10 .column__download p strong {
		font-size: 17px;
	}

	.site__block_10 .column__image {
		margin-bottom: -90px;
	}

	.site__block_10 .column__image img {
		width: 620px;
	}

	.site__block_11 .container {
		padding-bottom: 90px;
		padding-top: 90px;
	}

	.site__block_11 .column__title {
		font-size: 75px;
	}

	.site__block_11 .column__title b,
	.site__block_11 .column__title strong {
		font-size: 120px;
	}

	.site__block_11 .column__topics {
		grid-gap: 40px;
	}

	.site__block_11 .column__topics .topics__item {
		padding: 40px;
	}

	.site__block_11 .column__topics .topics__item .item__title {
		font-size: 15px;
	}

	.site__block_11 .column__topics .topics__item .item__title img {
		height: 40px;
		width: 40px;
	}

	.site__block_11 .column__topics .topics__item .item__title span b,
	.site__block_11 .column__topics .topics__item .item__title span strong {
		font-size: 25px;
	}

	.site__block_11 .column__topics .topics__item ul.item__list li {
		font-size: 15px;
	}

	.site__footer .footer__block {
		padding: 40px 0;
	}

	.site__footer .footer__head .head__logo img {
		height: 35px;
	}

	.site__footer .footer__head .head__column .head__lang {
		min-width: 280px;
	}

	.site__footer .footer__head .head__column .head__lang .lang__title {
		font-size: 11px;
	}

	.site__footer .footer__head .head__column .head__lang .lang__current {
		font-size: 15px;
	}

	.site__footer .footer__head .head__column .head__title {
		font-size: 16px;
	}

	.site__footer .footer__head .head__column .head__menu > ul > li > a {
		font-size: 14px;
	}

}

/* Tablets */

@media (max-width: 991px) {

	.container {
		max-width: 720px;
	}

	.site__header .header__pre .preheader__menu > ul > li > a,
	.site__header .header__pre .preheader__links > ul > li > a {
		padding: 0 12px;
	}

	.site__header .header__content .container {
		height: 100px;
		padding-bottom: 0;
		padding-top: 0;
	}

	.site__header.relative .header__content .container {
		height: 80px;
	}

	.site__header .header__content .content__menu,
	.site__header .header__content .content__download {
		display: none;
	}

	.site__header .header__content .content__btns {
		margin-left: auto;
	}

	.site__header .header__content .content__download ~ .content__open_menu {
		display: flex;
	}

	.site__header .header__content .content__logged_in {
		flex-direction: row-reverse;
		gap: 10px;
		padding: 12px 24px;
	}

	.site__header .header__content .content__logged_in .logged_in__user span,
	.site__header .header__content .content__logged_in .btn__green {
		display: none;
	}

	.site__block_1 .container {
		padding-top: 110px;
	}

	.site__block_1 .block__columns {
		grid-template-columns: minmax(0,1fr);
	}

	.site__block_1 .block__columns .columns__left {
		align-items: center;
		text-align: center;
	}

	.site__block_1 .column__title {
		font-size: 70px;
	}

	.site__block_1 .column__title b,
	.site__block_1 .column__title strong {
		font-size: 170px;
	}

	.site__block_1 .column__image {
		display: block;
		transform: translateY(35px);
	}

	.site__block_1 .column__image img {
		left: 50%;
		position: relative;
		transform: translateX(-50%);
		width: 125%;
	}

	.site__block_2 .container {
		padding-bottom: 80px;
		padding-top: 80px;
	}

	.site__block_2 .block__columns {
		grid-gap: 25px;
		grid-template-columns: minmax(0,1fr);
	}

	.site__block_2 .block__columns .columns__left {
		align-items: center;
		text-align: center;
	}

	.site__block_2 .block__columns .columns__right {
		align-items: center;
		text-align: center;
	}

	.site__block_2 .block__columns .columns__left .column__title {
		display: block;
	}

	.site__block_2 .block__columns .columns__right .column__title {
		display: none;
	}

	.site__block_2 .column__title {
		font-size: 45px;
	}

	.site__block_2 .column__title b,
	.site__block_2 .column__title strong {
		font-size: 80px;
	}

	.site__block_2 .column__image {
		align-items: center;
		justify-content: center;
		margin-top: 25px;
	}

	.site__block_2 .column__image img {
		transform: translateX(-20%);
		width: 100%;
	}

	.site__block_3 .container {
		padding-bottom: 0;
		padding-top: 80px;
	}

	.site__block_3 .block__columns {
		grid-gap: 20px;
		grid-template-columns: minmax(0,1fr);
	}

	.site__block_3 .block__columns .columns__left {
		align-items: center;
		text-align: center;
	}

	.site__block_3 .column__img_1 {
		right: 0;
		top: -40px;
		transform: translateX(75%);
	}

	.site__block_3 .column__img_2 {
		left: -100px;
		right: inherit;
		top: 110%;
	}

	.site__block_3 .column__title {
		font-size: 80px;
	}

	.site__block_3 .column__title b,
	.site__block_3 .column__title strong {
		font-size: 180px;
	}

	.site__block_3 .column__image {
		margin-bottom: -15%;
		transform: inherit;
	}

	.site__block_3 .column__image img {
		width: 90%;
	}

	.site__block_4 .container {
		padding-top: 15%;
	}

	.site__block_4 .block__columns {
		grid-gap: 30px;
	}

	.site__block_4 .column__title {
		font-size: 60px;
	}

	.site__block_4 .column__title b,
	.site__block_4 .column__title strong {
		font-size: 70px;
	}

	.site__block_4 .column__topics {
		display: flex;
		flex-wrap: nowrap;
		left: 50%;
		overflow-x: auto;
		padding: 0 20px;
		position: relative;
		scroll-padding-left: 20px;
		scroll-padding-right: 20px;
		transform: translateX(-50%);
		width: calc(100vw - 15px);
	}

	.site__block_4 .column__topics .topics__item {
		flex-shrink: 0;
		width: 40%;
	}

	.site__block_5 .container {
		padding-bottom: 30px;
	}

	.site__block_5 .block__columns {
		grid-gap: 30px;
	}

	.site__block_5 .column__title {
		font-size: 40px;
		word-spacing: -5px;
	}

	.site__block_5 .column__title b,
	.site__block_5 .column__title strong {
		font-size: 100px;
	}

	.site__block_5 .column__topics {
		display: flex;
		flex-wrap: nowrap;
		left: 50%;
		overflow-x: auto;
		padding: 0 20px;
		position: relative;
		scroll-padding-left: 20px;
		scroll-padding-right: 20px;
		transform: translateX(-50%);
		width: calc(100vw - 15px);
	}

	.site__block_5 .column__topics .topics__item {
		flex-shrink: 0;
		width: 40%;
	}

	.site__block_7 .container {
		padding-bottom: 40px;
	}

	.site__block_7 .block__columns {
		grid-template-columns: minmax(0,1fr);
		margin-top: -100px;
		padding: 40px;
	}

	.site__block_7 .block__columns .columns__left,
	.site__block_7 .block__columns .columns__right {
		align-items: center;
		text-align: center;
	}

	.site__block_7 .column__img_1 {
		display: none;
	}

	.site__block_7 .column__img_2 {
		right: -22%;
		top: -7%;
	}

	.site__block_7 .column__title b,
	.site__block_7 .column__title strong {
		font-size: 90px;
	}

	.site__block_7 .column__steps {
		gap: 25px;
		margin-top: 20px;
		text-align: left;
	}

	.site__block_7 .column__device {
		align-items: center;
		text-align: center;
	}

	.site__block_7 .column__device.desktop {
		display: none;
	}

	.site__block_7 .column__device.mobile {
		display: flex;
	}

	.site__block_8 .container {
		padding-bottom: 50px;
	}

	.site__block_8 .block__columns .columns__bottom {
		padding-left: 0;
		padding-right: 0;
	}

	.site__block_8 .column__toggle .toggle__item .item__question {
		font-size: 17px;
	}

	.site__block_8 .column__toggle .toggle__item .item__question:before {
		font-size: 28px;
	}

	.site__block_8 .column__toggle .toggle__item .item__answer {
		font-size: 15px;
	}

	.site__block_8 .block__image {
		display: none;
	}

	.site__block_9 .block__title {
		font-size: 28px;
	}

	.site__block_9 .block__columns {
		grid-template-columns: minmax(0,1fr);
	}

	.site__block_9 .block__columns .columns__left {
		display: none;
	}

	.site__block_9 .column__content {
		border-radius: 15px;
		padding: 10px 40px;
	}

	.site__block_10 .container {
		padding-top: 30px;
	}

	.site__block_10 .block__columns {
		grid-template-columns: repeat(1,minmax(0,1fr));
	}

	.site__block_10 .block__columns .columns__left {
		align-items: center;
		gap: 20px;
		padding-bottom: 30px;
		padding-right: 0;
		text-align: center;
	}

	.site__block_10 .column__download {
		width: 50%;
	}

	.site__block_10 .column__download + .column__download {
		margin-top: 0;
	}

	.site__block_10 .column__download p {
		display: none;
	}

	.site__block_10 .column__download a .desktop {
		display: none;
	}

	.site__block_10 .column__download a .mobile {
		display: block;
	}

	.site__block_10 .column__image {
		margin-bottom: -15%;
	}

	.site__block_10 .column__image img {
		width: 90%;
	}

	.site__block_11 .container {
		padding-top: 12.5%;
		padding-bottom: 50px;
	}

	.site__block_11 .block__columns {
		grid-gap: 30px;
	}

	.site__block_11 .column__title {
		font-size: 50px;
		word-spacing: -5px;
	}

	.site__block_11 .column__title b,
	.site__block_11 .column__title strong {
		font-size: 90px;
	}

	.site__block_11 .column__topics {
		grid-gap: 30px;
		grid-template-columns: repeat(1,minmax(0,1fr));
	}

	.site__block_11 .column__topics .topics__item {
		padding: 35px;
	}

	.site__block_11 .column__topics .topics__item .item__btn .desktop {
		display: none;
	}

	.site__block_11 .column__topics .topics__item .item__btn .mobile {
		display: block;
	}

	.site__footer .footer__head {
		flex-wrap: wrap;
	}

	.site__footer .footer__head .head__column:nth-child(1) {
		align-items: center;
		gap: 15px;
		width: 100%;
	}

	.site__footer .footer__foot {
		flex-direction: column-reverse;
	}

}

/* Smartphones - Landscape */

@media (max-width: 767px) {

	.container {
		max-width: 540px;
	}

	.btn__green.bright,
	.btn__green.bright__hover:hover {
		box-shadow: -5px 5px 20px 0 color-mix(in srgb, var(--third-color), #fff 15%);
		transition: box-shadow .3s;
	}

	.site__header .header__content .container,
	.site__header.relative .header__content .container {
		height: 70px;
	}

	.site__header .header__pre .preheader__menu {
		display: flex;
		justify-content: center;
		width: 100%;
	}

	.site__header .header__pre .preheader__links,
	.site__header .header__pre .preheader__lang {
		display: none;
	}

	.site__header .header__content .content__logged_in .logged_in__user img {
		height: 20px;
	}

	.site__header .header__content .content__logged_in .logged_in__balance {
		font-size: 18px;
	}

	.site__header .header__content .content__logged_in .logged_in__balance small {
		font-size: 14px;
	}

	.site__block_4 .column__topics {
		width: 100vw;
	}

	.site__block_4 .column__topics .topics__item {
		width: 44%;
	}

	.site__block_4 .column__nav {
		display: flex;
	}

	.site__block_5 .column__topics {
		width: 100vw;
	}

	.site__block_5 .column__topics .topics__item {
		width: 44%;
	}

	.site__block_5 .column__nav {
		display: flex;
	}

	.site__block_6 .block__image img {
		width: 175%;
	}

	.site__block_7 .column__img_2 {
		right: -28%;
		top: -13%;
		transform: scale(0.6);
	}

	.site__block_7 .column__img_3 {
		left: -180px;
		transform: scale(0.6);
	}

	.site__block_9 .block__title {
		font-size: 24px;
	}

	.site__block_10 .column__download {
		width: 75%;
	}

	.site__block_11 .column__title {
		font-size: 40px;
	}

	.site__block_11 .column__title b,
	.site__block_11 .column__title strong {
		font-size: 80px;
	}

}

/* Smartphones - Portrait */

@media (max-width: 567px) {

	.container {
		max-width: auto;
	}

	.btn__green,
	.btn__blue {
		font-size: 18px;
		min-height: 55px;
		padding: 10px 32px;
	}

	.btn__green:has(.btn__arrow, .btn__image),
	.btn__blue:has(.btn__arrow, .btn__image) {
		padding-right: 10px;
	}

	.btn__green.big,
	.btn__blue.big {
		padding: 15px 15px 15px 37px;
	}

	.btn__green .btn__arrow,
	.btn__blue .btn__arrow {
		margin-left: auto;
	}

	.site__alert .container {
		gap: 8px;
	}

	.site__alert .alert__icon img {
		height: 28px;
		width: auto;
	}

	.site__alert .alert__title {
		font-size: 11px;
	}

	.site__alert .alert__btn {
		font-size: 11px;
	}

	.site__header .header__content .container,
	.site__header.relative .header__content .container {
		height: 60px;
		padding-bottom: 0;
		padding-top: 0;
	}

	.site__header .header__pre .preheader__menu > ul {
		width: 100%;
	}

	.site__header .header__pre .preheader__menu > ul > li {
		flex-grow: 1;
	}

	.site__header .header__pre .preheader__menu > ul > li > a {
		padding: 0;
	}

	.site__header .header__content .content__logo img {
		height: 28px;
	}

	.site__header .header__content .content__btns {
		gap: 5px;
	}

	.site__header .header__content .content__btns a {
		font-size: 11px;
		padding: 6px 10px;
	}

	.site__header .header__content .content__open_menu {
		margin-left: 10px;
	}

	.site__header .header__content .content__open_menu img {
		height: 15px;
		width: auto;
	}

	.site__header .header__content .content__logged_in {
		padding: 10px 20px;
	}

	.site__menu_mobile .menu_mobile__content {
		width: 100%;
	}

	.site__menu_mobile .menu_mobile__content .content__btns a {
		font-size: 16px;
	}

	.site__login {
		padding: 15px;
	}

	.site__login .login__content .content__head {
		padding: 25px 30px;
	}

	.site__login .login__content .content__head .head__title {
		font-size: 22px;
	}

	.site__login .login__content .content__body {
		padding: 30px;
	}

	.site__login .login__content .content__body .body__remember label span,
	.site__login .login__content .content__body .body__lost_password a {
		font-size: 15px;
	}

	.site__login .login__content .content__body .body__btn button {
		width: 75%;
	}

	.site__login .login__content .content__body .body__btns a,
	.site__login .login__content .content__body .body__register a {
		font-size: 15px;
	}

	.site__login .login__content .content__body .body__register a u {
		display: block;
	}

	.site__block_1 .container {
		padding-left: 25px;
		padding-right: 25px;
	}

	.site__block_1 .block__columns .columns__left,
	.site__block_2 .block__columns .columns__right {
		align-items: flex-start;
		text-align: left;
	}

	.site__block_1 .column__title {
		font-size: 65px;
	}

	.site__block_1 .column__title b,
	.site__block_1 .column__title strong {
		font-size: 135px;
	}

	.site__block_1 .column__description {
		font-size: 14px;
		text-wrap: inherit;
	}

	.site__block_1 .column__btns,
	.site__block_1 .column__btns a {
		width: 100%;
	}

	.site__block_1 .column__image {
		transform: translateY(50px) translateX(-20px);
	}

	.site__block_1 .column__image img {
		width: 150%;
	}

	.site__block_2 .container {
		padding-bottom: 50px;
		padding-left: 25px;
		padding-right: 25px;
	}

	.site__block_2 .block__columns .columns__left {
		align-items: flex-start;
		text-align: left;
	}

	.site__block_2 .column__title {
		font-size: 40px;
		word-spacing: -5px;
	}

	.site__block_2 .column__title b,
	.site__block_2 .column__title strong {
		font-size: 65px;
	}

	.site__block_2 .column__image img {
		width: 120%;
	}

	.site__block_2 .column__description {
		font-size: 14px;
		text-wrap: inherit;
	}

	.site__block_2 .column__btns,
	.site__block_2 .column__btns a {
		width: 100%;
	}

	.site__block_3 .container {
		padding-left: 25px;
		padding-right: 25px;
		padding-top: 50px;
	}

	.site__block_3 .block__columns .columns__left {
		align-items: flex-start;
		text-align: left;
	}

	.site__block_3 .column__img_2 {
		left: -80px;
		top: 100%;
	}

	.site__block_3 .column__title {
		font-size: 60px;
	}

	.site__block_3 .column__title b,
	.site__block_3 .column__title strong {
		font-size: 130px;
	}

	.site__block_3 .column__description {
		font-size: 14px;
		text-wrap: inherit;
	}

	.site__block_3 .column__btns,
	.site__block_3 .column__btns a {
		width: 100%;
	}

	.site__block_3 .column__image img {
		width: 120%;
	}

	.site__block_4 .container {
		padding-bottom: 50px;
	}

	.site__block_4 .column__title {
		font-size: 45px;
		word-spacing: -5px;
	}

	.site__block_4 .column__title b,
	.site__block_4 .column__title strong {
		font-size: 60px;
	}

	.site__block_4 .column__topics .topics__item {
		padding: 30px;
		width: 85%;
	}

	.site__block_5 .container {
		padding-top: 50px;
	}

	.site__block_5 .column__title {
		font-size: 35px;
	}

	.site__block_5 .column__title b,
	.site__block_5 .column__title strong {
		font-size: 80px;
	}

	.site__block_5 .column__topics .topics__item {
		padding: 30px;
		width: 85%;
	}

	.site__block_7 .block__columns {
		margin-top: -60px;
		padding: 30px;
	}

	.site__block_7 .block__columns .columns__left,
	.site__block_7 .block__columns .columns__right {
		align-items: flex-start;
		text-align: left;
	}

	.site__block_7 .block__columns .columns__right {
		gap: 35px;
	}

	.site__block_7 .column__img_2 {
		right: -52%;
		transform: scale(0.5);
	}

	.site__block_7 .column__img_3 {
		left: -200px;
		transform: scale(0.5);
	}

	.site__block_7 .column__device {
		align-items: flex-start;
		text-align: left;
		width: 100%;
	}

	.site__block_7 .column__device .device__btns {
		flex-direction: column;
		width: 100%;
	}

	.site__block_7 .column__device .device__btns a {
		width: 100%;
	}

	.site__block_7 .column__description {
		font-size: 14px;
	}

	.site__block_7 .column__description b,
	.site__block_7 .column__description strong {
		font-size: 16px;
	}

	.site__block_8 .block__columns .columns__top {
		align-items: center;
		display: flex;
		flex-direction: column;
		gap: 10px;
		justify-content: center;
	}

	.site__block_8 .column__subtitle {
		line-height: 1.1;
	}

	.site__block_8 .column__toggle .toggle__item {
		border-radius: 15px;
	}

	.site__block_9 .container {
		padding-bottom: 40px;
		padding-top: 40px;
	}

	.site__block_9 .block__title {
		font-size: 22px;
		margin-bottom: 20px;
	}

	.site__block_9 .column__content {
		font-size: 15px;
		padding: 10px 30px;
	}

	.site__block_10 .column__title {
		font-size: 36px;
	}

	.site__block_10 .column__title img {
		height: 32px;
		width: 32px;
	}

	.site__block_10 .column__download {
		width: 90%;
	}

	.site__block_10 .column__image img {
		width: 120%;
	}

	.site__block_11 .container {
		padding-top: 15%;
	}

	.site__block_11 .column__title {
		font-size: 55px;
	}

	.site__block_11 .column__title b,
	.site__block_11 .column__title strong {
		font-size: 90px;
	}

	.site__block_11 .column__topics .topics__item {
		gap: 20px;
		padding: 30px;
	}

	.site__block_11 .column__topics .topics__item .item__title {
		align-items: flex-start;
		flex-direction: column;
		justify-content: flex-start;
	}

	.site__block_11 .column__topics .topics__item .item__title span b,
	.site__block_11 .column__topics .topics__item .item__title span strong {
		font-size: 23px;
	}

	.site__block_11 .column__topics .topics__item .item__btn {
		font-size: 16px;
		gap: 10px;
	}

	.site__block_11 .column__topics .topics__item .item__btn img {
		height: 25px;
		width: auto;
	}

	.site__block_11 .column__topics .topics__item .item__btn span {
		margin-right: auto;
	}

	.site__block_11 .column__topics .topics__item .item__btn .btn__arrow {
		display: none;
	}

	.site__register {
		padding: 40px 0;
	}

	.site__register .register__content {
		gap: 40px;
	}

	.site__register .register__content .content__head .head__logo img {
		height: 35px;
	}

	.site__register .register__content .content__body .body__head {
		padding: 25px 30px;
	}

	.site__register .register__content .content__body .body__head .head__title {
		font-size: 22px;
	}

	.site__register .register__content .content__body .body__main {
		padding: 30px;
	}

	.site__register .register__content .content__body .body__main .main__btn button {
		width: 75%;
	}

	.site__footer .footer__main .main__logos a.first {
		width: 100%;
	}

	.site__footer .footer__main .main__logos a img {
		height: 2.2rem;
		max-width: 10rem;
	}

}