:root {
	--color-main: #EC1826;
	--color-main-hover: #f44c57;
	--font-common: "Montserrat";
	--font-size: 18px;
	--line-height: normal;
}

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	outline: none;
}

html {
	scroll-behavior: smooth;
}

html, body {
	min-height: 100vh;
	height: 100%;
	margin: 0;
	padding: 0;
	background-color: #fff;
}

body {
	font: var(--font-size)/var(--line-height) var(--font-common), sans-serif;
	color: var(--color9);
	background-color: #fff;
	font-variant-numeric: lining-nums proportional-nums;
}

img {
	max-width: 100%;
	max-height: 100%;
}

/* /Fancybox */
@keyframes preloader-animation {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}
.preloader {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 80px;
	height: 80px;
	background-color: #fff;
	padding: 5px;
	border-radius: 50%;
}
.preloader-container {
	width: 70px;
	height: 70px;
	border: 6px solid rgb(234, 234, 234);
	border-top: 6px solid var(--color-main);
	border-radius: 50%;
	animation: preloader-animation 1s linear infinite;
}

.g-hidden {
	display: none;
}

.alert {
	position: relative;
	padding: 0.75rem 1.25rem;
	margin-bottom: 1rem;
	border: 1px solid transparent;
	border-radius: 0.25rem;
}

.alert-danger {
	color: #721c24;
	background-color: #f8d7da;
	border-color: #f5c6cb;
}

.alert-success {
	color: #155724;
	background-color: #d4edda;
	border-color: #c3e6cb;
}

.alert-warning {
	color: #856404;
	background-color: #fff3cd;
	border-color: #ffeeba;
}

.alert-info {
	color: #193855;
	background-color: #eef3f9;
	border-color: #b8daff;
}

.button {
	background: none;
	border: none;
	font: inherit;
	cursor: pointer;
	outline: inherit;
	font-weight: 700;
	font-size: 14px;
	text-align: center;
	color: #fff;
	text-decoration: none;
	background-color: var(--color-main);
	border-radius: 10px;
	box-shadow: 0px 4px 4px 0px #00000040;
	padding: 10px 16px;
	white-space: nowrap;
}

.button:hover {
	background-color: var(--color-main-hover);
}

.simplebar-scrollbar::before {
	background-color: var(--color-main);
}

.simplebar-scrollbar.simplebar-visible::before {
	opacity: 0.5;
}

.simplebar-scrollbar.simplebar-hover::before {
	opacity: 1;
}

.container {
	width: 100%;
	min-width: 320px;
	max-width: 1440px;
	margin: 0 auto;
	padding-right: 36px;
	padding-left: 36px;
}

@media screen and (max-width: 991px) {
	.container {
		padding-right: 15px;
		padding-left: 15px;
	}
}

.title {
	font-weight: 800;
	font-size: 60px;
	line-height: 106%;
	text-align: center;
	text-transform: uppercase;
	color: #141414;  
}

.title_light {
	color: #fff;
}

@media screen and (max-width: 991px) {
	.title {
		font-size: 44px;
	}
}

@media screen and (max-width: 767px) {
	.title {
		font-size: 30px;
	}
}

.block {
	padding: 60px 0 70px;
}

@media screen and (max-width: 767px) {
	.block {
		padding: 40px 0 50px;
	}
}

.block-header {
	display: flex;
	flex-direction: column;
	gap: 34px;
	max-width: 1200px;
	margin: 0 auto 30px;
}

.block-header-description {
	font-weight: 400;
	font-size: 18px;
	line-height: 28px;
	text-align: center;
	color: #737373;
}

.red {
	color: var(--color-main);
}

.main-banner {
	position: relative;
	height: 900px;
	padding: 45px 0 18px;
}

.main-banner:before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.11) 59.13%, #EB051E 100%);
	z-index: 1;
}

@media screen and (max-width: 991px) {
	.main-banner {
		padding: 30px 0 18px;
		height: 800px;
	}
}

