@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');

* {
	padding: 0;
	margin: 0;
	border: 0;
	font-family: 'Inter', sans-serif;
}

*,
*:before,
*:after {
	box-sizing: border-box;
}

:focus,
:active {
	outline: none;
}

a:focus,
a:active {
	outline: none;
}

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

html,
body {
	height: 100%;
	width: 100%;
	font-size: 100%;
	line-height: 1;
	font-size: 14px;
	-ms-text-size-adjust: 100%;
	-moz-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
	background-color: #111;
}
body.active {
	overflow: hidden;
}
.wrapper {
	position: relative;
	min-height: 100%;
	display: flex;
	flex-direction: column;
}

.main {
	flex: 1 1 auto;
}

.container {
	max-width: 1790px;
	padding: 0 15px;
	margin: 0 auto;
}

input,
button,
textarea {
	font-family: inherit;
}

select::-ms-expand {
	display: none;
}

select {
	-webkit-appearance: none;
	-moz-appearance: none;
	text-indent: 1px;
	text-overflow: '';
	background-color: white;
}

input::-ms-clear {
	display: none;
}

button {
	cursor: pointer;
}

button::-moz-focus-inner {
	padding: 0;
	border: 0;
}

a,
a:visited {
	text-decoration: none;
}

a:hover {
	text-decoration: none;
}

ul li {
	list-style: none;
}

img {
	vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-size: inherit;
	font-weight: inherit;
}

