html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}main{display:block}h1{font-size:2em;margin:.67em 0}hr{box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace,monospace;font-size:1em}a{background-color:transparent}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}img{border-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}button,[type="button"],[type="reset"],[type="submit"]{-webkit-appearance:button}button::-moz-focus-inner,[type="button"]::-moz-focus-inner,[type="reset"]::-moz-focus-inner,[type="submit"]::-moz-focus-inner{border-style:none;padding:0}button:-moz-focusring,[type="button"]:-moz-focusring,[type="reset"]:-moz-focusring,[type="submit"]:-moz-focusring{outline:1px dotted ButtonText}fieldset{padding:.35em .75em .625em}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{vertical-align:baseline}textarea{overflow:auto}[type="checkbox"],[type="radio"]{box-sizing:border-box;padding:0}[type="number"]::-webkit-inner-spin-button,[type="number"]::-webkit-outer-spin-button{height:auto}[type="search"]{-webkit-appearance:textfield;outline-offset:-2px}[type="search"]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details{display:block}summary{display:list-item}template{display:none}[hidden]{display:none}

.glide{position:relative;width:100%;box-sizing:border-box}.glide *{box-sizing:inherit}.glide__track{overflow:hidden}.glide__slides{position:relative;width:100%;list-style:none;backface-visibility:hidden;transform-style:preserve-3d;touch-action:pan-Y;overflow:hidden;padding:0;white-space:nowrap;display:flex;flex-wrap:nowrap;will-change:transform}.glide__slides--dragging{user-select:none}.glide__slide{width:100%;height:100%;flex-shrink:0;white-space:normal;user-select:none;-webkit-touch-callout:none;-webkit-tap-highlight-color:transparent}.glide__slide a{user-select:none;-webkit-user-drag:none;-moz-user-select:none;-ms-user-select:none}.glide__arrows{-webkit-touch-callout:none;user-select:none}.glide__bullets{-webkit-touch-callout:none;user-select:none}.glide--rtl{direction:rtl}
.glide__arrow{position:absolute;display:block;top:50%;z-index:2;color:white;text-transform:uppercase;padding:9px 12px;background-color:transparent;border:2px solid rgba(255,255,255,0.5);border-radius:4px;box-shadow:0 0.25em 0.5em 0 rgba(0,0,0,0.1);text-shadow:0 0.25em 0.5em rgba(0,0,0,0.1);opacity:1;cursor:pointer;transition:opacity 150ms ease, border 300ms ease-in-out;transform:translateY(-50%);line-height:1}.glide__arrow:focus{outline:none}.glide__arrow:hover{border-color:white}.glide__arrow--left{left:2em}.glide__arrow--right{right:2em}.glide__arrow--disabled{opacity:0.33}.glide__bullets{position:absolute;z-index:2;bottom:2em;left:50%;display:inline-flex;list-style:none;transform:translateX(-50%)}.glide__bullet{background-color:rgba(255,255,255,0.5);width:9px;height:9px;padding:0;border-radius:50%;border:2px solid transparent;transition:all 300ms ease-in-out;cursor:pointer;line-height:0;box-shadow:0 0.25em 0.5em 0 rgba(0,0,0,0.1);margin:0 0.25em}.glide__bullet:focus{outline:none}.glide__bullet:hover,.glide__bullet:focus{border:2px solid white;background-color:rgba(255,255,255,0.5)}.glide__bullet--active{background-color:white}.glide--swipeable{cursor:grab;cursor:-moz-grab;cursor:-webkit-grab}.glide--dragging{cursor:grabbing;cursor:-moz-grabbing;cursor:-webkit-grabbing}

* {
	box-sizing: border-box;
}

*:focus {
	outline: none;
}

@font-face {
	font-family: HeliosCond;
	src: url('../fonts/helios_regular.woff2') format('woff2'),
		 url('../fonts/helios_regular.woff') format('woff');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: HeliosCond;
	src: url('../fonts/helios_bold.woff2') format('woff2'),
		 url('../fonts/helios_bold.woff') format('woff');
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: TippyToes Bold;
	src: url('../fonts/TippytoesXTraBold.woff2') format('woff2'),
		 url('../fonts/TippytoesXTraBold.woff') format('woff');
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}