@media screen and (max-width: 767px) {
	.main-banner {
		padding: 30px 0 18px;
		height: 640px;
	}
}

.main-banner-container {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 100%;
	position: relative;
	z-index: 2;
}

.main-banner-video {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: #FFFFFF26;
	backdrop-filter: blur(29px);
	border: 1px solid #AAAAAA;
	border-radius: 15px;
	padding: 28px 50px 28px 40px;
}

@media screen and (max-width: 991px) {
	.header {
		padding: 20px 30px;
	}
}

@media screen and (max-width: 767px) {
	.header {
		flex-direction: column-reverse;
		gap: 30px;
	}
}

.header-info {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

@media screen and (max-width: 991px) {
	.header-info {
		gap: 10px;
	}
}

.header-info-item {
	display: flex;
	align-items: center;
	gap: 32px;
}

@media screen and (max-width: 991px) {
	.header-info-item {
		gap: 20px;
	}
}

.header-info-image {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 44px;
	height: 44px;
}

@media screen and (max-width: 991px) {
	.header-info-image {
		width: 30px;
		height: 30px;
	}
}

.header-info-inner {
	display: flex;
	flex-direction: column;
	font-size: 22px;
	line-height: 26px;
	text-transform: uppercase;
	color: #fff;
}

@media screen and (max-width: 991px) {
	.header-info-inner {
		font-size: 16px;
		line-height: 22px;
	}
}

@media screen and (max-width: 767px) {
	.header-info-inner {
		font-size: 14px;
		line-height: 18px;
	}
}

.header-info-title {
	font-weight: 700;
}

.header-info-description {
	font-weight: 500;
}

.header-partners {
	display: flex;
	align-items: center;
}

.header-partners-item {
	display: flex;
	align-items: center;
	max-width: 200px;
	height: 84px;
	margin-right: 40px;
	padding-right: 40px;
	border-right: 1px solid #E6E6E6;
}

@media screen and (max-width: 991px) {
	.header-partners-item {
		margin-right: 20px;
		padding-right: 20px;
	}
}

@media screen and (max-width: 767px) {
	.header-partners-item {
		height: 50px;
	}
}

.header-partners-item:last-child {
	margin: 0;
	padding: 0;
	border: none;
}

.main-banner-body {
	display: flex;
	flex-direction: column;
	gap: 30px;
	max-width: 900px;
	margin: 0 auto;
}

@media screen and (max-width: 767px) {
	.main-banner-body {
		gap: 20px;
	}
}

.main-banner-description {
	font-weight: 700;
	font-size: 20px;
	line-height: 123%;
	text-align: center;
	text-transform: uppercase;
	color: #fff;
}

@media screen and (max-width: 767px) {
	.main-banner-description {
		font-size: 16px;
	}
}

.main-banner-footer {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 18px;
	margin: 0 auto;
}

.main-banner-button {
	background: #FAE3E426;
	border: 1px solid #EEEEEE;
	border-radius: 15px;
	backdrop-filter: blur(22px);
	font-weight: 700;
	font-size: 26px;
	line-height: 34px;
	text-align: center;
	text-transform: uppercase;
	color: #fff;
	padding: 12px 13px;
	text-decoration: none;
	transition: 0.4s;
}

@media screen and (max-width: 767px) {
	.main-banner-button {
		font-size: 18px;
		line-height: 24px;
		padding: 10px 8px;
	}
}

.main-banner-button:hover {
	background: #fae3e44d;
}

.main-banner-arrow {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 84px;
	height: 84px;
	color: #fff;
	transition: 0.4s;
}

@media screen and (max-width: 767px) {
	.main-banner-arrow {
		width: 60px;
		height: 60px;
	}

	.main-banner-arrow-icon {
		width: 30px;
	}
}

.main-banner-arrow:hover {
	padding-top: 10px;
}

.block_gift .block-body {
	margin-top: 60px;
}

@media screen and (max-width: 767px) {
	.block_gift .block-body {
		margin-top: 40px;
	}
}

.gift-list {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 32px;
}

@media screen and (max-width: 991px) {
	.gift-list {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}
}

@media screen and (max-width: 767px) {
	.gift-list {
		grid-template-columns: 1fr;
	}
}

.gift-item {
	display: flex;
	flex-direction: column;
	gap: 20px;
	border: 1px solid #E6E6E6;
	border-radius: 16px;
	box-shadow: 0px 4px 16px 0px #E31E2426;
	padding: 28px 24px 40px;
}

@media screen and (max-width: 991px) {
	.gift-item {
		flex-direction: row;
		padding: 14px;
	}
}

@media screen and (max-width: 767px) {
	.gift-item {
		gap: 10px;
	}
}

.gift-image {
	position: relative;
	aspect-ratio: 1 / 1.073;
}

@media screen and (max-width: 991px) {
	.gift-image {
		width: 100px;
		flex-shrink: 0;
	}
}

@media screen and (max-width: 767px) {
	.gift-image {
		width: 80px;
	}
}

.gift-image::before {
	content: '';
	display: inline-block;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0) 88.39%, #FFFFFF 100%);
}

