:root {
    --color-black: #000;
    --color-white: #fff;
    --color-blue-1: #171C2C;
}

.container {
    margin: 0 auto;
    max-width: 1310px;
    padding: 0 15px
}

.btn {
    border-radius: 19px;
    color: var(--color-white);
    display: block;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    padding: 15px 35px;
    text-align: center;
    text-decoration: none;
    transition: all .3s ease;
    width: -moz-max-content;
    width: max-content
}

.btn-primary {
    border: 1px solid #82D9EF;
}

.btn-primary:hover {
    background: #82D9EF;
    color: var(--color-black)
}

.btn-secondary {
    color: #0D0D0D;
    background: #82D9EF;
    box-shadow: inset 0 4px 6px 0 hsla(0, 0%, 100%, .31)
}

.btn-secondary:hover {
    background: var(--color-white);
    color: var(--color-black)
}

.btn-green {
    color: #0D0D0D;
    background: #82D9EF;
    box-shadow: inset 0 4px 6px 0 hsla(0, 0%, 100%, .31)
}

.btn-green:hover {
    background: var(--color-white);
    color: var(--color-black)
}

.btn-lg {
    padding: 22px 60px
}

.header {
    align-items: center;
    display: flex;
    justify-content: space-between;
    padding: 25px 0
}

.header__logo {
    position: relative;
    width: 180px;
    z-index: 2
}

.header__logo img {
    width: 100%
}

.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: 85px
}

.content .btn {
    margin-top: 35px
}

.content__wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-top: 225px
}

.content .head {
    flex-shrink: 0;
    width: 50%
}

.content .text {
    width: 48%
}

.content p {
    margin-bottom: 20px;
    margin-top: 0
}

.content h1 {
    font-size: 96px;
    font-weight: 800;
    line-height: 83px;
    margin-bottom: 35px;
    margin-top: 0;
    zoom: 0.7;
    -ms-zoom: 0.7;
    -webkit-zoom: 0.7;
    -moz-transform:  scale(0.7,0.7);
    -moz-transform-origin: left center;
}

.content h1+p {
    max-width: 930px
}

.content h2 {
    font-size: 64px
}

.content h2,
.content h3 {
    font-weight: 800;
    line-height: 1.1636363636;
    margin-bottom: 30px;
    margin-top: 0
}

.content h3 {
    font-size: 44px
}

.content .table {
    overflow-x: auto;
    width: 100%
}

.content table {
    border-spacing: 0;
    margin-bottom: 30px;
    width: 100%
}

.content tr:nth-child(odd) td {
    background: #1E1E1E;
}

.content tr:nth-child(odd) td:nth-child(odd) {
    background: #272727;
}

.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: 19px;
    margin-bottom: 30px;
    max-width: 605px
}

.content .img-cov img {
    width: 100%
}

.user .content__wrap {
    padding-top: 110px
}

.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: #7a74fb
}

@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: 48px;
        line-height: 41px;
        margin-bottom: 20px
    }

    .content h2 {
        font-size: 32px;
        line-height: 28px
    }

    .content h3 {
        font-size: 30px;
        line-height: 27px
    }

    .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: 75px
    }

    .header {
        padding: 20px 0
    }

    .content .btn {
        margin-top: 20px
    }
}

.anchor__block {
    margin: 100px 0 0;
}
.anchor__block li {
    display: block;
    padding: 0;
    margin: 0 0 10px 0;
}

/*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: #1E1E1E;
	padding: 10px 10px 10px 0;
	border-radius: 17px 0 0 17px;
}
.showcase__item:nth-child(1n) {
    padding: 0;
}
.showcase__item:nth-child(2n) {
	border-radius: 0 17px 17px 0;  
}
.showcase .showcase__item:nth-child(2) {
	justify-content: flex-end;
}
.showcase__item-right {
  justify-content: space-between !important;
}
.showcase__item p {
	height: 90px;
	margin: 0;
}
.showcase__item p img {
	height: 100%;
    display: flex;
}
.showcase__img {
	padding: 0 0 0 40px;
	position: relative;
    height: 100%;
   
}
.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: 41px;
	height: 100%;
	border-radius: 17px 0 0 17px;
	background:#82D9EF;
	display: flex;
	justify-content: center;
	align-items: center;
	color:#1E1E1E;
	font-size: calc(46vw / 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: #0D0D0D;
	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: #82D9EF;
    margin:10px 10px 10px 0;
}

.showcase__link {
	display: flex;
	width: 100%;
	text-decoration: none;
}
.showcase__link:hover .showcase__btn {
	background:#136d83;
}
@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::before  {
    border-radius: 17px 0 0 0;
}
.showcase__item p img {
    width: 120px;
}
.showcase__btn {
    margin: 0;
    border-radius: 0 0 19px 0;
    padding: 23px 42px;
}
}
