/* fonts */

@font-face {
	font-family: "Montserrat-Bold";
	src: url("/fonts/montserrat-bold.ttf") format("truetype");
	font-style: normal;
	font-weight: normal;
	font-display: swap;
}

@font-face {
	font-family: "Montserrat-Regular";
	src: url("/fonts/montserrat-regular.ttf") format("truetype");
	font-style: normal;
	font-weight: normal;
	font-display: swap;
}

@font-face {
	font-family: "Inter-Regular";
	src: url("/fonts/inter-regular.ttf") format("truetype");
	font-style: normal;
	font-weight: normal;
	font-display: swap;
}

/*general*/

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


body {
	margin: 0;
	font-family: "Montserrat-Regular";
	background-color: #000;
	font-weight: 400;
	line-height: 1.5;
	-webkit-text-size-adjust: 100%;
	-webkit-tap-highlight-color: transparent;
	overflow-x: hidden;
	position: relative;
	color: #fff;
	padding-top: 88px;
}

.frontPageBody {
	background: none;
	background-color: #fafafa;
}

a {
	text-decoration: none;
	color: #4f3eb3;
	transition: .3s linear;
	text-decoration: underline;
}

a:hover {
	color: #157ECF;
}

ul {
	list-style: none;
}

section ul {
	padding-inline-start: 30px;
}

section ul li {
	padding-bottom: 10px;
}

section ul li:before {
	content: "";
	height: 4px;
	width: 4px;
	background-color: #fff;
	border-radius: 50%;
	display: inline-block;
	margin-left: -1em;
	margin-right: 0.8em;
	margin-bottom: 0.2em;
}

section ol {
	padding-inline-start: 20px;
}

section ol li {
	font-size: 18px;
}

dl,
ol,
ul {
	margin-top: 0;
	margin-bottom: 1rem;
	padding-left: 0;
}


h1 {
	font-family: "Montserrat-Bold";
	font-size: 46px;
	/* font-weight: 400; */
	line-height: 50.58px;
	margin: 0;
}

h2 {
	font-family: "Montserrat-Bold";
	font-size: 28px;
	font-weight: 700;
	line-height: 1.45;
	color: #fff;
	/* margin-top: 0;
	margin-bottom: 0; */
	text-align: center;
}

@media (min-width: 768px) {
	h2 {
		font-size: 32px;
		line-height: 1.35;
	}
}

@media (min-width: 992px) {
	h2 {
		font-size: 40px;
	}
}

h3 {
	font-family: "Montserrat-Bold";
	margin: 0px;
	font-size: 24px;
}

@media (min-width: 768px) {
	h3 {
		font-size: 24px;
		line-height: 1.35;
	}
}

@media (min-width: 992px) {
	h3 {
		font-size: 34px;
	}
}

h4 {
	font-family: "Montserrat-Bold";
	margin: 0px;
	font-size: 24px;
}

@media (min-width: 768px) {
	h4 {
		font-size: 26px;
		line-height: 1.35;
	}
}

@media (min-width: 992px) {
	h4 {
		font-size: 28px;
	}
}

h3,
h4,
h5,
h6 {
	font-weight: 600;
}

@media (min-width: 768px) {

	h1,
	h2,
	h3,
	h4,
	h5,
	h6 {
		margin-bottom: 40px;
		margin-top: 40px;
	}
}

h4 {
	margin-bottom: 0.5rem;
}

p {
	font-family: "Montserrat-Regular";
	font-size: 1rem;
	font-weight: 400;
	line-height: 26px;
	color: #5b5b5b;
}

img,
svg {
	vertical-align: middle;
	height: auto;
	max-width: 100%;
}

[type=button]:not(:disabled),
button:not(:disabled),
[role=button] {
	cursor: pointer;
}

[type=button],
button {
	-webkit-appearance: button;
}

button,
a.button-link {
	text-transform: none;
	margin: 0;
	white-space: nowrap;
	font-family: inherit;
	background-color: unset;
	font-size: inherit;
	line-height: inherit;
	font-size: 1rem;
	font-weight: 600;
	line-height: 24px;
	letter-spacing: 0.4px;
	align-items: center;
	background-color: transparent;
	color: #fff;
	padding: 8px 24px;
	border-radius: 15px;
	transition: .3s linear;
	border: 0;

}

.gradient-button span {
	font-family: "Inter-Regular";
	position: relative;
	z-index: 1;
	line-height: 17px;
	display: block;
	padding: 0px 31px;
}

.gradient-button {
	background-color: #fff;
	color: #fff;
	border: none;
	padding: 10px 20px;
	font-size: 16px;
	cursor: pointer;
	position: relative;
	overflow: hidden;
	z-index: 1;
	border-radius: 15px;
	/* box-shadow: 0 1px #6A1125; */
}

.gradient-button::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(#ff5121, #DF9937);
	border-radius: 15px;
	z-index: 0;
	filter: blur(3px);
	transition: opacity .5s linear;
}

.gradient-button:hover::before {
	opacity: 1;
	/* Применяем эффект при наведении */
}

.gradient-button::after {
	content: "";
	position: absolute;
	top: -50%;
	right: -50%;
	bottom: -50%;
	left: -80%;
	background: linear-gradient(to bottom, rgba(229, 172, 142, 0), rgba(255, 255, 255, 0.5) 50%, rgba(229, 172, 142, 0));
	transform: rotateZ(60deg) translate(-5em, 7.5em);
	z-index: 1;
	/* Также выставляем z-index, чтобы этот элемент был выше фона, но под текстом */
}

.gradient-button:hover::after {
	animation: sheen 1s forwards;
}

@keyframes sheen {
	from {
		transform: rotateZ(60deg) translate(-5em, 7.5em);
	}

	to {
		transform: rotateZ(60deg) translate(5em, -7.5em);
	}
}

a.button-link:hover {
	background-color: #ff2400;
}

.content-button {
	margin: 30px auto 40px;
	display: block;
}

.bright-button {
	background-color: #ff2400 !important;
}

.bright-button:hover {
	background-color: #E12708 !important;
}

.buttonLink {
	padding: 0;
	background-color: transparent;
	border: 0px;
	width: 100%;
	display: contents;
}

.fixed-top {
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	z-index: 999;
	height: 88px;
}

.row {
	--bs-gutter-x: 1.5rem;
	--bs-gutter-y: 0;
	display: flex;
	align-items: center;
	gap: 40px;
	flex-wrap: nowrap;
	justify-content: space-between;
	flex-direction: row;
	/* margin-top: calc(var(--bs-gutter-y) * -1);
	margin-right: calc(var(--bs-gutter-x) * -.5);
	margin-left: calc(var(--bs-gutter-x) * -.5); */
}

.row .image-column {
	flex: 0 0 46%;
	max-width: 46%;
}

.row .text-column {
	flex-direction: column;
}

.column {
	display: flex;
	-webkit-box-flex: 0;
	flex-direction: column;
}

.order-1 {
	order: 1;
}

.container-fluid {
	width: 100%;
	padding-right: 0;
	padding-left: 0;
	margin-right: auto;
	margin-left: auto;
}

.container-sm {
	width: 100%;
	padding-right: var(--bs-gutter-x, .75rem);
	padding-left: var(--bs-gutter-x, .75rem);
	margin-right: auto;
	margin-left: auto;
}

.contentImg {
	padding: 20px;
	background-color: #003c70;
}

.contentImg img {
	box-shadow: 0 0 0.56vw 0 rgba(0, 0, 0, .5);
}

@media (min-device-width: 768px) {
	.container-sm {
		max-width: 720px;
	}
}

@media (min-device-width: 992px) {
	.container-sm {
		max-width: 960px;
	}
}

@media (min-device-width: 1200px) {
	.container-sm {
		max-width: 1150px;
	}
}

