:root {
	--color-black: #000;
	--color-white: #fff;
	--color-bg: #dde4ec;
	--color-blue: #054588;
}

h1,
h2 {
	font-size: 24px;
}

h1,
h2,
h3 {
	font-weight: 400;
	line-height: 28px;
	margin-bottom: 10px;
	margin-top: 0;
}

h3 {
	font-size: 19px;
}

p {
	margin-bottom: 15px;
	margin-top: 0;
}

.container {
	margin: 0 auto;
	max-width: 100%;
	padding: 0 20px;
}

.copy {
	margin: 30px 0 15px 0;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 10px;
}
.copy__input {
	border-radius: 100px;
	padding: 10px;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 220px;
	height: 70px;
	background: white;
	color: #03173e;
	font-size: 20px;
	font-weight: 900;
	line-height: 24px;
	border: none;
}
.copy__input {
}
.copy__btn {
	cursor: pointer;
	border-radius: 100px;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 70px;
	height: 70px;
	border: none;
	outline: none;
	background: #428cdc;
}

.btn {
	align-items: center;
	border-radius: 100px;
	display: flex;
	flex-shrink: 0;
	font-size: 14px;
	font-weight: 500;
	gap: 10px;
	justify-content: center;
	line-height: 16px;
	padding: 10px;
	position: relative;
	text-transform: uppercase;
}

.btn:hover {
	color: #fff;
	opacity: 0.8;
}

.btn img {
	width: 20px;
}

.btn-blue {
	background: var(--color-blue);
	color: #fff;
}

