/* Slider */

.slick-slider {
	position: relative;
	display: block;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-touch-callout: none;
	-khtml-user-select: none;
	-ms-touch-action: pan-y;
	touch-action: pan-y;
	-webkit-tap-highlight-color: transparent;
}

.visually-hidden {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	border: 0;
	padding: 0;
	white-space: nowrap;
	clip-path: inset(100%);
	clip: rect(0 0 0 0);
	overflow: hidden;
}

.slick-list {
	position: relative;
	display: block;
	overflow: hidden;
	margin: 0;
	padding: 0;
}

.slick-list:focus {
	outline: none;
}

.slick-list.dragging {
	cursor: pointer;
	cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
	-webkit-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}

.slick-track {
	position: relative;
	top: 0;
	left: 0;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.slick-track:before,
.slick-track:after {
	display: table;
	content: '';
}

.slick-track:after {
	clear: both;
}

.slick-loading .slick-track {
	visibility: hidden;
}

.slick-slide {
	display: none;
	float: left;
	height: 100%;
	min-height: 1px;
}

[dir='rtl'] .slick-slide {
	float: right;
}

.slick-slide img {
	display: block;
}

.slick-slide.slick-loading img {
	display: none;
}

.slick-slide.dragging img {
	pointer-events: none;
}

.slick-initialized .slick-slide {
	display: block;
}

.slick-loading .slick-slide {
	visibility: hidden;
}

.slick-vertical .slick-slide {
	display: block;
	height: auto;
	border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
	display: none;
}

*,
:before,
:after {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

* {
	margin: 0;
	padding: 0;
	outline: 0;
	border: none;
	-webkit-text-size-adjust: 100%;
}

a {
	cursor: pointer;
}

a:hover {
	text-decoration: none;
}

p b {
	color: #d10000;
}

img {
	display: block;
	max-width: 100%;
}

ul,
ol {
	list-style: none;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Montserrat', sans-serif;
	font-size: 16px;
	line-height: 1;
	position: relative;
}

body:after {
	content: '';
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
	background-color: rgba(0, 0, 0, 0.5);
	opacity: 0;
	-webkit-transition: opacity 0.5s;
	-o-transition: opacity 0.5s;
	transition: opacity 0.5s;
}

body[data-fix] {
	overflow: hidden;
}

body[data-fix]:after {
	background-color: rgba(0, 0, 0, 0.5);
	position: absolute;
	opacity: 1;
	z-index: 1;
}

.wrapper {
	overflow: hidden;
	max-width: 1920px;
	margin: 0 auto;
}

.container {
	max-width: 425px;
	padding: 0 15px;
	margin: 0 auto;
}

.icons {
	visibility: hidden;
	opacity: 0;
	width: 0;
	height: 0;
	position: absolute;
	top: 10px;
	left: 10px;
	display: block;
}

.menu {
	position: absolute;
	top: 0;
	right: 0;
	padding: 30px 15px;
}

.menu__case {
	padding: 60px 30px;
	position: fixed;
	z-index: 1;
	width: 80%;
	height: 100%;
	top: 0;
	right: 0;
	background: #ffffff;
	-webkit-transition: -webkit-transform 0.3s;
	transition: -webkit-transform 0.3s;
	-o-transition: transform 0.3s;
	transition: transform 0.3s;
	transition:
		transform 0.3s,
		-webkit-transform 0.3s;
	-webkit-transform: translateX(100%);
	-ms-transform: translateX(100%);
	transform: translateX(100%);
}

.menu__case[data-open] {
	-webkit-transform: translateX(0);
	-ms-transform: translateX(0);
	transform: translateX(0);
	z-index: 2;
}

.menu__point {
	display: table;
	padding: 15px 0 10px;
	font-size: 12px;
	font-weight: bold;
	text-transform: uppercase;
	cursor: pointer;
	position: relative;
	text-decoration: none;
	color: inherit;
}

.menu__point:before {
	content: '';
	width: 14px;
	height: 4px;
	border-radius: 4px;
	background: #d10000;
	position: absolute;
	bottom: 0;
	left: 0;
	-webkit-transition: -webkit-transform 0.2s ease-in-out;
	transition: -webkit-transform 0.2s ease-in-out;
	-o-transition: transform 0.2s ease-in-out;
	transition: transform 0.2s ease-in-out;
	transition:
		transform 0.2s ease-in-out,
		-webkit-transform 0.2s ease-in-out;
	-webkit-transform: scale(0, 1);
	-ms-transform: scale(0, 1);
	transform: scale(0, 1);
	opacity: 0.4;
}

.menu__point:hover:before {
	-webkit-transform: scale(1, 1);
	-ms-transform: scale(1, 1);
	transform: scale(1, 1);
}

.menu__point[data-visible]:before {
	-webkit-transform: scale(1, 1);
	-ms-transform: scale(1, 1);
	transform: scale(1, 1);
	opacity: 1;
}

.menu__open {
	width: 20px;
	height: 16px;
	position: relative;
	cursor: pointer;
	z-index: 2;
}

.menu__open:before,
.menu__open:after {
	content: '';
	width: 100%;
	height: 2px;
	border-radius: 2px;
	background: rgba(0, 0, 0, 0.85);
	position: absolute;
	top: 50%;
	left: 50%;
	margin-left: -10px;
	-webkit-transition:
		background-color 0.3s,
		-webkit-transform 0.3s;
	transition:
		background-color 0.3s,
		-webkit-transform 0.3s;
	-o-transition:
		transform 0.3s,
		background-color 0.3s;
	transition:
		transform 0.3s,
		background-color 0.3s;
	transition:
		transform 0.3s,
		background-color 0.3s,
		-webkit-transform 0.3s;
}

.menu__open:before {
	-webkit-transform: translateY(-8px);
	-ms-transform: translateY(-8px);
	transform: translateY(-8px);
}

.menu__open:after {
	-webkit-transform: translateY(6px);
	-ms-transform: translateY(6px);
	transform: translateY(6px);
}

.menu__open b {
	width: 100%;
	height: 2px;
	background: rgba(0, 0, 0, 0.85);
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -1px 0 0 -10px;
	-webkit-transition:
		background-color 0.3s,
		-webkit-transform 0.3s;
	transition:
		background-color 0.3s,
		-webkit-transform 0.3s;
	-o-transition:
		transform 0.3s,
		background-color 0.3s;
	transition:
		transform 0.3s,
		background-color 0.3s;
	transition:
		transform 0.3s,
		background-color 0.3s,
		-webkit-transform 0.3s;
}

.menu__open[data-active]:before {
	-webkit-transform: rotate(45deg) translateY(0);
	-ms-transform: rotate(45deg) translateY(0);
	transform: rotate(45deg) translateY(0);
	background-color: #d10000;
}

.menu__open[data-active]:after {
	-webkit-transform: rotate(-45deg) translateY(0);
	-ms-transform: rotate(-45deg) translateY(0);
	transform: rotate(-45deg) translateY(0);
	background-color: #d10000;
}

.menu__open[data-active] b {
	-webkit-transform: scale(0, 1);
	-ms-transform: scale(0, 1);
	transform: scale(0, 1);
	background-color: #d10000;
}

header {
	padding: 20px 0;
	position: fixed;
	width: 100%;
	top: 0;
	left: 0;
	z-index: 3;
	background: rgba(231, 239, 247, 0.7);
}

.logo {
	color: #d10000;
	display: table;
}

.logo svg {
	display: inline-block;
	vertical-align: middle;
	fill: #d10000;
	width: 40px;
	height: 40px;
}

.logo b {
	display: inline-block;
	vertical-align: middle;
	font-size: 24px;
	padding-left: 10px;
}

.top {
	background: url('../img/top_bg.jpg') 25% top no-repeat;
	background-size: cover;
	padding: 80px 0 0;
	position: relative;
	z-index: 1;
}

.top__decore {
	opacity: 0.4;
	width: 340px;
	height: 340px;
	position: absolute;
	top: 0;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	margin: 80px 0 0;
	stroke: #fff;
	stroke-dasharray: 100;
	-webkit-animation: dash infinite 10s ease-in;
	animation: dash infinite 10s ease-in;
}

.top__photo {
	position: relative;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	max-width: 300px;
	margin-bottom: 20px;
}

.top__case:before {
	content: '';
}

h1 {
	font-size: 24px;
	line-height: 1.2;
	padding: 15px 0;
	position: relative;
}

h1 span {
	color: #d10000;
}

.top__subtitle {
	position: relative;
	color: #666;
	line-height: 1.2;
}

.form__wrap {
	position: relative;
	text-align: center;
}

.form__wrap img {
	max-width: 45%;
	position: absolute;
	top: 100%;
	right: 140px;
	margin: -30px 20px 0 0;
}

form {
	background: #ffffff;
	width: 100%;
	min-width: 320px;
	padding: 45px 25px 50px;
	position: relative;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	overflow: hidden;
	-webkit-box-shadow: 0 50px 50px -25px rgba(0, 0, 0, 0.1);
	box-shadow: 0 50px 50px -25px rgba(0, 0, 0, 0.1);
}

form h4 {
	font-size: 24px;
	line-height: 1.3;
	color: #09769f;
	margin-bottom: 20px;
}

.form__mark {
	position: absolute;
	top: 0;
	left: 0;
	font-size: 22px;
	font-weight: bold;
	color: #ffffff;
	text-transform: uppercase;
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
	width: 144px;
	height: 144px;
	background: #09769f;
	padding: 75px 0 0;
	margin: -40px 0 0 -40px;
	border-radius: 50%;
	z-index: 1;
}

.price {
	padding: 10px 0 15px;
}

.price s {
	display: inline-block;
	-webkit-text-decoration: line-through #09769f;
	text-decoration: line-through #09769f;
	font-size: 16px;
	font-weight: bold;
}

.price b {
	display: inline-block;
	color: #09769f;
	font-size: 24px;
	padding-left: 10px;
}

.form__field {
	position: relative;
	border: 2px solid #f1f3f8;
	border-radius: 40px;
	margin-bottom: 15px;
}

.form__field_select:before {
	content: '';
	border: 5px solid transparent;
	border-top-color: #666666;
	position: absolute;
	top: 50%;
	right: 0;
	margin: -2px 15px 0 0;
}

select,
option,
input {
	display: block;
	width: 100%;
	padding: 15px;
	color: #666666;
	font-weight: bold;
	font-size: 16px;
	-moz-text-align-last: center;
	text-align-last: center;
	background: none;
	position: relative;
	border-radius: 40px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

select::-ms-expand {
	display: none;
}

.button,
button {
	display: block;
	width: 100%;
	max-width: 280px;
	cursor: pointer;
	padding: 15px;
	text-align: center;
	margin: 0 auto;
	border: none;
	color: #ffffff;
	font-size: 16px;
	line-height: 1.5;
	font-weight: bold;
	border-radius: 40px;
	background: #0499cf;
	box-shadow: 0 8px 24px rgb(93 183 217);
	-webkit-transition:
		-webkit-transform 0.3s,
		-webkit-box-shadow 0.3s;
	transition:
		-webkit-transform 0.3s,
		-webkit-box-shadow 0.3s;
	-o-transition:
		transform 0.3s,
		box-shadow 0.3s;
	transition:
		transform 0.3s,
		box-shadow 0.3s;
	transition:
		transform 0.3s,
		box-shadow 0.3s,
		-webkit-transform 0.3s,
		-webkit-box-shadow 0.3s;
	text-decoration: none;
}

.button {
	margin: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

button:hover {
	-webkit-transform: translateY(5px);
	-ms-transform: translateY(5px);
	transform: translateY(5px);
	-webkit-box-shadow: 0 3px 15px rgba(209, 0, 0, 0.7);
	box-shadow: 0 3px 15px rgba(209, 0, 0, 0.7);
}

button.slick-arrow {
	font-size: 0;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	z-index: 1;
	background-image: url('//viposidn.com/content/RRSrD5YCxSFLQCy/img/arrow.svg');
	background-repeat: no-repeat;
	background-color: rgba(255, 255, 255, 0.5);
	background-size: contain;
	-webkit-box-shadow: none;
	box-shadow: none;
	position: absolute;
	top: 50%;
	margin: -12px -17px 0;
}

button.slick-prev {
	-webkit-transform: scale(-1, 1);
	-ms-transform: scale(-1, 1);
	transform: scale(-1, 1);
	left: 0;
}

button.slick-prev:hover {
	-webkit-transform: scale(-1, 1) translateX(5px);
	-ms-transform: scale(-1, 1) translateX(5px);
	transform: scale(-1, 1) translateX(5px);
}

button.slick-next {
	right: 0;
}

button.slick-next:hover {
	-webkit-transform: translateX(5px);
	-ms-transform: translateX(5px);
	transform: translateX(5px);
}

.timer {
	font-size: 32px;
	font-weight: bold;
	text-align: center;
}

.timer:before {
	content: '';
	width: 160px;
	height: 2px;
	background: #f1f3f8;
	display: block;
	margin: 30px auto;
}

.timer div {
	display: inline-block;
	vertical-align: bottom;
	padding: 0 10px;
}

.timer div:last-child b {
	color: #d10000;
}

.timer span {
	font-size: 10px;
	color: #666666;
	display: block;
	font-weight: bold;
}

.timer b {
	font-size: 32px;
	display: block;
	padding-top: 15px;
	width: 45px;
}

.description {
	padding: 40px 0 80px;
	position: relative;
}

.description svg {
	width: 480px;
	height: 480px;
	stroke: #f1f3f8;
	position: absolute;
	top: 0;
	right: 0;
	-webkit-transform: translate(240px, 0);
	-ms-transform: translate(240px, 0);
	transform: translate(240px, 0);
	stroke-dasharray: 100;
	-webkit-animation: dash infinite 10s ease-in;
	animation: dash infinite 10s ease-in;
}

.description__case {
	position: relative;
	padding-top: 25px;
}

.title {
	position: relative;
	font-size: 24px;
	line-height: 1.3;
	padding-bottom: 20px;
	text-align: center;
}

.title span {
	-webkit-box-shadow: inset 0 -8px 0 #d10000;
	box-shadow: inset 0 -8px 0 #d10000;
}

.title_left {
	text-align: left;
}

.subtitle {
	position: relative;
	font-size: 16px;
	line-height: 1.4;
	color: #666666;
	padding-bottom: 20px;
	text-align: center;
}

.subtitle_left {
	text-align: left;
}

.description__list {
	position: relative;
	line-height: 1.5;
}

.description__list li {
	display: table;
	width: 100%;
	padding: 15px 0 15px 75px;
	min-height: 80px;
	position: relative;
}

.description__list li span {
	display: table-cell;
	vertical-align: middle;
}

.description__list li:before {
	content: '';
	background-image: url('//viposidn.com/content/RRSrD5YCxSFLQCy/img/description_sprite.png');
	background-repeat: no-repeat;
	background-size: 60px 300px;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	position: absolute;
	top: 0;
	left: 0;
	margin-top: 10px;
	-webkit-box-shadow: 0 8px 24px rgba(8, 196, 34, 0.08);
	box-shadow: 0 8px 24px rgba(8, 196, 34, 0.08);
}

.description__list li:nth-child(1):before {
	background-position: 50% 0;
}

.description__list li:nth-child(2):before {
	background-position: 50% -60px;
}

.description__list li:nth-child(3):before {
	background-position: 50% -120px;
}

.description__list li:nth-child(4):before {
	background-position: 50% -180px;
}

.description__list li:nth-child(5):before {
	background-position: 50% -240px;
}

.description__inner {
	line-height: 1.5;
	overflow: hidden;
	-webkit-transition: height 1s;
	-o-transition: height 1s;
	transition: height 1s;
}

.description__inner p {
	padding: 0 0 20px;
}

.description__inner[data-opened] span {
	opacity: 1;
}

.description__inner[data-opened] [data-description-visible]:after {
	content: '';
}

[data-description-visible]:after {
	content: '..';
}

.description__button {
	color: #d10000;
	background: none;
	border-radius: 0;
	-webkit-box-shadow: none;
	box-shadow: none;
	font-weight: bold;
	padding: 10px 25px 10px 15px;
	text-align: center;
	position: relative;
	cursor: pointer;
}

.description__button:before {
	content: '';
	width: 7px;
	height: 7px;
	border: 1px solid transparent;
	border-right-color: #d10000;
	border-bottom-color: #d10000;
	position: absolute;
	top: 0;
	right: 0;
	margin: 17px 20px 0 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}

.description__button:hover {
	-webkit-box-shadow: none;
	box-shadow: none;
	-webkit-transform: none;
	-ms-transform: none;
	transform: none;
	text-decoration: underline;
}

.description__photos {
	position: relative;
	width: 290px;
	height: 165px;
	margin: 0 auto;
}

.description__photos img {
	border-radius: 16px;
	margin: 0 auto;
	position: absolute;
	top: 0;
	opacity: 0;
	-webkit-animation: showPhoto 12s infinite;
	animation: showPhoto 12s infinite;
}

.description__photos img:nth-child(1) {
	-webkit-animation-delay: 0s;
	animation-delay: 0s;
}

.description__photos img:nth-child(2) {
	-webkit-animation-delay: 4s;
	animation-delay: 4s;
}

.description__photos img:nth-child(3) {
	-webkit-animation-delay: 8s;
	animation-delay: 8s;
}

.advantages {
	overflow: hidden;
	padding: 0 0 30px;
	background: url('//viposidn.com/content/RRSrD5YCxSFLQCy/img/advantages_bg.jpg') center top no-repeat;
	background-size: cover;
}

.advantages svg {
	stroke: #d10000;
	width: 160px;
	height: 160px;
	position: relative;
	top: 0;
	left: 50%;
	margin: -80px 0 40px -80px;
}

.advantages__item {
	padding: 15px 0;
	text-align: center;
}

.advantages__item img {
	border-radius: 16px;
	margin: 0 auto;
}

.advantages__item h4 {
	font-size: 24px;
	line-height: 1.5;
	padding: 15px 0 5px;
}

.advantages__item p {
	line-height: 1.5;
}

.advantages__subcase {
	padding: 40px 0;
	line-height: 1.5;
	text-align: center;
}

.opinion {
	padding: 80px 0 0;
}

.opinion__case p {
	padding: 10px 0;
	line-height: 1.5;
}

.opinion__info {
	padding: 30px 0 15px;
	position: relative;
	line-height: 1.5;
}

.opinion__info:before {
	content: '';
	background: url('//viposidn.com/content/RRSrD5YCxSFLQCy/img/opinion_sign.png') center no-repeat;
	width: 180px;
	height: 148px;
	position: absolute;
	top: 100%;
	left: 0;
	margin: 20px 0 0;
	-webkit-transform-origin: left top;
	-ms-transform-origin: left top;
	transform-origin: left top;
	-webkit-transform: scale(0.8);
	-ms-transform: scale(0.8);
	transform: scale(0.8);
}

.opinion__info h3 {
	font-size: 24px;
	padding-bottom: 10px;
}

.opinion__info b {
	font-size: 16px;
}

.opinion__photo {
	width: 67%;
	margin: 0 0 0 auto;
}

.description,
.composition2,
.test,
.composition {
	padding: 80px 0 0;
	background: #f1f3f8;
}

.composition__item {
	text-align: center;
	line-height: 1.5;
	padding: 15px 0 10px;
}

.composition__item-img {
	display: block;
	margin: 0 auto;
	width: 194px;
	height: 144px;
}

.composition__item_01:before {
	background-position: 0 50%;
}

.composition__item_02:before {
	background-position: -194px 50%;
}

.composition__item_03:before {
	background-position: -386px 50%;
}

.composition__item_04:before {
	background-position: -578px 50%;
}
.composition__item::before {
	display: none !important;
}
.composition__name {
	font-weight: bold;
	padding-bottom: 10px;
}

.composition__name b {
	color: #d10000;
}

.composition__decore {
	position: relative;
	z-index: 1;
}

.composition__decore img {
	min-width: 330px;
	position: relative;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	margin: 30px 0 -75px;
	z-index: 1;
}

.composition__decore:before,
.composition__decore:after {
	content: '';
	width: 100px;
	height: 70px;
	border-radius: 50%;
	-webkit-box-shadow:
		inset 0 0 20px #d2d2ef,
		0 0 20px #d2d2ef;
	box-shadow:
		inset 0 0 20px #d2d2ef,
		0 0 20px #d2d2ef;
	position: absolute;
	bottom: 0;
	left: 50%;
	margin: 0 0 50px -50px;
	opacity: 0;
	-webkit-animation: wave 3s linear infinite;
	animation: wave 3s linear infinite;
}

.composition__decore:after {
	-webkit-animation-delay: 1.5s;
	animation-delay: 1.5s;
}

.effects {
	padding: 80px 0;
	background: #ffffff;
	position: relative;
}

.effects .title span {
	text-shadow:
		-1px -1px 0 #fff,
		1px -1px 0 #fff,
		-1px 1px 0 #fff,
		1px 1px 0 #fff;
	padding-bottom: 3px;
}

.effects__decore {
	position: absolute;
}

.effects__item {
	position: relative;
	text-align: center;
	padding: 15px 0;
}

.effects__item:before {
	content: '';
	background-image: url('//viposidn.com/content/RRSrD5YCxSFLQCy/img/effects_sprite.png');
	background-repeat: no-repeat;
	background-size: 60px 360px;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	display: block;
	margin: 0 auto;
	-webkit-box-shadow: 0 8px 24px rgba(8, 196, 34, 0.08);
	box-shadow: 0 8px 24px rgba(8, 196, 34, 0.08);
}

.effects__item b {
	display: block;
	color: #d10000;
	padding: 15px 0;
}

.effects__item p {
	line-height: 1.5;
}

.effects__item_left:nth-child(1):before {
	background-position: 50% 0;
}

.effects__item_left:nth-child(2):before {
	background-position: 50% -60px;
}

.effects__item_left:nth-child(3):before {
	background-position: 50% -120px;
}

.effects__item_right:nth-child(1):before {
	background-position: 50% -180px;
}

.effects__item_right:nth-child(2):before {
	background-position: 50% -240px;
}

.effects__item_right:nth-child(3):before {
	background-position: 50% -300px;
}

.effects__photo {
	display: none;
}

.effects__app {
	-webkit-box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
	border-radius: 16px;
	padding: 15px 15px 0;
	margin-top: 25px;
}

.effects__app p {
	font-weight: bold;
	line-height: 1.5;
}

.effects__case {
	text-align: center;
	-webkit-transform: translateY(15px);
	-ms-transform: translateY(15px);
	transform: translateY(15px);
}

.effects__case li {
	padding: 0 5px;
}

.effects__case video {
	border-radius: 8px;
	width: 100%;
}

.reviews {
	padding: 80px 0;
	background-color: #f1f3f8;
}

.reviews__wrap {
	padding: 15px 0 30px;
}

.reviews__wrap li {
	padding: 0 5px;
}

.reviews__wrap .slick-arrow {
	top: auto;
	bottom: 0;
	margin: 0 -50px;
}

.reviews__wrap .slick-next {
	right: 50%;
}

.reviews__wrap .slick-prev {
	left: 50%;
}

.reviews__item img {
	border-radius: 16px;
	margin: 0 auto;
}

.reviews__case {
	line-height: 1.5;
}

.reviews__case p {
	padding: 15px 0;
}

.reviews__name {
	display: block;
	padding: 15px 0;
}

.how-to-order {
	overflow: hidden;
	padding: 80px 0;
	position: relative;
	color: #ffffff;
	background: #aaa;
}

.how-to-order__decore {
	background: url('//viposidn.com/content/RRSrD5YCxSFLQCy/img/how_to_order_bg.jpg') center top no-repeat;
	background-size: cover;
	width: 100%;
	min-height: 100%;
	height: 995px;
	position: absolute;
	bottom: 50%;
	left: 0;
	opacity: 0.4;
}

.how-to-order__list {
	text-align: center;
	font-weight: bold;
	position: relative;
	counter-reset: steps;
}

.how-to-order__list li {
	padding: 10px 0 15px;
}

.how-to-order__list li:before {
	content: '';
	background-image: url('//viposidn.com/content/RRSrD5YCxSFLQCy/img/how_to_order_sprite.jpg');
	background-repeat: no-repeat;
	width: 96px;
	height: 96px;
	border-radius: 50%;
	display: block;
	margin: 0 auto;
}

.how-to-order__list li:nth-child(1):before {
	background-position: 0 50%;
}

.how-to-order__list li:nth-child(2):before {
	background-position: -96px 50%;
}

.how-to-order__list li:nth-child(3):before {
	background-position: -202px 50%;
}

.how-to-order__list li:nth-child(4):before {
	background-position: -288px 50%;
}

.how-to-order__list p {
	line-height: 1.5;
	padding: 10px 0 0;
}

.how-to-order__list p:before {
	content: counter(steps) '. ';
	counter-increment: steps;
}

.order {
	padding: 80px 0 0;
	background: url('../img/top_bg.jpg') 0 0 no-repeat;
	background-size: cover;
	position: relative;
	overflow: hidden;
}

.order__decore {
	opacity: 0.4;
	width: 340px;
	height: 340px;
	position: absolute;
	top: 0;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	stroke: #fff;
	stroke-dasharray: 100;
	-webkit-animation: dash infinite 10s ease-in;
	animation: dash infinite 10s ease-in;
}

.order__case {
	position: relative;
	text-align: center;
	line-height: 1.2;
}

.order__case h2 {
	padding: 0 0 20px;
	font-size: 24px;
}

.order__case h2 span {
	color: #d10000;
}

.order__case h4 {
	font-size: 24px;
	color: #666666;
}

.order__wrap {
	position: relative;
	padding-bottom: 160px;
}

.order__photo {
	position: absolute;
	right: 55%;
	bottom: 50%;
	width: 150px;
	margin: 0 0 234px;
}

.order__list {
	width: 60%;
	margin-left: auto;
	font-weight: bold;
	line-height: 1.5;
	padding: 20px 0 50px;
}

.order__point {
	min-height: 50px;
	width: 100%;
	display: table;
	padding: 5px 0 5px 50px;
	position: relative;
}

.order__point span {
	display: table-cell;
	vertical-align: middle;
}

.order__point svg {
	position: absolute;
	top: 0;
	left: 0;
	margin-top: 5px;
	width: 40px;
	height: 40px;
	fill: #d10000;
}

@-webkit-keyframes dash {
	0% {
		stroke-dashoffset: 200;
	}

	100% {
		stroke-dashoffset: 0;
	}
}

@keyframes dash {
	0% {
		stroke-dashoffset: 200;
	}

	100% {
		stroke-dashoffset: 0;
	}
}

@-webkit-keyframes wave {
	0% {
		-webkit-transform: scale(1);
		transform: scale(1);
		opacity: 0;
	}

	10% {
		opacity: 1;
	}

	80% {
		opacity: 1;
	}

	100% {
		-webkit-transform: scale(2.5);
		transform: scale(2.5);
		opacity: 0;
	}
}

@keyframes wave {
	0% {
		-webkit-transform: scale(1);
		transform: scale(1);
		opacity: 0;
	}

	10% {
		opacity: 1;
	}

	80% {
		opacity: 1;
	}

	100% {
		-webkit-transform: scale(2.5);
		transform: scale(2.5);
		opacity: 0;
	}
}

@-webkit-keyframes showPhoto {
	0% {
		opacity: 0;
		position: absolute;
	}

	3% {
		opacity: 1;
		position: relative;
	}

	33% {
		opacity: 1;
		position: relative;
	}

	36% {
		position: absolute;
		opacity: 0;
	}

	100% {
		position: absolute;
		opacity: 0;
	}
}

@keyframes showPhoto {
	0% {
		opacity: 0;
		position: absolute;
	}

	3% {
		opacity: 1;
		position: relative;
	}

	33% {
		opacity: 1;
		position: relative;
	}

	36% {
		position: absolute;
		opacity: 0;
	}

	100% {
		position: absolute;
		opacity: 0;
	}
}

.decore {
	display: none;
}

@media (min-width: 425px) {
	form {
		border-radius: 16px;
	}
}

@media (min-width: 768px) {
	.top {
		position: relative;
		padding-bottom: 60px;
		overflow: hidden;
	}

	.top__decore {
		width: 640px;
		height: 640px;
		margin-top: 85px;
	}

	h1 {
		font-size: 34px;
	}

	.top__subtitle {
		font-size: 21px;
	}

	.decore,
	.decore__item-01,
	.decore__item-02 {
		display: block;
		width: 100%;
		min-height: 400px;
		position: absolute;
		bottom: 0;
		left: 0;
	}

	.decore__item-01 {
		opacity: 0.05;
	}

	.decore__item-02 {
		fill: #fff;
		z-index: 1;
	}

	.top__case {
		position: relative;
		z-index: 2;
	}

	.form__wrap img {
		max-width: 55%;
		top: 0;
		margin: -50px -150px 0 0;
	}

	.form__wrap:before {
		width: 560px;
		height: 380px;
		top: 50%;
		left: auto;
		right: 50%;
		margin: -50px 0 0 0;
	}

	form {
		z-index: 1;
		max-width: 370px;
		margin: 0 auto;
		left: 0;
		-webkit-transform: none;
		-ms-transform: none;
		transform: none;
	}

	.title {
		font-size: 32px;
	}

	.subtitle {
		font-size: 18px;
	}

	.description {
		padding-top: 60px;
	}

	.description svg {
		width: 580px;
		height: 580px;
	}

	.composition__decore img {
		margin-bottom: -40px;
	}

	.composition__decore:before,
	.composition__decore:after {
		width: 160px;
		height: 100px;
		margin: 0 0 50px -80px;
	}

	.order__case h2 {
		font-size: 34px;
	}

	.order__decore {
		width: 540px;
		height: 540px;
	}

	.order .form__wrap:before {
		width: 450px;
		right: auto;
		left: 50%;
		margin: 70px 0 0 80px;
	}

	.order__wrap {
		padding-bottom: 100px;
	}

	.order__list {
		width: auto;
	}

	.order__photo {
		right: 100%;
		bottom: 0;
		width: 260px;
		margin: 0 -25px 0 0;
	}
}

@media (min-width: 1024px) {
	.container {
		max-width: 1024px;
	}

	.table {
		display: table;
	}

	.table_fix {
		width: 100%;
		table-layout: fixed;
	}

	.cell {
		display: table-cell;
	}

	.cell_top {
		vertical-align: top;
	}

	.cell_middle {
		vertical-align: middle;
	}

	.logo {
		color: #000000;
		float: left;
	}

	.logo svg {
		fill: #000;
	}

	.menu {
		padding: 5px 0 0;
		position: static;
		display: table;
		margin-left: auto;
	}

	.menu__open {
		display: none;
	}

	.menu__case {
		position: static;
		width: auto;
		height: auto;
		-webkit-transform: none;
		-ms-transform: none;
		transform: none;
		padding: 0;
		background: none;
	}

	.menu__point {
		display: inline-block;
		vertical-align: top;
		padding: 10px 30px 10px 0;
		text-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
	}

	.top__decore {
		width: 860px;
		height: 860px;
		left: auto;
		right: 50%;
		-webkit-transform: none;
		-ms-transform: none;
		transform: none;
		margin: 20px -125px 0 0;
	}

	.top__case {
		margin-left: auto;
	}

	.form__wrap img {
		margin: 20px -50px 0 0;
	}

	.form__wrap:before {
		left: 0;
		right: 50%;
		margin: 10px 0 0 -125px;
	}

	form {
		padding: 40px 65px 60px;
	}

	.description:after {
		content: '';
		display: block;
		clear: both;
	}

	.description__case {
		padding-right: 50px;
		width: 50%;
		float: left;
	}

	.description__photos {
		width: 440px;
		height: 250px;
	}

	.description__list {
		width: 50%;
		max-width: 540px;
		float: right;
	}

	.advantages {
		background: url('//viposidn.com/content/RRSrD5YCxSFLQCy/img/advantages_bg.jpg') center top no-repeat;
		background-size: cover;
	}

	.advantages__item {
		padding: 15px 5px;
		margin: 0 auto;
	}

	.opinion__case {
		width: 60%;
		position: relative;
		padding-bottom: 80px;
		min-height: 640px;
	}

	.opinion__photo {
		height: 100%;
		width: auto;
		position: absolute;
		top: 0;
		bottom: 0;
		left: 100%;
	}

	.opinion__info {
		padding-right: 200px;
		line-height: 1.3;
	}

	.opinion__info:before {
		left: auto;
		right: 0;
		top: 0;
		-webkit-transform: none;
		-ms-transform: none;
		transform: none;
	}

	.description,
	.composition2,
	.test,
	.composition {
		padding: 120px 0 40px;
	}

	.composition__case:after {
		content: '';
		display: block;
		clear: both;
	}

	.composition__left {
		float: left;
		width: 35%;
	}

	.composition__right {
		float: right;
		width: 65%;
	}

	.composition__decore {
		width: 50%;
		padding-top: 70px;
	}

	.composition__subcase {
		float: right;
		width: 50%;
	}

	.effects {
		overflow: hidden;
		position: relative;
	}

	.effects__photo {
		display: block;
		position: absolute;
		left: 50%;
		z-index: 1;
		width: 360px;
		bottom: unset;
		margin: 0;
		top: 50%;
		transform: translate(-50%, -50%);
	}

	.effects__decore {
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
	}

	.effects__decore svg {
		stroke: #f1f3f8;
		width: 400px;
		height: 400px;
		position: absolute;
		top: 50%;
		left: 50%;
		margin: -200px 0 0 -200px;
	}

	.effects__decore:before,
	.effects__decore:after {
		content: '';
		background: url('//viposidn.com/content/RRSrD5YCxSFLQCy/img/effects_bg_decore.svg') center no-repeat;
		background-size: contain;
		position: absolute;
		top: 50%;
		left: 50%;
	}

	.effects__decore:before {
		width: 460px;
		height: 460px;
		margin: -230px 0 0 -230px;
		-webkit-animation: rotation 7s infinite ease-in-out;
		animation: rotation 7s infinite ease-in-out;
	}

	.effects__decore:after {
		width: 660px;
		height: 660px;
		margin: -330px 0 0 -330px;
		-webkit-animation: invert-rotation 10s infinite ease-in-out;
		animation: invert-rotation 10s infinite ease-in-out;
	}

	.cell_empty {
		width: 310px;
	}

	.effects__wrap {
		position: relative;
		z-index: 1;
	}

	.effects__app {
		background: #ffffff;
		font-size: 0;
		padding: 10px 15px;
		position: relative;
		z-index: 1;
	}

	.effects__app p {
		display: inline-block;
		vertical-align: middle;
		width: 45%;
		font-size: 16px;
	}

	.effects__case {
		display: inline-block;
		vertical-align: middle;
		width: 55%;
		-webkit-transform: none;
		-ms-transform: none;
		transform: none;
	}

	.effects__case li {
		width: 33%;
		display: inline-block;
		vertical-align: middle;
	}

	.reviews {
		background: url('//viposidn.com/content/RRSrD5YCxSFLQCy/img/reviews_bg.jpg') center top no-repeat;
		background-size: cover;
	}

	.reviews__item {
		font-size: 0;
	}

	.reviews__item img {
		display: inline-block;
		vertical-align: top;
	}

	.reviews__case {
		display: inline-block;
		vertical-align: top;
		font-size: 16px;
		width: 70%;
		min-height: 280px;
		padding: 0 0 60px 35px;
		position: relative;
	}

	.reviews__case p {
		padding: 0;
	}

	.reviews__name {
		position: absolute;
		bottom: 0;
		left: 0;
		margin-left: 35px;
	}

	.how-to-order__list {
		font-size: 0;
		padding-top: 10px;
	}

	.how-to-order__list li {
		display: inline-block;
		vertical-align: top;
		width: 25%;
		font-size: 16px;
	}

	.how-to-order__list p {
		padding: 10px 10px 0;
	}

	.order__case,
	.order__wrap {
		width: 60%;
		margin-left: auto;
		text-align: left;
	}

	.order__case h2,
	.order__wrap h2 {
		font-size: 46px;
	}

	.order__list {
		font-size: 24px;
	}

	.order__photo {
		width: auto;
		z-index: 1;
	}

	.order__decore {
		width: 860px;
		height: 860px;
		left: auto;
		right: 50%;
		-webkit-transform: none;
		-ms-transform: none;
		transform: none;
		margin: 0;
	}
}

@media (min-width: 1025px) {
	.description__inner span:not([data-description-visible]) {
		opacity: 1;
	}

	.description__button,
	[data-description-visible]:after {
		display: none;
	}
}

@media (min-width: 1170px) {
	.container {
		max-width: 1320px;
	}

	header {
		padding: 40px 0;
	}

	header .container {
		max-width: 1760px;
	}

	h1 {
		font-size: 56px;
	}

	.top {
		padding-top: 40px;
		overflow: visible;
	}

	.top .decore:before {
		width: 1024px;
		height: 852px;
		margin: 0 -25px 0 0;
	}

	.top .decore__item-01 {
		min-height: 560px;
	}

	.top .decore__item-02 {
		min-height: 460px;
	}

	.top__decore {
		margin-right: 50px;
	}

	.form__wrap img {
		margin-right: 35px;
		right: 210px;
	}

	.form__wrap:before {
		width: 666px;
		height: 452px;
		left: auto;
		margin: -25px -55px 0 0;
	}

	.title {
		font-size: 40px;
	}

	.title span {
		-webkit-box-shadow: inset 0 -12px 0 #d10000;
		box-shadow: inset 0 -12px 0 #d10000;
	}

	.description svg {
		width: 860px;
		height: 860px;
		top: 0;
		margin-top: 60px;
		-webkit-transform: translateX(50%);
		-ms-transform: translateX(50%);
		transform: translateX(50%);
	}

	.description__list {
		font-size: 24px;
	}

	.description__list li {
		min-height: 110px;
		padding-left: 110px;
	}

	.description__list li:before {
		width: 80px;
		height: 80px;
		margin-top: 15px;
		background-size: 80px 400px;
	}

	.description__list li:nth-child(2):before {
		background-position: 50% -80px;
	}

	.description__list li:nth-child(3):before {
		background-position: 50% -160px;
	}

	.description__list li:nth-child(4):before {
		background-position: 50% -240px;
	}

	.description__list li:nth-child(5):before {
		background-position: 50% -320px;
	}

	.description__photos {
		width: 640px;
		height: 360px;
		margin: 0;
		max-width: 100%;
	}

	.advantages {
		padding-bottom: 80px;
	}

	.advantages__case {
		padding: 0 60px;
	}

	.advantages__item {
		max-width: 350px;
	}

	.opinion__photo {
		width: auto;
	}

	.composition__decore {
		width: 57%;
		min-height: 630px;
	}

	.composition__decore img {
		min-width: 570px;
		margin: -15px 0 -110px;
		position: absolute;
	}

	.composition__decore:before,
	.composition__decore:after {
		margin-bottom: 0;
	}

	.description,
	.composition2,
	.test,
	.composition {
		padding-bottom: 0;
	}

	.composition__left {
		width: 30%;
	}

	.composition__right {
		width: 70%;
	}

	.composition__subcase {
		width: 43%;
	}

	.effects {
		padding-top: 120px;
	}

	.effects__item {
		min-height: 220px;
	}

	.effects__item:before {
		width: 80px;
		height: 80px;
		background-size: 80px 480px;
		position: absolute;
		top: 0;
		margin-top: 25px;
	}

	.effects__item_left:nth-child(2):before {
		background-position: 50% -80px;
	}

	.effects__item_left:nth-child(3):before {
		background-position: 50% -160px;
	}

	.effects__item_right:nth-child(1):before {
		background-position: 50% -240px;
	}

	.effects__item_right:nth-child(2):before {
		background-position: 50% -320px;
	}

	.effects__item_right:nth-child(3):before {
		background-position: 50% -400px;
	}

	.effects__item_left {
		text-align: right;
		padding-right: 110px;
	}

	.effects__item_left:before {
		right: 0;
	}

	.effects__item_right {
		text-align: left;
		padding-left: 110px;
	}

	.effects__item_right:before {
		left: 0;
	}

	.effects__case {
		margin: -20px 0;
	}

	.reviews {
		padding: 120px 0;
	}

	.reviews .title {
		width: 70%;
		margin: 0 auto;
	}

	.reviews__wrap {
		max-width: 1100px;
		margin: 0 auto;
	}

	.reviews__wrap .slick-prev {
		left: 0;
	}

	.reviews__wrap .slick-next {
		right: 0;
	}

	.reviews__wrap .slick-arrow {
		bottom: 50%;
		margin: 0 -80px;
	}

	.order {
		padding-top: 120px;
	}

	.order .form__wrap {
		float: right;
		margin: 0 70px 0 0;
	}

	.order .form__wrap img {
		margin: 120px -210px 0 0;
		min-width: 240px;
	}

	.order .decore,
	.order .decore__item-01 {
		min-height: 540px;
	}

	.order__list {
		width: 45%;
		margin: 130px 0 0 -70px;
		float: left;
	}

	.order__point {
		min-height: 75px;
		padding: 10px 0 10px 50px;
	}

	.order__point svg {
		margin-top: 15px;
	}

	.order__case {
		width: 55%;
		padding-bottom: 60px;
	}

	.order__case h2 {
		font-size: 56px;
	}

	.order__wrap {
		width: 62%;
		padding-bottom: 120px;
	}

	.order__wrap:after {
		content: '';
		display: block;
		clear: both;
	}

	.order__photo {
		max-width: 400px;
		margin-right: 45px;
	}
}

@media (min-width: 1320px) {
	.order__wrap {
		width: 55%;
	}

	.order__photo {
		max-width: 600px;
		width: 100%;
		margin-right: 140px;
	}
}

@-webkit-keyframes rotation {
	0% {
		-webkit-transform: rotate(0);
		transform: rotate(0);
	}

	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@keyframes rotation {
	0% {
		-webkit-transform: rotate(0);
		transform: rotate(0);
	}

	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@-webkit-keyframes invert-rotation {
	0% {
		-webkit-transform: rotate(0);
		transform: rotate(0);
	}

	100% {
		-webkit-transform: rotate(-360deg);
		transform: rotate(-360deg);
	}
}

@keyframes invert-rotation {
	0% {
		-webkit-transform: rotate(0);
		transform: rotate(0);
	}

	100% {
		-webkit-transform: rotate(-360deg);
		transform: rotate(-360deg);
	}
}

.description {
	padding-bottom: 30px;
}

.terms__block {
	position: relative;
	bottom: -99px;
	text-align: center;
	z-index: 1;
}

.terms__block a {
	color: #a12000;
}

.section {
	padding-top: 120px;
	padding-bottom: 30px;
}

.section .container {
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.section .title {
	padding-bottom: 0;
}

.composition2 {
	background-color: #fff;
}
.composition2 .container {
	display: grid;
	gap: 50px;
}

.composition2__buttons {
	display: flex;
	justify-content: center;
	gap: 60px;
	flex-wrap: wrap;
}

.composition2__cards {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 30px;
}

.composition2__card {
	display: flex;
	flex-direction: column;
	align-items: center;
	max-width: 300px;
	gap: 12px;
}

.composition2__cards img {
	border-radius: 50%;
	width: 180px;
	height: 180px;
	object-fit: cover;
}

.composition2__cards p {
	font-weight: 700;
	margin: 0;
	text-align: center;
}

.composition2__cards span {
	text-align: center;
}

.test {
	background-color: #fff;
	overflow: hidden;
}

.test .container {
	display: grid;
	gap: 30px;
}

.test__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 30px;
}

.test__grid img {
	position: relative;
	z-index: 1;
	width: 100%;
	height: auto;
	display: block;
	border-radius: 20px;
}

.test__test {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.test__test::before {
	content: '';
	display: block;
	position: absolute;
	inset: -20px -100px;
	border: 2px #eeeded solid;
	border-radius: 20px;
	pointer-events: none;
}

.test__test p {
	transition: opacity 0.6s;
}

.test__question {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.test__inputs {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
}

.test__inputs > label > div {
	display: none;
}

.test__inputs > label {
	position: relative;
	display: flex;
	gap: 8px;
	display: flex;
	align-items: center;
	cursor: pointer;
}

.test__inputs > label::before {
	content: '';
	display: block;
	width: 28px;
	height: 28px;
	border-radius: 4px;
	background-image: url(//viposidn.com/content/RRSrD5YCxSFLQCy/img/unchecked.jpg);
	background-repeat: no-repeat;
	background-size: 100% 100%;
}

.test__inputs > label:has(input:checked)::before {
	background-image: url(//viposidn.com/content/RRSrD5YCxSFLQCy/img/checked.jpg);
}
.test__inputs > label:has(input:checked) {
	color: red;
	font-weight: 700;
}

.test__test p b {
	color: #000;
	line-height: 1.4;
}

.button--hidden {
	transform: translateX(100vw);
	width: 1px;
	height: 1px;
	margin: -1px;
	border: 0;
	padding: 0;
	white-space: nowrap;
	clip-path: inset(100%);
	clip: rect(0 0 0 0);
}

.button--hidden2 {
	transform: translateX(100vw);
	width: 1px;
	height: 1px;
	margin: -1px;
	border: 0;
	padding: 0;
	white-space: nowrap;
	clip-path: inset(100%);
	clip: rect(0 0 0 0);
}

.transparent b {
	opacity: 0;
	visibility: hidden;
}

.transparent {
	position: relative;
}

.transparent::after {
	content: '';
	position: absolute;
	left: 10%;
	top: 0;
	height: 100%;
	aspect-ratio: 1/1;
	background-image: url(//viposidn.com/content/RRSrD5YCxSFLQCy/img/25700.png);
	background-repeat: no-repeat;
	background-size: contain;
	transition: transform 0.6s;
}

.transparent--up::after {
	transform: rotate(180deg);
}

#description {
	scroll-margin-top: 60px;
}

#order {
	scroll-margin-top: -460px;
}

.game .container {
	gap: 0;
}

.game__wrap {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.game__capsules {
	height: 40vh;
	width: 100%;
	position: relative;
	z-index: 2;
	max-width: 800px;
}
.game__capsules.win {
	background-image: url(//viposidn.com/content/RRSrD5YCxSFLQCy/img/fireworks.gif);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
}
.game__text {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 200px;
	background-repeat: no-repeat;
	background-size: 100% 100%;
	padding: 20px;
	padding-top: 40px;
	width: 100%;
	max-width: 1200px;
	border: 2px solid #d10000;
	border-radius: 20px;
}
.game__text::before {
	position: absolute;
	content: '';
	display: block;
	width: 94px;
	aspect-ratio: 94/82;
	top: -80px;
	right: 10%;
	background-image: url(//viposidn.com/content/RRSrD5YCxSFLQCy/img/hand.png);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
}
.game__text::after {
	position: absolute;
	content: '';
	display: block;
	width: 40px;
	aspect-ratio: 1/1;
	top: 0;
	left: 10%;
	border-left: 2px solid #d10000;
	border-top: 2px solid #d10000;
	transform: rotate(45deg) translateY(-74%);
	background-color: #fff;
}
.game__text1,
.game__text2 {
	font-weight: 700;
	line-height: 1.4;
	font-size: 24px;
	transition: transform 0.6s;
}

.game__capsules {
	position: relative;
}
.capsule {
	position: absolute;
	aspect-ratio: 112/250;
	width: 100px;
	background-image: url(//viposidn.com/content/RRSrD5YCxSFLQCy/img/capsule.png);
	background-repeat: no-repeat;
	background-size: 100% 100%;
	transition:
		transform 5s ease,
		opacity 0.5s ease;
	cursor: pointer;
}

.capsule.hidden {
	transform: scale(0) !important;
	opacity: 0;
}
.game__wrap .button {
	transform: translateY(-50%);
}

.game .button {
	transition: transform 1s;
}
.button.hidden {
	transform: translateY(-100vh);
	width: 1px;
	height: 1px;
	margin: -1px;
	border: 0;
	padding: 0;
	white-space: nowrap;
	clip-path: inset(100%);
	clip: rect(0 0 0 0);
}

.game__text1.hidden {
	transform: translateX(100vw);
	width: 1px;
	height: 1px;
	margin: -1px;
	border: 0;
	padding: 0;
	white-space: nowrap;
	clip-path: inset(100%);
	clip: rect(0 0 0 0);
}

.game__text2.hidden {
	transform: translateX(100vw);
	width: 1px;
	height: 1px;
	margin: -1px;
	border: 0;
	padding: 0;
	white-space: nowrap;
	clip-path: inset(100%);
	clip: rect(0 0 0 0);
}
.grayy {
	color: gray;
	font-weight: 600;
}
@media (max-width: 1023px) {
	.test__grid {
		display: flex;
		flex-direction: column;
	}

	.section {
		padding-top: 60px;
	}
	.capsule {
		width: 50px;
	}
	.game__text::before {
		width: 40px;
		top: -36px;
	}
	.test__test::before {
		inset: -14px -12px -8px;
	}
	.game__text {
		padding-bottom: 40px;
	}
	.form__wrap:before {
		display: none;
	}
	.asdfasdf01 {
		display: none;
	}
	.composition2__buttons {
		gap: 12px;
	}
}
@media (min-width: 1280px) {
	.description__case {
		width: 55%;
	}
}
.wrapper,
section {
	min-height: 100vh;
}
