*,
*:before,
*:after {
	padding: 0;
	margin: 0;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

html,
body {
	height: 100%;
	width: 100%;
	-ms-text-size-adjust: 100%;
	-moz-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
}

nav,
footer,
header,
aside,
main {
	display: block;
}

html {
	line-height: 1.15;
	-webkit-text-size-adjust: 100%;
}

hr {
	-webkit-box-sizing: content-box;
	box-sizing: content-box;
	height: 0;
	overflow: visible;
}

ul,
ol {
	padding-left: 1.5em;
}

pre {
	font-family: monospace, monospace;
	font-size: 1em;
}

a {
	background-color: transparent;
}

abbr[title] {
	border-bottom: none;
	text-decoration: underline;
	-webkit-text-decoration: underline dotted;
	text-decoration: underline dotted;
}

b,
strong {
	font-weight: bolder;
}

code,
kbd,
samp {
	font-family: monospace, monospace;
	font-size: 1em;
}

small {
	font-size: 80%;
}

sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sub {
	bottom: -0.25em;
}

sup {
	top: -0.5em;
}

img {
	border-style: none;
}

button,
input,
optgroup,
select,
textarea {
	font-family: inherit;
	font-size: 100%;
	line-height: 1.15;
	margin: 0;
}

button,
input {
	overflow: visible;
}

button,
select {
	text-transform: none;
}

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

button::-moz-focus-inner,
[type='button']::-moz-focus-inner,
[type='reset']::-moz-focus-inner,
[type='submit']::-moz-focus-inner {
	border-style: none;
	padding: 0;
}

button:-moz-focusring,
[type='button']:-moz-focusring,
[type='reset']:-moz-focusring,
[type='submit']:-moz-focusring {
	outline: 1px dotted ButtonText;
}

fieldset {
	padding: 0.35em 0.75em 0.625em;
}

legend {
	color: inherit;
	display: table;
	max-width: 100%;
	padding: 0;
	white-space: normal;
}

progress {
	vertical-align: baseline;
}

textarea {
	overflow: auto;
}

[type='checkbox'],
[type='radio'] {
	padding: 0;
}

[type='number']::-webkit-inner-spin-button,
[type='number']::-webkit-outer-spin-button {
	height: auto;
}

[type='search'] {
	appearance: textfield;
	-webkit-appearance: textfield;
	outline-offset: -2px;
}

[type='search']::-webkit-search-decoration {
	-webkit-appearance: none;
}

::-webkit-file-upload-button {
	-webkit-appearance: button;
	font: inherit;
}

details {
	display: block;
}

summary {
	display: list-item;
}

template {
	display: none;
}

[hidden] {
	display: none;
}

body {
	font-family: 'Rubik', sans-serif;
	background-color: #f5e9e9;
	color: #000;
	position: relative;
}

html {
	scroll-behavior: smooth;
}

.page {
	position: relative;
	min-height: 100%;
	min-width: 100%;
	overflow: hidden;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.main {
	-webkit-box-flex: 1;
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
	padding-top: 60px;
}

.container {
	max-width: 1290px;
	margin: 0 auto;
	padding: 0 20px;
}

._lock {
	overflow: hidden;
}

@media (max-width: 991.98px) {
	.main {
		padding-top: 105px;
	}

	.container {
		max-width: 1280px;
		padding: 0 15px;
	}
}

@media (pointer: fine) {
	a,
	button,
	input[type='submit'],
	.pic {
		cursor: pointer;
	}
}

@media (pointer: coarse) {
	a,
	button,
	input[type='submit'],
	.pic {
		cursor: default;
		-webkit-tap-highlight-color: transparent;
	}
}

.go-top {
	position: fixed;
	z-index: 5;
	bottom: 0;
	right: 0;
	-webkit-transition: -webkit-transform 0.3s ease 0s;
	transition: -webkit-transform 0.3s ease 0s;
	transition: transform 0.3s ease 0s;
	transition: transform 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
	-webkit-transform: translateX(100%);
	-ms-transform: translateX(100%);
	transform: translateX(100%);
}

.go-top._active {
	-webkit-transform: translateX(0);
	-ms-transform: translateX(0);
	transform: translateX(0);
}

.go-top a {
	display: block;
	padding: 15px;
	border: none;
	background: none;
}

.go-top img {
	width: 50px;
	height: 50px;
}

.btn {
	background: none;
	border: none;
	text-decoration: none;
	display: block;
	text-align: center;
	padding: 12px 20px;
	min-width: 120px;
	border-radius: 100px;
	color: #fff;
	background: #222222;
	box-shadow: -0.5px -0.5px 0px 0px #000000af;
	text-transform: uppercase;
	transition: transform 0.3s ease, opacity 0.3s ease;
}

.btn-prim {
	background: #ff4a00;
}

.btn:hover {
	opacity: 0.8;
}

.btn:active {
	transform: scale(0.95);
}

.error-404 {
	text-align: center;
	margin: 40px 0;
	color: #000;
}

.error-404 h1 {
	font-size: 34px;
	line-height: 44px;
	margin: 0 0 15px 0;
}

.error-404 p {
	font-size: 18px;
	line-height: 22px;
}

.error-404 a {
	color: #69eb31;
}

@media (max-width: 767.98px) {
	.error-404 h1 {
		font-size: 30px;
		line-height: 36px;
	}

	.error-404 p {
		font-size: 16px;
		line-height: 20px;
	}
}

.header {
	position: fixed;
	z-index: 5;
	width: 100%;
	height: auto;
	top: 0;
	left: 0;
	background-color: #d7d0c6;
	border-bottom: 1px solid #cbd2ed;
}

.header .container {
	max-width: 1390px;
}

.header-inner {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	min-height: 60px;
}

.header-logo a {
	display: block;
	text-decoration: none;
	padding: 8px 0;
}

.header-logo img {
	display: block;
	max-width: 95px;
	width: 100%;
	height: auto;
}

.header-burger {
	background: none;
	border: none;
	display: none;
}

.header-btns {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.header-btn {
	min-width: 150px;
}

.header-btn:not(:last-child) {
	margin-right: 10px;
}

@media (min-width: 991.98px) {
	.header-logo {
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		left: 70px;
	}
}

@media (max-width: 991.98px) {
	.header-inner {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}

	.header-top {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		width: 100%;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
	}

	.header-burger {
		display: block;
	}

	.header-burger img {
		display: block;
		width: 40px;
		height: 40px;
	}

	.header-btns {
		width: 100%;
		margin-bottom: 8px;
	}

	.header-btn {
		min-height: unset;
		min-width: unset;
		padding: 10px 20px;
		width: 100%;
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
	}
}

.footer {
	padding: 25px 0;
	background-color: #d7d0c6;
}

.footer .logos-list {
	margin-bottom: 20px;
}

.footer-copyright {
	text-align: center;
	color: #5f6889;
	font-size: 12px;
}

.footer-nav {
	margin-bottom: 25px;
}

.footer-nav .menu {
	padding: 0;
	list-style-type: none;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.footer-nav .menu-item a {
	color: #000;
	text-decoration: none;
	font-size: 14px;
	line-height: 1.2;
	padding: 5px 12px;
	display: inline-block;
	text-transform: uppercase;
	-webkit-transition: color 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
	transition: color 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
	transition: transform 0.3s ease 0s, color 0.3s ease 0s;
	transition: transform 0.3s ease 0s, color 0.3s ease 0s,
		-webkit-transform 0.3s ease 0s;
}

.footer-nav .menu-item a:hover {
	-webkit-transform: translateY(-3px);
	-ms-transform: translateY(-3px);
	transform: translateY(-3px);
	color: #69eb31;
}

.footer-nav .menu-item.current > a {
	-webkit-transform: translateY(-3px);
	-ms-transform: translateY(-3px);
	transform: translateY(-3px);
	color: #69eb31;
}

@media (max-width: 767.98px) {
	.footer-nav .menu {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}
}

.select_lang {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	margin-bottom: 25px;
	font-size: 16px;
	user-select: none;
}

.select_lang img {
	display: block;
	width: 25px;
	height: 25px;
	max-width: 100%;
	border-radius: 100%;
	object-fit: cover;
	border: 1px solid rgba(0, 0, 0, 0.5);
	margin-right: 10px;
}

.list_lang {
	position: absolute;
	z-index: 1;
	max-width: 400px;
	width: 100%;
	left: 50%;
	bottom: 100%;
	overflow: hidden;
	height: 0;
	opacity: 0;
	transform: translate(-50%, 40px);
	transition: opacity 0.3s ease 0s, transform 0.3s ease 0s;
}

.select_lang.col-3 .list_lang {
	max-width: 500px;
}

.select_lang.col-1 .list_lang {
	max-width: 250px;
}

.select_lang._active .list_lang {
	height: auto;
	opacity: 1;
	transform: translate(-50%, 0);
}

.list_lang ul {
	padding: 0;
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	flex-wrap: wrap;
	background-color: #000;
	border-radius: 5px;
	padding: 10px;
	margin-bottom: 10px;
	max-height: 350px;
	overflow: hidden;
	overflow-y: auto;
}

.list_lang ul li {
	list-style-type: none;
	width: 50%;
}

.select_lang.col-3 .list_lang ul li {
	width: 33.333%;
}

.select_lang.col-1 .list_lang ul li {
	width: 100%;
}

.list_lang a {
	display: flex;
	align-items: center;
	padding: 10px;
	color: #fff;
	text-decoration: none;
	transition: background-color 0.3s ease;
	border-radius: 5px;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.list_lang a:hover {
	background-color: rgba(255, 255, 255, 0.15);
}

.btn_lang {
	position: relative;
	z-index: 1;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #000;
	color: #fff;
	border: none;
	padding: 12px 18px;
	min-width: 190px;
	border-radius: 5px;
}

.btn_lang span {
	margin-right: 10px;
}

.btn_lang svg {
	display: block;
	fill: #fff;
	background-color: #69eb31;
	border-radius: 100%;
	width: 25px;
	height: 25px;
	padding: 2px;
	margin-left: auto;
	transform: rotate(180deg);
	transition: transform 0.3s ease;
}

.select_lang._active .btn_lang svg {
	transform: rotate(0deg);
}

@media (max-width: 599.98px) {
	.select_lang.col-3 .list_lang {
		max-width: 400px;
	}

	.select_lang.col-3 .list_lang ul li {
		width: 50%;
	}
}

@media (max-width: 359.98px) {
	.list_lang a {
		padding: 8px;
	}

	.list_lang {
		max-width: 250px !important;
	}

	.list_lang ul li {
		width: 100% !important;
	}
}

.mnav {
	background-color: rgba(0, 0, 0, 0.8);
	position: fixed;
	z-index: 10;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	overflow: hidden;
	-webkit-transition: opacity 0.3s ease 0s, visibility 0s ease 0.3s;
	transition: opacity 0.3s ease 0s, visibility 0s ease 0.3s;
	opacity: 0;
	visibility: hidden;
}

.mnav._active {
	-webkit-transition-delay: 0s;
	transition-delay: 0s;
	opacity: 1;
	visibility: visible;
}

.mnav._active .mnav-inner {
	-webkit-transform: translateX(0);
	-ms-transform: translateX(0);
	transform: translateX(0);
}

.mnav .menu {
	width: 100%;
	list-style-type: none;
	padding: 0 10px;
}

.mnav .menu-item {
	position: relative;
	width: 100%;
	padding: 0;
	border-radius: 8px;
	transition: background-color 0.3s ease;
}

.mnav .menu-item._active {
	background: #cbd2ed67;
}

.mnav .menu-item:not(:last-child) {
	margin-bottom: 2px;
}

.mnav .menu-item a {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	font-size: 16px;
	line-height: 1.2;
	text-transform: capitalize;
	font-weight: 500;
	text-decoration: none;
	color: #000;
	padding: 12px;
	border-radius: 8px;
	overflow: hidden;
	transition: background-color 0.3s ease;
}

.mnav .menu-item a:hover {
	background: #cbd2ed67;
}

.mnav .menu-item.current > a {
	background: #cbd2ed;
}

.mnav .menu-item a > img {
	display: block;
	width: 27px;
	padding: 4px;
	height: auto;
	margin: -10px 0;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.05);
	transition: transform 0.3s ease;
}

.mnav .menu-item._active a > img {
	transform: rotate(90deg);
}

.mnav .sub-menu {
	padding: 0;
	list-style-type: none;
	height: 0;
	overflow: hidden;
}

.mnav .menu-item._active .sub-menu {
	height: auto;
	border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.mnav-inner {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	max-width: 400px;
	width: 100%;
	height: 100%;
	background-color: #d7d0c6;
	overflow: auto;
	-webkit-transition: -webkit-transform 0.3s ease 0s;
	transition: -webkit-transform 0.3s ease 0s;
	transition: transform 0.3s ease 0s;
	transition: transform 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
	-webkit-transform: translateX(-400px);
	-ms-transform: translateX(-400px);
	transform: translateX(-400px);
}

.mnav-close {
	position: absolute;
	z-index: 1;
	top: 8px;
	right: 10px;
	background: none;
	border: none;
	background: rgba(0, 0, 0, 0.5);
	border-radius: 8px;
}

.mnav-close img {
	display: block;
	width: 40px;
	height: 40px;
}

.mnav-logo {
	width: 100%;
}

.mnav-logo a {
	display: flex;
	text-decoration: none;
	width: 100%;
	justify-content: center;
	align-items: center;
	padding: 30px 0 15px;
	margin-bottom: 15px;
}

.mnav-logo img {
	display: block;
	max-width: 95px;
	width: 100%;
	height: auto;
}

.mnav-btns {
	margin: auto 20px 20px;
}

.mnav-btn {
	width: 100%;
}

.mnav-btn:not(:last-child) {
	margin-bottom: 15px;
}

@media (min-width: 991.98px) {
	.header,
	.main,
	.footer {
		padding-left: 250px;
	}

	.mnav {
		max-width: 250px;
		z-index: 4;
		opacity: 1;
		visibility: visible;
	}

	.mnav-close {
		display: none;
	}

	.mnav-inner {
		-webkit-transform: translateX(0);
		-ms-transform: translateX(0);
		transform: translateX(0);
		max-width: 250px;
		padding-top: 80px;
	}

	.mnav-logo {
		display: none;
	}

	.mnav-btns {
		display: none;
	}
}

@media (max-width: 991.98px) {
	.mnav-logo a {
		padding: 20px 0 20px;
		margin-bottom: 0;
	}
}

@media (max-width: 479.98px) {
	.mnav-inner {
		max-width: 100%;
	}
}

.content-inner {
	color: #000;
	font-size: 17px;
	line-height: 24px;
	padding: 15px 0;
}

.content-inner p {
	padding: 5px 0;
	margin-bottom: 10px;
}

.content-inner h1 {
	padding: 10px 0;
	margin-bottom: 10px;
	font-size: 34px;
	line-height: 40px;
}

.content-inner h2 {
	padding: 10px 0;
	margin: 15px 0 10px;
	border-bottom: 2px solid #000;
	font-size: 30px;
	line-height: 36px;
}

.content-inner h3 {
	padding: 5px 0;
	margin-bottom: 10px;
	font-size: 22px;
}

.content-inner ul,
.content-inner ol {
	padding-bottom: 10px;
}

.content-inner li {
	padding: 3px 0;
}

.content-inner h2,
.content-inner h3,
.content-inner span {
	scroll-margin: 70px 0 0;
}

.content-inner a:not(.btn) {
	color: #69eb31;
}

.btn-cnt {
	display: block;
	margin: 10px auto;
	padding: 10px 25px;
	font-size: 18px;
	line-height: 24px;
	min-width: 150px;
	background: #ff4a00;
}

.btn-cnt:hover {
	-webkit-transform: translateY(-3px);
	-ms-transform: translateY(-3px);
	transform: translateY(-3px);
}

.btn-cnt:active {
	-webkit-transform: scale(0.95);
	-ms-transform: scale(0.95);
	transform: scale(0.95);
}

.btn-login {
	background: none;
	border: none;
	display: block;
	width: 100%;
}

.btn-login img {
	display: block;
	max-width: 450px;
	width: 100%;
	height: auto;
	margin: 0 auto;
	border-radius: 15px;
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 991.98px) {
	.content-inner {
		font-size: 16px;
		line-height: 22px;
	}

	.content-inner h1 {
		font-size: 28px;
		line-height: 34px;
	}

	.content-inner h2 {
		font-size: 26px;
		line-height: 30px;
	}

	.content-inner h3 {
		font-size: 20px;
	}

	.content-inner h2,
	.content-inner h3,
	.content-inner span {
		scroll-margin: 110px 0 0;
	}
}

@media (max-width: 767.98px) {
	.content::before {
		content: none;
	}

	.content-inner h1 {
		font-size: 26px;
		line-height: 30px;
	}

	.content-inner h2 {
		font-size: 22px;
		line-height: 26px;
	}
}

.content-image {
	border-radius: 25px;
	margin-bottom: 15px;
	overflow: hidden;
	position: relative;
	min-height: 400px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.content-image > picture img {
	display: block;
	position: absolute;
	z-index: 0;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	-o-object-fit: cover;
	object-fit: cover;
	object-position: 90% 50%;
	margin: 0;
	-webkit-transition: -webkit-transform 0.5s ease 0s;
	transition: -webkit-transform 0.5s ease 0s;
	transition: transform 0.5s ease 0s;
	transition: transform 0.5s ease 0s, -webkit-transform 0.5s ease 0s;
}

.content-image:hover > picture img {
	-webkit-transform: scale(1.08);
	-ms-transform: scale(1.08);
	transform: scale(1.08);
}

.content-image .overlay {
	position: relative;
	z-index: 1;
	max-width: 90%;
	padding: 35px 25px;
	margin: 10px;
	background-color: rgba(0, 0, 0, 0.7);
	color: #fff;
	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;
	text-align: center;
	border-radius: 25px;
}

.content-image .overlay p {
	font-size: 32px;
	line-height: 40px;
	font-weight: 700;
	text-transform: uppercase;
	padding: 0;
	margin-bottom: 15px;
}

.content-image .overlay p span {
	color: #69eb31;
}

.content-image .overlay .btn {
	margin: 0 auto;
}

@media (max-width: 1199.98px) {
	.content-image {
		min-height: 350px;
	}
}

@media (max-width: 991.98px) {
	.content-image {
		min-height: 300px;
	}

	.content-image .overlay {
		padding: 20px;
	}

	.content-image .overlay p {
		font-size: 28px;
		line-height: 34px;
	}
}

@media (max-width: 767.98px) {
	.content-image {
		min-height: 250px;
	}

	.content-image .overlay p {
		font-size: 24px;
		line-height: 30px;
	}
}

@media (max-width: 599.98px) {
	.content-image {
		justify-content: stretch;
		align-items: stretch;
		flex-direction: column;
	}

	.content-image .overlay {
		flex: 1 1 auto;
		max-width: 100%;
		width: 100%;
		margin: 0;
		display: flex;
		justify-content: center;
		align-items: center;
		text-align: center;
	}
}

.content-nav._active .open {
	display: none;
}

.content-nav._active .close {
	display: block;
}

.content-nav._active .nav-inner {
	height: auto;
	opacity: 1;
	-webkit-transform: translateY(0);
	-ms-transform: translateY(0);
	transform: translateY(0);
}

.content-nav .nav-inner {
	overflow: hidden;
	height: 0;
	opacity: 0;
	-webkit-transform: translateY(-20px);
	-ms-transform: translateY(-20px);
	transform: translateY(-20px);
	-webkit-transition: opacity 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
	transition: opacity 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
	transition: opacity 0.3s ease 0s, transform 0.3s ease 0s;
	transition: opacity 0.3s ease 0s, transform 0.3s ease 0s,
		-webkit-transform 0.3s ease 0s;
}

.content-nav .nav-toggle {
	background: none;
	border: none;
	padding: 5px;
	margin: 5px 0;
	font-size: 24px;
	font-weight: 700;
	color: inherit;
}

.content-nav .open {
	display: block;
}

.content-nav .close {
	display: none;
}

.content-nav .nav-list {
	padding: 0;
	border: 4px solid #cbd2ed;
	background: #fff;
	border-radius: 15px;
	padding: 10px;
	-webkit-columns: 330px 2;
	-moz-columns: 330px 2;
	columns: 330px 2;
}

.content-nav .nav-list li {
	list-style-type: none;
}

.content-nav .nav-list a {
	color: #000;
	text-decoration: none;
	display: inline-block;
	font-weight: 600;
	padding: 2px;
	font-size: 17px;
	line-height: 22px;
	-webkit-transition: color 0.3s ease 0s;
	transition: color 0.3s ease 0s;
}

.content-nav .nav-list a:hover {
	color: #69eb31;
}

.content-nav .nav-list a:before {
	content: '#';
	font-size: 18px;
	padding-right: 3px;
	color: #69eb31;
}

.acc-list {
	padding: 0 !important;
	list-style-type: none;
}

.acc-item .acc-inner {
	overflow: hidden;
	width: 100%;
	border: 4px solid #e5bc40;
	background: #fff;
	margin-bottom: 10px;
	border-radius: 2px;
	color: #000;
}

.acc-item .acc-inner._active .acc-body {
	height: auto;
	opacity: 1;
	-webkit-transform: translateY(0);
	-ms-transform: translateY(0);
	transform: translateY(0);
}

.acc-item .acc-inner._active .arrow {
	-webkit-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	transform: rotate(90deg);
}

.acc-item .acc-head {
	padding: 15px;
	width: 100%;
	text-align: left;
	color: #000;
	background: none;
	border: none;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	background-color: #ede3cb;
}

.acc-item .acc-head h3 {
	margin: 0;
	padding: 0;
	margin-right: 10px;
	font-size: 22px;
}

.acc-item .acc-head .arrow {
	-webkit-transition: -webkit-transform 0.3s ease 0s;
	transition: -webkit-transform 0.3s ease 0s;
	transition: transform 0.3s ease 0s;
	transition: transform 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
}

.acc-item .acc-head .arrow img {
	display: block;
	width: 25px;
	margin: 0;
}

.acc-item .acc-body {
	overflow: hidden;
	height: 0;
	opacity: 0;
	-webkit-transform: translateY(-20px);
	-ms-transform: translateY(-20px);
	transform: translateY(-20px);
	-webkit-transition: opacity 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
	transition: opacity 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
	transition: opacity 0.3s ease 0s, transform 0.3s ease 0s;
	transition: opacity 0.3s ease 0s, transform 0.3s ease 0s,
		-webkit-transform 0.3s ease 0s;
}

.acc-item .acc-body p {
	padding: 0;
	margin: 0;
	font-size: 16px;
	padding: 40px 20px 20px 20px;
}

@media (max-width: 991.98px) {
	.acc-item .acc-head {
		padding: 13px;
	}

	.acc-item .acc-head h3 {
		font-size: 20px;
	}

	.acc-item .acc-head {
		font-size: 18px;
	}

	.acc-item .acc-body p {
		padding: 15px;
	}
}

@media (max-width: 767.98px) {
	.acc-item .acc-head {
		padding: 10px;
	}

	.acc-item .acc-head h3 {
		font-size: 18px;
	}

	.acc-item .acc-body p {
		padding: 30px 13px 13px 13px;
		font-size: 15px;
	}
}

@media (max-width: 599.98px) {
	.acc-item .acc-head {
		font-size: 16px;
	}

	.acc-item .acc-head h3 {
		font-weight: 500;
	}
}

.trustpilot_container {
	display: -ms-grid;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.trustpilot_item {
	margin-top: 16px;
	border-radius: 8px;
	padding: 24px;
	border: 1px solid #e5e5dd;
	background-color: #fff;
	height: -webkit-fit-content;
	height: -moz-fit-content;
	height: fit-content;
}

.trustpilot-link a {
	display: block;
	text-align: center;
	padding: 10px 0 0;
}

.trustpilot_item p,
.trustpilot_item h2,
.trustpilot_item h3 {
	margin: 0;
	padding: 0;
	color: #000;
}

.trustpilot_top {
	margin-bottom: 16px;
	border-bottom: 1px solid #e5e5dd;
	padding-bottom: 16px;
}

.trustpilot_content {
	width: 100%;
	margin-top: 16px;
}

.trustpilot_bottom {
	margin-top: 16px;
	border-top: 1px solid #e5e5dd;
	padding-top: 16px;
}

.trustpilot_top,
.trust_header,
.trustpilot_bottom {
	width: 100%;
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.trustpilot_header,
.trust_foot,
.trust_cont,
.trust_header {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.trustpilot_avatar {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	overflow: hidden;
	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;
}

.trustpilot_avatar img {
	display: block;
	width: 100%;
	height: 100%;
	max-width: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.trustpilot_info {
	margin-left: 8px;
}

.trustpilot_info p {
	margin: 0;
}

.trustpilot_info h3 {
	font-style: normal !important;
	margin-bottom: 0;
	margin-top: 0;
	font-size: 16px !important;
	color: #000;
	font-weight: 600;
}

.trustpilot_header,
.trust_foot,
.trust_cont,
.trust_header {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.trustpilot_info p,
.trustpilot_info span {
	font-size: 14px;
	font-weight: 400;
	color: #696a6a;
}

.trustpilot_info .trust_local {
	margin-left: 12px;
}

.trustpilot_info p,
.trustpilot_info span {
	font-size: 14px;
	font-weight: 400;
	color: #696a6a;
}

.trustpilot_content {
	width: 100%;
	margin-top: 16px;
}

.trustpilot_header,
.trust_foot,
.trust_cont,
.trust_header {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.trustpilot_content .trust_star {
	width: 108px;
	height: 20px;
}

.trustpilot_content .trust_star img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.trustpilot_content .trust_update p {
	color: #696a6a;
	font-size: 14px;
}

.trustpilot_content .trust_head {
	margin-top: 12px;
}

.trustpilot_content .trust_head p {
	margin: 12px 0;
	color: #000;
}

.trust_date {
	font-size: 14px;
	color: #000;
}

.trust_date span {
	font-weight: 700;
}

.trustpilot_bottom {
	margin-top: 16px;
	border-top: 1px solid #e5e5dd;
	padding-top: 16px;
}

.trustpilot_top,
.trust_header,
.trustpilot_bottom {
	width: 100%;
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.trustpilot_header,
.trust_foot,
.trust_cont,
.trust_header {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.trust_like,
.trust_share {
	cursor: pointer;
	-webkit-tap-highlight-color: transparent;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.trust_like p,
.trust_share p {
	margin-left: 4px;
	font-size: 14px;
	color: #696a6a;
	font-weight: 300;
}

.trust_like p span,
.trust_share p span {
	font-weight: 600;
	margin-left: 4px;
}

.trust_foot div:last-child {
	margin-left: 30px;
}

@media (max-width: 1199.98px) {
	.trustpilot_container {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 767.98px) {
	.trustpilot_container {
		display: block;
	}
}

.face_container {
	width: 100%;
	gap: 20px;
	position: relative;
	display: -ms-grid;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	margin: 15px 0;
}

.face_item {
	height: 100%;
	width: 100%;
	background-color: #fff;
	padding: 24px;
	border-radius: 34px;
}

.face_header,
.face_infoReview,
.face_rating ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin: 0;
}

.face_info {
	-webkit-box-flex: 1;
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
}

.face_infoReview {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.face_info h3 {
	margin: 0;
	padding: 0;
	font-size: 16px;
	line-height: 18px;
	line-height: 20px;
	font-weight: 700;
	max-width: 100%;
	overflow-x: hidden;
	overflow-y: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	text-align: left;
	color: #111111 !important;
}

.face_rating ul {
	padding: 0;
}

.face_ava img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.face_ava {
	width: 50px;
	height: 50px;
	min-width: 50px;
	border-radius: 50px;
	overflow: hidden;
	margin-right: 8px;
}

.face_rating {
	margin-top: 4px;
}

.face_rating ul li {
	list-style: none !important;
	padding: 0;
}

.face_rating ul svg {
	width: 16px;
	height: 16px;
	fill: #fcbf02;
}

.face_date {
	margin-left: 5px;
}

.face_date span {
	font-weight: 400;
	font-size: 12px;
	line-height: 1.17;
	white-space: nowrap;
	color: rgba(0, 0, 0, 0.7);
}

.face_text {
	margin-top: 8px;
}

.face_text p {
	line-height: 1.4;
	color: #111111;
	font-size: 16px;
	text-align: left;
	font-weight: 300;
}

.face_footer {
	margin-top: 12px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.face_footer span {
	overflow-x: hidden;
	overflow-y: hidden;
	min-width: 0px;
	text-overflow: ellipsis;
	white-space: nowrap;
	font-weight: 400;
	font-size: 12px;
	line-height: 1.17;
	color: rgba(0, 0, 0, 0.7);
}

.face_footer svg {
	fill: #197bff;
	width: 90px !important;
}

@media (max-width: 1199.98px) {
	.face_container {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 767.98px) {
	.face_container {
		grid-template-columns: repeat(1, 1fr);
	}
}

@media (max-width: 767.98px) {
	.face_item {
		padding: 20px;
	}
}

@media (max-width: 479.98px) {
	.face_infoReview {
		flex-direction: column;
		align-items: flex-start;
		justify-content: flex-start;
	}

	.face_date {
		margin-left: 0;
	}
}

.button-copy {
	display: block;
	margin: 10px auto 5px;
	padding: 15px 20px;
	max-width: 165px;
	width: 100%;
	position: relative;
	border: 2px dotted #000;
	font-size: 16px;
	text-transform: uppercase;
	font-weight: 700;
	color: #000;
	background: #fff;
	transition: background-color 0.3s ease, color 0.3s ease;
}

.button-copy:hover,
.button-copy:focus {
	background-color: #000;
	color: #fff;
}

.copiedtext {
	pointer-events: none;
	padding: 10px;
	border-radius: 20px;
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	text-align: center;
	opacity: 0;
	transform: translateY(-1em);
	color: #000;
	transition: all 0.5s;
	background-color: #fff;
}

.copied .copiedtext {
	opacity: 1;
	transform: translateY(-4em);
}

.button-small {
	text-align: center;
	display: block;
	margin-top: -5px;
}

.promocode {
	background-color: #000;
	color: #fff;
	font-weight: 500;
}

.contact-form {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	max-width: 450px;
	width: 100%;
	margin: 20px auto;
}

.contact-form label {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	margin-bottom: 20px;
}

.contact-form span {
	margin-bottom: 5px;
}

.contact-form input,
.contact-form textarea {
	display: block;
	width: 100%;
	padding: 12px;
	line-height: 1;
	border-radius: 5px;
	background: none #fff;
	border: none;
	-webkit-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
	box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
	color: #3b2859;
	font-size: 16px;
	font-weight: 500;
	text-align: left;
	text-transform: none;
	letter-spacing: normal;
	resize: none;
}

.contact-form input::-webkit-input-placeholder,
.contact-form textarea::-webkit-input-placeholder {
	color: #3b2859;
}

.contact-form input::-moz-placeholder,
.contact-form textarea::-moz-placeholder {
	color: #3b2859;
}

.contact-form input:-ms-input-placeholder,
.contact-form textarea:-ms-input-placeholder {
	color: #3b2859;
}

.contact-form input::-ms-input-placeholder,
.contact-form textarea::-ms-input-placeholder {
	color: #3b2859;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
	color: #3b2859;
}

.contact-form button {
	padding: 12px 30px;
	margin: 15px auto 0;
}

.logos-list {
	padding: 0 !important;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.logos-item {
	padding: 0 !important;
	list-style-type: none !important;
}

.logos-inner {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	text-decoration: none;
	background: none;
	border: none;
	padding: 5px;
	border-radius: 5px;
}

.logos-inner img {
	display: block;
	width: 120px;
	height: 40px;
	-o-object-fit: contain;
	object-fit: contain;
}

@media (max-width: 991.98px) {
	.logos-inner {
		padding: 10px;
	}

	.logos-inner img {
		width: 100px;
		height: 35px;
	}
}

.games-list {
	padding: 0;
	list-style-type: none;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin: -8px;
}

.game {
	padding: 0 !important;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	width: 16.666%;
	max-width: 300px;
}

.game-inner {
	margin: 8px;
	position: relative;
	overflow: hidden;
	border-radius: 8px;
	-webkit-transition: -webkit-box-shadow 0.3s ease, -webkit-transform 0.3s ease;
	transition: -webkit-box-shadow 0.3s ease, -webkit-transform 0.3s ease;
	transition: box-shadow 0.3s ease, transform 0.3s ease;
	transition: box-shadow 0.3s ease, transform 0.3s ease,
		-webkit-box-shadow 0.3s ease, -webkit-transform 0.3s ease;
	-webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
	box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
}

.game-image img {
	display: block;
	max-width: 100%;
	width: 100%;
	height: auto;
	-webkit-transition: -webkit-transform 0.3s ease;
	transition: -webkit-transform 0.3s ease;
	transition: transform 0.3s ease;
	transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.game-overlay {
	position: absolute;
	z-index: 1;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	background: linear-gradient(
		133.83deg,
		rgba(49, 86, 235, 0.8) 1.96%,
		rgba(110, 41, 206, 0.8) 43.21%,
		rgba(174, 0, 157, 0.8) 100%
	);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.game-inner:hover .game-overlay {
	opacity: 1;
}

@media (max-width: 1199.98px) {
	.game {
		width: 25%;
	}
}

@media (max-width: 991.98px) {
	.game {
		width: 33.333%;
	}
}

@media (max-width: 767.98px) {
	.game-overlay {
		display: none;
	}
}

@media (max-width: 599.98px) {
	.game {
		width: 50%;
	}
}

.columns {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.columns .column {
	padding: 8px;
	width: 33.333%;
}

.columns.col-2 .column {
	width: 50%;
}

@media (max-width: 1199.98px) {
	.columns .column {
		width: 50%;
	}
}

@media (max-width: 599.98px) {
	.columns .column {
		width: 100% !important;
	}
}

table {
	border-collapse: collapse;
	color: #fff;
	width: 100%;
}

.table-wrap {
	display: block;
	overflow-x: auto;
}

thead tr,
tbody tr:nth-child(even) {
	background-color: #111111;
}

thead tr th:not(:last-child),
thead tr td:not(:last-child),
tbody tr:nth-child(even) th:not(:last-child),
tbody tr:nth-child(even) td:not(:last-child) {
	border-right: 2px solid #555555;
}

tbody tr:nth-child(odd) {
	background-color: #555555;
}

tbody tr:nth-child(odd) th:not(:last-child),
tbody tr:nth-child(odd) td:not(:last-child) {
	border-right: 2px solid #111111;
}

table th,
table td {
	padding: 10px;
}

table p {
	padding: 0 !important;
	margin: 0 !important;
}

.promo-list {
	padding: 0;
	list-style-type: none;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-box-align: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin: -8px;
}

.promo-list ul {
	list-style-type: disc;
}

.promo {
	padding: 0 !important;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	width: 33.333%;
}

.promo-inner {
	-webkit-box-flex: 1;
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
	padding: 20px;
	margin: 8px;
	background-color: #fff;
	color: #000;
	border-radius: 5px;
	-webkit-transition: background-color 0.3s ease;
	transition: background-color 0.3s ease;
	overflow: hidden;
}

@media (max-width: 767.98px) {
	.promo-inner {
		padding: 15px;
	}
}

.promo-inner h3 {
	text-align: center;
	margin: 0 0 10px 0;
}

.promo-pool {
	margin-bottom: 10px;
	font-size: 14px;
	line-height: 1;
	text-align: center;
	text-transform: uppercase;
	color: #d22f32;
}

.promo-pool span {
	display: block;
	font-size: 30px;
	font-weight: 700;
}

.promo-image {
	margin-bottom: 10px;
}

.promo-image img {
	display: block;
	max-width: 100%;
	width: 100%;
	height: auto;
	border-radius: 15px;
}

.promo-image .img-promo {
	max-width: 160px;
	width: 100%;
	margin: 0 auto;
}

.promo-image .img-tour {
	max-width: 200px;
	width: 100%;
	margin: 0 auto;
}

.promo-text {
	text-align: left;
}

.promo-timer {
	margin-top: 15px;
	font-size: 12px;
	line-height: 1;
}

.promo-timer p {
	padding: 0;
	margin: 0;
	text-align: center;
}

.promo-timer ul {
	padding: 0;
	list-style-type: none;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
}

.promo-timer li {
	padding: 0;
}

.promo-timer span {
	display: inline-block;
	font-size: 17px;
	line-height: 1.2;
	margin: 3px 6px;
}

.promo-hidden {
	display: -webkit-box;
	-webkit-line-clamp: 4;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}

.promo._active .promo-hidden {
	display: block;
}

.promo .more {
	background: none;
	border: none;
	display: flex;
	width: 100%;
	justify-content: center;
	align-items: center;
	margin: 5px 0 15px;
	padding: 8px;
	text-align: center;
	background-color: rgba(0, 0, 0, 0.1);
	border-radius: 10px;
	color: #000;
	font-weight: 700;
	transition: background-color 0.3s ease;
}

.promo .more:hover {
	background-color: rgba(0, 0, 0, 0.15);
}

.promo .more > img {
	margin-left: 5px;
	display: block;
	width: 25px;
	height: 25px;
	transform: rotate(90deg);
	transition: transform 0.3s ease;
}

.promo._active .more > img {
	transform: rotate(-90deg);
}

.promo .btn {
	margin-bottom: 0;
}

@media (max-width: 1199.98px) {
	.promo {
		width: 50%;
		max-width: 420px;
		margin: 0 auto;
	}
}

@media (max-width: 767.98px) {
	.promo {
		width: 100%;
	}
}
