* {
	padding: 0;
	margin: 0;
	border: 0;
}
*,
:after,
:before {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
:active,
:focus {
	outline: 0;
}
a:active,
a:focus {
	outline: 0;
}
aside,
footer,
header,
nav {
	display: block;
}
body,
html {
	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%;
	scroll-behavior: smooth;
	scrollbar-gutter: stable;
	color: var(--white);
	font-family: var(--font-main);
}
button,
input,
textarea {
	font-family: var(--font-main);
}
input::-ms-clear {
	display: none;
}
input,
textarea {
	-moz-appearance: none;
	appearance: none;
	-webkit-appearance: none;
	border-radius: 0;
}
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
	color: inherit;
}
input::-moz-placeholder,
textarea::-moz-placeholder {
	color: inherit;
}
input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
	color: inherit;
}
input::-ms-input-placeholder,
textarea::-ms-input-placeholder {
	color: inherit;
}
input::placeholder,
textarea::placeholder {
	color: inherit;
}
textarea {
	resize: none;
}
button {
	cursor: pointer;
	background-color: transparent;
}
button::-moz-focus-inner {
	padding: 0;
	border: 0;
}
a {
	display: inline-block;
	color: inherit;
	font-family: var(--font-main);
}
a,
a:visited {
	text-decoration: none;
}
a:hover {
	text-decoration: none;
}
ul li {
	list-style: none;
}
img {
	display: block;
	width: 100%;
	height: 100%;
	-o-object-fit: contain;
	object-fit: contain;
	-o-object-position: center;
	object-position: center;
	vertical-align: top;
}
svg {
	display: block;
	width: 100%;
	height: 100%;
}
h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--font-main);
	font-size: inherit;
	font-weight: inherit;
	text-transform: uppercase;
}

p,
span {
	font-family: var(--font-main);
}

picture {
	display: block;
	width: 100%;
	height: 100%;
}
input::-webkit-inner-spin-button,
input::-webkit-outer-spin-button {
	-webkit-appearance: none;
	margin: 0;
}
input[type='number'] {
	-moz-appearance: textfield;
}
@font-face {
	font-family: Tektur;
	font-style: normal;
	font-weight: 700;
	font-display: swap;
	src: url(/belohnungsspiele-fonts/belohnungsspiele-Tektur-Bold.ttf) format('truetype');
}
@font-face {
	font-family: Tektur;
	font-style: normal;
	font-weight: 500;
	font-display: swap;
	src: url(/belohnungsspiele-fonts/belohnungsspiele-Tektur-Medium.ttf) format('truetype');
}
@font-face {
	font-family: Tektur;
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: url(/belohnungsspiele-fonts/belohnungsspiele-Tektur-Regular.ttf) format('truetype');
}
:root {
	--font-main: Tektur, sans-serif;
	--container-width: 1240px;
	--container-step: 20px;
	--container-step-tablet: 20px;
	--container-step-mobile: 20px;
	--container: calc(var(--container-width) + (var(--container-step) * 2));
	--black: #000000;
	--white: #ffffff;
}
.container {
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 var(--container-step);
}
@media (max-width: 991px) {
	.container {
		padding: 0 var(--container-step-tablet);
	}
}
@media (max-width: 600px) {
	.container {
		padding: 0 var(--container-step-mobile);
	}
}

.d-flex {
	display: flex;
}

.flex-col {
	flex-direction: column;
}

.flex-row {
	flex-direction: row;
}

.flex-row-col {
	flex-direction: row;
}

@media (max-width: 991px) {
	.flex-row-col {
		flex-direction: column;
	}
}

.gap40 {
	gap: 40px;
}

.gap6 {
	gap: 6px;
}

.gap20 {
	gap: 20px;
}

.gap30-20 {
	gap: 30px;
}

.gap40-20 {
	gap: 40px;
}

@media (max-width: 991px) {
	.gap30-20,
	.gap40-20 {
		gap: 20px;
	}
}

.mb20 {
	margin-bottom: 20px;
}

.mb20-10 {
	margin-bottom: 20px;
}

@media (max-width: 991px) {
	.mb20-10 {
		margin-bottom: 10px;
	}
}

.text-uppercase {
	text-transform: uppercase;
}

.text-center {
	text-align: center;
}

.fs14 {
	font-size: 14px;
	line-height: 120%;
}

.fw700 {
	font-weight: 700;
}

.fw400 {
	font-weight: 400;
}

.fw500 {
	font-weight: 500;
}

.pad80 {
	padding: 80px 0;
}

.pad60 {
	padding: 60px 0;
}

.pad40 {
	padding: 40px 0;
}

