* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	--resizer: 1440;
}

body {
	width: 100%;
	min-height: 100%;
	font-family: 'Inter', sans-serif;
	background: #0c0839;
}

a {
	text-decoration: none;
}

.container {
	margin: 0 auto;
	width: 100%;
	max-width: calc(1290vw / var(--resizer) * 100);
}

.header {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 99;
}

.header .row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: calc(23vw / var(--resizer) * 100) 0 calc(13vw / var(--resizer) * 100) 0;
}

.header .logo {
	position: relative;
	z-index: 15;
	margin: 0 calc(30vw / var(--resizer) * 100) calc(10vw / var(--resizer) * 100) 0;
	transition: all 0.4s ease-in-out;
}

.header .logo p {
	width: 236px;
	height: 65px;
}

.header .logo:hover {
	transform: scale(1.05);
}

.header .logo img {
	width: 100%;
	height: 100%;
}

.header nav {
	display: flex;
	align-items: center;
}

.header ul {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	list-style: none;
}

.header ul li {
	margin: 0 0 calc(10vw / var(--resizer) * 100) calc(20vw / var(--resizer) * 100);
	font-style: normal;
	font-weight: 400;
	font-size: calc(14vw / var(--resizer) * 100);
	line-height: calc(17vw / var(--resizer) * 100);
	color: #fff;
	transition: all 0.4s linear;
}

.header__wrapper {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	z-index: 15;
}

.header__buttons {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 20px;
}