@media(max-device-width: 991px) {
	/* .row {
		flex-direction: column;
	} */

	.text-column,
	.image-column,
	.row .image-column {
		max-width: 100%;
		width: 100%;
		order: 1;
	}
}

/*tns*/

.tns-outer {
	padding: 0 !important
}

.tns-outer [hidden] {
	display: none !important
}

.tns-outer [aria-controls],
.tns-outer [data-action] {
	cursor: pointer
}

.tns-slider {
	-webkit-transition: all 0s;
	-moz-transition: all 0s;
	transition: all 0s
}

.tns-slider>.tns-item {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box
}

.tns-horizontal.tns-subpixel {
	white-space: nowrap
}

.tns-outer>button {
	display: none;
}

.tns-horizontal.tns-subpixel>.tns-item {
	/* display: inline-block; */
	vertical-align: top;
	white-space: normal
}

.tns-horizontal.tns-no-subpixel:after {
	content: '';
	display: table;
	clear: both
}

.tns-horizontal.tns-no-subpixel>.tns-item {
	float: left
}

.tns-horizontal.tns-carousel.tns-no-subpixel>.tns-item {
	margin-right: -100%
}

.tns-no-calc {
	position: relative;
	left: 0
}

.tns-gallery {
	position: relative;
	left: 0;
	min-height: 1px
}

.tns-gallery>.tns-item {
	position: absolute;
	left: -100%;
	-webkit-transition: transform 0s, opacity 0s;
	-moz-transition: transform 0s, opacity 0s;
	transition: transform 0s, opacity 0s
}

.tns-gallery>.tns-slide-active {
	position: relative;
	left: auto !important
}

.tns-gallery>.tns-moving {
	-webkit-transition: all 0.25s;
	-moz-transition: all 0.25s;
	transition: all 0.25s
}

.tns-autowidth {
	display: inline-block
}

.tns-lazy-img {
	-webkit-transition: opacity 0.6s;
	-moz-transition: opacity 0.6s;
	transition: opacity 0.6s;
	opacity: 0.6
}

.tns-lazy-img.tns-complete {
	opacity: 1
}

.tns-ah {
	-webkit-transition: height 0s;
	-moz-transition: height 0s;
	transition: height 0s
}

.tns-ovh {
	overflow: hidden
}

.tns-visually-hidden {
	position: absolute;
	left: -10000em
}

.tns-transparent {
	opacity: 0;
	visibility: hidden
}

.tns-fadeIn {
	opacity: 1;
	filter: alpha(opacity=100);
	z-index: 0
}

.tns-normal,
.tns-fadeOut {
	opacity: 0;
	filter: alpha(opacity=0);
	z-index: -1
}

.tns-vpfix {
	white-space: nowrap
}

.tns-vpfix>div,
.tns-vpfix>li {
	display: inline-block
}

.tns-t-subp2 {
	margin: 0 auto;
	width: 310px;
	position: relative;
	height: 10px;
	overflow: hidden
}

.tns-t-ct {
	width: 2333.3333333%;
	width: -webkit-calc(100% * 70 / 3);
	width: -moz-calc(100% * 70 / 3);
	width: calc(100% * 70 / 3);
	position: absolute;
	right: 0
}

.tns-t-ct:after {
	content: '';
	display: table;
	clear: both
}

.tns-t-ct>div {
	width: 1.4285714%;
	width: -webkit-calc(100% / 70);
	width: -moz-calc(100% / 70);
	width: calc(100% / 70);
	height: 10px;
	float: left
}

/*tns-controls*/

.tns-controls {
	display: flex;
	flex-direction: row;
}

.tns-controls button[data-controls="next"],
.tns-controls button[data-controls="prev"] {
	top: 50%;
	transform: translateY(-50%);
	z-index: 10;
	background: none;
	color: #494949;
	border: none;
	font-weight: 600;
	font-size: 25px;
	position: absolute;
	cursor: pointer;
}

.tns-controls button[data-controls="next"] {
	right: -10px;
}

.tns-controls button[data-controls="prev"] {
	left: -10px;
}

.tns-controls button {
	padding: 0;
}

/*header*/

.menuContainer .container-sm {
	min-height: 88px;
}

.menuContainer {
	box-shadow: rgb(0 0 0 / 12%) 0 5px 13px;
}

.navbar-brand img {
	width: 91px;
	height: 64px;
	object-fit: cover;
}

.navbar-brand span {
	font-family: "Montserrat-Regular";
	font-size: 18px;
	line-height: 26px;
	font-weight: 300;
	color: #fff;
}

.navLogo {
	transition: all ease 0.5s;
	background-color: #000;
}

.navList {
	padding-top: 0px;
	padding-bottom: 0px;
}

.navList .nav-link {
	font-family: "Montserrat-Regular";
	font-size: 16px;
	font-weight: 500;
	color: #fff;
	padding: 8px 15px;
	transition: all ease 0.5s;
	border-radius: 40px;
}

.navList .nav-link:hover {
	background: rgba(255, 255, 255, 0.1);
}

.navList .dropdown .nav-link {
	border: none;
}

.navList .dropdown-item {
	font-family: "Montserrat-Regular";
	font-size: 15px;
	font-weight: 400;
	color: #fff;
	text-align: center;
	padding: 11px 12px;
}

/* 
.navbar-toggler:hover {
	background-color: unset;
} */

.navbar-toggler:focus {
	outline: none;
	box-shadow: none;
}

.custom-toggler .navbar-toggler-icon {
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgb(255, 255, 255)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
}

.navbar {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
}

.navbar-toggler {
	padding: 0.25rem 0.75rem;
	font-size: 1.25rem;
	line-height: 1;
	background-color: transparent;
	border: 1px solid transparent;
	border-radius: 0.25rem;
	transition: box-shadow .15s ease-in-out;
	order: 1;
	box-shadow: none;
	padding: .3rem .3rem .3rem .3rem;
	background-color: rgba(255, 255, 255, 0.1);
	margin-right: .75rem;
}

.logo_country {
	font-size: 10px;
	background: rgba(255, 255, 255, .1);
	border-radius: 12px;
	padding: 3px 6px;
	font-size: 10px !important;
	color: #fff;
	line-height: normal !important;
	position: absolute;
	top: 1px;
	left: 9em;
	white-space: nowrap;
}

.header-name {
	font-weight: 700;
	font-size: 28px;
	color: #000;
	text-decoration: none;
}

.header-name:hover {
	color: #000;
}

.navbar-toggler-icon {
	display: inline-block;
	width: 1.5em;
	height: 1.5em;
	vertical-align: middle;
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100%;
}

.navbar-brand {
	padding-top: 0.3125rem;
	padding-bottom: 0.3125rem;
	font-size: 1.25rem;
	text-decoration: none;
	white-space: nowrap;
	display: flex;
	align-items: center;
	justify-content: space-between;
	column-gap: 18px;
	position: relative;
}

.navbar>.container-sm {
	display: flex;
	flex-wrap: inherit;
	align-items: center;
	justify-content: space-between;
	height: 88px;
	column-gap: 0.5rem;
}

.navbar-collapse {
	flex-basis: 100%;
	flex-grow: 1;
}

.collapse:not(.show) {
	display: none;
}

.navbar-nav {
	display: flex;
	flex-direction: column;
	padding-left: 0;
	align-items: center;
	margin-bottom: 0;
	flex: 1;
	list-style: none;
	justify-content: center;
	column-gap: 1.5rem;
	column-gap: 5px;
}

.nav-link,
.nav-item {
	display: block;
	text-decoration: none;
	position: relative;
	/* transition: color .3s ease-in-out, background-color .3s ease-in-out, border-color .3s ease-in-out; */
}


.nav-item {
	padding-top: 16px;
	padding-bottom: 16px;
}