@media screen and (max-width: 991px) {
	.gift-image::before {
		display: none;
	}
}

.gift-picture {
	object-fit: cover;
	width: 100%;
	height: 100%;
}

.gift-name {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
	font-weight: 700;
	font-size: 18px;
	line-height: 24px;
	text-align: center;
	text-transform: uppercase;
	color: #141414;
}

@media screen and (max-width: 1399px) {
	.gift-name {
		font-size: 16px;
		line-height: 20px;
	}
}

@media screen and (max-width: 1199px) {
	.gift-name {
		font-size: 12px;
		line-height: 16px;
	}
}

@media screen and (max-width: 991px) {
	.gift-name {
		font-size: 14px;
		line-height: 18px;
		width: 100%;
	}
}

.block_history .block-body {
	margin-top: 60px;
}

@media screen and (max-width: 767px) {
	.block_history .block-body {
		margin-top: 40px;
	}
}

.history:before {
	content: '';
	position: absolute;
	top: 110px;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, rgba(236, 24, 38, 0.2) 0%, var(--color-main) 50%, rgba(236, 24, 38, 0.2) 100%);
}

.history-inner {
	display: flex;
	padding-bottom: 30px;
}

.history-list {
	display: flex;
	justify-content: space-between;
	position: relative;
	gap: 20px;
	width: 100%;
}

.history-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 0 32px;
	z-index: 1;
}

.history-item-year {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 80px;
	height: 80px;
	border-radius: 50%;
	background-color: var(--color-main);
	box-shadow: 0px 12px 32px 0px #E31E2433;
	margin-bottom: 8px;
	font-weight: 700;
	font-size: 20px;
	color: #fff;
}

.history-item_now .history-item-year {
	background-color: #262626;
}

.history-item-count {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	font-weight: 700;
	font-size: 30px;
	color: #141414;
	padding: 0 5px;
	margin-bottom: 2px;
	height: 48px;
}

.history-item-count::before {
	content: '';
	display: inline-block;
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	height: 10px;
	transform: translateY(-50%);
	background-color: #fff;
	border-radius: 10px;
	box-shadow: 0 0 10px 10px #fff;
	z-index: -1;
}

.history-item_now .history-item-count {
	color: var(--color-main);
	font-size: 48px;
}

.history-item-text {
	font-weight: 400;
	font-size: 14px;
	color: #737373;
	margin-bottom: 16px;
}

.history-item-icons {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 4px;
	max-width: 80px;
}

.history-item-icon {
	width: 16px;
	color: var(--color-main);
}

.block_gallery {
	/*background: url('../images/gallery-bg.webp'), linear-gradient(to bottom, #fff 50%, var(--color-main) 51%);*/
	background: url('../images/gallery-bg.webp');
  background-position: center top;
  background-repeat: repeat-x;
	padding-top: 246px;
}