body {
	width: 100%;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	background: #171831;
	font-family: 'Mulish', Arial, sans-serif;
	font-weight: 400;
	font-size: 18px;
	line-height: 24px;
	color: #fff;
	margin: 0 !important;
}

a {
	text-decoration: none;
	cursor: pointer;
	transition: .3s ease-in-out;
}

p {
	margin: 0;
}

button {
	cursor: pointer;
	background-color: transparent;
	transition: .2s ease-in-out;
	outline: none;
}

.wrap {
	width: 100%;
	max-width: 1104px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	padding-left: 40px !important;
	padding-right: 40px !important;
}

.main-block {
	width: 100%;
	background: #23254B;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 24px;
	padding: 48px 40px 64px 40px;
	margin-bottom: 48px;
	display: flex;
	flex-direction: column;
}

.main-block__title {
	font-family: HeliosCond;
	text-align: center;
	font-weight: 700;
	font-size: 32px;
	line-height: 36px;
	text-transform: uppercase;
	margin-bottom: 32px;
}

.main-header {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	overflow: hidden;
}

.main-header img {
	width: 100%;
	height: auto;
}

.main-title {
	font-family: HeliosCond;
	font-weight: 700;
	font-size: 48px;
	line-height: 52px;
	text-transform: uppercase;
	text-align: center;
	padding: 0 16px;
	margin-top: -11%;
	margin-bottom: 32px;
}

.background-star {
	background: url('../img/bg.png');
	background-position: center center !important;
	background-repeat: no-repeat !important;
	background-size: cover !important;
	width: 100%;
}

.catch-block {
	position: relative;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-bottom: 32px;
}

.catch-block__basket {
	width: 72px;
	height: 72px;
	border-radius: 100%;
	background: #84C639;
	box-shadow: 0px 4px 28px 0px rgba(128, 204, 40, 0.45);
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	top: 50%;
	right: -7%;
	transform: translateY(-50%);
}

.catch-block__basket:hover {
	background: #98DA4D;
}

.catch-block__img {
	width: 100%;
	height: auto;
	max-width: 848px;
}

.catch-container {
	display: flex;
	align-items: center;
	max-width: 848px;
	margin-top: -165px;
	margin-bottom: 65px;
}

.catch-container__block {
	border-radius: 60px;
	background: #3CA471;
	box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.32);
	padding: 20px 48px;
	margin-right: 8px;
	font-weight: 700;
	font-size: 16px;
	line-height: 24px;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.catch-container__block:first-child {
	background: #068EC8;
}

.catch-container__block:last-child {
	background: #AA118E;
	margin-right: 0;
}

.catch-container__numbers {
	font-family: TippyToes Bold;
	font-weight: 700;
	font-size: 36px;
	line-height: 36px;
	text-transform: uppercase;
}

.catch-text {
	width: 100%;
	max-width: 848px;
	font-size: 18px;
	line-height: 24px;
	text-align: center;
	margin: 0 auto 64px;
}

.what-in-a-box__main-block {
	padding-left: 64px;
	padding-right: 64px;
}

.what-in-a-box__img {
	width: 100%;
	height: auto;
	margin-bottom: 64px;
}

.what-in-a-box__container {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: 1fr;
	grid-column-gap: 32px;
	grid-row-gap: 0px;
}

.what-in-a-box__container ul {
	list-style: none;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	padding: 0;
	margin: 0 0 0 6px;
	font-weight: 500;
	font-size: 16px;
	line-height: 24px;
}

.what-in-a-box__container li {
	margin-bottom: 12px;
	margin-left: 12px;
	position: relative;
}

.what-in-a-box__container li:last-child {
	margin-bottom: 0;
}

.what-in-a-box__container li:before {
	content: "";
	width: 6px;
	height: 6px;
	background: #068EC8;
	border-radius: 100%;
	display: block;
	flex: none;
	position: absolute;
	top: 8px;
	left: -18px;
}