.dropdown {
	position: relative;
}

.dropdown-toggle {
	white-space: nowrap;
}

.dropdown-toggle::after {
	content: "";
	float: right;
	border-style: solid;
	border-width: 3px 3px 0 0;
	height: 8px;
	left: 6px;
	position: relative;
	top: 5px;
	width: 8px;
	transform: rotate(135deg);
	order: 2;
}

.dropdown-menu {
	position: absolute;
	z-index: 1000;
	opacity: 0;
	top: 98px;
	left: 0px;
	margin: -25px 0 0 -25px;
	min-width: 10rem;
	padding: 0;
	font-size: 1rem;
	color: #212529;
	text-align: left;
	list-style: none;
	background-color: #001f41;
	background-clip: padding-box;
	border: unset;
	-webkit-box-shadow: 0 4px 30px rgb(0 0 0 / 20%);
	box-shadow: 0 4px 30px rgb(0 0 0 / 20%);
	transition: opacity .15s ease-in-out;
	visibility: hidden;
}

.dropdown-item {
	display: block;
	width: 100%;
	clear: both;
	text-decoration: none;
	white-space: nowrap;
	background-color: transparent;
	border: 0;
}

.dropdown-menu.show {
	opacity: 1;
	visibility: visible;
	position: unset;
}

.dropdown-menu li {
	border-top: 1px solid #04e3ff6b;
}

.dropdown-menu li:first-of-type {
	border-top: none;
}

.dropdown-menu li:hover {
	background-color: #04e3ff6b;
}

.navList .homeElement {
	color: #25aae1;
	font-weight: 600;
}

.searchBlock {
	order: 2;
}

.searchBlock {
	position: relative;
}

.navbarSearchIcon {
	border: none;
	padding: 0;
}

.searchIcon {
	background-image: url("data:image/svg+xml,%3Csvg class='search-block__icon-search' width='17' height='17' viewBox='0 0 17 17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.31429 0C7.98894 0 9.595 0.665253 10.7792 1.84941C11.9633 3.03357 12.6286 4.63963 12.6286 6.31429C12.6286 7.87829 12.0554 9.316 11.1131 10.4234L11.3754 10.6857H12.1429L17 15.5429L15.5429 17L10.6857 12.1429V11.3754L10.4234 11.1131C9.316 12.0554 7.87829 12.6286 6.31429 12.6286C4.63963 12.6286 3.03357 11.9633 1.84941 10.7792C0.665253 9.595 0 7.98894 0 6.31429C0 4.63963 0.665253 3.03357 1.84941 1.84941C3.03357 0.665253 4.63963 0 6.31429 0ZM6.31429 1.94286C3.88571 1.94286 1.94286 3.88571 1.94286 6.31429C1.94286 8.74286 3.88571 10.6857 6.31429 10.6857C8.74286 10.6857 10.6857 8.74286 10.6857 6.31429C10.6857 3.88571 8.74286 1.94286 6.31429 1.94286Z' fill='%23F0F0F0'%3E%3C/path%3E%3C/svg%3E");
	background-size: cover;
	display: inline-block;
	width: 17px;
	height: 17px;
}

.searchActionWrapper {
	opacity: 0;
	visibility: hidden;
	position: absolute;
	width: 215px;
	top: 48px;
	right: -5px;
	background-color: #1f1f1f;
	transition: opacity .15s ease-in-out;
}

.searchActionWrapper.show {
	opacity: 1;
	visibility: visible;
}

.searchForm {
	padding: 9px 12px 10px 12px;
	border: 1px solid #474747;
	-webkit-box-shadow: 0 4px 30px rgb(0 0 0 / 20%);
	box-shadow: 0 4px 30px rgb(0 0 0 / 20%);
}

.searchFormField {
	border: none;
	outline: none;
	background-color: transparent;
	color: #fff;
}

.searchFormField::placeholder {
	color: #fff;
	opacity: 0.7;
}

.searchFormSubmitBtn {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' stroke='rgb(255,255,255)' fill='currentColor' class='bi bi-send' viewBox='0 0 16 16'%3E%3Cpath d='M15.854.146a.5.5 0 0 1 .11.54l-5.819 14.547a.75.75 0 0 1-1.329.124l-3.178-4.995L.643 7.184a.75.75 0 0 1 .124-1.33L15.314.037a.5.5 0 0 1 .54.11ZM6.636 10.07l2.761 4.338L14.13 2.576 6.636 10.07Zm6.787-8.201L1.591 6.602l4.339 2.76 7.494-7.493Z'/%3E%3C/svg%3E");
	background-size: cover;
	display: inline-block;
	width: 17px;
	height: 17px;
	border: none;
}

.nav-button {
	display: flex;
	flex-direction: row;
	column-gap: .5rem;
	align-items: center;
	margin-left: auto;
}

/* 
@media (max-device-width: 1200px) {
	.nav-item {
		top: -12px;
	}
} */

@media(min-device-width: 991px) and (max-device-width: 1199px) {
	.navList .nav-link {
		padding: 8px 15px;
	}
}

/* @media(min-device-width: 767px) and (max-device-width: 991px) {
	.navbar-brand img {
		width: 144px;
		height: 36px;
		object-fit: contain;
	}

	.navList .nav-link {
		padding: 8px 2px;
	}

	button {
		font-size: 0.8rem;
	}
} */

@media(max-device-width: 991px) {
	.currentLanguageButton {
		font-size: 10px;
		width: 73px;
		width: 82px;
	}

	.searchBlock {
		padding-left: 3px;
	}

	.dropdown-toggle::after {
		left: 4px;
	}

	/**/

	.navList .container-sm {
		min-height: 0;
		height: 0;
		padding: 0;
	}

	.navbar>.container-sm {
		padding: 0;
	}

	/* .navbar-toggler {
		padding: 0.25rem 0.5rem 0.25rem 0;
	} */

	.menuContainer {
		box-shadow: unset;
	}

	.navbar-collapse {
		order: 1;
	}

	.navLogo {
		box-shadow: rgb(0 0 0 / 12%) 0 5px 13px;
	}

	.navList {
		padding-top: 12px;
		border-radius: 24px;
		padding-right: 12px;
		padding-left: 12px;
	}

	.nav-item:first-of-type .nav-link {
		border-top-left-radius: 24px !important;
		border-top-right-radius: 24px !important;
	}

	.nav-item:last-of-type .nav-link {
		border-bottom-left-radius: 24px !important;
		border-bottom-right-radius: 24px !important;
	}

	.navList .navbar-collapse {
		background-color: #FFF;
	}

	.nav-item {
		padding-top: 0;
	}

	.navList .nav-item {
		margin-top: 0px;
		padding-bottom: 0px;
		width: 100%;
	}

	.navList .nav-link::before {
		content: none;
	}

	.navList .nav-link {
		font-size: 15px;
		padding-left: 34px !important;
		padding-top: 18px;
		font-weight: 600;
		padding-right: 24px;
		padding-bottom: 18px;
		border: none !important;
		color: #fff;
		background: #111111;
		border-radius: 0;
	}

	.navList .nav-link:hover {
		background: #5e2100;
	}

	.navList .dropdown-item {
		font-size: 14px;
		padding: 13px 16px;
		text-align: left;
	}

	.dropdown-menu {
		width: 100%;
		border-radius: 0px;
		margin: 0;
	}

	.navbar {
		padding-bottom: 0;
	}

	.navbar-brand {
		margin-right: auto;
		padding: 0.75rem .75rem;
	}

	/* .navbar-brand img {
		width: 111px;
		height: 39px;
	} */

	.logo_country {
		top: 7px;
	}

	.fixed-top {
		height: 88px;
	}

	.nav-button button {
		font-size: 14px;
		padding: .4375rem 1rem;
		line-height: normal;
	}



	.navbarSearchIcon {
		display: none;
	}

	.searchActionWrapper {
		position: unset;
		background-color: transparent;
		width: 100%;
	}

	.searchForm {
		border: none;
		padding-left: 20px !important;
		padding-top: 8px;
		padding-bottom: 8px;
	}

	.searchFormField {
		width: 90%;
		padding-left: 15px;
	}

	.searchBlock {
		padding-left: 0px;
		margin-top: 9px;
		padding-bottom: 9px;
		border-bottom: 0.5px solid #4a4a4a52;
	}

	.searchFormSubmitBtn {
		float: left;
		background-image: url("data:image/svg+xml,%3Csvg class='search-block__icon-search' width='17' height='17' viewBox='0 0 17 17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.31429 0C7.98894 0 9.595 0.665253 10.7792 1.84941C11.9633 3.03357 12.6286 4.63963 12.6286 6.31429C12.6286 7.87829 12.0554 9.316 11.1131 10.4234L11.3754 10.6857H12.1429L17 15.5429L15.5429 17L10.6857 12.1429V11.3754L10.4234 11.1131C9.316 12.0554 7.87829 12.6286 6.31429 12.6286C4.63963 12.6286 3.03357 11.9633 1.84941 10.7792C0.665253 9.595 0 7.98894 0 6.31429C0 4.63963 0.665253 3.03357 1.84941 1.84941C3.03357 0.665253 4.63963 0 6.31429 0ZM6.31429 1.94286C3.88571 1.94286 1.94286 3.88571 1.94286 6.31429C1.94286 8.74286 3.88571 10.6857 6.31429 10.6857C8.74286 10.6857 10.6857 8.74286 10.6857 6.31429C10.6857 3.88571 8.74286 1.94286 6.31429 1.94286Z' fill='%23F0F0F0'%3E%3C/path%3E%3C/svg%3E");
	}

	.searchIcon {
		margin-left: 20px !important;
		margin-top: 8px;
		margin-bottom: 8px;
	}
}

