@charset "UTF-8";
*,
::before,
::after {
	box-sizing: border-box;
}
:where(ul, ol):where([class]) {
	padding-left: 0;
}
body,
:where(blockquote, figure, fieldset):where([class]) {
	margin: 0;
}
:where(h1, h2, h3, h4, h5, h6, p, ul, ol, dl):where([class]) {
	margin-block: 0;
}
:where(dd[class]) {
	margin-left: 0;
}
:where(fieldset[class]) {
	padding: 0;
	border: none;
}
:where(ul[class]) {
	list-style: none;
}
:where(address[class]) {
	font-style: normal;
}
p {
	--paragraphMarginBottom: 24px;
	margin-block: 0;
}
p:where(:not([class]):not(:last-child)) {
	margin-bottom: var(--paragraphMarginBottom);
}
img,
video {
	display: block;
	max-width: 100%;
	height: auto;
}
input,
textarea,
select,
button {
	font: inherit;
}
html {
	scrollbar-gutter: stable;
}
html {
	scroll-behavior: smooth;
}
body {
	min-height: 100%;
	line-height: 1.5;
}
a:where([class]) {
	display: inline-flex;
}
button,
label {
	cursor: pointer;
}
svg * {
	transition-property: fill, stroke;
}
:where(table) {
	border-collapse: collapse;
	border-color: currentColor;
}
@media (prefers-reduced-motion: reduce) {
	*,
	::before,
	::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}
}
@font-face {
	font-family: 'Inter';
	src: url(../fonts/Inter-Bold.woff2) format('woff2');
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'Inter';
	src: url(../fonts/Inter-SemiBold.woff2) format('woff2');
	font-weight: 600;
	font-style: normal;
	font-display: swap;
}
:root {
	--color-light: #ffffff;
	--color-dark: #000000;
	--color-accent: #a4ff07;
	--color-gradient: linear-gradient(180deg, #7eac2f 0%, #97ea07 100%);
	--color-gradient-reverse: linear-gradient(0deg, #7eac2f 0%, #97ea07 100%);
	--font-family-base: 'Inter', sans-serif;
	--container-width: 1256px;
	--container-padding-x: 16px;
	--container-row-gap: 120px;
	--transition-duration: 0.5s;
}
.container {
	max-width: calc(var(--container-width) + var(--container-padding-x) * 2);
	margin-inline: auto;
	padding-inline: var(--container-padding-x);
	width: 100%;
	height: 100%;
}
.visually-hidden {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	margin: -1px !important;
	border: 0 !important;
	padding: 0 !important;
	white-space: nowrap !important;
	clip-path: inset(100%) !important;
	clip: rect(0 0 0 0) !important;
	overflow: hidden !important;
}
@media (max-width: 412px) {
	.hidden-mobile {
		display: none !important;
	}
}
@media (min-width: 550px) {
	.visible-mobile {
		display: none !important;
	}
}
.green {
	color: var(--color-accent);
}
.text-wrap {
	word-break: keep-all;
	overflow-wrap: break-word;
	white-space: normal;
}
html {
	height: auto;
}
body {
	font-family: var(--font-family-base);
	color: var(--color-light);
	background-color: var(--color-dark);
	font-weight: 700;
	line-height: normal;
	text-transform: uppercase;
}
h1 {
	font-size: clamp(2.5rem, 1.0972762646rem + 5.4474708171vw, 6rem);
}
h2 {
	font-size: clamp(1.5rem, 0.4980544747rem + 3.8910505837vw, 4rem);
}
a,
button,
input,
textarea,
svg * {
	transition-duration: var(--transition-duration);
}
a {
	text-decoration: none;
	color: inherit;
}
img {
	transition: transform var(--transition-duration) ease;
}
.fp-watermark {
	display: none !important;
}
.burger-button {
	padding: 0;
	background-color: #fff0;
	border: none;
	width: 24px;
	height: 24px;
	position: relative;
}
.burger-button::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	border-radius: 5px;
	width: 18px;
	height: 2px;
	background-color: var(--color-light);
	box-shadow: var(--color-light) 0 -5px, var(--color-light) 0 5px;
}
@media (any-hover: hover) {
	.burger-button:hover::after {
		background-color: var(--color-accent);
		box-shadow: var(--color-accent) 0 -5px, var(--color-accent) 0 5px;
	}
}
@media (any-hover: none) {
	.burger-button:active::after {
		background-color: var(--color-accent);
		box-shadow: var(--color-accent) 0 -5px, var(--color-accent) 0 5px;
	}
}
.burger-button--close::after {
	height: 18px;
	width: 2px;
	box-shadow: var(--color-light) -5px 0, var(--color-light) 5px 0;
}
@media (any-hover: hover) {
	.burger-button--close:hover::after {
		background-color: var(--color-accent);
		box-shadow: var(--color-accent) -5px 0, var(--color-accent) 5px 0;
	}
}
@media (any-hover: none) {
	.burger-button--close:active::after {
		background-color: var(--color-accent);
		box-shadow: var(--color-accent) -5px 0, var(--color-accent) 5px 0;
	}
}
.section {
	--section-padding-y: 24px;
	max-width: 1440px;
	margin-inline: auto;
	display: flex;
	flex-direction: column;
	min-height: 0;
	justify-content: center;
	align-items: stretch;
	padding-block: var(--section-padding-y);
	overflow-y: hidden;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}
.section:nth-child(1) {
	background-image: url(../images/section/bg1.png);
}
.section:nth-child(2) {
	background-image: url(../images/section/bg2.png);
}
.section:nth-child(3) {
	background-image: url(../images/section/bg3.png);
}
.section:nth-child(4) {
	background-image: url(../images/section/bg4.png);
}
.section:nth-child(5) {
	background-image: url(../images/section/bg5.png);
}
.section:nth-child(6) {
	background-image: url(../images/section/bg6.png);
}
.button {
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: clamp(0.875rem, 0.3239299611rem + 2.140077821vw, 2.25rem);
	text-transform: uppercase;
	background: var(--color-gradient);
	border-radius: 50px;
	max-width: 321px;
	height: 96px;
	-moz-column-gap: 10px;
	column-gap: 10px;
	width: 100%;
	text-shadow: 0 4px 4px #1c4367;
	flex-shrink: 0;
}
@media (max-width: 600px) {
	.button {
		max-width: 100%;
	}
}
.button::after {
	content: '';
	width: 48px;
	height: 48px;
	background: url(../images/arrow-circle-right.svg) no-repeat center;
	background-size: contain;
	text-shadow: none;
	filter: drop-shadow(0 4px 4px #1c4367);
}
.button--small {
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 14px;
	height: 40px;
	width: 152px;
}
.button--small::after {
	content: none;
}
.button--blue {
	background: linear-gradient(180deg, #0e83d3 0%, #14a0ff 100%);
	max-width: 140px;
	width: 100%;
	height: 40px;
	font-size: 14px;
	padding: 0;
}
.button--blue::after {
	width: 24px;
	height: 24px;
}
.button--blue:hover {
	background: linear-gradient(0deg, #0e83d3 0%, #14a0ff 100%) !important;
}
@media (any-hover: hover) {
	.button:hover:hover {
		background: var(--color-gradient-reverse);
	}
}
@media (any-hover: none) {
	.button:hover:active {
		background: var(--color-gradient-reverse);
	}
}
@media (max-width: 767px) {
	.button {
		height: 40px;
	}
	.button::after {
		width: 24px;
		height: 24px;
	}
}
.mobile-overlay {
	width: 100%;
	height: 100%;
	max-height: 480px;
	margin: 0;
	padding: 24px 16px;
	border: none;
	background: rgb(28 67 103 / 0.8);
	-webkit-backdrop-filter: blur(7px);
	backdrop-filter: blur(7px);
}
.mobile-overlay:modal {
	max-width: 100%;
}
.mobile-overlay__inner {
	display: flex;
	flex-direction: column;
	row-gap: 75px;
}
.mobile-overlay__button-wrapper {
	display: flex;
	justify-content: flex-end;
	height: 24px;
}
.mobile-overlay__menu-list {
	display: flex;
	flex-direction: column;
	row-gap: 75px;
}
.mobile-overlay__menu-item {
	color: var(--color-light);
	text-transform: uppercase;
	font-size: 14px;
}
.header {
	display: flex;
	justify-content: center;
	align-items: center;
}
@media (max-width: 600px) {
	.header {
		padding-block: 10px;
	}
}
.header__container {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	row-gap: 165px;
}
@media (max-width: 1230px) {
	.header__container {
		row-gap: 24px;
	}
}
@media (max-width: 600px) {
	.header__container {
		row-gap: 10px;
	}
}
@media (min-width: 1231px) and (max-height: 859px) {
	.header__container {
		row-gap: 50px;
	}
}
.header__nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	max-width: 1241px;
	max-height: 40px;
	-moz-column-gap: 24px;
	column-gap: 24px;
	margin-top: 25px;
}
@media (max-height: 900px) {
	.header__nav {
		margin-top: 0;
	}
}
@media (max-width: 550px) {
	.header__logo {
		max-height: 18px;
	}
}
.header__menu-list {
	display: flex;
	-moz-column-gap: 75px;
	column-gap: 75px;
}
@media (max-width: 925px) {
	.header__menu-list {
		-moz-column-gap: 25px;
		column-gap: 25px;
	}
}
@media (max-width: 800px) {
	.header__menu-list {
		flex-wrap: wrap;
		line-height: normal;
		justify-content: space-between;
	}
}
@media (max-width: 550px) {
	.header__menu-list {
		display: none;
	}
}
.header__menu-item {
	display: flex;
	justify-content: center;
	align-items: center;
}
.header__menu--active {
	color: var(--color-accent);
	text-decoration: underline;
}
.header__menu-link {
	line-height: 21px;
	font-size: 14px;
}
@media (any-hover: hover) {
	.header__menu-link:hover {
		transform: translateY(-4px);
	}
}
@media (any-hover: none) {
	.header__menu-link:active {
		transform: translateY(-4px);
	}
}
.header__hero {
	display: flex;
	-moz-column-gap: 30px;
	column-gap: 30px;
	padding-inline: 10px;
	width: 100%;
}
@media (max-height: 811px) {
	.header__hero {
		margin-bottom: 70px;
	}
}
@media (max-width: 1230px) {
	.header__hero {
		flex-direction: column;
		justify-content: stretch;
		align-items: center;
		text-align: center;
		max-width: 610px;
		padding-inline: 0;
	}
}
.header__hero-wrapper {
	display: flex;
	flex-direction: column;
	row-gap: 32px;
	max-width: 607px;
}
@media (max-width: 1230px) {
	.header__hero-wrapper {
		display: contents;
	}
}
@media (max-width: 1230px) {
	.header__hero-title {
		order: 0;
		margin-bottom: 24px;
		max-width: 550px;
		font-size: 40px;
	}
}
@media (max-width: 925px) {
	.header__hero-title {
		max-width: 470px;
	}
}
@media (max-width: 767px) {
	.header__hero-title {
		max-width: 430px;
		margin-bottom: 0;
	}
}
@media (max-width: 600px) {
	.header__hero-title {
		max-width: 320px;
	}
}
@media (max-height: 811px) {
	.header__hero-title {
		margin-bottom: 24px;
	}
}
.header__hero-subtitle {
	font-size: clamp(1rem, 0.5992217899rem + 1.5564202335vw, 2rem);
	max-width: 497px;
	font-weight: 600;
	margin-bottom: 32px;
}
@media (max-width: 1230px) {
	.header__hero-subtitle {
		order: 0;
		margin-bottom: 64px;
		font-size: 16px;
	}
}
@media (max-width: 1230px) and (max-height: 900px) {
	.header__hero-subtitle {
		margin-bottom: 16px;
	}
}
@media (max-width: 1230px) {
	.header__hero-button {
		max-width: 100%;
		width: 100%;
		order: 2;
		max-height: 40px;
		font-size: 30px;
	}
	.header__hero-button::after {
		width: 24px;
		height: 24px;
	}
}
@media (max-width: 1000px) {
	.header__hero-button {
		font-size: clamp(0.875rem, 0.3239299611rem + 2.140077821vw, 2.25rem);
	}
}
.header__swiper {
	order: 1;
	flex-shrink: 1;
}
@media (max-width: 1230px) {
	.header__swiper {
		margin-bottom: 20px;
	}
}
@media (max-height: 811px) {
	.header__swiper {
		margin-bottom: 64px;
	}
}
.swiper {
	width: 100%;
	height: 100%;
	position: relative;
	max-height: 602px;
	display: flex;
	justify-content: center;
	align-items: center;
}
@media (max-width: 412px) {
	.swiper {
		height: auto;
	}
}
@media (max-width: 1230px) {
	.swiper {
		max-height: 490px;
		max-width: 240px;
		aspect-ratio: 240/490;
		-o-object-fit: cover;
		object-fit: cover;
	}
}
.swiper__slide {
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
}
.swiper__slide:nth-child(1) {
	background-image: url(../images/swiper/slide0.png);
}
.swiper__slide:nth-child(2) {
	background-image: url(../images/swiper/slide1.png);
}
.swiper__slide:nth-child(3) {
	background-image: url(../images/swiper/slide2.png);
}
.swiper__slide--small {
	height: 490px;
	width: 240px;
	z-index: 1;
}
@media (max-width: 1230px) {
	.swiper__slide--small {
		display: none;
	}
}
.swiper__slide--small .swiper__link-wrapper {
	bottom: 29px;
}
.swiper__slide--small .swiper__link-wrapper .swiper__link {
	scale: 0.814;
}
.swiper__slide--active {
	width: 295px;
	height: 602px;
	z-index: 2;
	margin-inline: -82px;
}
@media (max-width: 1230px) {
	.swiper__slide--active {
		max-width: 240px;
		max-height: 490px;
	}
}
.swiper__link-wrapper {
	position: absolute;
	bottom: 39px;
	left: 50%;
	transform: translateX(-50%);
	width: 150px;
	height: 40px;
}
.swiper__navigation {
	position: absolute;
	z-index: 3;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0;
	background-color: #fff0;
	border: none;
	background: rgb(255 255 255 / 0.7);
}
@media (any-hover: hover) {
	.swiper__navigation:hover {
		background-color: #fff;
	}
}
@media (any-hover: none) {
	.swiper__navigation:active {
		background-color: #fff;
	}
}
@media (max-width: 1230px) {
	.swiper__navigation {
		display: none;
	}
}
.swiper__navigation--left {
	left: -20px;
}
.swiper__navigation--right {
	right: -20px;
}
.slider {
	width: 100%;
	overflow-x: auto;
	overflow-y: hidden;
	-webkit-overflow-scrolling: touch;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	max-width: 1212px;
}
@media (max-width: 1250px) {
	.slider {
		margin-right: calc(-1 * var(--container-padding-x));
		width: calc(100% + var(--container-padding-x));
	}
}
.slider::-webkit-scrollbar {
	display: none;
}
.slider,
.slider * {
	-moz-user-select: none;
	user-select: none;
	-webkit-user-select: none;
	-ms-user-select: none;
}
.slider img {
	-webkit-user-drag: none;
	user-drag: none;
}
.games {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	row-gap: 45px;
	width: 100%;
}
@media (max-height: 850px) {
	.games__button {
		max-height: 60px;
	}
}
@media (min-width: 1231px) and (max-height: 811px) {
	.games__button {
		max-height: 96px;
	}
}
@media (max-height: 949px) {
	.games {
		row-gap: 10px;
	}
}
@media (max-width: 600px) {
	.games {
		row-gap: 24px;
	}
}
.games__title {
	margin-bottom: 10px;
}
@media (max-width: 412px) {
	.games__title {
		max-width: 135px;
	}
}
.games__inner {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	row-gap: 64px;
	width: 100%;
}
@media (max-height: 949px) {
	.games__inner {
		row-gap: 10px;
	}
}
.games__slider {
	padding-top: 12px;
	margin-top: -12px;
}
.games__cards {
	display: flex;
	-moz-column-gap: 20px;
	column-gap: 20px;
	width: -moz-max-content;
	width: max-content;
	height: auto;
}
@media (max-height: 811px) {
	.games__cards {
		margin-bottom: 64px;
	}
}
.games__card-link {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	text-align: center;
	flex-direction: column;
	height: 100%;
	width: 288px;
	border-radius: 24px;
	row-gap: 16px;
	padding: 24px;
	max-width: 288px;
	flex-shrink: 0;
	-webkit-backdrop-filter: blur(20px);
	backdrop-filter: blur(20px);
	background: linear-gradient(
			0deg,
			rgb(255 255 255 / 0.3) 0%,
			rgb(255 255 255 / 0.3) 100%
		),
		linear-gradient(180deg, rgb(255 255 255 / 0.2) 0%, rgb(29 52 78 / 0.2) 100%);
}
@media (any-hover: hover) {
	.games__card-link:hover {
		background: linear-gradient(
				0deg,
				rgb(255 255 255 / 0.4) 0%,
				rgb(255 255 255 / 0.4) 100%
			),
			linear-gradient(
				180deg,
				rgb(255 255 255 / 0.2) 0%,
				rgb(29 52 78 / 0.2) 100%
			);
		transform: translateY(-12px);
	}
}
@media (any-hover: none) {
	.games__card-link:active {
		background: linear-gradient(
				0deg,
				rgb(255 255 255 / 0.4) 0%,
				rgb(255 255 255 / 0.4) 100%
			),
			linear-gradient(
				180deg,
				rgb(255 255 255 / 0.2) 0%,
				rgb(29 52 78 / 0.2) 100%
			);
		transform: translateY(-12px);
	}
}
.games__card-title {
	color: var(--color-accent);
	font-size: 20px;
}
.games__card-subtitle {
	font-size: 18px;
	line-height: 2;
}
.games__partners {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	row-gap: 12px;
}
@media (max-height: 949px) {
	.games__partners {
		margin-bottom: 40px !important;
	}
}
@media (max-width: 600px) {
	.games__partners {
		row-gap: 16px;
		margin-bottom: 130px;
	}
}
.games__partners-title {
	font-size: clamp(1rem, 0.5992217899rem + 1.5564202335vw, 2rem);
}
@media (max-height: 811px) {
	.games__partners {
		margin-bottom: 150px !important;
	}
}
.games__partners-wrapper {
	display: flex;
	max-width: 1212px;
	width: 100%;
	justify-content: space-between;
	-moz-column-gap: 32px;
	column-gap: 32px;
}
@media (max-width: 600px) {
	.games__partners-wrapper {
		-moz-column-gap: 0;
		column-gap: 0;
	}
}
.games__partners-image {
	width: 217px;
	display: flex;
	justify-content: center;
	align-items: center;
}
@media (max-width: 1250px) {
	.games__partners-image {
		width: 100%;
	}
}
@media (max-width: 600px) {
	.games__partners-image img {
		height: 40px;
		width: 76px;
	}
}
.slots {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	text-align: center;
	width: 100%;
}
@media (max-height: 811px) {
	.slots {
		padding-block: 140px;
	}
}
@media (max-width: 600px) {
	.slots__title {
		margin-bottom: 24px;
	}
}
.slots__subtitle {
	max-width: 989px;
	font-size: clamp(1rem, 0.5992217899rem + 1.5564202335vw, 2rem);
	font-weight: 600;
	text-transform: none;
	margin-bottom: 122px;
	margin-inline: auto;
}
@media (max-height: 850px) {
	.slots__subtitle {
		margin-bottom: 24px;
	}
}
@media (max-width: 600px) {
	.slots__subtitle {
		margin-bottom: 24px;
	}
}
.slots__cards {
	display: flex;
	-moz-column-gap: 20px;
	column-gap: 20px;
	width: -moz-max-content;
	width: max-content;
	height: auto;
}
.slots__card {
	display: flex;
	flex-direction: column;
	gap: 20px;
	width: 288px;
	height: 483px;
	overflow: hidden;
	position: relative;
}
@media (any-hover: hover) {
	.slots__card:hover img {
		transform: scale(1.05);
	}
}
@media (any-hover: none) {
	.slots__card:active img {
		transform: scale(1.05);
	}
}
.slots__card-image {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	overflow: hidden;
	height: 432px;
	border-radius: 24px;
}
.slots__card-link {
	max-width: 100%;
}
.slots__card-link::after {
	content: none;
}
.events {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	text-align: center;
}
@media (max-height: 811px) {
	.events {
		padding-top: 136px;
	}
}
@media (max-width: 767px) {
	.events__title {
		margin-bottom: 24px;
	}
}
.events__subtitle {
	margin-bottom: 120px;
	font-size: clamp(1rem, 0.5992217899rem + 1.5564202335vw, 2rem);
	max-width: 780px;
	margin-inline: auto;
}
@media (max-width: 767px) {
	.events__subtitle {
		margin-bottom: 24px;
	}
}
@media (max-height: 850px) {
	.events__subtitle {
		margin-bottom: 24px;
	}
}
.events__cards {
	display: flex;
	justify-content: center;
	align-items: center;
	-moz-column-gap: 20px;
	column-gap: 20px;
	width: -moz-max-content;
	width: max-content;
	margin-bottom: 120px;
}
@media (max-height: 811px) {
	.events__cards {
		padding-top: 136px;
	}
}
@media (max-height: 850px) {
	.events__cards {
		margin-bottom: 45px;
	}
}
@media (min-width: 1231px) and (max-height: 811px) {
	.events__cards {
		margin-bottom: 120px;
	}
}
.events__card {
	width: 288px;
	height: 423px;
	overflow: hidden;
	position: relative;
	border-radius: 24px;
}
@media (any-hover: hover) {
	.events__card:hover img {
		transform: scale(1.1);
	}
}
@media (any-hover: none) {
	.events__card:active img {
		transform: scale(1.1);
	}
}
.modal {
	display: flex;
	justify-content: center;
	align-items: center;
	display: none;
	position: fixed;
	inset: 0;
	width: 100vw;
	height: 100vh;
	background: rgb(0 0 0 / 0.7);
	z-index: 1000;
	justify-content: center;
	align-items: center;
}
.modal__image {
	display: none !important;
	width: 100%;
	height: 373px;
}
.modal__image.modal--active {
	display: flex !important;
	z-index: 1000;
}
.modal--active {
	display: flex;
}
.number-above {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	row-gap: 24px;
}
.number-above::before {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 70px;
	height: 70px;
	background-color: var(--color-accent);
	border-radius: 50%;
	font-size: 32px;
	font-weight: 600;
	color: #0d0d0d;
	flex-shrink: 0;
}
.number-above--1::before {
	content: '1';
}
.number-above--2::before {
	content: '2';
}
.number-above--3::before {
	content: '3';
}
.instructions {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	row-gap: 120px;
	text-align: center;
}
@media (max-width: 767px) {
	.instructions {
		row-gap: 24px;
	}
}
@media (max-height: 850px) {
	.instructions {
		row-gap: 6px;
	}
}
@media (max-height: 811px) {
	.instructions {
		padding-block: 93px;
		row-gap: 120px;
	}
}
@media (max-width: 549px) and (max-height: 811px) {
	.instructions {
		padding-block: 0;
		row-gap: 24px;
	}
}
@media (max-width: 549px) and (max-height: 811px) {
	.instructions__title {
		max-width: 250px;
	}
}
.instructions__steps {
	display: flex;
	justify-content: center;
	align-items: center;
	align-items: flex-start;
	-moz-column-gap: 24px;
	column-gap: 24px;
	height: 100%;
}
@media (max-width: 767px) {
	.instructions__steps {
		flex-direction: column;
		height: auto;
	}
}
.instructions__steps-item {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	justify-content: flex-start;
	row-gap: 24px;
	max-height: 393px;
	max-width: 403px;
	height: 100%;
}
@media (max-width: 767px) {
	.instructions__steps-item {
		row-gap: 0;
	}
}
.instructions__steps-title {
	font-size: clamp(1rem, 0.5992217899rem + 1.5564202335vw, 2rem);
}
@media (max-width: 767px) {
	.instructions__steps-title {
		line-height: 44px;
	}
}
@media (max-height: 850px) {
	.instructions__steps-title {
		line-height: 1.5;
	}
}
@media (max-width: 549px) and (max-height: 811px) {
	.instructions__steps-title {
		line-height: 44px;
	}
}
@media (max-width: 767px) {
	.instructions__steps-image::before {
		content: none;
	}
}
@media (max-width: 600px) {
	.instructions__button {
		max-width: 403px;
	}
}
.form {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	background: linear-gradient(
		180deg,
		rgb(255 255 255 / 0.2) 0%,
		rgb(29 52 78 / 0.2) 100%
	);
	max-width: 590px;
	padding: 32px 60px;
	border-radius: 24px;
	row-gap: 48px;
	width: 100%;
}
@media (max-width: 550px) {
	.form {
		padding: 16px;
		row-gap: 24px;
	}
}
.form__fields {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	row-gap: 24px;
	width: 100%;
	max-width: 470px;
}
.form__fields-item {
	width: 100%;
	position: relative;
}
.form__fields-item .error-message {
	font-size: 14px;
	color: red;
	position: absolute;
	text-transform: lowercase;
	bottom: -21px;
	left: 5%;
	line-height: 21px;
	background: #fff0;
	user-select: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	display: none;
}
.form__fields-item .error-message.show {
	display: inline-block;
}
.form__fields-item textarea {
	resize: none;
	height: 200px !important;
}
.form__fields-item input,
.form__fields-item textarea {
	font-size: clamp(0.75rem, 0.6498054475rem + 0.3891050584vw, 1rem);
	width: 100%;
	height: 53px;
	background: var(--color-light);
	border-radius: 42px;
	padding: 16px 24px;
	color: #1c4367;
	border: 2px solid #fff0;
	outline: none;
	transition: all var(--transition-duration) ease;
}
@media (max-width: 550px) {
	.form__fields-item input,
	.form__fields-item textarea {
		height: 36px;
	}
}
.form__fields-item input::-moz-placeholder,
.form__fields-item textarea::-moz-placeholder {
	color: #7c99b5;
	font-size: inherit;
}
.form__fields-item input::placeholder,
.form__fields-item textarea::placeholder {
	color: #7c99b5;
	font-size: inherit;
}
.form__fields-item input:focus,
.form__fields-item textarea:focus {
	border-color: #14a0ff;
	background: linear-gradient(0deg, #fff0 0%, rgb(124 153 181 / 0.4) 100%),
		var(--color-light);
}
.form__fields-item input.valid,
.form__fields-item textarea.valid {
	background: var(--color-light);
	border-color: #14a0ff;
}
.form__fields-item input.invalid,
.form__fields-item textarea.invalid {
	border-color: red;
}
.form__button {
	color: var(--color-lighta);
	border: none;
	max-width: 147px;
}
.form__button::after {
	content: none;
}
@media (max-width: 767px) {
	.form__button {
		max-width: 100%;
		max-width: 470px;
	}
}
.form__notification {
	position: fixed;
	position: fixed;
	top: 20px;
	right: 20px;
	padding: 12px 20px;
	border-radius: 6px;
	color: #fff;
	font-weight: 700;
	z-index: 1000;
	opacity: 0.95;
}
.form__notification.success {
	background-color: var(--color-accent);
}
.form__notification.error {
	background-color: red;
}
.feedback {
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}
@media (max-width: 767px) {
	.feedback {
		row-gap: 24px;
	}
}
@media (max-height: 811px) {
	.feedback {
		padding-block: 46px;
	}
}
@media (max-width: 549px) and (max-height: 811px) {
	.feedback {
		padding-block: 146px;
	}
}
.feedback__title {
	font-size: clamp(1.5rem, 0.8988326848rem + 2.3346303502vw, 3rem);
}
.feedback__subtitle {
	font-size: clamp(1rem, 0.5992217899rem + 1.5564202335vw, 2rem);
	margin-bottom: 24px;
}
@media (max-width: 767px) {
	.feedback__subtitle {
		margin-bottom: 0;
	}
}
@media (max-height: 949px) {
	.feedback__subtitle {
		margin-bottom: 30px;
	}
}
@media (max-height: 811px) {
	.feedback__subtitle {
		margin-bottom: 96px;
	}
}
@media (max-width: 549px) and (max-height: 811px) {
	.feedback__subtitle {
		margin-bottom: 0;
	}
}