/* header */
.header {
	padding: 10px 0;
	background: #2c2c2c;
}
.header__wrapper {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 15px;
}
.header__item {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
}
.header__item .burger {
	display: none;
	width: 25px;
	height: 25px;
	background: url('../img/burger.webp') 0 0 / cover no-repeat;
	transition: all 0.3s ease;
}
.header__item .burger.active {
	background: url('../img/close.webp') 0 0 / cover no-repeat;
}
.header__item .promotion {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 7px;
	color: var(--White, #fff);
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 26px;
	transition: all 0.3s ease;
}
.header__item .promotion img {
	width: 100%;
	height: 100%;
}
.header__item .promotion:hover {
	color: #f7b636;
}
.header__item .language {
	display: flex;
	height: 40px;
	padding: 10px;
	justify-content: center;
	align-items: center;
	border-radius: 6px;
	background: var(--Light-black, #373737);
	color: var(--White, #fff);
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}
.header__logo img {
	width: 100%;
	height: 100%;
	max-width:165px;
}

.header__nav {
	transition: all 0.3s ease;
}
.header__nav .promotions {
	display: none;
}

.header__list {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 15px;
}

.header__list-item a {
	color: var(--White, #fff);
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 23px;
	transition: all 0.3s ease;
}
.header__list-item a:hover {
	color: #f7b636;
}

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

.header__button-first {
	padding: 8px;
	color: var(--White, #fff);
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 23px;
	border-radius: 6px;
	border: 1px solid #fff;
	transition: all 0.3s ease;
}
.header__button-first:hover {
	transform: scale(1.05);
}

.btn {
	display: block;
	text-align: center;
	padding: 8px;
	color: var(--White, #fff);
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 23px;
	border-radius: 6px;
	background: linear-gradient(90deg, #e55e34 0%, #bb2020 100%);
	transition: all 0.3s ease;
}
.btn:hover {
	transform: scale(1.05);
}

/* footer */
.footer {
	padding: 20px 0;
	background: #111;
}
.footer__logo {
	width: 165px;
	height: 26px;
}
.footer__logo img {
	width: 100%;
	height: 100%;
}
.footer .container {
	border-top: 1px solid #707070;
	padding: 60px 20px 0 20px;
}
.footer__wrapper {
	display: flex;
	justify-content: space-between;
	gap: 30px;
}
.footer__wrapper-item {
	display: flex;
	justify-content: space-between;
	gap: 30px;
	flex: 1 1 auto;
}
.footer__item {
	width: 100%;
}
.footer__item .accordion ul li a {
	color: var(--White, #fff);
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 26px;
}

.footer__item-title {
	margin: 0 0 15px 0;

	color: var(--White, #fff);
	font-size: 16px;
	font-style: normal;
	font-weight: 600;
	line-height: 26px;
	white-space: nowrap;
}
.footer__item .language {
	padding: 4px 12px;
	border-radius: 6px;
	background: var(--Light-black, #373737);
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 13px;
	color: var(--White, #fff);
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 26px;
}
.footer__item .language .img {
	width: 20px;
	height: 20px;
	line-height: 13px;
}
.footer__item .language .img img {
	width: 100%;
	height: 100%;
}
.footer__item-wrapper {
	margin: 0 0 20px 0;
	display: flex;
	align-items: center;
	gap: 20px;
}
.footer__item-wrapper#socials {
	gap: 10px;
}
.footer__item-wrapper#socials a {
	width: 40px;
	height: 40px;
	padding: 5px;
}
.footer__item-wrapper .img {
	width: 24px;
	height: 24px;
}
.footer__item-wrapper .img img {
	width: 100%;
	height: 100%;
}
.footer__text {
	margin: 20px 0;
	text-align: center;
	color: var(--grey, #b8b8b8);
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 26px;
}
.footer__item-wrapper a {
	padding: 4px 12px;
	border-radius: 6px;
	background: var(--Light-black, #373737);
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 13px;
	color: var(--White, #fff);
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 26px;
	transition: 0.3s ease all;
	white-space: nowrap;
}

.footer__item-wrapper a:hover {
	transform: scale(1.05);
}
.footer__item-payment {
	width: 250px;
}
.footer__item-payment .img img {
	width: 100%;
	height: 100%;
}

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

.footer__list {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 65px;
	flex-wrap: wrap;
}

.footer__list-item a {
	color: var(--White, #fff);
	font-size: 12px;
	font-style: normal;
	font-weight: 400;
	line-height: 17px;
	transition: all 0.3s ease;
}
.footer__list-item a:hover {
	color: #f7b636;
}
/* promo */
.promo {
	height: 380px;
	padding: 55px 0;
	background: url('../img/bg.webp') center center / cover no-repeat;
}
.promo .container {
	height: 100%;
	display: flex;
	align-items: end;
}
h1 {
	color: var(--White, #fff);
	font-size: 32px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	margin: 0 0 14px 0;
}
.promo p {
	color: var(--White, #fff);
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 23px;
	margin: 0 0 14px 0;
}
.promo .btn {
	width: 116px;
}
/* content */
.content {
	padding: 45px 0;
}
.content ol {
	margin: 0 0 25px 0;
	padding: 0 0 0 20px;
}
.content ol li {
	color: var(--Grey, #c9ccdd);
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 23px;
}
.content ul {
	margin: 0 0 25px 0;
	padding: 0 0 0 20px;
}
.content ul li {
	color: var(--Grey, #c9ccdd);
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 23px;
	list-style: disc;
}
.content h2 {
	margin: 0 0 15px 0;
	color: var(--White, #fff);
	font-size: 20px;
	font-style: normal;
	font-weight: 600;
	line-height: 28px;
}
.content h3 {
	margin: 0 0 15px 0;
	color: var(--White, #fff);
	font-size: 18px;
	font-style: normal;
	font-weight: 600;
	line-height: 28px;
}
.content p {
	margin: 0 0 25px 0;
	color: var(--Grey, #c9ccdd);
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 23px;
}
.content .btn {
	width: fit-content;
	margin: 25px auto;
}
.content .img {
	width: 100%;
	height: 100%;
}
.content .img img {
	width: 100%;
	height: 100%;
}
.content .table {
	margin: 25px 0;
	overflow: auto;
	width: 100%;
}
.content table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0 5px;
}
.content table tr th:last-child {
	font-weight: 700;
}
.content table tr th {
	padding: 10px;
	text-align: left;
	font-weight: 400;
	color: #ffffff;
}
.content table tr th:nth-child(odd) {
	border-radius: 6px 0px 0px 6px;
	border: 2px solid rgba(255, 255, 255, 0.18);
}
.content table tr th:nth-child(even) {
	border-radius: 0 6px 6px 0;
	border: 2px solid rgba(255, 255, 255, 0.18);
}
.content table tr td:nth-child(odd) {
	border-radius: 6px 0px 0px 6px;
	border: 2px solid rgba(255, 255, 255, 0.18);
}
.content table tr td:nth-child(even) {
	border-radius: 0 6px 6px 0;
	border: 2px solid rgba(255, 255, 255, 0.18);
}
.content tr:nth-child(odd) td {
	margin: 5px 0 0 0;
}
.content tr td {
	color: #fff;
	width: 50%;
}
.content tr td:first-child {
	border-radius: 9px 0px 0px 9px;
	padding: 10px;
}
.content tr td:last-child {
	border-radius: 0px 9px 9px 0px;
	padding: 10px;
	font-weight: 700;
}
/* comments */
.content .comments {
	margin: 0 0 50px 0;
}

.content .comments__title {
	display: flex;
	align-items: center;
	gap: 5px;
	margin: 0 0 25px 0;
	color: var(--White, #fff);
	font-size: 20px;
	font-style: normal;
	font-weight: 600;
	line-height: 28px;
}
.content .comments__title span {
	width: 22px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 4px;
	background: #20253c;
	color: var(--White, #fff);
	font-size: 18px;
	font-style: normal;
	font-weight: 600;
	line-height: 25px;
}

.content .comment {
	margin: 0 0 40px 0;
	display: flex;
	gap: 16px;
}
.content .comment:last-child {
	margin: 0;
}

.content .comment__avatar {
	min-width: 50px;
	height: 50px;
}

.content .comment__title {
	margin: 0;
}

.content .comment__review {
	color: #ffffff;
}

.content .comment__answer {
	color: var(--Yellow, #f7b636);
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 23px;
	transition: all 0.3s ease;
}
.content .comment__answer:hover {
	color: #d6e832;
}
/* connect */
.connect {
}

.content .connect__title {
	margin: 0 0 5px 0;
	color: var(--White, #fff);
	font-size: 20px;
	font-style: normal;
	font-weight: 600;
	line-height: 28px;
}

.content .connect__subTitle {
	margin: 0 0 20px 0;
	color: var(--Grey, #c9ccdd);
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 23px;
}
.content .form {
	width: 630px;
}
.content .form__top {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 15px;
	margin: 0 0 15px 0;
}

.content .form__input {
	width: 50%;
}
.content .form__input input {
	width: 100%;
	border-radius: 6px;
	background: #20253c;
	padding: 10px;
	color: var(--Grey, #c9ccdd);
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 23px;
}

.content .form__textarea textarea {
	width: 100%;
	border-radius: 6px;
	background: #20253c;
	padding: 10px;
	color: var(--Grey, #c9ccdd);
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 23px;
	height: 150px;
	resize: none;
}

.content .form .btn {
	margin: 15px 0;
}
.content .big-img {
	width: 100%;
	height: 100%;
	margin: 0 auto 25px auto;
}
.content .big-img img {
	width: 100%;
	height: 100%;
}
.content .small-img {
	width: 200px;
	margin: 0 auto 25px auto;
}
.content .small-img img {
	width: 100%;
	height: 100%;
}
.img-text {
	display: flex;
	gap: 30px;
}
/* filter */
.filter {
	width: fit-content;
	margin: 25px auto 50px auto;
	padding: 10px 18px;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 30px;
	border-radius: 8px;
	background: var(--Light-black, #373737);
}

.filter__block {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 20px;
}
.filter__block .divider {
	width: 2px;
	height: 90px;
	background: #707070;
}

.filter__item {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 5px;
	color: #fff;
	font-size: 20px;
	font-style: normal;
	font-weight: 400;
	line-height: 32px;
	white-space: nowrap;
}
.filter__item .img {
	width: 42px;
	height: 42px;
	margin: 0;
}
/* games */
.games {
	margin: 0 0 100px 0;
}

.games__top {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 0 0 20px 0;
}

.games__title {
	color: var(--White, #fff);
	font-size: 32px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
}

.games__top-block {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 20px;
}
.games__top-block .img {
	margin: 0;
	line-height: 15px;
}
.games__top-block a {
	height: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 10px;
	border-radius: 6px;
	background: var(--Light-black, #373737);
	color: var(--White, #fff);
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}

.games__top-nextPrev {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
}

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

.games__item {
	width: 200px;
}
#promotion.games .games__wrapper .games__item {
	width: 400px;
}
.games__item img {
	width: 100%;
	height: 100%;
}

#tournament.games .games__wrapper {
	display: flex;
	justify-content: space-between;
	align-items: start;
	gap: 0;
}
#tournament.games .games__wrapper .games__left {
	background: url('../img/bg-tournament.webp') 0 0 / cover no-repeat;
	width: 50%;
	height: 393px;
}
#tournament.games .games__wrapper .games__right {
	width: 50%;
	padding: 25px;
	flex: 1 1 auto;
	height: 100%;
	border-radius: 0px 8px 8px 0px;
	background: #373737;
}
.gamesTournament {
}

.gamesTournament__top {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 0 0 15px 0;
}

.gamesTournament__top-item {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 5px;
}

.gamesTournament__top-item .img {
	width: 47px;
	height: 47px;
}

.gamesTournament__top-text {
}

.gamesTournament__top-title {
	color: var(--White, #fff);
	font-size: 18px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	margin: 0 !important;
}

.gamesTournament__top-subTitle {
	color: var(--White, #fff);
	font-size: 24px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
}
p.gamesTournament__top-subTitle {
	color: #ffd02a;
	text-align: right;
	font-weight: 600;
}

.gamesTournament__block {
}

.content .gamesTournament__block-title {
	text-align: center;
	margin: 0 0 35px 0;
	color: var(--White, #fff);
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}

.gamesTournament__block-wrapper {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 25px;
}

.gamesTournament__block-item {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 10px;
}

.gamesTournament__block-item span {
	width: 64px;
	height: 64px;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 10px;
	border-radius: 7px;
	border: 1px solid var(--Grey, #707070);
	color: var(--White, #fff);
	font-size: 36px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
}

.gamesTournament__block-item h3 {
	color: var(--White, #fff);
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}

.gamesTournament__bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.gamesTournament__bottom-item a {
	color: var(--White, #fff);
	font-family: Inter;
	font-size: 18px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	text-decoration-line: underline;
	transition: all 0.3s ease;
}
.gamesTournament__bottom-item .btn {
	text-decoration-line: none;
}
.gamesTournament__bottom-item a:hover {
	color: #ffd02a;
}
/* accordion */

.accordion.active .accordion__text {
	opacity: 1;
	visibility: visible;
	padding: 20px 0 0 0;
}
.accordion.active .accordion__arrow {
	transform: rotate(180deg);
}
.accordion__top {
	margin: 0 0 15px 0;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.accordion__title {
	color: var(--White, #fff);
	font-size: 16px;
	font-style: normal;
	font-weight: 600;
	line-height: 26px;
}
.accordion__arrow {
	display: none;
	width: 12px;
	height: 12px;
	transform: rotate(0deg);
	transition: all 0.3s ease;
}
.accordion__arrow img {
	width: 100%;
	height: 100%;
}
.accordion__text {
	transition: all 0.3s ease;

	box-sizing: content-box;
}
/* media */
@media (max-width: 1440px) {
	.header__wrapper {
		flex-direction: column;
	}
}
@media (max-width: 1350px) {
	.footer__wrapper {
		flex-direction: column;
	}
}
@media (max-width: 992px) {
	.main {
		padding: 60px 0 0 0;
	}
	.header__wrapper {
		flex-direction: row;
	}
	.header__item .burger {
		display: block;
	}
	.header__item .header__nav {
		position: fixed;
		top: -100%;
	}
	.header__item .header__nav.active {
		left: 0;
		top: 120px;
		background: #111111;
		width: 100%;
		padding: 20px;
	}
	.header__item .header__nav.active ul {
		flex-direction: column;
		align-items: start;
	}
	.header__nav .promotions {
		display: flex;
		gap: 30px;
		margin: 0 0 40px 0;
	}
	.header__item .promotion {
		display: none;
	}
	.header__item .promotions .promotion {
		display: flex;
		justify-content: center;
		align-items: center;
		gap: 10px;
	}
	.accordion__text {
		opacity: 0;
		visibility: hidden;
		max-height: 0;
	}
	.accordion__arrow {
		display: block;
	}
	.filter {
		gap: 13px;
		width: 100%;
		flex-direction: column;
	}
	.filter__block {
		width: 100%;
		overflow-x: auto;
	}
	.filter__block .divider {
		width: 100%;
		height: 2px;
	}
	.filter__item .img {
		width: 24px;
		height: 24px;
	}
	.filter__item {
		font-size: 12px;
		line-height: 16px;
	}
	#filter__block-top.filter__block .filter__item {
		flex-direction: row;
	}
	.header__buttons {
		position: absolute;
		top: 60px;
		left: 0;
		width: 100%;
		padding: 0 15px;
		background: #2c2c2c;
		height: 60px;
	}
	.header__buttons a {
		width: 100%;
		text-align: center;
	}
	.games__wrapper a:nth-child(n + 7) {
		display: none;
	}
	#promotion.games .games__wrapper {
		flex-wrap: nowrap;
		width: 100%;
		overflow-x: auto;
		justify-content: start;
	}
	#promotion.games .games__wrapper .games__item {
		min-width: 270px;
	}
	.games__item {
		width: 135px;
	}
	.games__item .img {
		margin: 0;
	}
	.accordion__top {
		margin: 0;
	}
	#tournament.games .games__wrapper {
		flex-direction: column;
	}
	#tournament.games .games__wrapper .games__left {
		border-radius: 10px 10px 0 0;
		width: 100%;
		height: 150px;
		background: url('../img/bg-tournament-mb.webp') center center / cover
			no-repeat;
	}

	#tournament.games .games__wrapper .games__right {
		width: 100%;
		border-radius: 0 0 10px 10px;
		padding: 10px;
	}
	.content .gamesTournament__top-title {
		font-size: 12px;
		line-height: 16px;
	}
	.gamesTournament__top-subTitle {
		font-size: 16px;
		line-height: 18px;
	}
	.content .gamesTournament__block-title {
		font-size: 14px;
	}
	.gamesTournament__bottom-item a {
		font-size: 14px;
	}
	.footer__wrapper-item {
		flex-direction: column;
	}
}
@media (max-width: 768px) {
	.header__list-item a {
		font-size: 12px;
		line-height: 16px;
	}
	.header__wrapper {
		gap: 5px;
	}
	.header__item {
		gap: 10px;
	}
	.header__button-first {
		font-size: 12px;
	}
	.btn {
		font-size: 12px;
	}
	.promo h1 {
		font-size: 24px;
		line-height: 20px;
	}
	.promo p {
		font-size: 12px;
		line-height: 16px;
	}
	.content ol li {
		font-size: 12px;
		line-height: 16px;
	}
	.content p {
		font-size: 12px;
		line-height: 16px;
	}
	.content h2 {
		font-size: 18px;
		line-height: 25px;
	}
	.content h3 {
		font-size: 16px;
		line-height: 22px;
	}
	.content .comments__title {
		font-size: 18px;
		line-height: 25px;
	}
	.content .connect__subTitle {
		font-size: 12px;
		line-height: 16px;
	}
	.content .form {
		width: 100%;
	}
	.content .form__input input {
		font-size: 12px;
		line-height: 16px;
	}
	.content .form__textarea textarea {
		font-size: 12px;
		line-height: 16px;
	}
	.content .form .btn {
		width: 100%;
	}
	.footer__list {
		gap: 10px;
	}
}
