* {
	margin: 0;
	padding: 0;
}

@font-face {
	font-family: 'Roboto';
	src: url('./Roboto/Roboto-Regular.ttf');
}

@font-face {
	font-family: 'Roboto';
	src: url('./Roboto/Roboto-Bold.ttf');
	font-weight: 600;
}

@font-face {
	font-family: 'Roboto';
	src: url('./Roboto/Roboto-Black.ttf');
	font-weight: 900;
}

@font-face {
	font-family: 'Roboto';
	src: url('./Roboto/Roboto-BoldItalic.ttf');
	font-weight: 600;
	font-style: italic;
}

@font-face {
	font-family: 'Roboto';
	src: url('./Roboto/Roboto-LightItalic.ttf');
	font-weight: 300;
	font-style: italic;
}

body {
	min-width: 320px;
	background: #00100e;
	color: #fff;
	font-family: 'Roboto';
}

header {
	background: #00100e;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	position: sticky;
	top: 0;
	z-index: 999;
}

header .container {
	margin: 0 auto;
	padding: 15px 0;
	width: calc(100% - 10px);
	max-width: 1280px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

nav {
	display: flex;
}

nav a {
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	padding-left: 40px;
	padding-right: 40px;
	height: 40px;
	border-radius: 6px;
	border: 1px solid #ff2400;
	text-decoration: none;
	color: #fff;
	text-transform: uppercase;
}

nav a:nth-child(1) {
	background: #ff2400;
	margin-right: 10px;
}

nav a:hover {
	background: #ff2400;
}

.banner {
	width: 100%;
	background-image: url(img/bg.png);
	background-size: cover;
	margin: 0;
}

.banner-bg {
	background-image: radial-gradient(
		105.93% 112.43% at 114.58% 68.81%,
		#00ffb2,
		#00ffd100
	);
}

.banner-bg-1 {
	background-image: url(img/girl1.webp);
	background-size: contain;
	background-repeat: no-repeat;
	max-width: 1280px;
	margin: 0 auto;
	background-position: right center;
}

.banner-bg-2 {
	background-image: url(img/girl2.webp);
	background-size: contain;
	background-repeat: no-repeat;
}

.banner-content {
	min-height: 320px;
	text-align: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.banner-title {
	font-size: 62px;
	font-weight: 900;
}

.banner-title span {
	font-weight: 300;
	color: #ff2400;
}

.banner-text {
	max-width: 640px;
	margin-bottom: 10px;
	font-size: 34px;
	font-weight: 900;
}

.banner-button {
	background: #ff2400;
	display: flex;
	justify-content: center;
	align-items: center;
	text-decoration: none;
	color: #fff;
	text-transform: uppercase;
	font-weight: 600;
	font-size: 20px;
	height: 50px;
	width: 250px;
	border-radius: 5px;
	margin-top: 10px;
}

.banner-button:hover {
	background: #ac1700;
}

.slot-section {
	margin: 30px auto 0;
	width: calc(100% - 10px);
	max-width: 1280px;
}

.slot-container {
    background: #222;
    padding: 5px 25px;
    border-radius: 15px;
    margin: 15px 0 0;
}

.logos {
    overflow: hidden;
    border-radius: 15px;
    margin: 0 0 30px;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.logos a {
    background: #222;
    padding: 15px;
    display: block;
    width: 100%;
    text-align: center;
}

.logos a:not(:last-child) {
    border-right: 3px solid #2c2c2c;
}

.logos a:hover {
    background: #262626;
}

.logos img {
	max-width: 100%;
	height: auto;
    opacity: .7;
	vertical-align: top;
}

.slot-row {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-gap: 30px;
}

.slotbox {
    overflow: hidden;
    position: relative;
    border-radius: 15px;
    width: 100%;
    margin: 0 0 15px;
}

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

.slotbox:hover img {
  opacity:.3
}

.slotbox .hover-btn {
  display:none;
  width:100%;
  position:absolute;
  text-align:center;
  top:35%
}

.slotbox:hover .hover-btn {
  display:block
}

.slotbox .play {
    display: flex;
    justify-content: center;
    align-items: center;
	max-width: 50%;
	margin: 0 auto;
    text-align: center;
    padding-left: 40px;
    padding-right: 40px;
    height: 40px;
    border-radius: 6px;
    border: 1px solid #ff2400;
    text-decoration: none;
	background: #ff2400;
    color: #fff;
    text-transform: uppercase;
}

article {
	margin: 30px auto;
	width: calc(100% - 10px);
	max-width: 1280px;
}

article p {
	margin-bottom: 20px;
}

article table {
	border-collapse: collapse;
	width: 100%;
	margin-bottom: 20px;
}

article td {
	text-align: center;
	border: 1px solid rgba(255, 255, 255, 0.3);
	padding: 15px 0;
}

article h1,
article h2,
article h3 {
	margin-bottom: 20px;
}

article p {
	line-height: 30px;
	margin-bottom: 20px;
}

article ul,
article ol {
	list-style-position: inside;
	margin-bottom: 20px;
	line-height: 40px;
}

article blockquote {
	font-style: italic;
	margin-bottom: 20px;
	border: 1px dashed rgba(255, 255, 255, 0.5);
	padding: 20px;
	text-align: center;
}

article a {
	color: #ff2400;
	text-decoration: none;
}

article a:hover {
	text-decoration: underline;
}

article figure {
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	font-style: italic;
	color: #ff2400;
	font-size: 14px;
	margin-bottom: 20px;
}

article img {
	display: block;
	margin-left: auto;
	margin-right: auto;
	max-width: 100%;
	height: auto;
}

.advantages {
	margin: 30px auto;
	width: calc(100% - 10px);
	max-width: 1280px;
	display: flex;
	justify-content: space-between;
}

.advantage {
	width: calc(33% - 20px);
	display: flex;
	flex-direction: column;
	text-align: center;
	justify-content: space-between;
	background: #031717;
	border-radius: 20px;
	padding: 10px;
}

.advantage img {
	max-width: 100%;
}

.advantage-title {
	font-size: 20px;
	font-weight: 600;
	color: #d2eeed;
	margin-bottom: 10px;
}

.advantage-cnt {
	font-size: 14px;
	color: #3b6f6d;
}

.advantage-button {
	background: #ff2400;
	display: flex;
	justify-content: center;
	align-items: center;
	text-decoration: none;
	color: #fff;
	text-transform: uppercase;
	font-weight: 600;
	font-size: 20px;
	height: 50px;
	width: 100%;
	border-radius: 5px;
	margin-top: 10px;
}

.advantage-button:hover {
	background: #ac1700;
}

footer {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	display: flex;
	flex-direction: column;
}

footer .container {
	margin: 0 auto;
	padding: 15px 0;
	width: calc(100% - 10px);
	max-width: 1280px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

footer p {
	text-align: center;
	max-width: 1000px;
	margin: 10px auto;
	font-size: 13px;
	color: rgba(255, 255, 255, 0.33);
}

@media (max-width: 940px) {
	.banner-content {
		background: rgba(0, 0, 0, 0.75);
	}

	.slot-row {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 600px) {
	.banner-bg-1 {
		background: none;
	}
	.banner-title {
		font-size: 42px;
	}
	.banner-text {
		font-size: 24px;
	}
	.slot-container {
        padding: 15px 15px 1px;
    }
	.logos {
		display: none;
	}
	.slot-row {
		grid-template-columns: 1fr;
		grid-gap: 15px;
	}
	article table {
		font-size: 14px;
	}
	article {
		padding: 0;
		border-radius: 0;
		background: none;
	}
	.advantages {
		flex-direction: column;
	}
	.advantage {
		width: calc(100% - 20px);
		margin-bottom: 10px;
	}
	header .container,
	footer .container {
		flex-direction: column;
	}
	header .container img,
	footer .container img {
		margin-top: 15px;
	}
}
.banner-promo {padding:30px 0 10px;font-weight:700;}
.banner-promo span { 
position:relative;
margin-right:22px;display:inline-block;
cursor:pointer;
color: #ffb400;
}

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