@media(min-device-width: 992px) {
	nav .navbar-nav .dropdown:hover>.dropdown-menu {
		opacity: 1;
		border: 1px solid #04e3ff6b;
		visibility: visible;
	}

	.navbar-expand-sm {
		flex-wrap: nowrap;
		justify-content: flex-start;
		height: 88px;
	}

	.navbar-expand-sm .navbar-toggler {
		display: none;
	}

	.navbar-expand-sm .navbar-collapse {
		display: flex !important;
		flex-basis: auto;
		justify-content: right;
		height: 100%;
	}

	.navbar-expand-sm .navbar-nav {
		flex-direction: row;
	}

	.navbar-expand-sm .navbar-nav .dropdown-menu {
		position: absolute;
	}
}

@media (min-width: 767px) {}

@media(max-device-width: 766px) {}

@media(max-device-width: 454px) {
	/* .navbar-toggler {
		padding: 0.25rem 0.2rem 0.25rem 0;
	} */

	.navbar-brand {
		padding: 0.75rem 0 0.75rem .5rem;
		margin-right: 0;
	}

	.nav-button button {
		font-size: 13px;
		padding: .4375rem 0.3rem;
	}

	.langFlagAndTitle {
		font-size: 13px !important;
	}

	.nav-button {
		column-gap: .5rem;
		align-items: center;
		margin-left: 0;
	}

	.currentLanguageButton {
		width: max-content !important;
		padding: 0 !important;
	}

	.languageButton {
		width: unset !important;
	}

	.currentLanguageButton {
		font-size: 14px;
	}

	.gradient-button span {
		padding: 0 10px;
	}

	/* .navbar-brand img {
		width: 116px;
		height: 41px;
	} */

	.header-name {
		font-size: 21px;
	}

	.navbar>.container-sm {
		justify-content: space-around;
	}

	.navbar-toggler {
		padding: .2rem;
		margin-right: 0;
	}

	.navbar-toggler-icon {
		width: 1.2em;
		height: 1.2em;
	}
}

/* header / languageButton */

.testClass {
	float: right;
	border-style: solid;
	border-width: 3px 3px 0 0;
	height: 8px;
	left: 0;
	position: relative;
	top: -2px;
	width: 8px;
	transform: rotate(135deg);
	order: 2;
}

.languageButton {
	z-index: 99;
	display: flex;
	flex-direction: column;
	align-items: center;
	position: relative;
	margin-left: 9px;
}

.currentLanguageButton {
	position: relative;
	border-radius: 5px;
	padding: 10px 10px;
	color: #82d1ff;
	font-weight: 700;
	letter-spacing: 0.5px;
	line-height: 25px;
	font-size: 16px;
	column-gap: 5px;
	display: flex;
	align-items: flex-start;
	justify-content: space-evenly;
	align-items: center;
	width: 82px;
	height: 35px;
}

