* {
	margin: 0;
	padding: 0;
}

body {
	min-width: 320px;
	font-family: Arial, Helvetica, sans-serif;
	background: #0d1016;
	color: #d2eeed;
	font-size: 16px;
	line-height: 32px;
}

img {
	max-width: 100%;
	height: auto;
}

.container {
	width: calc(100% - 10px);
	max-width: 1180px;
	margin-left: auto;
	margin-right: auto;
}

.header-wrapper {
	padding: 10px 0;
}

.header-wrapper .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}

.part-right,
.part-left,
.header-buttons {
	display: flex;
	align-items: center;
}

.header-buttons a {
	text-decoration: none;
	color: #fff;
	box-sizing: border-box;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	height: 40px;
	border: 1px solid #ff2400;
	border-radius: 4px;
	padding: 0 24px;
	margin-left: 10px;
}

.header-buttons a:nth-child(1) {
	background: #ff2400;
}

.header-buttons a:hover {
	background: #04cfaa;
	border-color: #fff;
}

.banner-wrapper {
	background-image: url(assets/bg.jpg);
	margin: 0 auto 20px auto;
	width: calc(100% - 10px);
	max-width: 1180px;
	border-radius: 5px;
	background-size: 150%;
	background-position: right right;
}

.banner-content {
	min-height: 260px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding-left: 70px;
	color:#fff;
}

.banner-content span:nth-child(1) {
	font-size: 23px;
	font-weight: 700;
	font-style: italic;
	line-height: 1.4;
}

.banner-content span:nth-child(2) {
	font-size: 23px;
	font-weight: 700;
	font-style: italic;
	margin: 10px 0 20px;
}

.banner-content a {
	text-decoration: none;
	color: #fff;
	box-sizing: border-box;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	height: 46px;
	border: 1px solid #ff2400;
	background: #ff2400;
	border-radius: 4px;
	width: 200px;
}

.banner-content a:hover {
	background: #fff;
	color: #ff2400;
}

.slots-list {
	margin: 0 auto;
	width: calc(100% - 10px);
	max-width: 1180px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.slots-item {
	background: #3b6f6d;
	width: calc(25% - 5px);
	border-radius: 4px;
	min-height: 190px;
	background-size: cover;
	background-position: center center;
}

.slots-item:nth-child(1) {
	background-image: url(assets/slot1.webp);
}

.slots-item:nth-child(2) {
	background-image: url(assets/slot2.jpg);
}

.slots-item:nth-child(3) {
	background-image: url(assets/slot3.png);
}

.slots-item:nth-child(4) {
	background-image: url(assets/slot4.webp);
}

.slots-item-content {
	width: 100%;
	min-height: 190px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	background: linear-gradient(
		135deg,
		rgba(1, 202, 162, 0.9),
		rgba(0, 0, 0, 0.5) 70%
	);
	border-radius: 4px;
}

.slots-item-content {
	visibility: hidden;
	opacity: 0;
}

.slots-item:hover .slots-item-content,
.slots-item-content:hover {
	visibility: visible;
	opacity: 1;
}

.slots-item-content a {
	text-decoration: none;
	color: #fff;
	box-sizing: border-box;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	height: 40px;
	width: 60%;
	border: 1px solid #fff;
	border-radius: 4px;
	min-width: 150px;
	margin-left: 10px;
}

.slots-item-content a:nth-child(1) {
	background: #ff2400;
	margin-bottom: 15px;
}

.slots-item-content a:hover {
	background: #04cfaa;
	border-color: #fff;
}

.article-wrapper {
	margin: 20px auto;
	width: calc(100% - 10px);
	max-width: 1180px;
}

.article-section h1,
.article-section h2,
.article-section h3 {
	margin-bottom: 15px;
	color: #fff;
	margin-bottom: 20px;
}

.article-section h1 {
	font-size: 2em;
}

.article-section h2 {
	font-size: 1.8em;
}

.article-section h3 {
	font-size: 1.6em;
}

.article-section p,
.article-section table,
.article-section ul,
.article-section ol {
	margin-bottom: 15px;
	list-style-position: inside;
}

.article-section figure {
	margin-bottom: 15px;
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 20px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.article-section figcaption {
	margin-bottom: 15px;
	color: #04cfaa;
	font-style: italic;
}

.article-section table {
	box-sizing: border-box;
	border-collapse: collapse;
	width: 100%;
}

.article-section blockquote {
	background: rgba(84, 117, 38, 1);
	font-style: italic;
	padding: 10px;
	font-size: 1.04em;
	margin-bottom: 15px;
}

.article-section table thead tr td {
	text-align: center;
	font-weight: bold;
	background: rgba(84, 117, 38, 1);
}

.article-section table td {
	border: 1px solid rgba(255, 255, 255, 0.2);
	padding: 10px;
}

.article-section .content-image figcaption {
	color: rgba(255, 255, 255, 0.7);
	font-style: italic;
}

.article-section .content-image img {
	max-width: 100%;
}

.footer-wrapper {
	width: 100%;

	padding: 15px 0;
}

.footer-wrapper:before {
	content: '';
	display: flex;
	width: 100%;
	height: 1px;
	background: linear-gradient(
		to right,
		rgba(255, 255, 255, 0),
		rgba(255, 255, 255, 0.8),
		rgba(255, 255, 255, 0)
	);
}

.footer-container .container {
	display: flex;
	justify-content: space-between;
	padding-top: 15px;
}

.footer-container p {
	text-align: center;
	max-width: 980px;
	line-height: 16px;
}

.footer-container small {
	display: block;
	opacity: 0.5;
	margin-bottom: 10px;
}

.footer-cads {
	display: flex;
	justify-content: space-evenly;
	width: 100%;
	max-width: 320px;
	padding: 15px 0;
}

.footer-cads svg {
	fill: #3b6f6d;
}

.legal {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 40px;
	height: 40px;
	box-sizing: border-box;
	color: #3b6f6d;
	border: 1px solid #3b6f6d;
	border-radius: 2px;
}

.footer-container {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

@media (max-width: 880px) {
	.slots-list,
	.header-text {
		display: none;
	}
	.banner-wrapper {
		background-size: cover;
	}
}

@media (max-width: 660px) {
	.banner-content {
		padding: 0;
		justify-content: center;
		align-items: center;
		background: rgba(0, 0, 0, 0.5);
		text-align: center;
	}
}

@media (max-width: 520px) {
	.header-wrapper .container {
		flex-direction: column;
	}
	.part-right {
		width: 100%;
	}
	.header-buttons {
		margin-top: 10px;
		width: 100%;
		justify-content: space-between;
	}
	.header-buttons a {
		width: calc(50% - 5px);
		padding: 0;
		margin: 0;
	}

	.article-section table td,
	.article-section table th {
		padding: 10px 2px;
	}

	.footer-container .container {
		flex-direction: column;
	}
}

.promocode  {font-weight:700;color:#fff;padding-top:30px;}
.promocode span { 
position:relative;
margin-right:22px;display:inline-block;
cursor:pointer;
color: #f5c016;
}

.promocode span:after {
	content: '';
    -webkit-mask-image: url(/images/copy.svg);
    mask: url(/images/copy.svg);
    -webkit-mask-position: 50%;
    background-color: #f5c016;
    position:absolute;
    width: 18px;
    height: 18px;
    top:5px;
	right:-22px;
}