.goal-game__block {
	background: url(../img/goal-game.png?1);
	background-position: center center !important;
	background-repeat: no-repeat !important;
	background-size: cover !important;
	width: 100%;
	padding: 48px 64px 64px 64px;
	border-radius: 24px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	margin-bottom: 80px;
}

.goal-game__title {
	display: block;
	font-family: HeliosCond;
	font-weight: 700;
	font-size: 32px;
	line-height: 36px;
	text-align: center;
	text-transform: uppercase;
	margin: 0 auto 32px;
}

.goal-game__container {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
}

.goal-game__item {
	padding: 12px 24px;
	border-radius: 28px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	background: #23254B;
	margin-right: 4px;
	margin-bottom: 8px;
	font-weight: 700;
	font-size: 16px;
	line-height: 24px;
	/* flex: none; */
}

.goal-game__item:last-child {
	margin-bottom: 0;
}

.about-what {
	position: relative;
}

.about-what .background-star {
	background: url('../img/bg2.png');
	position: absolute;
	width: 100%;
	height: 660px;
	transform: translateY(20%);
	top: 0;
	left: 0;
	z-index: -1;
}

.about-what__title {
	display: block;
	font-family: HeliosCond;
	font-weight: 700;
	font-size: 32px;
	line-height: 36px;
	text-transform: uppercase;
	text-align: center;
	margin: 0 auto 47px;
	width: 100%;
	max-width: 848px;
}

.about-what__text {
	font-weight: 500;
	font-size: 16px;
	line-height: 24px;
	margin: 0 auto 32px;
	width: 100%;
	max-width: 848px;
}

.about-what__text:last-child {
	margin-bottom: 84px;
}

.buy-game {
	flex-direction: row;
	align-items: center;
	padding: 30px 40px 34px 0;
}

.buy-game__img {
	width: 60%;
	height: auto;
	transform: translateX(-12%);
}

.buy-game__text {
	flex: none;
	width: 50%;
	margin-left: -10%;
	padding: 18px 0 30px 0;
	font-weight: 500;
	font-size: 16px;
	line-height: 24px;
}

.buy-game__text p {
	margin-bottom: 8px;
}

.buy-game__title {
	display: block;
	font-family: HeliosCond;
	font-weight: 700;
	font-size: 32px;
	line-height: 36px;
	text-transform: uppercase;
	margin-bottom: 32px;
}

.buy-game__subtitle {
	display: block;
	font-family: HeliosCond;
	font-weight: 700;
	font-size: 24px;
	line-height: 28px;
	text-transform: uppercase;
	margin-bottom: 16px;
} 

.buy-game__address {
	display: flex;
	align-items: center;
	font-weight: 500;
	font-size: 16px;
	line-height: 24px;
	margin-bottom: 48px;
	color: rgba(255, 255, 255, 0.80);
}

.buy-game__address img {
	margin-right: 8px;
}

.buy-game__buttons {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}

.buy-game__button {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 16px 44px;
	border-radius: 72px;
	background: #84C639;
	box-shadow: 0px 4px 28px 0px rgba(128, 204, 40, 0.45);
	font-weight: 900;
	font-size: 16px;
	line-height: 24px;
	color: #fff;
	width: fit-content;
}

.buy-game__button:hover {
	background: #98DA4D;
}

.buy-game__button-icon {
	margin-left: 8px;
}

.buy-game__button:last-child {
	background: #007FC8;
	box-shadow: 0px 4px 28px 0px rgba(43, 159, 225, 0.45);
	margin-left: 16px;
}

.buy-game__button:last-child:hover {
	background: #2B9FE1;
}

.there-is-also__text {
	font-weight: 500;
	font-size: 16px;
	line-height: 24px;
	margin-bottom: 48px;
	max-width: 848px;
}

.game-main__text {
	text-align: center;
	font-weight: 500;
	font-size: 16px;
	line-height: 24px;
	max-width: 672px;
	margin: 0 auto 48px;
}

.game-main__container {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	width: 100%;
}

.game-main__left {
	width: 56%;
}

