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

:root {
	--resizer: 1440;
}

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

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;
	border-bottom: calc(2vw / var(--resizer) * 100) solid rgba(255, 255, 255, 0.1);
}
.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: inherit;
	height: inherit;
}
.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: #ffffff;
	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: #fecf6c;
}
.header ul a {
	color: inherit;
}
.header.burger {
	display: none;
}
.wrapper {
	display: flex;
	flex-direction: column;
}
.inner {
	position: relative;
	width: 100%;
	min-height: 100vh;
}
.inner.no::before {
	background: none;
}
.inner::before {
	content: '';
	position: absolute;
	top: -5%;
	left: 0;
	width: 100%;
	height: 150%;
	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;
	max-width: calc(931vw / var(--resizer) * 100);
}
.inner .row h1 {
	margin: 0 0 calc(35vw / var(--resizer) * 100) 0;
	font-style: normal;
	font-weight: 800;
	font-size: calc(96vw / var(--resizer) * 100);
	line-height: calc(85vw / var(--resizer) * 100);
	color: #ffffff;
	align-self: flex-start;
	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: #ffffff;
	align-self: flex-start;
}
.inner .row .button {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: calc(23vw / var(--resizer) * 100) calc(73vw / var(--resizer) * 100);
	border-radius: 19px;
	background: var(
		--Main-color,
		linear-gradient(94deg, #ff1380 0.45%, #7f1e75 100%)
	);
	box-shadow: 0px 4px 6px 0px rgba(255, 255, 255, 0.31) inset;
	align-self: flex-start;
	transition: all 0.4s ease-in-out;
}
.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: #ffffff;
}

.content {
	padding: 0 0 calc(80vw / var(--resizer) * 100) 0;
}
.content .img-text {
	width: 48%;
	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 {
	width: 48%;
}
.content .head h2,
.content .head h3 {
	width: 100%;
}
.content h2 {
	margin: 0 0 calc(60vw / var(--resizer) * 100) 0;
	width: 48%;
	font-style: normal;
	font-weight: 800;
	font-size: calc(64vw / var(--resizer) * 100);
	line-height: 87.02%;
	color: #ffffff;
}
.content strong {
	margin: 0 0 calc(60vw / var(--resizer) * 100) 0;
	width: 48%;
	font-style: normal;
	font-weight: 800;
	font-size: calc(64vw / var(--resizer) * 100);
	line-height: 87.02%;
	color: #ffffff;
}

.content h3 {
	margin: 0 0 calc(40vw / var(--resizer) * 100) 0;
	width: 48%;
	font-style: normal;
	font-weight: 800;
	font-size: calc(44vw / var(--resizer) * 100);
	line-height: 87.02%;
	color: #ffffff;
}
.content .block {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.content .text {
	margin: 0 0 calc(30vw / var(--resizer) * 100) 0;
	width: 48%;
}
.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: #ffffff;
}
.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: #ffffff;
}
.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: #ffffff;
	transition: all 0.3s ease;
}
.content ul li a:hover {
	color: #fecf6c;
}

.table {
	margin: 30px 0;
	overflow: auto;
}
.faq__item {
	display: flex;
	justify-content: space-between;
}
.faq__head {
	width: 48%;
}
.faq__content {
	width: 48%;
}
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: #ffffff;
}
table tr td {
	background-color: #341872;
	border-radius: 5px 0 0 5px;
}
table tr td:nth-child(2n) {
	background-color: #4230bb;
	border-radius: 0 5px 5px 0;
}
table tr:nth-child(2n) td {
	background-color: transparent;
}

table thead tr {
	background-color: transparent;
}
.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: #ffffff;
	transition: all 0.4s linear;
}
.footer ul li:hover {
	color: #fecf6c;
}
.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 {
	border-top: calc(2vw / var(--resizer) * 100) solid rgba(255, 255, 255, 0.1);
	padding: 20px 0 30px 0;
	display: flex;
	justify-content: space-between;
	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%;
}
.small-img {
	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: 80vh;
	}
}


/*casino*/
.showcase__wrapper {
	margin: 0 0 30px 0;
	width:100%;
}
.showcase {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 0 0 10px 0;

}

.showcase__item {
	width: 100%;
	display: flex;
	align-items: center;
	gap: 35px;
	background: #372F7F;
	padding: 10px;
	border-radius: 12px 0 0 12px;
}
.showcase__item:nth-child(2n) {
	border-radius: 0 12px 12px 0;
}
.showcase .showcase__item:nth-child(2) {
	justify-content: flex-end;
}
.showcase__item-right {
  justify-content: space-between !important;
}
.showcase__item p {
	height: 68px;
	margin: 0;
}
.showcase__item p img {
	height: 100%;
	border-radius:9px;
}
.showcase__img {
	padding: 0 0 0 90px;
	position: relative;
}
.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: 40px;
	height: 68px;
	border-radius: 9px;
	background:#F5AC07;
	display: flex;
	justify-content: center;
	align-items: center;
	color:#3D0661;
	/*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: calc(28vw / var(--resizer) * 100);
	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: 19px;
	background: linear-gradient(90deg, #FF1380 0%, #7F1E75 100%)
}

.showcase__link {
	display: flex;
	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;
}
.showcase__img p {
    margin:0 !important;
}
}