.fs40-26 {
	font-size: 40px;
	font-weight: 700;
	line-height: 120%;
}

.fs20-16 {
	font-size: 20px;
	font-weight: 500;
	line-height: 120%;
}

.fs16-14 {
	font-size: 16px;
	font-weight: 500;
	line-height: 120%;
}

@media (max-width: 991px) {
	.pad80,
	.pad60 {
		padding: 40px 0;
	}
	.pad40 {
		padding: 20px 0;
	}

	.fs40-26 {
		font-size: 26px;
	}

	.fs20-16 {
		font-size: 16px;
	}

	.fs16-14 {
		font-size: 14px;
	}
}

.justify-between {
	justify-content: space-between;
}

.align-center {
	align-items: center;
}

.header {
	background-color: var(--black);
	padding: 18px 0;
}

.header__logotype img {
	width: 25px;
	aspect-ratio: 1/1;
}

.burger {
	width: 42px;
	background-color: var(--black);
	flex-direction: column;
	cursor: pointer;
	display: none;
	gap: 7px;
}

.burger span {
	display: block;
	height: 1px;
	background-color: var(--white);
	border-radius: 2px;
}

.header__nav-item a {
	text-transform: uppercase;
	transition: 0.2s ease;
}

.header__nav-item a:hover {
	color: #ffa600;
	transition: 0.2s ease;
}

@media (max-width: 991px) {
	.burger {
		display: flex;
	}

	.header__nav {
		display: none;
		position: absolute;
		top: 60px;
		right: 0;
		background: var(--black);
		padding: 20px;
		flex-direction: column;
		z-index: 1000;
		width: 100%;
	}

	.header__nav.open {
		display: flex;
		max-width: 200px;
	}

	.header__nav-list {
		flex-direction: column;
		gap: 20px;
	}
}

.hero {
	background: linear-gradient(0deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.4) 100%),
		url('/belohnungsspiele-imgs/belohnungsspiele-back.webp') lightgray 50% / cover no-repeat;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}

.hero__wrapper h1 {
	text-align: center;
	font-size: 70px;
	font-weight: 700;
	line-height: 100%;
	text-transform: uppercase;
}

.btn {
	text-align: center;
	border-radius: 20px;
	border-bottom: 2px solid #f31501;
	background: linear-gradient(180deg, #ffa600 0%, #b92a2a 100%);
	padding: 12px 0;
	text-transform: uppercase;
	color: var(--white);
	font-size: 18px;
	font-weight: 700;

	width: 100%;
}

.hero__wrapper .btn {
	max-width: 369px;
	margin: 0 auto;
	text-decoration-line: underline;
	text-decoration-style: solid;
}

@media (max-width: 991px) {
	.hero {
		background: linear-gradient(0deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.4) 100%),
			url('/belohnungsspiele-imgs/belohnungsspiele-back-mob.webp') lightgray 50% / cover no-repeat;
	}

	.hero__wrapper h1 {
		font-size: 40px;
	}

	.hero__wrapper button {
		padding: 12px 0;
		font-size: 16px;
	}
}

