:root {
  --color-black: #000;
  --color-white: #fff;
  --color-blue-1: #06102b
}

.container {
  margin: 0 auto;
  max-width: 1150px;
  padding: 0 15px
}

.btn {
  border-radius: 5px;
  color: var(--color-white);
  display: block;
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
  padding: 8px 30px;
  text-align: center;
  text-decoration: none;
  transition: all .3s ease;
  width: -moz-max-content;
  width: max-content
}

.btn-primary {
  border: 1px solid var(--color-white)
}

.btn-primary:hover {
  background: var(--color-white);
  color: var(--color-black)
}

.btn-secondary {
  background: #1663ce;
  border: 1px solid #1663ce
}

.btn-secondary:hover {
  background: var(--color-white);
  color: var(--color-black)
}

.btn-green {
  background: #1663ce;
  border: 1px solid #1663ce
}

.btn-green:hover {
  background: var(--color-white);
  color: var(--color-black)
}

.btn-lg {
  padding: 13px 40px
}

.header {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding: 10px 0
}

.header__logo {
  position: relative;
  width: 195px;
  z-index: 2
}

.header__logo img {
  width: 100%
}

.header__logo img:last-child {
  display: none
}

.header__buttons {
  align-items: center;
  gap: 20px
}

.burger,
.header__buttons {
  display: flex;
  position: relative;
  z-index: 2
}

.burger {
  cursor: pointer;
  display: block;
  height: 28px;
  transition: all .3s;
  width: 28px
}

@media (min-width:768px) {
  .burger {
    display: none
  }
}

.burger span {
  background-color: var(--color-white);
  display: block;
  float: right;
  height: 2px;
  transition: all .3s;
  width: 100%
}

.burger span:nth-of-type(2) {
  margin: 8px 0;
  width: 50%
}

.burger.active {
  padding-top: 12px
}

.burger.active span {
  float: none
}

.burger.active span:first-of-type {
  height: 2px;
  transform: rotate(45deg);
  transition-delay: .3s
}

.burger.active span:nth-of-type(2) {
  height: 0;
  margin: -2px;
  opacity: 0
}

.burger.active span:nth-of-type(3) {
  height: 2px;
  transform: rotate(-45deg);
  transition-delay: .3s
}

.faq__item {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between
}

.content {
  padding-bottom: 50px;
  padding-top: 30px
}

.content .btn {
  margin-top: 35px
}

.content__wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-top: 105px
}

.content .head {
  flex-shrink: 0;
  width: 50%
}

.content .text {
  width: 48%
}

.content h1,
.content p {
  margin-bottom: 20px;
  margin-top: 0
}

.content h1 {
  font-size: 44px;
  font-weight: 700;
  line-height: 46px
}

.content h1+p {
  max-width: 930px
}

.content h2 {
  font-size: 32px;
  line-height: 32px
}

.content h2,
.content h3 {
  font-weight: 700;
  margin-bottom: 20px;
  margin-top: 0
}

.content h3 {
  font-size: 30px;
  line-height: 30px
}

.content .table {
  overflow-x: auto;
  width: 100%
}

.content table {
  border-spacing: 0;
  margin-bottom: 30px;
  width: 100%
}

.content tr:nth-child(odd) td {
  background: #0e1e49
}

.content tr:nth-child(odd) td:nth-child(odd) {
  background: #172856
}

.content td {
  padding: 5px 16px
}

.content td:first-child {
  border-bottom-left-radius: 5px;
  border-top-left-radius: 5px
}

.content td:last-child {
  border-bottom-right-radius: 5px;
  border-top-right-radius: 5px
}

.content .img-cov {
  border-radius: 13px;
  margin: 0 auto 30px;
  max-width: 605px;
  overflow: hidden
}

.content .img-cov img {
  width: 100%
}

.user .content__wrap {
  padding-top: 85px
}

.page {
  align-items: center;
  display: flex;
  justify-content: center;
  min-height: calc(100vh - 70px);
  padding: 100px 0;
  text-align: center
}

.page h1 {
  font-size: 48px;
  line-height: 1;
  margin: 0
}

@media (min-width:768px) {
  .page h1 {
    font-size: 96px
  }
}

.page .btn {
  margin: 0 auto
}

.menu {
  background: var(--color-blue-1);
  display: block;
  left: 0;
  opacity: 0;
  padding: 45px 15px 0;
  position: absolute;
  right: 0;
  top: 0;
  transition: all .3s ease;
  visibility: hidden;
  z-index: 0
}

@media (min-width:768px) {
  .menu {
    display: none
  }
}

.menu.active {
  opacity: 1;
  visibility: visible
}

.menu__lang {
  align-items: center;
  color: #fff;
  display: flex;
  font-size: 14px;
  font-weight: 500;
  justify-content: flex-end;
  padding: 20px 0;
  text-decoration: none
}

.menu__lang img {
  display: block;
  margin-left: 18px
}

.menu__list {
  border-top: 1px solid #222727;
  list-style: none;
  margin: 0;
  padding: 10px 0
}

.menu__item {
  color: #fff;
  display: block;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  padding: 10px 0;
  text-decoration: none
}

.menu__title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3333333333;
  margin-bottom: 20px;
  margin-top: 0
}

ol,
ul {
  list-style-position: inside;
  padding-left: 0
}

.anchor__menu li {
  margin-bottom: 3px
}

.anchor__menu a {
  color: var(--color-white);
  text-decoration: none
}

.anchor__menu a:hover {
  color: #1663ce
}

@media (max-width:1024px) {
  .faq__item {
    display: block
  }

  .content {
    padding-top: 50px
  }

  .content__wrap {
    display: block;
    padding-top: 30px
  }

  .content .head,
  .content .text {
    width: 100%
  }

  .content h1 {
    font-size: 21px;
    line-height: 21px;
    margin-bottom: 20px;
    text-align: center;
  }

  .content h1 + p {
    text-align: center;
  }

  .content h2,
  .content h3 {
    font-size: 18px;
    line-height: 18px
  }

  .user .content__wrap {
    padding-top: 30px
  }

  .btn {
    border-radius: 8px;
    font-size: 12px;
    line-height: 18px;
    padding: 5px 8px
  }

  .btn-lg {
    font-size: 14px;
    padding: 17px;
    width: 100%
  }

  .header__logo {
    width: 60px
  }

  .header__logo img:first-child {
    display: none
  }

  .header__logo img:last-child {
    display: block
  }

  .header {
    padding: 20px 0
  }

  .content .btn {
    margin-top: 20px
  }
}

/*casino*/
.showcase__wrapper {
	margin: 0 0 30px 0;
}
.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: #0E1E49;
	padding: 10px;
	border-radius: 8px 0 0 8px;
}
.showcase__item:nth-child(2n) {
	border-radius: 0 8px 8px 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: 50px;
	height: 50px;
	border-radius: 6px;
	background:#1662CE;
	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: 6px;
	background: #1662CE;
}

.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;
}
}

.img-small{
  width: 200px;
  height: 200px;
  float: left;
  margin: 0 25px 25px 0;
}

.block {
margin-bottom:15px;
}
.block__items {
border-radius:15px;
border:1px solid #1663ce;
display:flex;
justify-content: space-between;
align-items: center;
margin-bottom:15px;
}
.block-link a {
margin-top:0 !important;
border-radius:15px !important;
}
.block-img img {
border-radius:15px;
}