@media screen and (max-width: 991px) {
	.block_gallery {
		background-size: cover;
		padding-top: 140px;
	}
}

@media screen and (max-width: 767px) {
	.block_gallery {
		padding-top: 100px;
	}
}

.gallery {
	margin-top: 50px;
	max-width: 1024px;
	margin-left: auto;
	margin-right: auto;
}

.gallery-main {
	position: relative;
}

.gallery-main-container {
	aspect-ratio: 1 / 0.586;
	border-radius: 24px;
	background-color: #fff;
	margin-bottom: 24px;
	overflow: hidden;
}

.gallery-main-item {
	position: relative;
	height: auto;
}

.gallery-main-link {
	display: block;
	width: 100%;
	height: 100%;
}

.gallery-main-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.gallery-main-video {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.gallery-main-video-play {
	position: absolute;
	top: calc(50% - 50px);
	left: calc(50% - 50px);
	width: 100px;
	height: 100px;
	background-color: var(--color-main);
	border-radius: 50%;
	padding: 15px;
}

.gallery-main-item:hover .gallery-main-video-play {
	background-color: var(--color-main-hover);
}

.gallery-main-video-play-icon {
	fill: #fff;
}

.gallery-pagination {
	position: relative;
	margin-bottom: 44px;
}

.gallery-pagination .swiper-pagination-bullet {
	background-color: #FFE0E0;
	border-radius: 4px;
	transition: 0.4s;
	opacity: 0.5;
}

.gallery-pagination .swiper-pagination-bullet-active {
	width: 32px;
	background-color: #F9F6F6;
	opacity: 1;
}

.gallery-button,
.gallery-thumb-button {
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: calc(50% - 25px - 20px);
	width: 40px;
	height: 40px;
	box-shadow: 0px 12px 32px 0px #E31E2433;
	background-color: #E6E6E6;
	border-radius: 10px;
	color: #fff;
	z-index: 1;
	cursor: pointer;
}

.gallery-thumb-button {
	top: calc(50% - 20px);
}

.gallery-button:hover,
.gallery-thumb-button:hover {
	background-color: var(--color-main);
}

.slider-button_disabled {
	display: none;
}

.gallery-button_prev {
	left: 16px;
}

.gallery-button_next {
	right: 16px;
}

.gallery-thumbs {
	position: relative;
}

.gallery-thumbs .swiper-container {
	overflow: hidden;
	padding: 4px 0;
}

.gallery-thumbs-item {
	aspect-ratio: 1 / 0.56;
	border-radius: 12px;
	background-color: #fff;
	opacity: 0.6;
	cursor: pointer;
	overflow: hidden;
}

.gallery-thumbs-item.swiper-slide-thumb-active {
	opacity: 1;
	box-shadow: 0px 0px 0px 4px var(--color-main);
}

.gallery-thumbs-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.gallery-thumb-button_prev {
	left: 16px;
}

.gallery-thumb-button_next {
	right: 16px;
}

.block_reviews {
	background-color: #F5F5F54D;
}

.block_reviews .block-body {
	margin-top: 50px;
}

@media screen and (max-width: 767px) {
	.block_reviews .block-body {
		margin-top: 40px;
	}
}

.reviews {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 32px;
}

@media screen and (max-width: 1199px) {
	.reviews {
		grid-template-columns: repeat(2, 1fr);
		gap: 16px;
	}
}

@media screen and (max-width: 767px) {
	.reviews {
		grid-template-columns: 1fr;
	}
}

.reviews-item {
	background-color: #fff;
	border: 1px solid #E6E6E6;
	border-radius: 16px;
	box-shadow: 0px 4px 16px 0px #E31E2426;
	padding: 28px 32px 35px;
}

.reviews-image {
	text-align: center;
}

.reviews-picture {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	margin-bottom: 24px;
	box-shadow: 0px 0px 0px 4px #EC182633;
}

.reviews-name {
	font-weight: 700;
	font-size: 20px;
	line-height: 28px;
	color: #141414;
	margin-bottom: 10px;
	text-align: center;
}

.reviews-post {
	font-family: Inter, sans-serif;
	font-weight: 600;
	font-size: 14px;
	line-height: 20px;
	color: var(--color-main);
	margin-bottom: 28px;
	text-align: center;
}

.reviews-text {
	font-family: Inter, sans-serif;
	position: relative;
	font-weight: 400;
	font-style: italic;
	font-size: 16px;
	line-height: 24px;
	color: #737373;	
}

.reviews-text-icon {
	position: absolute;
	top: -9px;
	left: -6px;
}

.form {
	width: 100%;
	max-width: 672px;
	margin: 0 auto;
	background-color: #fff;
	border: 1px solid #E6E6E6;
	border-radius: 24px;
	box-shadow: 0px 8px 10px -6px #0000001A, 0px 20px 25px -5px #0000001A;
	padding: 52px 48px 48px;
}

@media screen and (max-width: 767px) {
	.form {
		padding: 30px;
	}
}

.block_register .alert {
	width: 100%;
	max-width: 672px;
	margin: 0 auto;
	margin-bottom: 20px;
}

.field-list {
	display: flex;
	flex-direction: column;
	gap: 28px;
	margin-bottom: 40px;
}

.field-2-items {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px 28px;
}

@media screen and (max-width: 767px) {
	.field-2-items {
		grid-template-columns: 1fr;
	}
}

.field-label {
	display: inline-block;
	font-family: Inter, sans-serif;
	font-weight: 500;
	font-size: 14px;
	margin-bottom: 11px;
}

.input {
  width: 100%;
  height: 48px;
  padding: 8px 13px;
  background-color: #fff;
  color: #141414;
  font-size: 14px;
  border: 1px solid #E6E6E6;
  border-radius: 10px;
  font-family: Inter, sans-serif;
  -webkit-appearance: none; }
  .input::-webkit-input-placeholder {
    font-size: 14px;
    color: #737373; }
  .input:-moz-placeholder {
    font-size: 14px;
    color: #737373; }
  .input::-moz-placeholder {
    font-size: 14px;
    color: #737373; }
  .input:-ms-input-placeholder {
    font-size: 14px;
    color: #737373; }
  .input::placeholder {
    font-size: 14px;
    color: #737373; }
  .input:-webkit-autofill, .input:-webkit-autofill:hover, .input:-webkit-autofill:focus {
    -webkit-text-fill-color: #737373;
    transition: background-color 1s ease-in-out 0s; }

input.form-error {
  display: block;
  border-color: #d25a5f; }
  input.form-error:focus {
    border-color: #d25a5f; }

label.form-error {
  display: block;
  color: #d25a5f;
  font-size: 12px;
  line-height: 20px; }

.selectric {
	background-color: #fff;
	border: 1px solid #E6E6E6;
	border-radius: 10px;
	font-family: Inter, sans-serif; }
.selectric .label {
	margin-left: 13px;
	font-size: 14px;
	color: #141414;
	height: 48px;
	line-height: 48px; }
.selectric-icon {
	background-image: url('../images/arrow-down.svg');
	width: 16px;
	height: 16px;
	background-size: contain;
	display: block; }
.selectric-button {
	position: absolute;
	top: 16px;
	right: 16px; }
.selectric-open .selectric-button {
	transform: rotate(180deg); }
.selectric-items li {
	font-size: 14px; }
.selectric-items {
	background-color: #fff;
	top: calc(100% + 10px);
	border-radius: 10px;
	overflow: hidden; }
.selectric-items li.highlighted,
.selectric-items li:hover {
	background-color: #f0f0f0; }

.checkbox-list {
	display: flex;
	flex-direction: column;
	gap: 20px;
	margin-bottom: 24px;
}

.checkbox {
	position: relative;
	display: flex;
	align-items: flex-start;
	gap: 12px;
	cursor: pointer;
}
.checkbox-field {
	display: flex;
	flex-direction: column;
}
.checkbox-input {
	position: absolute;
	top: 0;
	left: 0;
	width: 0;
	opacity: 0;
}
.checkbox-check {
	display: inline-block;
	position: relative;
	vertical-align: top;
	min-width: 16px;
	width: 16px;
	height: 16px;
	background-color: #fff;
	border: 1px solid var(--color-main);
	border-radius: 50%;
	cursor: pointer;
}
.checkbox-check:before {
	content: "";
	display: inline-block;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: var(--color-main);
	border-radius: 50%;
	margin: 2px;
	opacity: 0;
}
.checkbox-input:checked + .checkbox-check:before {
	opacity: 1;
}
.checkbox-label {
	font-family: Inter, sans-serif;
	font-weight: 500;
	font-size: 14px;
	color: #141414;
}

.register-button {
	font-family: Inter, sans-serif;
	font-size: 18px;
	width: 100%;
	padding: 17px 16px;
	box-shadow: none;
}

@media screen and (max-width: 767px) {
	.register-button {
		font-size: 14px;
		padding: 14px 16px;
	}
}

.register-result {
	display: flex;
	flex-direction: column;
	align-items: center;
	background: url('../images/gallery-bg.webp');
  background-position: center bottom;
	background-size: 100%;
  background-repeat: repeat-x;
	border-radius: 17px;
	width: 100%;
	max-width: 1336px;
	padding: 52px 30px 28px;
}

@media screen and (max-width: 767px) {
	.register-result {
    background-size: auto 170%;
		padding: 30px 20px 20px;
	}
}

.register-result-partners {
	display: flex;
	align-items: center;
	margin-bottom: 53px;
}

@media screen and (max-width: 991px) {
	.register-result-partners {
		margin-bottom: 30px;
	}
}

@media screen and (max-width: 767px) {
	.register-result-partners {
		margin-bottom: 20px;
	}
}

.register-result-partners-item {
	display: flex;
	align-items: center;
	max-width: 110px;
	height: 50px;
	margin-right: 23px;
	padding-right: 23px;
	border-right: 1px solid #E6E6E6;
}

.register-result-partners-item:last-child {
	margin: 0;
	padding: 0;
	border: none;
}

.register-result-title {
	font-weight: 800;
	font-size: 51px;
	line-height: 55px;
	text-align: center;
	text-transform: uppercase;
	color: #fff;
	margin-bottom: 5px;
}

@media screen and (max-width: 991px) {
	.register-result-title {
		font-size: 40px;
		line-height: 48px;
	}
}

@media screen and (max-width: 767px) {
	.register-result-title {
		font-size: 28px;
		line-height: 34px;
	}
}

.register-result-number-title {
	font-weight: 400;
	font-size: 32px;
	line-height: 53px;
	text-align: center;
	text-transform: lowercase;
	color: #fff;
	margin-bottom: 36px;
}

@media screen and (max-width: 991px) {
	.register-result-number-title {
		font-size: 26px;
		line-height: 44px;
		margin-bottom: 22px;
	}
}

@media screen and (max-width: 767px) {
	.register-result-number-title {
		font-size: 18px;
		line-height: 32px;
		margin-bottom: 16px;
	}
}

.register-result-number {
	font-weight: 800;
	font-size: 158px;
	text-align: center;
	color: #fff;
	padding: 38px 112px;
	border: 1px solid #EEEEEE;
	border-radius: 12px;
	background: #FAE3E426;
	backdrop-filter: blur(18px);
	margin-bottom: 32px;
}

@media screen and (max-width: 991px) {
	.register-result-number {
		font-size: 120px;
		padding: 30px 84px;
		margin-bottom: 20px;
	}
}

@media screen and (max-width: 767px) {
	.register-result-number {
		font-size: 70px;
		padding: 20px 50px;
	}
}

.register-result-description {
	font-weight: 500;
	font-size: 24px;
	line-height: 54px;
	text-align: center;
	text-transform: lowercase;
	color: #fff;	
}

@media screen and (max-width: 991px) {
	.register-result-description {
		font-size: 18px;
		line-height: 30px;
	}
}

@media screen and (max-width: 767px) {
	.register-result-description {
		font-size: 16px;
		line-height: 20px;
	}
}

.footer {
	background: url('../images/footer-bg.webp');
  background-position: center top;
  background-repeat: repeat-x;
	padding-top: 60px;
}

.footer-back {
	background-color: #EB051E;
	width: 100%;
}

.footer-container {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 45px;
	background-color: #EB051E;
	width: 100%;
	padding-top: 54px;
	padding-bottom: 26px;
}

@media screen and (max-width: 767px) {
	.footer-container {
		gap: 30px;
	}
}

.footer-title {
	font-weight: 700;
	font-size: 40px;
	text-align: center;
	text-transform: uppercase;
	color: #fff;
	width: 100%;
}

@media screen and (max-width: 991px) {
	.footer-title {
		font-size: 30px;
	}
}

.footer-partners {
	display: flex;
	align-items: center;
	gap: 78px;
}

@media screen and (max-width: 767px) {
	.footer-partners {
		flex-direction: column;
		gap: 20px;
	}
}

.footer-partners-item {
	max-width: 300px;
	max-height: 180px;
}

@media screen and (max-width: 991px) {
	.footer-partners-item {
		max-width: 200px;
		max-height: 120px;
	}
}

@media screen and (max-width: 767px) {
	.footer-partners-item {
		max-width: 130px;
	}
}

.footer-nav {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	width: 100%;
}

@media screen and (max-width: 767px) {
	.footer-nav {
		grid-template-columns: 1fr;
	}
}

.footer-nav-item:nth-child(2) {
	text-align: center;
}

.footer-nav-item:last-child {
	text-align: right;
}

@media screen and (max-width: 767px) {
	.footer-nav-item {
		display: flex;
		flex-direction: column;
		align-items: center;
	}
}

.footer-menu {
	font-family: Inter, sans-serif;
	font-size: 16px;
	line-height: 19px;
	color: #FFFFFFCC;
	padding-left: 18px;
}

.footer-menu-link {
	color: #FFFFFF;
	text-decoration: none;
	opacity: 0.8;
}

.footer-menu-link:hover {
	opacity: 1;
}

.footer-phone {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1px;
}

.footer-phone-title {
	font-family: Inter, sans-serif;
	font-size: 16px;
	line-height: 19px;
	color: #FFFFFFCC;
}

.footer-phone-value {
	font-family: Inter, sans-serif;
	font-weight: 500;
	font-size: 20px;
	color: #fff;
	text-decoration: none;
}

.footer-phone-value:hover {
	opacity: 0.8;
}

.footer-right {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.footer-org-link {
	font-family: Inter, sans-serif;
	font-weight: 500;
	font-size: 24px;
	color: #fff;
	text-decoration: none;
}

@media screen and (max-width: 767px) {
	.footer-org-link {
		font-size: 20px;
	}
}

.footer-org-link:hover {
	opacity: 0.8;
}

.footer-develop {
	display: flex;
	flex-direction: column;
	gap: 0;
}

@media screen and (max-width: 767px) {
	.footer-develop {
		align-items: center;
	}
}

.footer-develop-label {
	font-family: Inter, sans-serif;
	font-size: 16px;
	line-height: 19px;
	color: #FFFFFFCC;
}

.footer-develop-link {
	text-decoration: none;
}

.footer-develop-link:hover {
	opacity: 0.8;
}

.footer-develop-icon {
	width: 120px;
	height: auto;
}

.footer-socials {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 9px;
}

.footer-socials-link {
	max-width: 36px;
	max-height: 36px;
	text-decoration: none;
}

.footer-socials-link:hover {
	opacity: 0.9;
}