.btn-yellow {
	background: linear-gradient(180deg, #fa9400, #fab700);
	color: #000;
	padding-right: 60px;
}

.btn-yellow img {
	bottom: 0;
	height: 50px;
	position: absolute;
	right: 0;
	width: 60px;
}

.btn-light {
	background: linear-gradient(0deg, #428cdc, #0992af);
	box-shadow: 0 11px 27px 0 rgba(66, 140, 220, 0.63);
	color: #fff;
}

.btn-orange {
	background: linear-gradient(0deg, #fa4d00, #fa5e00);
	color: #fff;
}

.btn-white {
	background: #fff;
	color: #0a4c99;
}

.btn-white:hover {
	color: #fa5e00;
}

.btn-lg {
	font-size: 18px;
	line-height: 1;
	padding: 10px 20px;
}

.btn-green {
	background: linear-gradient(0deg, #87bc17, #88c504);
	box-shadow: 0 10px 30px 0 rgba(135, 187, 24, 0.4);
	color: #fff;
}

.p-0 {
	padding: 0;
}

.header {
	background: linear-gradient(0deg, #0a519e, #003266 73%, #003266 98%);
}

.header__select {
	align-items: center;
	border-right: 2px solid #003266;
	color: #fff;
	display: flex;
	gap: 10px;
	padding: 10px 35px 10px 10px;
	position: relative;
}

.header__select:before {
	background-image: url(../img/arrow-down.svg);
	background-position: 50%;
	background-repeat: no-repeat;
	content: '';
	height: 20px;
	position: absolute;
	right: 5px;
	top: auto;
	width: 20px;
}

.header__select:last-child {
	border: none;
}

.header__top {
	align-items: center;
	display: flex;
	justify-content: space-between;
	padding: 20px 0 10px;
}

.header__logo {
	position: relative;
	width: 235px;
	z-index: 2;
}

.header__logo img {
	width: 100%;
}

.header__buttons {
	align-items: center;
	display: flex;
	gap: 10px;
	position: relative;
	z-index: 2;
}

.header__bottom {
	align-items: center;
	display: flex;
	gap: 20px;
	padding: 10px 0;
}

.burger {
	cursor: pointer;
	display: flex;
	display: block;
	height: 23px;
	position: relative;
	transition: all 0.3s;
	width: 28px;
	z-index: 2;
}

@media (min-width: 1023px) {
	.burger {
		display: none;
	}
}

.burger span {
	background-color: var(--color-white);
	display: block;
	float: right;
	height: 2px;
	transition: all 0.3s;
	width: 100%;
}

.burger span:nth-of-type(2) {
	margin: 8px 0;
}

.burger.active {
	padding-top: 12px;
}

.burger.active span {
	float: none;
}

.burger.active span:first-of-type {
	height: 2px;
	transform: rotate(45deg);
	transition-delay: 0.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: 0.3s;
}

.menu {
	align-items: center;
	background: rgba(0, 49, 102, 0.5);
	border-radius: 20px;
	display: flex;
	justify-content: center;
	list-style: none;
	margin: 0;
	padding: 0;
	width: 100%;
}

.menu a {
	color: #fff;
	display: block;
	font-size: 18px;
	font-weight: 500;
	line-height: 22px;
	padding: 10px 20px;
	text-transform: uppercase;
}

.menu a:hover {
	color: #fa4d00;
}

.wrapper {
	padding-top: 20px;
	position: relative;
}

.wrapper:before {
	background: #0a519e;
	content: '';
	height: 400px;
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
	z-index: -1;
}

.wrapper .container {
	grid-gap: 20px;
	align-items: start;
	display: grid;
	grid-template-columns: 240px 1fr 295px;
}

.banner {
	background-size: cover;
	border-radius: 20px;
	color: #fff;
	display: flex;
	flex-direction: column;
	height: 370px;
	padding: 40px;
}

.banner-1 {
	background-image: url(../img/bn-1.webp);
}

.banner-2 {
	background-image: url(../img/bn-2.webp);
}

.banner-3 {
	background-image: url(../img/bn-3.webp);
}

.banner-4 {
	background-image: url(../img/bn-4.webp);
}

.banner-5 {
	background-image: url(../img/bn-5.webp);
}

.banner-6 {
	background-image: url(../img/bn-6.webp);
}

.banner-7 {
	background-image: url(../img/bn-7.webp);
}

.banner-8 {
	background-image: url(../img/bn-8.webp);
}

.banner__title {
	font-size: 38px;
	font-weight: 800;
	line-height: 44px;
	margin-bottom: 15px;
	max-width: 630px;
	text-transform: uppercase;
}

.banner__text {
	font-size: 30px;
	font-weight: 400;
	line-height: 35px;
	max-width: 475px;
}

.banner .btn {
	font-size: 18px;
	line-height: 1;
	margin-top: auto;
	padding: 20px 50px;
	width: -moz-max-content;
	width: max-content;
}

.content {
	background: #fff;
	border-radius: 15px;
	margin-top: 30px;
	overflow: hidden;
}

.content__head {
	align-items: center;
	background: #dde4ec;
	border: 1px solid #fff;
	border-top-left-radius: 15px;
	border-top-right-radius: 15px;
	display: flex;
	font-weight: 500;
	justify-content: space-between;
	padding: 10px 25px;
}

.content__text {
	padding: 20px;
}

.content__text .btn {
	margin-bottom: 15px;
	width: -moz-max-content;
	width: max-content;
}

.table,
.table-responsive {
	overflow-x: auto;
	width: 100%;
}

.table table,
.table-responsive table {
	border-spacing: 0;
	width: 100%;
}

.table table tr:nth-child(odd) td,
.table-responsive table tr:nth-child(odd) td {
	background: #e3f2ff;
}

.table table td,
.table-responsive table td {
	color: #6b7d8e;
	padding: 10px 20px;
}

.table table td strong,
.table-responsive table td strong {
	color: #09437f;
}

.img-cov {
	border-radius: 20px;
	float: left;
	margin: 25px 25px 25px 0;
	overflow: hidden;
	width: 200px;
}

.img-cov br {
	display: none;
}

.img-text {
	border-radius: 20px;
	overflow: hidden;
	clear: both;
}

.img-text img {
	max-height: 595px;
	margin: 0 auto;
}

.img-text br {
	display: none;
}

.sidebar-left {
	background: #003266;
	border-radius: 20px;
}

.sidebar__bonus {
	align-items: center;
	display: flex;
	flex-direction: column;
	padding: 30px 0 20px;
}

.sidebar__bonus img:first-child {
	margin-bottom: -20px;
}

.sidebar__bonus .btn {
	margin-top: 5px;
}

.sidebar__menu {
	list-style: none;
	margin: 0;
	padding: 0;
}

.sidebar__menu a {
	align-items: center;
	border-top: 2px solid #0d4177;
	color: #fff;
	display: flex;
	font-size: 16px;
	font-weight: 500;
	gap: 10px;
	padding: 10px;
	text-transform: uppercase;
}

.sidebar__menu a:hover {
	color: #fa4d00;
}

.sidebar__menu-white {
	background: #fff;
	border-radius: 15px;
	padding-top: 5px;
}

.sidebar__menu-white a {
	border-bottom: 2px solid #e8ecf1;
	border-top: 0;
	color: #000;
}

.sidebar__menu-white a.dark {
	background: #e8ecf1;
}

.sidebar__search {
	border-top: 2px solid #0d4177;
	padding: 10px;
}

.sidebar__form {
	align-items: center;
	display: flex;
	position: relative;
}

.sidebar__form img {
	left: 10px;
	position: absolute;
	top: auto;
}

.sidebar__form input {
	background: hsla(0, 0%, 100%, 0);
	border: 2px solid #0d4177;
	border-radius: 20px;
	color: #1183d3;
	max-width: 100%;
	outline: none;
	padding: 10px 50px;
}

.sidebar__form input::-moz-placeholder {
	color: #1183d3;
	text-transform: uppercase;
}

.sidebar__form input::placeholder {
	color: #1183d3;
	text-transform: uppercase;
}

.sidebar__banner {
	align-items: center;
	background-image: url(../img/bg.webp);
	background-size: cover;
	border-radius: 15px;
	display: flex;
	flex-direction: column;
	padding: 40px 0 20px;
	text-align: center;
}

.sidebar__title {
	color: #fff;
	font-size: 40px;
	font-style: italic;
}

.sidebar__title span {
	color: #fc0;
}

.sidebar__desc {
	color: #47abff;
	font-size: 16px;
	margin-bottom: 10px;
}

.sidebar__coupon {
	background: #e8ecf1;
	border-radius: 15px;
	margin-bottom: 20px;
	margin-top: -5px;
	overflow: hidden;
}

.sidebar__head {
	align-items: center;
	background: #fff;
	color: #fa550c;
	display: flex;
	font-weight: 500;
	gap: 5px;
	padding: 10px;
	text-transform: uppercase;
}

.sidebar__footer {
	background: #fff;
	padding: 10px 30px;
}

.sidebar__body {
	align-items: center;
	display: flex;
	flex-direction: column;
	gap: 15px;
	padding: 20px;
}

.sidebar__body p {
	color: #6b7d8e;
	font-size: 14px;
	font-weight: 500;
	line-height: 16px;
	margin: 0;
}

.sidebar__games {
	background: #003266;
	border-radius: 15px;
	overflow: hidden;
}

.sidebar__header {
	align-items: center;
	background: #0a519e;
	display: flex;
	font-weight: 500;
	justify-content: space-between;
	padding: 10px;
}

.sidebar__header p {
	color: #fff;
	margin: 0;
	text-transform: uppercase;
}

.sidebar__header span {
	color: #509aea;
}

.sidebar__items {
	grid-gap: 10px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	padding: 5px;
}

.footer {
	background: #003266;
	border-top-left-radius: 15px;
	border-top-right-radius: 15px;
	margin-top: 30px;
	padding: 20px;
	position: relative;
}

.footer__logo {
	width: 200px;
}

.footer__logo img {
	width: 100%;
}

.footer__18 {
	position: absolute;
	right: 20px;
	top: 20px;
	width: 40px;
}

.footer__18 img {
	width: 100%;
}

.footer__menu {
	align-items: center;
	display: flex;
	gap: 20px;
	list-style: none;
	margin: 20px 0 60px;
	padding: 0;
	flex-wrap: wrap;
}

.footer__menu a {
	color: #1183d3;
	text-transform: uppercase;
}

.footer__menu a:hover {
	color: #fff;
}

.footer__row {
	gap: 50px;
}

.footer__logos,
.footer__row {
	display: flex;
	justify-content: space-between;
}

.footer__logos {
	align-items: center;
	background: #04386e;
	border-radius: 15px;
	gap: 25px;
	padding: 10px 20px;
	width: -moz-max-content;
	width: max-content;
	width: 100%;
}

.footer__logos img {
	height: 27px;
	width: auto;
}

.footer__partners {
	align-items: center;
	background: #04386e;
	display: flex;
	justify-content: space-between;
	padding: 10px 20px;
}

.footer__partners img {
	height: 40px;
	width: auto;
}

@media screen and (max-width: 1360px) {
	.header__select {
		display: none;
	}

	.footer__row {
		flex-direction: column;
		gap: 10px;
	}

	.footer__menu {
		flex-wrap: wrap;
	}

	.footer__menu a {
		font-size: 14px;
	}

	.footer__logos {
		gap: 5px;
	}

	.footer__logos img {
		height: auto;
	}
}

.mobile {
	display: none;
}

.faq__block {
	margin: 0 auto;
}

.faq__block h3 {
	align-items: center;
	border-bottom: 1px solid #c0daec;
	color: #09437f;
	cursor: pointer;
	display: flex;
	font-size: 16px;
	font-weight: 600;
	line-height: 18px;
	margin: 0;
	padding: 15px 20px 15px 0;
	position: relative;
}

.faq__block h3:before {
	background-image: url(../img/arrow.svg);
	background-position: 50%;
	background-repeat: no-repeat;
	content: '';
	height: 20px;
	position: absolute;
	right: 0;
	top: auto;
	transition: all 0.3s linear;
	width: 20px;
}

.faq__content {
	padding: 10px 0 0;
	transition: all 0.3s linear;
}

.faq__item {
	border-radius: 0;
}

.faq__item[aria-expanded='false'] .faq__content {
	height: 0;
	opacity: 0;
	overflow: hidden;
}

.faq__item[aria-expanded='true'] h3:before {
	transform: rotate(180deg);
}

@media screen and (max-width: 1180px) {
	.banner {
		height: 160px;
		padding: 12px;
	}

	.banner .btn {
		font-size: 10px;
		line-height: 1;
		padding: 10px 15px;
	}

	.banner__title {
		font-size: 16px;
		line-height: 18px;
		max-width: 80%;
		margin-bottom: 5px;
	}

	.banner__text {
		font-size: 12px;
		line-height: 14px;
		max-width: 80%;
	}
}

@media screen and (max-width: 1024px) {
	.container {
		padding: 0 15px;
	}

	.sidebar {
		display: none;
	}

	.wrapper .container {
		display: block;
	}

	.header__buttons:first-child,
	.menu {
		display: none;
	}

	.header .container {
		align-items: center;
		display: flex;
		flex-direction: row-reverse;
		justify-content: space-between;
	}

	.header__logo {
		width: 115px;
	}

	.header__bottom,
	.header__top {
		padding: 0;
	}

	.header__bottom {
		gap: 10px;
	}

	.header {
		padding: 10px 0;
	}

	.btn {
		font-size: 10px;
		line-height: 1;
		padding: 8px;
	}

	.wrapper:before {
		height: 190px;
	}

	h1,
	h2 {
		font-size: 20px;
		line-height: 28px;
	}

	.footer__menu {
		display: block;
		margin-bottom: 30px;
		margin-top: 20px;
		text-align: center;
	}

	.footer__menu a {
		display: block;
		margin-bottom: 8px;
	}

	.footer__logos img {
		height: 10px;
	}

	.footer__partners {
		gap: 5px;
		padding: 5px 10px;
	}

	.mobile {
		background: #001225;
		bottom: 0;
		display: block;
		left: 0;
		opacity: 0;
		overflow-y: auto;
		position: fixed;
		right: 0;
		top: 0;
		transition: all 0.3s ease-in-out;
		visibility: hidden;
		z-index: 1000;
	}

	.mobile.active {
		opacity: 1;
		visibility: visible;
	}

	.mobile .burger {
		position: absolute;
		right: 15px;
		top: 15px;
	}

	.sidebar__banner {
		background-position: 50%;
		border-radius: 0;
	}

	.sidebar__banner .btn {
		font-size: 18px;
	}

	.sidebar__title {
		line-height: 1;
	}

	.mobile__menu {
		list-style: none;
		margin: 0;
		padding: 0;
	}

	.mobile__menu a {
		align-items: center;
		border-top: 2px solid #043e7d;
		color: #fff;
		display: flex;
		font-size: 18px;
		gap: 10px;
		line-height: 22px;
		padding: 10px;
		text-transform: uppercase;
	}

	.mobile__menu a img {
		width: 30px;
	}

	.sidebar__form,
	.sidebar__form input {
		width: 100%;
	}
}

.block__promo {
	display: flex;
	align-items: center;
	gap: 7px;
	margin-bottom: 15px;
}

.block__promo-text {
	display: flex;
	align-items: center;
	font-size: 16px;
	color: rgba(34, 35, 38, 1);
	font-weight: 500;
	background: #fff;
	padding: 10px 35px 10px 10px;
	position: relative;
	border-radius: 20px;
	border: 1px solid rgba(17, 131, 211, 1);
}

.block__promo-text:before {
	content: '';
	position: absolute;
	top: auto;
	right: 10px;
	width: 24px;
	height: 24px;
	background-image: url('../img/copy.svg');
	background-repeat: no-repeat;
}

.but-prom {
	font-size: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	text-transform: uppercase;
	height: 44px;
	border: 0;
	background: linear-gradient(0deg, #fa4d00 0%, #fa5e00 100%);
	border-radius: 20px;
	padding: 0 35px;
	cursor: pointer;
}

@media screen and (max-width: 1024px) {
	.but-prom {
		font-size: 10px;
		padding: 0 5px;
		height: 26px;
		border-radius: 50px;
	}

	.block__promo-text {
		font-size: 10px;
		padding: 0 35px 0 10px;
		height: 26px;
	}

	.img-cov {
		float: none !important;
		margin: 20px auto !important;
	}
}

.table {
	margin: 0 0 16px 0;
}
.sidebar__items a {
	transition: 0.5s;
}
.sidebar__items a:hover {
	transform: scale(1.03);
}

@media (max-width: 768px) {
	.copy {
		margin: 15px 0 5px 0;
	}
	.copy__input {
		width: 115px;
		height: 30px;
	}
	.copy__btn {
		width: 50px;
		height: 30px;
	}
	.copy__btn svg {
		width: 22px;
	}
}