.why,
.demo {
	background: linear-gradient(180deg, #df762b 0%, #892222 100%);
}

.why__cards-list {
	display: grid;
	gap: 20px;
	grid-template-columns: repeat(auto-fit, minmax(295px, 1fr));
}

.why__cards-item {
	border-radius: 20px;
	border: 1px solid #ffea00;
	background: linear-gradient(180deg, #ffa600 0%, #b92a2a 100%);
	padding: 20px;
	max-width: 100%;
	text-align: center;
}

.why__cards-item > div {
	height: 150px;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}

.why__cards-item h3 {
	font-size: 24px;
	font-weight: 700;
	line-height: 120%;
	text-transform: uppercase;
}

.why__cards-item p {
	font-size: 16px;
	font-weight: 500;
	line-height: 120%;
}

@media (max-width: 360px) {
	.why__cards-list {
		display: grid;
		gap: 20px;
		grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
	}
}

@media (max-width: 991px) {
	.why__cards-item > div {
		height: 100px;
	}

	.why__cards-item h3 {
		font-size: 22px;
	}
}

.slot,
.disclaimer,
.about,
.terms {
	background-color: var(--black);
}

.slot__info,
.slot__img,
.disclaimer__info,
.disclaimer__img {
	flex: 1;
}

.slot__img img,
.disclaimer__img img {
	border-radius: 20px;
	object-fit: cover;
}

.slot__img,
.disclaimer__img {
	border-radius: 20px;
	background: linear-gradient(180deg, #ffa600 0%, #b92a2a 100%);
	padding: 1px;
}

.whowe,
.footer {
	background: linear-gradient(180deg, #df762b 0%, #892222 100%);
}

.disclaimer__info {
	position: relative;
	padding: 40px 20px;
	border-radius: 20px;
	z-index: 0;

	&::before {
		content: '';
		position: absolute;
		inset: 0;
		padding: 1px;
		background: linear-gradient(180deg, #ffa600 0%, #b92a2a 100%);
		border-radius: 20px;
		-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
		-webkit-mask-composite: xor;
		mask-composite: exclude;
		z-index: -1;
	}
}

@media (max-width: 991px) {
	.disclaimer__block {
		position: relative;
		padding: 40px 20px;
		border-radius: 20px;
		z-index: 0;

		&::before {
			content: '';
			position: absolute;
			inset: 0;
			padding: 1px;
			background: linear-gradient(180deg, #ffa600 0%, #b92a2a 100%);
			border-radius: 20px;
			-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
			-webkit-mask-composite: xor;
			mask-composite: exclude;
			z-index: -1;
		}
	}

	.disclaimer__info {
		border-radius: 0;
		padding: 0;

		&::before {
			content: none;
		}
	}
}

.footer__partners-list {
	display: flex;
	gap: 60px;
	flex-wrap: wrap;
	justify-content: center;
}

.footer__nav {
	margin: 0 auto;
}

.footer__nav-item a {
	text-decoration: underline;
	text-underline-offset: 6px;
	transition: 0.2s ease;
}

.footer__nav-item a:hover {
	color: #000000;
	transition: 0.2s ease;
}

.footer__partners-item {
	> div {
		background-size: contain;
		background-repeat: no-repeat;
		background-position: center;
		height: 60px;
		width: 60px;
	} 
}

@media (max-width: 991px) {
	.footer__partners-list {
		display: flex;
		gap: 20px;
		flex-wrap: wrap;
		justify-content: center;
	}

	.footer__partners-item {
		> div {
			height: 45px;
			width: 45px;
		}

		img {
			height: 45px;
		}
	}
}

.demo__title {
	font-size: 60px;
	font-weight: 700;
	text-align: center;
}

@media (max-width: 991px) {
	.demo__title {
		font-size: 30px;
	}
}

.about__title {
	font-size: 40px;
	font-weight: 700;
	line-height: 120%;
}

.about__card-item {
	display: flex;
	flex-direction: column;
	gap: 20px;
	border-radius: 20px;
	padding: 20px;
	position: relative;
	z-index: 0;

	h3 {
		font-size: 24px;
		font-weight: 700;
		line-height: 120%;
	}

	&::before {
		content: '';
		position: absolute;
		inset: 0;
		padding: 1px;
		background: linear-gradient(180deg, #ffa600 0%, #b92a2a 100%);
		border-radius: 20px;
		-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
		-webkit-mask-composite: xor;
		mask-composite: exclude;
		z-index: -1;
	}
}

.about__img {
	flex: 1;
	position: relative;
	border-radius: 20px;
	z-index: 0;
	padding: 1px;

	img {
		border-radius: 20px;
		object-fit: cover;
	}

	&::before {
		content: '';
		position: absolute;
		inset: 0;
		padding: 1px;
		background: linear-gradient(180deg, #ffa600 0%, #b92a2a 100%);
		border-radius: 20px;
		-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
		-webkit-mask-composite: xor;
		mask-composite: exclude;
		z-index: -1;
	}
}

.demo__game {
	width: 100%;
	height: 600px;
	border-radius: 20px;
}

@media (max-width: 991px) {
	.about__title {
		font-size: 26px;
	}
	.about__card-item {
		gap: 10px;

		h3 {
			font-size: 22px;
		}
	}

	.demo__game {
		height: 615px;
	}
}

.terms {
	padding: 40px 0;
}

.terms__wrapper {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.terms h1 {
	font-family: var(--font-main);
	font-size: 60px;
	font-weight: 800;
	padding-bottom: 10px;
}

.terms h2 {
	font-family: var(--font-main);
	font-size: 20px;
	font-weight: 700;
	line-height: 120%;
}

.terms p,
li {
	font-family: var(--font-main);
	font-size: 20px;
	font-weight: 400;
	line-height: 120%;
}

@media (max-width: 991px) {
	.terms {
		padding: 20px 0;
	}

	.terms__wrapper {
		gap: 10px;
	}

	.terms h1 {
		font-size: 30px;
	}

	.terms h2 {
		font-size: 14px;
	}

	.terms p,
	li {
		font-size: 14px;
	}
}