.game-main__iframe {
	width: 100%;
	height: 294px;
	margin-bottom: 20px;
}

.game-main__question, .game__question {
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.game-main__question-block, .game__question-block {
	width: 100%;
	padding: 16px 0;
	display: flex;
	align-items: center;
	cursor: pointer;
}

.game-main__question-block span, .game__question-block span {
	font-weight: 700;
	font-size: 16px;
	line-height: 20px;
	width: 100%;
	margin-right: 20px;
}

.game-main__question-block svg, .game__question-block svg {
	flex: none;
}

.game-main__question-block:hover svg path, .game__question-block:hover svg path {
	stroke: #068EC8;
}

.game-main__question-text, .game__question-text {
	display: none;
	width: 100%;
	font-weight: 400;
	font-size: 14px;
	line-height: 20px;
	padding-bottom: 24px;
}

.game-main__question.active .game-main__question-text, .game__question.active .game__question-text {
	display: block;
}

.game-main__question.active svg, .game__question.active svg {
	transform: rotate(180deg);
}

.game-main__right {
	width: 40%;
}

.game-main__answer-title, .game__answer-title {
	display: block;
	font-family: HeliosCond;
	font-weight: 700;
	font-size: 20px;
	line-height: 24px;
	text-transform: uppercase;
	margin-bottom: 20px;
}

.game-main__answer-container, .game__answer-container {
	display: grid;
	grid-template-rows: 1fr;
	grid-template-columns: 1fr;
	grid-row-gap: 8px;
}

.game-main__answer-block, .game__answer-block {
	width: 100%;
	padding: 12px 24px 12px 8px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 12px;
	cursor: pointer;
}

.game-main__answer-block:hover, .game__answer-block:hover {
	background: #2E3054;
}

.game-main__answer-block ul, .game__answer-block ul {
	list-style: none;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	padding: 0;
	margin: 0 0 0 20px;
	font-weight: 700;
	font-size: 16px;
	line-height: 20px;
}

.game-main__answer-block li, .game__answer-block li {
	margin-bottom: 0;
	margin-left: 4px;
	position: relative;
}

.game-main__answer-block li:before, .game__answer-block li:before {
	content: "";
	width: 8px;
	height: 8px;
	background: #068EC8;
	border-radius: 100%;
	display: block;
	flex: none;
	position: absolute;
	top: 6px;
	left: -20px;
}

.game-main__answer-block span {
	display: none;
	margin-top: 8px;
	padding-left: 24px;
	font-weight: 400;
	font-size: 16px;
	line-height: 20px;
}

.game-main__answer-block.active li {
	color: #FF6099;
}

.game-main__answer-block.active li:before {
	width: 20px;
	height: 20px;
	background: transparent;
	background-image: url('/img/answer-main-error.svg?1');
	border-radius: 0;
	top: 0;
	left: -24px;
}

.game-main__answer-block.active span {
	display: block;
}

.game-main__answer-block.game-main__answer-block_right.active li {
	color: #2AE798;
}

.game-main__answer-block.game-main__answer-block_right.active li:before {
	background-image: url('/img/answer-main-true.svg');
}

.game-main__next, .game__next {
	display: flex;
	align-items: center;
	margin: 48px auto 0;
	font-weight: 900;
	font-size: 16px;
	line-height: 24px;
	width: fit-content;
	cursor: pointer;
	color: #fff;
}

.game-main__next {
	pointer-events: none;
}

.game-main__next.active {
	pointer-events: auto;
}

.game-main__next img, .game__next img {
	margin-left: 8px;
}

.main-slider__slide {
	font-weight: 700;
	font-size: 16px;
	line-height: 20px;
}

.main-slider .glide__arrow {
	width: 44px;
	height: 44px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	background: #2E3054;
	box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.32);
	border-radius: 100%;
}

.main-slider .glide__arrow:hover {
	background: #424468;
}

.main-slider .glide__arrow--left {
	left: -1em;
}

.main-slider .glide__arrow--right {
	right: -1em;
}

.main-slider .glide__arrow--left img {
	transform: rotate(180deg);
}