.header__buttons a {
	padding: calc(13vw / var(--resizer) * 100) calc(36vw / var(--resizer) * 100);
	border-radius: calc(16vw / var(--resizer) * 100);
	background: transparent;
	box-shadow: 0px 4px 6px 0px rgba(255, 255, 255, 0.31) inset;
	display: flex;
	justify-content: center;
	border: 1px solid #fff;
	align-items: center;
	color: var(--White, #fff);
	font-size: calc(18vw / var(--resizer) * 100);
	font-style: normal;
	font-weight: 400;
	line-height: 160%;
	transition: all 0.3s ease;
}

.header__buttons a:last-child {
	background: linear-gradient(94deg, #51fff5 0.45%, #02bbf5 100%);
	border: none;
}

.header__buttons a:hover {
	transform: scale(1.05);
}

.burger__content {
	opacity: 0;
	visibility: hidden;
	padding: 15px;
	display: flex;
	flex-direction: column;
	justify-content: end;
	position: fixed;
	top: -100px;
	left: 0;
	width: 100%;
	height: 180px;
	z-index: 10;
	background: url('../img/mob-2.webp') center / cover no-repeat;
	background-color: #0d0d0d;

	transition: all 0.3s ease;
}

.burger__language {
	border-bottom: 1px solid rgba(255, 255, 255, 0.32);
	padding: 0 0 15px 0;
	display: flex;
	align-items: center;
	justify-content: end;
	gap: 15px;
	color: #fff;
	font-size: 14px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
}

.burger__link {
	margin: 15px 0 0 0;
	display: inline-block;
	color: #fff;
	font-size: 16px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
}

.burger__content.active {
	opacity: 1;
	visibility: visible;
	top: 0;
}

.flag {
	margin: 0 0 calc(10vw / var(--resizer) * 100) calc(26vw / var(--resizer) * 100);
	width: calc(26vw / var(--resizer) * 100);
	height: calc(18vw / var(--resizer) * 100);
}

.flag img {
	width: inherit;
	height: inherit;
}

.header ul li:hover {
	color: #0038a8;
}

.header ul a {
	color: inherit;
}

.header.burger {
	display: none;
}

.wrapper {
	display: flex;
	flex-direction: column;
}

.inner {
	position: relative;
	width: 100%;
	min-height: 90vh;
}

.inner.no::before {
	background: none;
}

.inner::before {
	content: '';
	position: absolute;
	top: -5%;
	left: 0;
	width: 100%;
	height: 100%;
	background: url('../img/intro.webp') top / cover no-repeat;
	z-index: -1;
}

.inner .container {
	min-height: inherit;
}

.inner .row {
	display: flex;
	justify-content: center;
	flex-direction: column;
	align-items: center;
	/*min-height: inherit;*/
	padding: 172px 0 110px 0;
}

.inner .row h1 {
	margin: 0 auto calc(35vw / var(--resizer) * 100) auto;
	font-style: normal;
	font-weight: 800;
	font-size: calc(96vw / var(--resizer) * 100);
	line-height: calc(85vw / var(--resizer) * 100);
	color: #fff;
	zoom: 50%;
	-ms-zoom: 0.5;
	-webkit-zoom: 0.5;
	-moz-transform: scale(0.5, 0.5);
	-moz-transform-origin: left center;
}

.inner .row p {
	margin: 0 0 calc(35vw / var(--resizer) * 100) 0;
	font-style: normal;
	font-weight: 400;
	font-size: calc(18vw / var(--resizer) * 100);
	line-height: 160%;
	color: #fff;
	align-self: flex-start;
	text-align: center;
}

.inner .row .button {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: calc(23vw / var(--resizer) * 100) calc(73vw / var(--resizer) * 100);
	border-radius: 20px;
	background: var(--Green, #094cd2);
	align-self: flex-start;
	transition: all 0.4s ease-in-out;
	margin: 0 auto;
}

.inner .row .button:hover {
	transform: scale(1.05);
}

.inner .row .button span {
	font-style: normal;
	font-weight: 400;
	font-size: calc(18vw / var(--resizer) * 100);
	line-height: 160%;
	color: #fff;
}

.content {
	margin: -100px 0 0 0;
	padding: 0 0 calc(80vw / var(--resizer) * 100) 0;
}

.content .img-text {
	font-size: 0;
	line-height: 0;
}

.content .img-text img {
	width: 100%;
	height: 100%;
}

.content .head .img-text {
	width: 100%;
}

.content .row {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.content .head {}

.content .head h2,
.content .head h3 {
	width: 100%;
}

.content h2 {
	margin: 0 0 calc(60vw / var(--resizer) * 100) 0;

	font-style: normal;
	font-weight: 800;
	font-size: calc(64vw / var(--resizer) * 100);
	line-height: 87.02%;
	color: #fff;
	text-align: center;
}

.content strong {
	margin: 0 0 calc(60vw / var(--resizer) * 100) 0;
	display: block;
	font-style: normal;
	font-weight: 800;
	font-size: calc(64vw / var(--resizer) * 100);
	line-height: 87.02%;
	color: #fff;
	text-align: center;
}

.content h3 {
	margin: 0 0 calc(40vw / var(--resizer) * 100) 0;

	font-style: normal;
	font-weight: 800;
	font-size: calc(44vw / var(--resizer) * 100);
	line-height: 87.02%;
	color: #fff;
	text-align: center;
}

.content .block {
	padding: 35px;
	border-radius: 40px;
	background: var(--Blocks, #16114c);
}

.content .text {
	margin: 0 0 calc(30vw / var(--resizer) * 100) 0;
}

.content p {
	margin: 0 0 calc(30vw / var(--resizer) * 100) 0;
	width: 100%;
	font-style: normal;
	font-weight: 400;
	font-size: calc(16vw / var(--resizer) * 100);
	line-height: calc(26vw / var(--resizer) * 100);
	color: #fff;
	text-align: center;
}

.content ol,
.content ul {
	margin: 0 0 calc(30vw / var(--resizer) * 100) 0;
	padding: 0 0 0 calc(20vw / var(--resizer) * 100);
}

.content ol li,
.content ul li {
	font-style: normal;
	font-weight: 400;
	font-size: calc(16vw / var(--resizer) * 100);
	line-height: calc(26vw / var(--resizer) * 100);
	color: #fff;
	width: fit-content;
	margin: 0 auto;
}

.content ul li a {
	font-style: normal;
	font-weight: 400;
	font-size: calc(16vw / var(--resizer) * 100);
	line-height: calc(26vw / var(--resizer) * 100);
	color: #fff;
	transition: all 0.3s ease;
}

.content ul li a:hover {
	color: #fc50ff;
}

.table {
	margin: 30px 0;
	overflow: auto;
}

.faq__head {}

.faq__content {}

table {
	width: 100%;
	border-collapse: collapse;
	border-spacing: 0;
}

table,
td,
th {}

td,
th {
	padding: 7px 16px;
	font-style: normal;
	font-weight: 400;
	font-size: calc(16vw / var(--resizer) * 100);
	line-height: calc(26vw / var(--resizer) * 100);
	color: #fff;
	text-align: left;
}

table tr td:first-child {
	border-radius: 5px 0 0 5px;
}

table tr td:last-child {
	border-radius: 0 5px 5px 0;
}

table tr td:nth-child(1n) {
	background-color: #1331c1;
	color: #fff;
}

table tr td:nth-child(2n) {
	background-color: #1331c1;
	color: #fff;
}

table tr:nth-child(2n) td {
	background-color: transparent;
	color: #fff;
}

table thead tr {
	background-color: transparent;
	color: #fff;
}

.content .img-text {
	margin: 0 0 calc(60vw / var(--resizer) * 100) 0;
	border-radius: calc(40vw / var(--resizer) * 100);
	overflow: hidden;
}

.footer {
	width: 100%;
}

.footer .row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: calc(23vw / var(--resizer) * 100) 0 calc(13vw / var(--resizer) * 100) 0;
	border-top: calc(2vw / var(--resizer) * 100) solid rgba(27, 89, 146, 0.17);
}

.footer .logo {
	margin: 0 calc(30vw / var(--resizer) * 100) calc(10vw / var(--resizer) * 100) 0;
	transition: all 0.4s ease-in-out;
}

.footer .logo p {
	width: inherit;
	height: inherit;
}

.footer .logo:hover {
	transform: scale(1.05);
}

.footer .logo img {
	width: 100%;
	height: 100%;
}

.footer nav {
	display: flex;
	align-items: center;
}

.footer ul {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	list-style: none;
}

.footer ul li {
	margin: 0 0 calc(10vw / var(--resizer) * 100) calc(20vw / var(--resizer) * 100);
	font-style: normal;
	font-weight: 400;
	font-size: calc(14vw / var(--resizer) * 100);
	line-height: calc(17vw / var(--resizer) * 100);
	color: #fff;
	transition: all 0.4s linear;
}

.footer ul li:hover {
	color: #0038a8;
}

.footer ul a {
	color: inherit;
}

.burger {
	display: none;
}

.container__wrapper {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 100vh;
}

.container__block {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 35px;
}

p img {
	max-width: 100%;
}

.footer .container {
	padding: 20px 0 30px 0;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 30px;
}

.footer__item {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 70px;
}

.footer__item a {
	height: 30px;
}

.author-block-top {
	display: flex;
	gap: 20px;
	align-items: center;
	margin: 0 0 20px 0;
}

.author-block h2 {
	margin: 0 0 5px 0;
	width: 100%;
	word-break: break-all;
}

.author-block h3 {
	color: #fff;
	font-size: 16px;
	font-style: italic;
	font-weight: 600;
	line-height: 25px;
	margin: 0;
}

.block-author {
	margin: 0 0 calc(30vw / var(--resizer) * 100) 0;
	padding: calc(20vw / var(--resizer) * 100);
	border-radius: calc(43vw / var(--resizer) * 100);
	background: rgba(116, 209, 114, 0.05);
	backdrop-filter: blur(calc(80vw / var(--resizer) * 100));
}

p img {
	width: 100%;
	height: 100%;
}

.content .small-img {
	margin: 30px auto;
	width: 200px !important;
	height: 200px !important;
}

.big-img img {
	border-radius: calc(43vw / var(--resizer) * 100);
}

@media screen and (max-height: 700px) {
	.inner {
		min-height: 70vh;
	}
}

/*casino*/
.showcase__wrapper {
	margin: 0 0 120px 0;
}

.showcase {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 0 0 10px 0;
	border-radius: 24px;
	overflow: hidden;
	background: #16114C;
}

.showcase__options {
	display: grid;
	grid-template-columns: 100px 230px 160px 150px;
	padding: 10px 0;
}

.showcase__item {
	width: auto;
	display: flex;
	align-items: center;
	gap: 15px;
	padding: 10px;
	width: 100%;
}

.showcase__item:first-child {
	width: 400px;
	flex-shrink: 0;
}

.showcase .showcase__item:last-child {
	justify-content: flex-end;
	width: max-content;
	flex-shrink: 0;
}

.showcase__item-text {
	color: #fff;
	display: flex;
	flex-direction: column;
	gap: 5px;
	justify-content: center;
	text-align: center;
}

.showcase__item-text div {
	font-weight: 600;
}

.showcase__item p {
	height: 55px;
	margin: 0;
}

.showcase__item p img {
	height: 100%;
	border-radius: 9px;
}

.showcase__img {
	padding: 0 0 0 65px;
	position: relative;
	flex-shrink: 0;
}

.showcase__title {
	flex-shrink: 0;
}

@media (max-width: 1515px) {
	.showcase__options {
		grid-template-columns: 1fr 1fr;
		grid-template-rows: 1fr 1fr;
		row-gap: 10px;
	}
}

@media (max-width: 1090px) {
	.showcase__options {
		width: 100%;
	}

	.showcase .showcase__item:last-child{
		width: 100%;
		justify-content: space-between;
	}

	.showcase__link {
		flex-wrap: wrap;
	}
}

.container {
	counter-reset: my-counter 0;
}

.showcase__img::before {
	counter-increment: my-counter;
	content: counter(my-counter) " ";
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	width: 50px;
	height: 50px;
	border-radius: 9px;
	background: #094CD2;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #fff;
	font-size: calc(36vw / var(--resizer) * 100);
	font-style: normal;
	font-weight: 800;
	line-height: calc(26vw / var(--resizer) * 100);
}

.showcase__title span {
	text-align: left;
	display: block;
	/*margin: 0 0 10px 0;*/
	color: #fff;
	font-size: 24px;
	font-style: normal;
	font-weight: 700;
	line-height: calc(28vw / var(--resizer) * 100);
}

.showcase__title .showcase__rating {
	display: flex;
	min-width: 145px;
}

.showcase__title .showcase__rating-item {
	max-width: 25px;
	max-height: 25px;
}

.showcase__title .showcase__rating-item p {
	height: 25px;
}

.showcase__rating {
	display: flex;
	gap: 5px;
}

.showcase__rating-item {
	max-width: 18px;
	max-height: 18px;
}

.showcase__rating-item p {
	height: 18px;
}

.showcase__rating-item img {
	width: 100%;
	height: 100%;
}

.showcase__btn {
	padding: 23px 55px;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #fff;
	text-align: center;
	font-size: calc(16vw / var(--resizer) * 100);
	font-style: normal;
	font-weight: 400;
	line-height: calc(25vw / var(--resizer) * 100);
	border-radius: 15px;
	background: #094CD2;
}

.showcase__link {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	text-decoration: none;
}

.showcase__link:hover .showcase__btn {
	background: #4c0a12;
}

@media screen and (max-width:768px) {
	.showcase__link {
		flex-wrap: wrap;
	}

	.showcase__title {
		display: none;
	}

	.showcase__item {
		border-radius: 12px 12px 0 0;
	}

	.showcase__item:nth-child(2n) {
		border-radius: 0 0 12px 12px;
	}
}

@media screen and (max-width:768px) {
	.showcase__btn {
		font-size: 12px;
		line-height: 19.2px;
	}

	.showcase__img::before {
		font-size: 12px;
		width: 30px;
	}

	.showcase__img {
		padding: 0 0 0 50px;
	}
}

.footer__contact {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	flex-wrap: wrap;
	gap: 60px;
}

.footer__contact address,
.footer__contact a {
	display: flex;
	align-items: center;
	gap: 15px;
	font-style: normal;
	color: #fff;
	text-decoration: none;
	font-size: 16px;
}

.img__wrap {
	display: flex;
	gap: 25px;
	align-items: center;
}

.img__wrap img {
	width: 250px;
	height: auto;
}

@media screen and (max-width:992px) {
	.img__wrap {
		flex-direction: column;
	}

	.img__wrap img {
		width: 140px;
	}

	.footer__contact {
		display: block;
	}

	.footer__contact address,
	.footer__contact a {
		font-size: 12px;
		gap: 5px;
		margin-bottom: 15px;
	}

	.footer__contact img {
		width: 20px;
		height: auto;
	}
}