.currentLanguageButton:hover::after {
	background-position: 100px;
	background: -webkit-gradient(linear, left top, left bottom, from(#c5c5c5), to(#fff));
	background: -webkit-linear-gradient(top, #c5c5c5 0, #fff 70%);
	background: -o-linear-gradient(top, #c5c5c5 0, #fff 142b 70%);
	background: linear-gradient(180deg, #c5c5c5 0, #fff 70%);
	-webkit-text-fill-color: aliceblue;
	opacity: 0.7;
}

.languageButtonSubMenu {
	position: absolute;
	z-index: 1000;
	max-height: 0;
	width: 97%;
	padding: 0;
	margin: -1px;
	color: #212529;
	background-color: #fff;
	box-shadow: 0 6px 7px 0 rgb(0 78 69 / 30%);
	border-radius: 5px;
	top: 38px;
	overflow: hidden;
	transition: max-height .6s ease-in;
}

.arrow-up {
	display: none !important;
	position: absolute;
	top: 33px;
	width: 0px;
	height: 0;
	border-style: solid;
	border-width: 0px 8px 8px 8px;
	padding: 0px 68px 0 68px;
	border-color: transparent transparent transparent transparent;
	transform: translate(0%, 49%);
}

.collapse:not(.show) {
	display: none;
}

.languageButtonSubMenu.show,
.taxonomiesPostsList.show {
	max-height: 500px;
}

.languageButtonDropdownItem {
	height: 30px;
	text-align: center;
	font-size: 14px;
	font-weight: 400;
	line-height: 10px;
	display: inline-table;
	padding: 0.4rem 0;
	width: 100%;
}

.noSelectLanguageButton {
	color: #000;
	transition: color .3s ease-in-out;
	padding-left: 18px;
	padding-right: 18px;
	float: left;
	padding-top: 5px;
	padding-bottom: 4px;
	width: 100%;
	font-weight: 700;
	font-size: 15px;
	display: flex;
	min-height: 48px;
	color: rgb(255, 202, 60);
	background-color: #F85904;
	border-radius: 8px;
}

.languageButtonDropdownItem:hover .noSelectLanguageButton {
	color: #676767;
}

.flagImage {
	border-radius: 50%;
	width: 24px;
	height: 24px;
	vertical-align: bottom;
}

.langFlagAndTitle {
	float: left;
	line-height: 20px;
	font-size: 14px;
	color: rgba(223, 229, 242, 0.7);
}

.languageButtonDropdownItem .langFlagAndTitle {
	color: #fff;
	transition: .3s linear;
}

.languageButtonDropdownItem:hover .langFlagAndTitle {
	color: #a1a1a1;
}

@media (max-device-width: 1200px) {
	.currentLanguageButton {
		font-size: 12px;
	}
}

@media(min-width:767px) and (max-width: 992px) {
	.navbar-brand {
		margin-right: 0;
	}

	.languageButton {
		margin-left: 0px;
	}
}

@media(min-width:320px) and (max-width: 410px) {
	button.reg_btn.btn {
		padding: 0 7px;
		font-size: 11px;
	}

	.testClass {
		margin-left: 0px;
	}
}

@media(max-width:767px) {
	.languageButton {
		margin-left: 0px;
		margin-right: auto;
		order: -1;
		width: 81px;
		height: 35px;
	}

	.currentLanguageButton {
		font-size: 14px;
	}
}

/* Popup container */
.popup {
	display: none;
	/* Hidden by default */
	position: fixed;
	/* Stay in place */
	z-index: 1000;
	/* Sit on top */
	left: 0;
	top: 0;
	width: 100%;
	/* Full width */
	height: 100%;
	/* Full height */
	background-color: rgba(0, 0, 0, 0.6);
	/* Black w/ opacity */
}

/* Popup content */
.popup-content {
	background-color: #fff;
	margin: auto;
	/* Centered */
	/* padding: 20px; */

	border-radius: 8px;
	border: 1px solid #ddd;
	width: 90%;
	/* Could be more or less, depending on screen size */
	max-width: 600px;
	max-height: 80%;
	/* Ensure content doesn't exceed viewport height */
	overflow-y: auto;
	/* Add vertical scroll if content exceeds max-height */
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
	position: fixed;
	/* Fixed positioning */
	left: 0;
	right: 0;
	border: 0;
	top: 50%;
	transform: translateY(-50%);
	/* Vertically center */
}

.popup-content-top {
	padding: 12px 16px;
	background-color: #F85904;
	color: #fff;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.popup-header {
	font-size: 22px;
}

.popup-language-list {
	background-color: #111111;
	margin: 0;
	padding: 16px 40px 40px;
}

/* Close button */

.close {
	color: #fff;
	display: inline-block;
	padding: 10px 17px;
	font-weight: 700;
	background: #111111;
	cursor: pointer;
	border-radius: 12px;
	transition: .3s linear;
}

.close:hover,
.close:focus {
	color: #a1a1a1;
	text-decoration: none;
}

/* Language button styles */
.languageButton {
	position: relative;
}

.currentLanguageButton {
	display: flex;
	align-items: center;
	cursor: pointer;
}

.langFlagAndTitle {
	display: flex;
	align-items: center;
	gap: 8px;
}

.flagImage {
	border-radius: 50%;
}

/* Dropdown menu */
.languageButtonSubMenu {
	display: none;
	/* Hidden by default */
	position: absolute;
	top: 100%;
	left: 0;
	background-color: #fff;
	border: 1px solid #ddd;
	border-radius: 8px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	padding: 10px 0;
	z-index: 1001;
	/* Above other content */
	width: max-content;
}

.languageButtonSubMenu .languageButtonDropdownItem {
	padding: 10px 20px;
}

.languageButtonSubMenu .languageButtonDropdownItem:hover {
	background-color: #f0f0f0;
}


/* content-section */

.content-section {
	padding-top: 12px;
	padding-bottom: 12px;
}

.content-section>*:first-child {
	margin-top: 0;
}

/* .content-section h1 {
	font-size: 1.75rem;
} */





@media (min-width: 768px) {
	h1 {
		font-size: 36px;
		line-height: 1.35;
	}
}

@media (min-width: 992px) {
	h1 {
		font-size: 46px;
	}
}

/* @media (min-width: 1400px) {
	h1 {
		font-size: 50px;
	}
} */

@media (max-device-width: 1199px) {
	.navList .navbar-collapse {
		background-size: contain;
	}
}

/* @media (max-device-width: 360px) {

	.content-section h1 {
		font-size: 1.45rem;
	}
} */

.content-section p {
	color: #fff;
	text-align: justify;
	margin: 10px 0;
}

.content-section ul {
	padding-inline-start: 16px;
}

.content-section ul li {
	padding-bottom: 10px;
	color: #fff;
	font-size: 16px;
	text-align: justify;
}

.content-section ul li:before {
	content: "";
	width: 8px;
	height: 8px;
	background-color: #F85904;
	border-radius: 50%;
	display: inline-block;
	margin-left: -1em;
	margin-right: 0.8em;
	margin-bottom: 0.2em;
}

.content-section ol {
	list-style-position: inside;
}

.content-section ol li {
	padding-left: 20px;
	text-indent: -7px;
	font-size: 16px;
	text-align: justify;
	padding-bottom: 10px;
}

.content-section ol li::marker {
	color: #F85904;
}

.content-section a,
.black-box-section a {
	transition: .3s linear;
}

.content-section a {
	color: #F85904;
}

.content-section a:hover {
	color: #DF9937;
}

.content-menu-list_item_arrow_span {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	height: 24px;
	width: 24px;
	-webkit-box-flex: 0;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	max-height: 100%;
	max-width: 100%;
	margin-left: auto;
	position: relative;
}

.content-menu-list_item_arrow_span {
	color: rgb(148, 138, 197);
}

.content-menu-list_item_arrow_span a>span {
	margin: 0 0 0 auto;
	-webkit-box-flex: 0;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
}

.content-menu-list_item_arrow_span_img {
	transition: filter 0.3s ease;
}

.contentMenuListItemLink:hover .content-menu-list_item_arrow_span_img {
	filter: brightness(0) saturate(100%) invert(60%) sepia(100%) saturate(2000%) hue-rotate(350deg) brightness(100%) contrast(95%);
}

.content-section img {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

/* table */

table {
	table-layout: fixed;
	width: 100%;
	caption-side: bottom;
	border-spacing: 0;
	border: 1px solid #fff;
	border-radius: 20px;
	margin-left: auto;
	margin-right: auto;
	margin-top: 40px;
	margin-bottom: 40px;
}

table caption {
	caption-side: top;
	color: #0E0E0E;
}

td,
th {
	padding: 1rem 0.75rem;
	text-align: center;
}

th {
	color: #fff;
	font-weight: 700;
	border-right: 1px solid #fff;
}

th:last-of-type {
	border-right: none;
}

th:first-of-type {
	border-top-left-radius: 20px;
}

th:last-of-type {
	border-top-right-radius: 20px;
}

thead tr {
	background-image: linear-gradient(255deg, #F85904, #F85904);
}

td {
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
}

td:last-of-type {
	border-right: none;
}

@media (max-device-width:767px) {
	table {
		width: unset;
	}
}

/*footer*/

footer {
	text-align: center;
	line-height: 1.8em;
	font-size: 14px;
	padding: 15px 0 0;
}

.footer-menu {
	border-top: 1px solid #ccc;
	padding: 10px 0 0 0;
}

.footer-menu-list {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 10px;
}

.footer-menu-item {
	position: relative;
}

.footer-menu-item::after {
	content: '•';
	position: absolute;
	right: -8px;
	/* Adjust spacing as needed */
	top: 50%;
	transform: translateY(-50%);
	color: #4f3eb3;
}

.footer-menu-item:last-child::after {
	content: '';
}

.footer-string {
	font-size: 14.2px;
	color: #5b5b5b;
}

.separator {
	display: block;
	width: 100%;
	background-color: #261C4A;
	height: 1px;
	margin: 12px 0;
}

.footer-top-block {
	display: flex;
	align-items: flex-start;
}

footer .column {
	flex: 0 0 30%;
	max-width: 30%;
	text-align: start;
}

.footer-left-column {
	gap: 16px;
}

footer .languageButton {
	margin-left: 0;
	background-color: #111111;
	border-radius: 12px;
	border: 3px solid #fff;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	position: relative;
}

footer .arrow-right-language {
	position: absolute;
	right: 10px;
}

footer .currentLanguageButton {
	width: 100% !important;
	justify-content: start;
	height: 52px;
	padding: 10px !important;
}

.footer-top-copyright p {
	margin: 0;
	font-size: 14px;
	color: #F85904;
	line-height: 20px;
}

.footer_header {
	font-weight: 600;
	color: #fff;
	font-size: 18px;
}

.footer-top-menu li span {
	font-size: 16px;
	color: #fff;
	letter-spacing: 0.025em;
	line-height: 1.5;
	text-decoration: none;
	transition: all ease 0.5s;
}

.footer-middle-block-item {
	cursor: pointer;
}

.footer-top-menu li a {
	text-decoration: none;
}

.footer-top-menu li a:hover span {
	color: #F85904;
}

.footer-top-menu {
	display: flex;
	flex-direction: row;
	gap: 30px;
}

.footer-top-contactos .email {
	color: #fff;
}

.footer-top-menu li {
	margin-bottom: 1rem;
}

.footer-top-contactos span {
	font-size: 16px;
}

.footer-top-social-media {
	margin-top: 16px;
	display: flex;
	flex-direction: row;
	gap: 12px;
}

.footer-top-social-media li {
	cursor: pointer;
	transition: .3s linear;
}

.footer-top-social-media li:hover img {
	filter: brightness(2) invert(0);
}

.footer-middle-block {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: center;
	justify-content: start;
	gap: 0;
}

.footer-bottom-block {
	color: #fff;
}

@media (max-width: 991px) {
	.footer-top-block {
		flex-wrap: wrap;
		justify-content: center;
	}

	.footer-left-column {
		flex: 0 0 100% !important;
		max-width: 100% !important;
		width: 100% !important;
		text-align: center;
		margin-bottom: 20px;
	}

	.footer-center-column,
	.footer-right-column {
		flex: 0 0 48% !important;
		max-width: 48% !important;
	}

	.row.footer-top-block {
		column-gap: 5px;
	}
}

@media (max-device-width: 767px) {
	footer .languageButton {
		margin-left: unset;
		margin-right: unset;
		width: 100%;
		height: 100%;
	}

	.footer-middle-block {
		justify-content: center;
	}
}

@media (max-device-width: 490px) {

	.footer-center-column,
	.footer-right-column {
		flex: 0 0 100% !important;
		max-width: 100% !important;
		text-align: center !important;
	}

	.footer-top-menu {
		flex-direction: column;
		gap: 0px;
	}

	.footer-top-menu ul {
		margin-bottom: 0;
	}

	.row {
		gap: 0;
	}

	.footer-top-social-media {
		justify-content: center;
	}


}


/* shortcodes / faq-block */

.faqContainer {
	padding: 10px 0;
}

.card-header {
	padding: 0;
	transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out, transform .8s ease-in-out;
	border-radius: 5px;
	position: relative;
}

.faqTitle {
	font-size: 16px;
	font-weight: 400;
	color: #fff;
}

.btn {
	width: 100%;
	text-align: left;
	padding: 20px;
	border-radius: unset;
}

.myAccordion {
	margin-bottom: 1em;
}

.myAccordion .collapsed:hover .btn,
.card-header:hover .btn {
	color: #fff !important;
}



.myAccordion .btn:focus {
	outline: none;
	box-shadow: none;
}

.myAccordion .collapsed {
	color: #4a4a4a;
}

.myAccordion .collapsed .faqTitle {
	color: rgba(255, 255, 255, .7);
	border-radius: 12px;
}

.myAccordion .collapsed .faqTitle:hover {
	color: #fff;
}

.card {
	border-right: 0px;
	border-left: 0px;
	position: relative;
	display: flex;
	flex-direction: column;
	min-width: 0;
	word-wrap: break-word;
	background-clip: border-box;
	margin-bottom: 10px;
	border-radius: 5px;
	font-size: 14.2px;
}

.card .btn {
	display: flex;
	justify-content: space-between;
	align-items: center;
	text-decoration: none;
	vertical-align: middle;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
	color: #fff;
	border: none;
	border-top-right-radius: 12px;
	border-top-left-radius: 12px;
	border-bottom-left-radius: 12px;
	border-bottom-right-radius: 12px;
	/* background-image: -webkit-linear-gradient(90deg, #d91023, #d91023);
	background-image: linear-gradient(90deg, #d91023, #d91023);
	transition: background-image .15s ease-in-out, color .15s ease-in-out, box-shadow .15s ease-in-out; */
}

.collapsed .btn {
	background-image: linear-gradient(90deg, #d91023, #d91023);
}

.collapsed .btn::before,
.card .btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(#ff5121, #DF9937);
	border-radius: 15px;
	z-index: 0;
	filter: blur(3px);
	transition: opacity .5s linear;
}

.collapsed .btn:hover::before {
	opacity: 1;
}

.card-body {
	flex: auto;
	padding: 20px;
	/* background: #fff;
	border: 1px solid #c1c1c1; */
	border-top: none;
	border-bottom-right-radius: 5px;
	border-bottom-left-radius: 5px;
}

.card-body span {
	color: #fff;
}


.faqHeaderSign {
	background-image: url("data:image/svg+xml, %3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 512 512' %3E%3Cpath d='M233.4 105.4c12.5-12.5 32.8-12.5 45.3 0l192 192c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0L256 173.3 86.6 342.6c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3l192-192z'/%3E%3C/svg%3E");
	height: 17px;
	background-repeat: no-repeat;
	width: 17px !important;
	transition: transform .3s;
	z-index: 10;
	transform: rotate(-180deg);
}

.collapsed .faqHeaderSign {
	background-image: url("data:image/svg+xml, %3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23b8bfc8' viewBox='0 0 512 512' %3E%3Cpath d='M233.4 105.4c12.5-12.5 32.8-12.5 45.3 0l192 192c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0L256 173.3 86.6 342.6c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3l192-192z'/%3E%3C/svg%3E");
	transform: rotate(0deg);
}

.faqHeaderText {
	width: 90% !important;
	z-index: 1;
	text-wrap: wrap;
}

/* review block */

.review-wrapper {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-top: 10px;
	margin-bottom: 10px;
}

.review-item {
	display: flex;
	flex-direction: column;
	gap: 10px;
	border: 1px solid #c1c1c1;
	border-radius: 5px;
	padding: 20px;
}

.review-item-top-side {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 10px;
}

.review-item-name {
	font-size: 1.125rem;
	font-weight: 700;
}

.review-item-bottom-side {
	font-size: 14.2px;
	color: #5b5b5b;
	text-align: justify;
}

/* table-of-content */

.contentMenu {
	display: flex;
	-webkit-box-flex: 0;
	max-width: 100%;
	flex-direction: column;
	/* border: 1px solid #c1c1c1; */
	border-radius: 5px;
	/* padding: 20px; */
	margin-top: 20px;
}

/* .contentMenuWrapper {
	border-radius: 4px;
	padding: 12px;
	border: 1px solid #e5e5e5;
} */

.contentMenuListItem {
	margin-bottom: 8px;
}

.contentMenuListItem>a {
	color: #fff;
	line-height: 1.6;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-size: 16px;
	text-decoration: none;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	position: relative;
	-webkit-transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
	transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
	;
}

/* .contentMenuListItem>a:hover {
	color: #9e0d00;
} */

.contentMenuListItem:last-child {
	margin-bottom: 0;
}

.contentMenuTitle {
	margin: 0;
	color: #fff;
	display: flex;
	font-weight: 600;
	justify-content: space-between;
	align-items: center;
	background: rgb(35, 29, 71);
	border-radius: 12px;
	border: 1px solid rgba(148, 78, 245, 0.7);
}

.contentMenuTitle {
	font-size: 18px;
	font-weight: 500;
	list-style: none;
	padding: 16px 12px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	cursor: pointer;
	margin-bottom: 16px;
}

.content-menu_icon {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	height: 24px;
	width: 24px;
	-webkit-box-flex: 0;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	max-height: 100%;
	max-width: 100%;
	position: relative;
	color: rgb(148, 138, 197);
}

.content-menu_icon svg {
	fill: rgb(148, 138, 197);
	color: rgb(148, 138, 197);
}

.content-menu_icon_list {
	margin-right: .5rem;
}

.content-menu_icon_arrow {
	margin-left: auto;
}

@media (min-width: 768px) {
	.contentMenuTitle {
		font-size: 21px;
		font-weight: 600;
		margin-bottom: 24px;
	}
}

.contentMenuInner {
	display: block;
}

.contentMenuInner ul li::before {
	content: none;
}

.contentMenuListActive {
	display: block !important;
}

/* .contentMenuBurger {
	float: right;
	width: 23px;
	height: 23px;
	cursor: pointer;
	background-color: transparent;
	border: none;
	padding: 0;
}

.contentMenuBurger svg {
	width: 100%;
	height: 100%;
} */

.contentMenuList {
	display: none;
	padding-left: 0;
	padding-top: 16px;
	padding-left: 0px !important;
	list-style-type: none;
}

@media (max-device-width: 991px) {
	.contentBlock {
		flex-direction: column;
		row-gap: 16px;
	}

	.contentText {
		max-width: 100%;
	}

	.contentMenuInner {
		width: 100%;
	}
}

/* hero-main */

.hero-main {
	position: relative;
	z-index: 0;
	overflow: hidden;
	background-color: #000;
	/* background: url(/img/hero-images/entry-bg.webp) center / cover no-repeat; */
}

/* 
.hero-main:after {
	content: "";
	background: url(/img/hero-images/wave.png) center bottom / 100% no-repeat;
	position: absolute;
	top: 2px;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
} */

@media (min-width: 768px) {
	/* .hero-main {
		height: 100%;
		background: url(/img/hero-images/entry-bg.webp) center / cover no-repeat;
	} */

	.hero-action {
		margin-bottom: 160px;
	}
}

.hero-container {
	height: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	position: relative;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	padding: 100px 0 70px;
}

@media (min-width: 768px) {
	.hero-container {
		-ms-flex-wrap: nowrap;
		flex-wrap: nowrap;
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row;
		padding: 30px 0;
	}
}

.hero-content {
	text-align: center;
}

@media (min-width: 768px) {
	.hero-content {
		max-width: 456px;
		text-align: left;
	}
}

@media (min-width: 992px) {
	.hero-content {
		max-width: 600px;
	}
}

.hero-title {
	font-weight: 700;
	color: #fff;
	line-height: 1.2;
	letter-spacing: 0.0208em;
	margin-bottom: 0;
	margin-top: 0;
}

@media (min-width: 768px) {
	.hero-title {
		font-size: 36px;
	}
}

@media (min-width: 992px) {
	.hero-title {
		font-size: 46px;
		line-height: 1.35;
	}
}

.hero-description {
	font-size: 18px;
	padding: 24px 0;
	color: #fff;
	line-height: 1.7;
	max-width: 400px;
	position: relative;
}

@media (min-width: 768px) {
	.hero-description {
		max-width: 330px;
		padding: 24px 0 32px;
	}
}

@media (max-device-width: 767px) {
	.hero-description {
		margin-left: auto;
		margin-right: auto;
	}
}

@media (min-width: 1200px) {
	.hero-description {
		max-width: 430px;
	}
}

@media (min-width: 992px) {
	.hero-description {
		font-size: 21px;
		max-width: 370px;
	}
}

.hero-main_action {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	position: relative;
}

@media (min-width: 768px) {
	.hero-main_action {
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		-ms-flex-wrap: nowrap;
		flex-wrap: nowrap;
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row;
	}
}

.hero-bonus_button {
	padding: 12px 24px 12px 24px;
}

@media (min-width: 992px) {
	.hero-bonus_button {
		height: 65px;
		font-size: 23px;
		min-width: 266px;
		width: 270px;
	}
}

.hero-bonus_button span {
	font-size: 19px;
	padding: 0;
}

.hero-promo_code {
	font-size: 13px;
	text-transform: uppercase;
	font-weight: 500;
	color: #fff;
	text-align: left;
	border: 2px dashed rgb(255, 255, 255);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 12px;
	padding: 8px 24px;
	border-radius: 42px;
	margin: 0 auto 1rem;
	-webkit-transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
	transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
	-webkit-box-ordinal-group: 0;
	-ms-flex-order: -1;
	order: -1;
	box-shadow: none;
	background: rgba(0, 0, 0, 0.3);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}

.hero-promo_code:hover,
.hero-promo_code:focus {
	border-color: rgba(255, 255, 255, 0.6);
}

@media (min-width: 768px) {
	.hero-promo_code {
		padding: 4px 18px 4px 65px;
		margin: 0 0 0 -50px;
		-webkit-box-ordinal-group: 3;
		-ms-flex-order: 2;
		order: 2;
		max-width: 265px;
	}
}

@media (min-width: 1400px) {
	.hero-promo_code {
		font-size: 14px;
		padding: 6px 18px 6px 65px;
	}
}

.hero-promo_code_icon {
	/* width: 20px;
	height: 20px; */
	-webkit-box-flex: 1;
	-ms-flex: 1 1 20px;
	flex: 1 1 20px;
}

.hero-promo_code_icon img {
	display: block;
	max-width: 20px;
	max-height: 20px;
	width: 20px;
	height: 20px;
}

.hero-promo_code_copied_text {
	display: none;
}

.hero-person {
	position: relative;
	pointer-events: none;
	/* -webkit-animation: person-bouncing 2.8s infinite linear;
	animation: person-bouncing 2.8s infinite linear; */
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	position: absolute;
	right: 0;
	top: 0;
}

.hero-person::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	width: 30%;
	/* ширина затемнения с левой стороны */
	background: linear-gradient(to right, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
	/* плавный переход */
	z-index: 1;
}

@media (min-width: 768px) {
	.hero-person {
		/* position: absolute;
		z-index: -3;
		margin-top: 0;
		margin-left: 0; */

		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		width: auto;
		height: 100%;
		z-index: -3;
		overflow: hidden;
	}
}

/* @media (min-width: 1200px) {
	.hero-person {
		right: 10em;
	}
} */

/* @media (min-width: 992px) {
	.hero-person {
		right: 5em;
	}
} */

/* .hero-person:before {
	content: "";
	background: url(/img/hero-images/fire.gif) center / contain no-repeat;
	position: absolute;
	left: -62%;
	bottom: -2em;
	width: 22em;
	height: 15em;
	z-index: -2;
} */
/* 
@keyframes person-bouncing {
	0% {
		-webkit-transform: translateY(0px) rotate(0deg);
		transform: translateY(0px) rotate(0deg);
		-webkit-animation-timing-function: linear;
		animation-timing-function: linear;
	}

	50% {
		-webkit-transform: translateY(20px) rotate(-5deg);
		transform: translateY(20px) rotate(-5deg);
		-webkit-animation-timing-function: linear;
		animation-timing-function: linear;
	}

	80% {
		-webkit-transform: translateY(20px) rotate(-8deg);
		transform: translateY(20px) rotate(-8deg);
		-webkit-animation-timing-function: linear;
		animation-timing-function: linear;
	}

	100% {
		-webkit-transform: translateY(0px) rotate(0deg);
		transform: translateY(0px) rotate(0deg);
		-webkit-animation-timing-function: linear;
		animation-timing-function: linear;
	}
} */

.hero-person_img {
	/* max-height: 100vh;
	width: auto; */
	object-fit: cover;
	height: 100%;
	width: auto;
	/* width: 301px; */
	/* height: 395px; */
}

@media (max-width: 768px) {
	.hero-main {
		display: flex;
		flex-direction: column;
	}

	.hero-person {
		order: -1;
		position: relative;
		width: 100%;
		margin-right: auto;
		margin-left: auto;
	}

	.hero-person::before {
		content: none;
	}

	.hero-container {
		padding-top: 0;
	}

	.hero-person_img {
		object-fit: unset;
		width: 100%;
	}
}

.hero-stars {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
}

.hero-stars_item {
	position: absolute;
}

.hero-stars_item:nth-child(1) {
	bottom: 33%;
	left: 5%;
}

@media (min-width: 768px) {
	.hero-stars_item:nth-child(1) {
		top: 6%;
		left: 25%;
		bottom: auto;
	}
}

@media (min-width: 1200px) {
	.hero-stars_item:nth-child(1) {
		top: 20%;
		left: calc(75% - 1140px);
	}
}

.hero-stars_item:nth-child(2) {
	bottom: 38%;
	right: 5%;
}

@media (min-width: 768px) {
	.hero-stars_item:nth-child(2) {
		top: 16%;
		right: 9%;
		bottom: auto;
	}
}

@media (min-width: 1200px) {
	.hero-stars_item:nth-child(2) {
		top: 12%;
		right: calc(75% - 1140px);
	}
}

.hero-stars_item:nth-child(3) {
	bottom: 6%;
	right: 17%;
}

@media (min-width: 768px) {
	.hero-stars_item:nth-child(3) {
		bottom: 30%;
		right: 12%;
	}
}

@media (min-width: 1200px) {
	.hero-stars_item:nth-child(3) {
		bottom: 30%;
		right: calc(85% - 1140px);
	}
}

.star {
	width: 28px;
	height: 39px;
	-webkit-animation: star-pulsate 4s infinite linear;
	animation: star-pulsate 4s infinite linear;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

@keyframes star-pulsate {
	0% {
		-webkit-transform: scale(1, 1);
		transform: scale(1, 1);
		-webkit-animation-timing-function: linear;
		animation-timing-function: linear;
	}

	25% {
		-webkit-transform: scale(0.9, 0.9);
		transform: scale(0.9, 0.9);
		-webkit-animation-timing-function: linear;
		animation-timing-function: linear;
	}

	50% {
		-webkit-transform: scale(1.1, 1.1);
		transform: scale(1.1, 1.1);
		-webkit-animation-timing-function: linear;
		animation-timing-function: linear;
	}

	75% {
		-webkit-transform: scale(0.9, 0.9);
		transform: scale(0.9, 0.9);
		-webkit-animation-timing-function: linear;
		animation-timing-function: linear;
	}

	100% {
		-webkit-transform: scale(1.1, 1.1);
		transform: scale(1.1, 1.1);
	}
}

/* drain-button */

.drain-button_block {
	margin-top: 1.5rem;
	margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
	.drain-button_block {
		margin-top: 3rem;
	}
}

@media (max-device-width: 550px) {
	.drain-button_arrow {
		display: none;
	}
}

.drain-button_content {
	text-align: center;
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.drain-button_arrow {
	width: 90px;
	margin-top: -4em;
	margin-right: -90px;
}

.drain-button_block .gradient-button {
	padding: 24px 16px;
}

.drain-button_block .gradient-button span {
	font-size: 23px;
}

/* two-column */

.twoColumnWrapper {
	display: flex;
	gap: 48px;
	justify-content: space-between;
	padding: 10px 0;
}

.twoColumnImage,
.twoColumnText {
	position: relative;
}

.twoColumnImage {
	display: flex;
	justify-content: center;
	align-items: start;
	flex: 0 0 40%;
	max-width: 40%;
}

.twoColumnImage img {
	object-fit: cover;
	max-width: 100%;
	height: auto;
}

.twoColumnImage button {
	position: absolute;
	transform: translate(0%, -100%);
}

.twoColumnText {
	flex: 0 0 55%;
	max-width: 55%;
	text-align: justify;
}

/* .twoColumnText {
	background: rgba(8, 31, 58, 0.3);
	border-radius: 8px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	padding: 50px 50px;
} */

@media (max-device-width: 880px) {
	.twoColumnWrapper {
		flex-direction: column;
		padding-top: 0;
		gap: 10px;
	}

	.twoColumnImage,
	.twoColumnText {
		flex: 0 0 100%;
		max-width: 100%;
	}

	.twoColumnImage img {
		object-fit: unset;
		width: unset;
		height: unset;
	}

	.twoColumnText {
		order: -1;
	}
}

/* black-box-section */

.black-box-section {
	width: 100vw;
	position: relative;
	left: calc(-50vw + 50%);
	margin-top: 20px;
	padding: 30px 0;
	background-repeat: repeat;
	background-size: cover;
	background-position: center;
}

/* tableProsCons */

.tableProsCons {
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin: 40px 0;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	column-gap: 15px;
}

.prosBlock,
.consBlock {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 49%;
	flex: 0 0 49%;
	border-radius: 15px;
	border: 1px solid #fff;
}

.tableProsCons ul li {
	margin-bottom: 16px;
	line-height: 24px
}

.tableProsCons ul li:before {
	content: none;
}

.tableProsCons ul {
	padding: 15px 30px;
}

.prosBlockHeader,
.consBlockHeader {
	display: block;
	padding: 19px 30px;
	color: #fff;
	font-weight: bold;
	border-top-left-radius: 15px;
	border-top-right-radius: 15px;
}

.prosBlockList li span {
	color: #007721;
}

.consBlockList li span {
	color: #e11d3f;
}

.prosBlockHeader {
	background-color: #007721;
}

.consBlockHeader {
	background-color: #680C1C;
}

.leftColumtText {
	position: relative;
}

@media (max-device-width:1199px) {
	.tableProsCons {
		flex-direction: column;
		row-gap: 15px;
	}
}

@media (max-device-width: 991px) {

	.leftColumnHeader,
	.leftColumtText {
		max-width: 100%;
	}

	.rightColumnContent {
		position: relative;
		max-width: 100%;
	}
}

/* after-footer-block */

.after-footer-block {
	width: 100vw;
	position: relative;
	left: calc(-50vw + 50%);
	margin-top: 20px;
	background-image: url('/img/structure-images/cell.webp');
	background-repeat: repeat;
	background-size: cover;
	background-position: center;
}

.after-footer-block .container-sm {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	padding-top: 20px;
	padding-bottom: 20px;
}

.after-footer-left-side {
	display: flex;
	flex-direction: row;
	align-items: center;
	column-gap: 30px;
}

.after-footer-left-side img {
	width: 164px;
	height: 115px;
}

.after-footer-left-side-text span {
	font-weight: 600;
	font-size: 20px;
	line-height: 24.38px;
	color: #fff;
}

.after-footer-left-side-text p {
	margin: 0;
	color: #fff;
}

.after-footer-left-side-text {
	text-align: left;
	max-width: 300px;
}

/* .after-footer-right-side button {
	background-color: #fff;
	color: #D91427;
	font-size: 14px;
	line-height: 18px;
	padding: 8px 44px;
	transition: .3s linear;
}

.after-footer-right-side button:hover {
	background-color: #d1d1d1;
} */

@media (max-device-width: 767px) {
	.after-footer-block .container-sm {
		flex-direction: column;
		gap: 20px;
	}

	.after-footer-left-side {
		flex-direction: column;
		gap: 20px;
	}

	.after-footer-left-side-text {
		max-width: 100%;
		text-align: center;
	}
}

/* ball-background */

.ball-background {
	position: absolute;
	z-index: -1;
}

.left-side-ball {
	left: 0px;
}

.right-side-ball {
	right: 0px;
}

@media (max-device-width: 1200px) {
	.ball-background {
		display: none;
	}
}