.main-slider__slide img {
	width: 100%;
	height: auto;
	margin-bottom: 20px;
}

.game-header {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
}

.game-header__logo {
	width: 58px;
	height: 64px;
}

.game-wrap {
	max-width: 752px;
	min-height: calc(100vh - 272px);
}

.game__iframe {
	width: 100%;
	height: 376px;
	margin-bottom: 12px;
}

.game-question {
	margin-top: 12px;
}

.game__question {
	margin-bottom: 32px;
}

.game__answer-title {
	font-size: 24px;
	line-height: 28px;
	text-align: center;
	margin-bottom: 24px;
}

.game__answer-container {
	max-width: 512px;
	margin: 0 auto 100px;
}

.game__answer-block {
	background:#23254B;
}

.game-answer__title {
	display: block;
	font-family: HeliosCond;
	font-weight: 700;
	font-size: 30px;
	line-height: 32px;
	text-transform: uppercase;
	margin-bottom: 16px;
}

.game-answer__img {
	width: 100px;
	height: 100px;
	margin-bottom: 48px;
}

.game-answer__text {
	font-size: 16px;
	line-height: 20px;
	text-align: center;
}

footer {
	background: #131327;
	color: rgba(255, 255, 255, 0.80);
	font-size: 14px;
	line-height: 20px;
	margin: auto 0 0;
}

.footer-wrap {
	flex-direction: row;
	align-items: flex-start;
	justify-content: space-between;
	padding: 32px 0 64px;
}

.footer-wrap__left {
	max-width: 492px;
	margin-right: 12px;
}

.footer-wrap__left p:first-child {
	margin-bottom: 12px;
}

.footer-wrap__presscode {
	flex: none;
}

.game-answer {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	margin: 124px 0 172px 0;
	min-height: calc(100vh - 568px);
}

.game-question, .game-wrong, .game-correctly {
	display: none;
}

.game-question.active {
	display: block;
}

.game-wrong.active, .game-correctly.active {
	display: flex;
}

.main-block__video {
	width: 100%;
	height: 528px;
}

@media only screen and (max-width:1200px){
	.catch-block__basket {
		right: -20px;
	}
}

@media only screen and (max-width:1000px){
	.buy-game__button {
		padding: 10px 28px;
	}
	
	.buy-game__button-name {
		width: 80px;
		height: auto;
	}
	
	.buy-game__button-icon {
		width: 20px;
		height: auto;
	}
	
	.buy-game__button:last-child {
		margin-left: 8px;
	}
	
	.buy-game__button:last-child .buy-game__button-name {
		width: 63px;
		height: auto;
	}
}

