@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Racing+Sans+One&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

:root{
	--text-primary: #FFFFFF;
	--text-secundary: #FDE03E;
	--bg--black: #000000;
}
::selection{
	background: var(--bg-black);
	color: var(--text-primary);
}
/*
	font-family: "Roboto", sans-serif;
	font-family: "Inter", sans-serif;
	font-family: "Racing Sans One", sans-serif;
*/

/*common*/
*{
	box-sizing: border-box;
	-webkit-tap-highlight-color: transparent;
}

html,
body{
	margin: 0px;
	padding: 0px;
}
html{
	overflow-x: hidden;
}
body{
		font-family: "Roboto", sans-serif;
	font-size: 24px;
	line-height: 28px;
	font-weight: 500;
	color: var(--text-primary);
	background: url(../media/bg_body.jpg) no-repeat;
	background-size: cover;
	background-position: center;
}
p{
	margin: 0px;
}
ul{
	margin: 0px;
}
a{
	color: var(--text-primary);
	text-decoration: underline;
	transition: all 0.3s ease-in-out 0s;
}
a:hover{
	text-decoration: none;
}
h1{
	font-size: 40px;
	line-height: 100%;
	margin: 0px 0px 50px;
}
h2{
	font-size: 40px;
	line-height: 100%;
	font-weight: 700;
	margin: 0px 0px 30px;
}
h3{
	font-size: 24px;
	line-height: 100%;
	color: var(--text-secundary);
	font-weight: 700;
	text-transform: uppercase;
	margin: 0px 0px 50px;
}
.static-title--h2{
	font-size: 24px;
	text-transform: uppercase;
}
img{
	display: block;
	max-width: 100%;
	height: auto;
}
.text-decor{
	font-family: "Racing Sans One", sans-serif;
	font-weight: 400;
}
.text-decor--orange{
	text-shadow: -1px -1px #C15B24, -1px 1px #C15B24, 1px -1px #C15B24, 1px 1px #C15B24;
}
.text-decor--green{
	text-shadow: -1px -1px #3E9B18, -1px 1px #3E9B18, 1px -1px #3E9B18, 1px 1px #3E9B18;
}
.show-mob{
	display: none;
}
.container{
	position: relative;
	margin: 0 auto;
	max-width: 1336px;
	width: 100%;
	padding: 0px 20px;
}
.btn{
	display: inline-block;
	border: 0px;
	text-decoration: none;
	background: transparent;
	cursor: pointer;
}
.btn--primary{
	font-family: "Inter", sans-serif;
	font-size: 24px;
	line-height: 24px;
	font-weight: 400;
	text-align: center;
	background: #3566ED;
	border-radius: 8px;
	padding: 21px 30px;
	max-width: 526px;
	width: 100%;
}
.btn--primary:hover{
	opacity: 0.95;
}

/*header*/
.header{
	position: fixed;
	top: 0px;
	left: 0px;
	width: 100%;
	z-index: 1000;
}
.header__wrap{
	background: transparent;
	box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
	padding: 23px 0px;
	transition: all 0.3s ease-in-out 0s;
}
.header--fixed{
	background: var(--bg--black);
}
.header-nav{
	position: relative;
	margin: 0px auto;
	max-width: 853px;
	width: 100%;
}
.header-nav__list{
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 0px;
	padding: 0px;
	list-style: none;
}
.header-nav__item{
	margin: 0px 6px;
}
.header-nav__link{
	position: relative;
	display: inline-block;
	font-size: 14px;
	padding: 2px 9px;
	text-decoration: none;
}
.header-nav__link:before{
	position: absolute;
	bottom: 0px;
	left: 50%;
	width: 0px;
	height: 2px;
	background: var(--text-primary);
	content: "";
	transition: all 0.3s ease-in-out 0s;
}
.header-nav__link:hover:before{
	left: 0px;
	width: 100%;
}

/*content*/
section{
	padding: 50px 0px;
}

.section-col__wrap{
	display: flex;
	justify-content: space-between;
}
.section-col__img{
	display: flex;
	justify-content: center;
	align-items: flex-start;
	width: 49%;
}
.section-col__content{
	width: 49%;
}

.hero{
	position: relative;
	padding: 0px;
	overflow: hidden;
	height: 979px;
}
.hero__bg{
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	z-index: -1;
}
.hero__bg img{
	width: 100%;
	max-height: 979px;
	height: 100vh;
	object-fit: cover;
	object-position: bottom;
}
.hero__wrap{
	position: relative;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}