@media only screen and (max-width:768px){
	.game-main__container {
		flex-direction: column;
	}
	
	.game-main__left {
		width: 100%;
		margin-bottom: 32px;
	}
	
	.game-main__right {
		width: 100%;
	}
	
	.game-main__iframe {
		height: 326px;
	}
	
	.game-answer {
		margin: 112px 0;
	}
	
	.game-answer__text {
		margin-bottom: 48px;
	}
	
	.game__next {
		margin-top: auto;
	}
	
	.footer-wrap__left {
		max-width: 420px;
	}
	
	.main-title {
		font-size: 30px;
		line-height: 32px;
		margin-bottom: 20px;
	}
	
	.catch-container {
		margin-top: -135px;
	}
	
	.catch-container__block {
		font-size: 14px;
		line-height: 20px;
		padding: 12px 32px;
	}
	
	.catch-container__numbers {
		font-size: 24px;
		line-height: 24px;
	}
	
	.catch-block__basket {
		width: 52px;
		height: 52px;
		top: auto;
		bottom: 8px;
		transform: none;
	}
	
	.catch-block__basket img {
		width: 24px;
		height: 24px;
	}
	
	.catch-text {
		font-size: 16px;
	}
	
	.main-block__title {
		font-size: 23px;
		line-height: 24px;
		margin-bottom: 24px;
	}
	
	.what-in-a-box__main-block {
		padding-left: 40px;
		padding-right: 40px;
	}
	
	.what-in-a-box__img {
		margin-bottom: 40px;
	}
	
	.what-in-a-box__container {
		grid-column-gap: 20px;
	}
	
	.goal-game__block {
		padding: 40px 40px 48px 40px;
		margin-bottom: 64px;
	}
	
	.goal-game__title {
		font-size: 23px;
		line-height: 24px;
		margin-bottom: 24px;
	}
	
	.goal-game__item {
		margin-bottom: 4px;
	}
	
	.about-what .background-star {
		transform: translateY(-30%);
		height: 412px;
	}
	
	.about-what__title {
		margin-bottom: 24px;
		font-size: 23px;
		line-height: 24px;
	}
	
	.about-what__text {
		margin-bottom: 24px;
	}
	
	.about-what__text:last-child {
		margin-bottom: 64px;
	}
	
	.buy-game {
		padding: 40px 40px 48px 0;
	}
	
	.buy-game__text {
		padding: 0;
		font-size: 14px;
		line-height: 20px;
		margin-left: -12%;
	}
	
	.buy-game__title {
		font-size: 23px;
		line-height: 24px;
		margin-bottom: 24px;
	}
	
	.buy-game__img {
		width: 66%;
		transform: translateX(-10%);
	}
	
	.there-is-also__text {
		margin-bottom: 28px;
	}
	
	.buy-game__subtitle {
		font-size: 20px;
		line-height: 20px;
		margin-bottom: 12px;
	}
	
	.buy-game__address {
		margin-bottom: 40px;
		align-items: flex-start;
	}
	
	.buy-game__address img {
		margin-top: 4px;
	}
	
	.buy-game__button {
		margin-bottom: 4px;
	}
	
	.main-block__video {
		height: 340px;
	}
}

@media only screen and (max-width:525px){
	.main-header img {
		width: calc(100% + 100px);
	}
	
	.game-main__iframe {
		height: 200px;
	}
	
	.wrap {
		padding-left: 20px !important;
		padding-right: 20px !important;
	}
	
	.main-block {
		width: calc(100% + 40px);
		margin-left: -20px;
		padding: 40px 16px 48px 16px;
		margin-bottom: 16px;
	}
	
	.game-wrap {
		padding-left: 16px !important;
		padding-right: 16px !important;
	}
	
	.game__iframe {
		margin-left: -16px;
		width: calc(100% + 32px);
		height: 200px;
	}
	
	.game__answer-container {
		margin-bottom: 64px;
	}
	
	.footer-wrap {
		padding-left: 16px !important;
		padding-right: 16px !important;
		flex-direction: column;
	}
	
	.footer-wrap__presscode {
		margin-top: 40px;
	}
	
	.catch-block__img {
		width: calc(100% + 40px);
		margin-left: -20px;
	}
	
	.catch-block__basket {
		right: 0;
	}
	
	.catch-container {
		flex-direction: column;
		margin-top: -48px;
	}
	
	.catch-container__block {
		margin-bottom: 8px;
	}
	
	.catch-text {
		text-align: start;
	}
	
	.what-in-a-box__container {
		grid-template-columns: 1fr;
		grid-row-gap: 12px;
	}
	
	.goal-game__block {
		width: calc(100% + 40px);
		padding: 40px 20px 48px 20px;
		margin-left: -20px;
	}
	
	.buy-game {
		flex-direction: column;
		overflow: hidden;
	}
	
	.buy-game__img {
		width: calc(100% + 80px);
		transform: none;
		margin-left: 60px;
		margin-bottom: 28px;
	}
	
	.buy-game__title {
		text-align: center;
	}
	
	.buy-game__text {
		width: 100%;
		margin-left: 0;
	}
	
	.main-slider {
		width: calc(100% - 40px);
		margin: 0 auto;
	}
	
	.main-slider__slide {
		font-size: 12px;
	}
	
	.main-slider__slide img {
		margin-bottom: 12px;
	}
	
	.main-block__video {
		height: 200px;
	}
}

@media only screen and (max-width:360px){
	.game-main__iframe {
		height: 190px;
	}
}