.hero__content{
	display: flex;
	flex-direction: column;
	align-items: center;
	max-width: 637px;
	width: 49%;
	text-align: center;
	padding: 100px 0px 0px;
}
.hero__logo{
	max-width: 379px;
	width: 100%;
	margin: 0px 0px 20px;
}
.hero__text{
	margin: 0px 0px 50px;
}
.title--hero{
	font-weight: 800;
	text-transform: uppercase;
	margin: 0px 0px 25px;
}
.hero__img{
	width: 49%;
}
.subtitle--hero{
	margin: 0px 0px 25px;
}

.how-to-play__img{
	position: relative;
}
.how-to-play__img:before{
	position: absolute;
	width: 100%;
	height: 100%;
	background: url(../media/bg_how_to_play.png) no-repeat;
	background-size: contain;
	background-position: top;
	content: "";
}
.how-to-play__img img{
	position: relative;
	z-index: 1;
}

.mechanic__wrap{
	align-items: center;
}

.opportunities__text{
	margin: 0px 0px 40px;
}
.opportunities__img{
	display: flex;
	justify-content: center;
}

.brewer__img{
	position: relative;
}
.brewer__img img{
	position: absolute;
	top: -10vw;
	right: 0px;
	z-index: -1;
}

.title--play{
	margin: 0px 0px 50px;
}
.play__img{
	display: flex;
	justify-content: flex-end;
}
.play__img img{
	max-width: 345px;
}
.game-iframe-wrapper {
	position: relative;
	margin-top: 36px;
	padding-bottom: 56.25%;
}
.game-iframe {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	border: none;
	border-radius: 20px;
}
.close-iframe{
	position: absolute;
	right: 17px;
	top: 30px;
	z-index: 2;
	display: block;
	width: 16px;
	height: 16px;
	background: url(../media/icon_close.png) no-repeat;
	background-size: 100%;
}

/*footer*/
.footer{
	background: url(../media/bg_footer.png) no-repeat;
	background-size: cover;
	padding: 50px 0px 23px;
}
.footer-nav{
	margin-bottom: 130px;
}
.footer-nav__list{
	display: flex;
	justify-content: space-between;
	margin: 0px;
	padding: 0px;
	list-style: none;
}
.footer-nav__link{
	font-size: 14px;
	line-height: 100%;
	text-decoration: none;
}
.footer__copyright{
	font-size: 16px;
	line-height: 100%;
	font-weight: 500;
	text-align: center;
	color: #F2FBFF;
}

/*cookies*/
.cookie-banner{
	position: fixed;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	max-width: 1296px;
	width: calc(100% - 40px);
	background: #ffffff;
	color: #000000;
	padding: 40px 60px;
	z-index: 1001;
}
.cookie-banner__container{
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.cookie-banner__text{
	max-width: 745px;
}
.cookie-banner__btns{
	display: flex;
}
.cookie-banner__btn{
	font-family: "Roboto", sans-serif;
	font-size: 16px;
	font-weight: 500;
	color: #000;
	text-transform: uppercase;
	white-space: nowrap;
	padding: 18px 32px;
	background: transparent;
	border: 1px solid #000;
	border-radius: 36px;
}
.btn--accept{
	background: #000;
	color: #fff;
	margin-right: 20px;
}

/*static*/
.main--static{
	padding: 100px 0px 80px;
}
.main--static p{
	margin: 0px 0px 40px;
}
.main--static ul{
	margin: 0px 0px 40px;
}

@media (max-width: 992px){

	body{
		font-size: 18px;
	}

	h1{
		font-size: 22px;
	}
	h2{
		font-size: 22px;
		margin: 0px 0px 20px;
	}
	h3{
		font-size: 18px;
		margin: 0px 0px 25px;
	}
	.static-title--h1{
		font-size: 22px;
		margin: 0px 0px 30px;
	}
	.static-title--h2{
		font-size: 15px;
		margin: 0px 0px 10px;
	}

	.show-mob{
		display: block;
	}

	/*header*/
	
	.header--fix{
		height: 100%;
		overflow: hidden;
	}
	.header__wrap{
		padding: 19px 0px;
	}
	.header--open{
		background: var(--bg--black);
	}
	.header--open:before{
		position: fixed;
		top: 0px;
		right: 0px;
		bottom: 0px;
		left: 0px;
		background: url(../media/bg_body.jpg) no-repeat;
		background-size: cover;
		content: "";
		z-index: -1;
	}
	.header__mob{
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
	.header__logo{
		width: 50px;
	}
	.btn-nav{
		display: flex;
		align-items: center;
		width: 18px;
		height: 12px;
		position: relative;
		cursor: pointer;
		z-index: 2;
		background: none;
		border: none;
		padding: 0px;
	}
	.btn-nav__line{
		position: relative;
		display: block;
		width: 100%;
		height: 2px;
		background: var(--text-primary);
		border-radius: 2px;

	}
	.btn-nav__line:before,
	.btn-nav__line:after{
		display: block;
		position: absolute;
		width: 100%;
		height: 100%;
		background: var(--text-primary);
		content: "";
		transition-duration: 0.3s, 0.3s;
		transition-delay: 0.3s, 0;
		border-radius: 2px;
	}
	.btn-nav__line:before{
		top: -5px;
	}
	.btn-nav__line:after{
		bottom: -5px;
	}
	.btn-nav--active .btn-nav__line{
		background-color: rgba(0, 0, 0, 0);
	}
	.btn-nav--active .btn-nav__line:before{
		transform: translateY(5px) rotate(45deg);
	}
	.btn-nav--active .btn-nav__line:after{
		transform: translateY(-5px) rotate(-45deg);
	}
	
	.header-nav{
		display: none;
	}
	.header-nav--open{
		display: block;
		position: absolute;
		top: 100%;
		left: 0px;
		width: calc(100% + 40px);
		background: var(--bg--black);
		padding: 40px 20px;
	}
	.header-nav__list{
		flex-direction: column;
		align-items: flex-start;
	}
	.header-nav__item{
		margin: 0px 0px 30px;
	}
	.header-nav__item:last-child{
		margin: 0px;
	}
	.header-nav__link{
		padding: 0px;
		font-size: 16px;
	}
	.header-nav__link:before{
		display: none;
	}

	/*content*/
	.main--static{
		font-size: 15px;
	}
	.main--static p{
		margin: 0px 0px 20px;
	}
	.main--static ul{
		margin: 0px 0px 20px;
	}

	section{
		padding: 30px 0px;
	}

	.hero{
		height: auto;
	}
	.hero__bg{
		display: none;
	}
	.hero__wrap{
		flex-direction: column;
		align-items: center;
	}
	.hero__logo{
		margin: 0px 0px 10px;
	}
	.title--hero{
		margin: 0px 0px 15px;
	}
	.hero__content{
		max-width: none;
		width: 100%;
	}
	.hero__text{
		margin: 0px 0px 35px;
	}
	.hero__img{
		width: 100%;
	}

	.section-col__wrap{
		flex-direction: column;
	}
	.section-col__content{
		width: 100%;
		margin: 0px 0px 30px;
	}
	.section-col__img{
		width: 100%;
	}
	
	.about__wrap{
		flex-direction: column-reverse;
	}

	.mechanic__wrap{
		flex-direction: column-reverse;
	}

	.opportunities__text{
		margin: 0px 0px 30px;
	}

	.pub-vibe__wrap{
		flex-direction: column-reverse;
	}

	.brewer__img{
		justify-content: flex-end;
	}
	.brewer__img img{
		position: relative;
		top: auto;
	}

	.play__img{
		justify-content: center;
	}
	.title--play{
		margin: 0px 0px 25px;
	}

	/*cookie*/
	.cookie-banner{
		padding: 20px 15px;
	}
	.cookie-banner__container{
		flex-direction: column;
	}
	.cookie-banner__text{
		margin: 0px 0px 40px;
	}
	.cookie-banner__btns{
		flex-direction: column;
	}
	.btn--accept{
		margin: 0px 0px 20px;
		font-weight: 300;
	}
}
@media (max-width: 768px){
	html{
		min-width: 350px;
	}

	.footer{
		background-position: center;
		padding: 23px 0px;
	}
	.footer-nav{
		margin-bottom: 90px;
	}
	.footer-nav__list{
		flex-direction: column;
	}
	.footer-nav__item{
		margin: 0px 0px 25px;
	}
	.footer-nav__item:last-child{
		margin: 0px;
	}
	.footer-nav__link{
		font-size: 16px;
	}
}