html {
	scroll-behavior: smooth;
}

.result_year-page__container h1,
.result_year-page__container h2,
.result_year-page__container h3,
.result_year-page__container h4,
.result_year-page__container h5,
.result_year-page__container h6,
.result_year-page__container p {
	margin-bottom: 0;
}

.result_year-page__container {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	gap: 80px;
	font-family: "Factor A", sans-serif;
	color: #121217;
	scroll-behavior: smooth;
	overflow: hidden;
}

.result_year-block {
	width: 100%;
	max-width: 1260px;
	display: flex;
	flex-direction: column;
	gap: 36px;
	border-radius: 24px;
	padding: 40px 50px 157px 50px;
	margin-top: 59px;
	background:
		url('./img/result-main-back.webp') no-repeat right center / cover,
		linear-gradient(75.64deg, #F8F8F8 0%, #F8F8F8 53.37%, #E71026 100%);
}

.result_year-logo {
	display: flex;
	flex-direction: column;
	margin-bottom: 45px;
}

.result_year-logo-chng {
	width: fit-content;
}

.result_year-text-content {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.result_year__title {
	font-size: 56px;
	font-weight: 800;
	line-height: 100%;
}

.result_year__title span {
	color: #BD0C1E;
}

.result_year__descr {
	font-size: 24px;
	font-weight: 400;
	line-height: 100%;
}

.result_year-link {
	width: fit-content;
	background-color: #BD0C1E;
	color: #FFFFFF;
	font-size: 16px;
	font-weight: 400;
	line-height: 100%;
	padding: 16px 24px;
	border-radius: 16px;
	text-decoration: none;
	transition: background-color 0.3s, color 0.3s;
}

.result_year-link-decstop {
	display: flex;
}

.result_year-link-mobile {
	display: none;
}

.result_year-link:hover {
	color: #FFFFFF;
	background-color: #121217;
}

.year_change-container {
	width: 100%;
	height: 100vh;
	max-height: 731px;
	background-color: #F8F8F8;
	background-image: url(./img/year-change-backg.webp);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 80px 0;
	position: relative;
}

.year_change-container::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url(./img/year-change-star-left.webp);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: left top;
	z-index: 1;
}

.year_change-container::after {
	content: "";
	position: absolute;
	bottom: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background: url(./img/year-change-star-right.webp);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: right bottom;
	z-index: 1;
}

.year_change-block {
	width: 100%;
	max-width: 1260px;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	position: relative;
	z-index: 10;
}

.year_change-block-title {
	display: flex;
	justify-content: center;
}

.year_change-title {
	font-size: 34px;
	font-weight: 800;
	line-height: 110%;
}

.year_change-steps-container {
	width: max-content;
	height: fit-content;
	display: flex;
	position: relative;
}

/* Для более плавного эффекта "параллакс" */
.year_change-step:nth-child(odd).step-active {
	transform: translateY(0) rotateX(0);
}

.year_change-step:nth-child(even).step-active {
	transform: translateY(0) rotateX(0);
}

.year_change-step {
	width: max-content;
	height: fit-content;
	display: flex;
	position: absolute;
	bottom: 15px;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.6s ease,
		visibility 0.6s ease,
		transform 0.6s ease;
	transform: translateY(20px);
}

.year_change-dynamic-info {
	display: flex;
	flex-direction: column;
	gap: 16px;
	position: absolute;
	bottom: 0;
	width: 100%;
	opacity: 0;
	visibility: hidden;
	transform: translateY(20px);
	transition: opacity 0.7s ease, transform 0.7s ease, visibility 0.7s;
}



.year_change-dynamic-info.step-active {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.year_change-dynamic-descr {
	display: flex;
	flex-direction: column;
	gap: 16px;
	background-color: #F8F8F8;
	padding: 20px;
	border: 2px solid #BD0C1E;
	border-radius: 24px;
}

.dynamic-info-one {
	max-width: 426px;
	left: 0;
}

.dynamic-info-two {
	max-width: 474px;
	left: 20%;
}

.dynamic-info-three {
	max-width: 461px;
	left: 40%;
}

.dynamic-info-four {
	max-width: 500px;
	left: 60%;
}

.year_change-count {
	width: 32px;
	height: 32px;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #FFFFFF;
	background-color: #BD0C1E;
	border-radius: 100px;
}

.year_change-count,
.year_change-descr {
	font-size: 16px;
	font-weight: 400;
	line-height: 110%;
}

.student_results_container {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.student_results_block {
	width: 100%;
	max-width: 1260px;
	display: flex;
	gap: 24px;
}

.student_results-info-block {
	display: flex;
	flex-direction: column;
	gap: 16px;
	background-color: #F8F8F8;
	padding: 40px 32px;
	border-radius: 32px;
}

.student_results-info-calculations {
	font-size: 48px;
	font-weight: 500;
	line-height: 100%;
}

.student_results-info-desc {
	font-size: 24px;
	font-weight: 700;
	line-height: 110%;
}

.calculations_year-container {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 32px;
	background:
		url(./img/calculations-vector-backg.webp) no-repeat left center / contain,
		linear-gradient(245.33deg, #FFEAEC -14.91%, #FFFFFF 111.56%);
	padding: 80px 0;
}

.calculations_year-title {
	font-size: 34px;
	font-weight: 800;
	line-height: 110%;
}

.calculations_year-blocks {
	width: 100%;
	max-width: 1260px;
	display: flex;
	gap: 24px;
}

.calculations_year-info-block {
	height: 100vh;
	max-height: 311px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	background-color: #FFFFFF;
	padding: 24px;
	border-radius: 24px;
}

.calculations_year-info-numbers {
	font-size: 48px;
	font-weight: 500;
	line-height: 100%;
}

.achievements_year-info-desc {
	font-size: 20px;
	font-weight: 400;
	line-height: 110%;
}

.calculations_year-info-desc {
	font-size: 20px;
	font-weight: 400;
	line-height: 110%;
}

.student_results-info-desc {
	font-size: 20px;
	font-weight: 400;
	line-height: 110%;
}

.comparisons_main-contaner {
	width: 100%;
	max-width: 1260px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 32px;
}

.comparisons_main-title {
	font-size: 24px;
	font-weight: 700;
	line-height: 110%;
}

.comparisons_main-imgs {
	border-radius: 24px;
	position: relative;
	overflow: hidden;
}

.comparisons_main-img,
.comparisons_main-img-mobile {
	transition: opacity 0.3s ease-in-out;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: auto;
	opacity: 0;
	border-radius: 24px;
}

.comparisons_main-img.active,
.comparisons_main-img-mobile.active {
	position: relative;
	opacity: 1;
}

.comparisons_main-img-mobile {
	display: none;
}

.comparisons_main-buttons {
	background-color: #F2F2F2;
	border-radius: 40px;
	padding: 6px;
}

.comparisons_main-button {
	font-size: 24px;
	font-weight: 700;
	line-height: 110%;
	padding: 12px 24px;
	color: #121217;
	border-radius: 32px;
	border: none;
	transition: background-color 0.3s ease, color 0.3s ease;
}

.main-button-old.button-active {
	background-color: #FFFFFF;
}

.main-button-new.button-active {
	background-color: #BD0C1E;
	color: #FFFFFF;
}

.comparisons_main-button:hover {
	cursor: pointer;
	opacity: 0.7;
}

.achievements_year-container {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 32px;
	background:
		url(./img/achievements-vector-backg.svg) no-repeat right center / contain,
		linear-gradient(245.33deg, #FFEAEC -14.91%, #FFFFFF 111.56%);
	padding: 80px 0;
}

.achievements_year-title {
	font-size: 34px;
	font-weight: 800;
	line-height: 110%;
}

.achievements_year-blocks {
	width: 100%;
	max-width: 1260px;
	display: flex;
	gap: 24px;
}

.achievements_year-info-block {
	width: 100%;
	height: 100vh;
	max-height: 429px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	background-color: #FFFFFF;
	padding: 24px;
	border-radius: 24px;
}

.achievements_year-info-left-backg {
	background-image: url(./img/img-vector-left-backg.svg);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: top center;
}



.achievements_year-info-numbers {
	font-size: 48px;
	font-weight: 500;
	line-height: 100%;
}

.achievements_year-info-backg {
	background-image: url(./img/achievements-star-backg.svg);
	background-repeat: no-repeat;
	background-size: auto;
	background-position: right top;
}

.achievements_year-info-top {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.achievements_year-info-text {
	font-size: 20px;
	font-weight: 400;
	line-height: 110%;
}

.achievements_year-info-img {
	width: 100%;
	height: 100%;
	max-width: 351px;
	max-height: 240px;
}

.achievements_year-info-bottom {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.achievements_year-info-custom {
	display: flex;
	justify-content: flex-end;
	gap: 4px;
}



.events_year-container {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 64px;
	position: relative;
}

.events_year-title {
	font-size: 34px;
	font-weight: 800;
	line-height: 110%;
}

.events_year-sliders-container {
	width: 100%;
	display: flex;
	flex-direction: column;
	position: relative;
}

.events_year-slider-container {
	width: 100%;
	display: flex;
	align-items: center;
	flex-direction: column;
	padding-bottom: 120px;
	position: relative;
	min-height: 300px;
	position: relative;
}

.sliders-container-top {
	position: relative;
}

.events_year-sliders-container::before {
	content: "";
	position: absolute;
	top: -35px;
	right: 0;
	width: 100%;
	height: 100%;
	background: url(./img/img-backg-vector.svg);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: top;
	z-index: -1;
}

.events_year-sliders-container::after {
	content: "";
	position: absolute;
	top: -192px;
	right: 0;
	width: 100%;
	height: 100%;
	background: url(./img/img-backg-slide-block.webp);
	background-repeat: no-repeat;
	background-size: auto;
	background-position: right top;
	z-index: -1;
}

.sliders-container-top::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url(./img/img-backg-vector-bottom.svg);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: left bottom;
	z-index: -1;
}

.events_year-slider-block {
	width: 100%;
	max-width: 1260px;
	display: flex;
	flex-direction: column;
	gap: 16px;
	position: relative;
}

.slider-block-left {
	align-items: flex-start;
}

.slider-block-right {
	align-items: flex-end;
}

.slider-block-left-one::before {
	content: "";
	position: absolute;
	top: 10px;
	left: -40px;
	width: 100%;
	height: 100%;
	background: url(./img/img-star-left.svg);
	background-repeat: no-repeat;
	background-size: auto;
	background-position: left top;
	z-index: 1;
}

.slider-block-right-one::after {
	content: "";
	position: absolute;
	bottom: -75px;
	right: -1px;
	width: 100%;
	height: 100%;
	background: url(./img/img-star-right.svg);
	background-repeat: no-repeat;
	background-size: auto;
	background-position: right bottom;
	z-index: 1;
}

.events_year-slider-title {
	width: 100%;
	max-width: 767px;
	font-size: 24px;
	font-weight: 700;
	line-height: 110%;
	text-align: center;
}

h4.events_year-slider-title {
	width: 100%;
	max-width: 100%;
}

/* Контейнеры для изображений */
.events_year-slider-left,
.events_year-slider-right,
.events_year-slider-bottom {
	position: relative;
	overflow: hidden;
}

.slider-container-left-two::before {
	content: "";
	position: absolute;
	bottom: -190px;
	left: -1px;
	width: 100%;
	height: 100%;
	background: url(./img/img-star-three.svg);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: left bottom;
	z-index: 0;
}

.slider-block-left-two::after {
	content: "";
	position: absolute;
	bottom: -125px;
	right: -15px;
	width: 100%;
	height: 100%;
	height: -webkit-fill-available;
	background: url(./img/img-magnifier.webp);
	background-repeat: no-repeat;
	background-size: auto;
	background-position: right bottom;
	z-index: 1;
}

.slider-block-right-two::after {
	content: "";
	position: absolute;
	bottom: -86px;
	left: 36px;
	width: 100%;
	height: 100%;
	height: -webkit-fill-available;
	background: url(./img/img-case.svg);
	background-repeat: no-repeat;
	background-size: auto;
	background-position: left bottom;
	z-index: 1;
}

.events_year-slider-left,
.events_year-slider-right {
	width: 100%;
	height: 100vh;
	max-height: 482px;
	margin: 0 auto;
}

.events_year-slider-bottom {
	width: 100%;
	height: 100vh;
	max-width: 1260px;
	max-height: 779px;
	display: flex;
	margin: 0 auto;
}

/* Стили для слайдов */
.events_year-slide-img {
	position: absolute;
	width: 100%;
	max-width: 767px;
	height: 100%;
	object-fit: cover;
	opacity: 0;
	transition: opacity 1s ease-in-out;
	border-radius: 34px;
}

.events_year-slide-img.active {
	opacity: 1;
}

/* Индикаторы для слайдера */
.slider-indicators {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 10px;
	z-index: 10;
}

.slider-indicator {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background-color: rgba(255, 255, 255, 0.5);
	border: 2px solid rgba(255, 255, 255, 0.8);
	cursor: pointer;
	transition: all 0.3s ease;
}

.slider-indicator.active {
	background-color: #fff;
	transform: scale(1.2);
}

/* Стрелки навигации */
.slider-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 100%;
	display: flex;
	justify-content: space-between;
	padding: 0 20px;
	z-index: 10;
	display: none;
}

.slider-arrow {
	background-color: rgba(0, 0, 0, 0.5);
	color: white;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: background-color 0.3s ease;
	font-size: 20px;
	user-select: none;
}

.slider-arrow:hover {
	background-color: rgba(0, 0, 0, 0.8);
}

/* Для разных контейнеров */
.events_year-slider-left {
	display: flex;
	justify-content: flex-start;
}

.events_year-slider-right {
	display: flex;
	justify-content: flex-end;
}

.events_year-slider-container-bottom {
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 49px;
	padding-top: 120px;
	position: relative;
}

.events_year-slider-container-bottom .events_year-slider-block::before {
	content: "";
	position: absolute;
	top: 28px;
	left: -31px;
	width: 100%;
	height: 100%;
	background: url(./img/img-star-left.svg);
	background-repeat: no-repeat;
	background-size: auto;
	background-position: left top;
	z-index: 1;
}

.events_year-slider-container-bottom .events_year-slider-block::after {
	content: "";
	position: absolute;
	bottom: -47px;
	right: -75px;
	width: 129px;
	height: 129px;
	background: url(./img/img-star-bottom.svg);
	background-repeat: no-repeat;
	background-size: auto;
	background-position: right bottom;
	z-index: 1;
}


.slider-block-right-one::before {
	content: "";
	position: absolute;
	top: -20px;
	left: -40px;
	width: 100%;
	height: 100%;
	background: url(./img/img-backg-cup.webp);
	background-repeat: no-repeat;
	background-size: auto;
	background-position: left center;
	z-index: -1;
}

.events_year-slider-container-bottom .events_year-slide-img-blcok {
	width: 100%;
	display: flex;
	position: relative;
}

.events_year-slider-container-bottom::before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url(./img/img-vector-backg.svg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: left bottom;
	z-index: -1;
}

.events_year-slider-bottom .events_year-slide-img {
	border-radius: 48px;
}

.events_year-slider-right .events_year-slide-img-blcok {
	display: flex;
	justify-content: flex-end;
}


.events_year-slider-bottom .events_year-slide-img {
	max-width: 100%;
}


.result_form-container {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 25px;
	background-color: #F8F8F8;
	background-image: url(./img/result-form-star-backg.svg);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: right bottom;
	padding: 80px 0 53px 0;
}

.result_form-block {
	width: 100%;
	max-width: 1260px;
	display: flex;
	flex-direction: column;
	gap: 25px;
}

.result_form-title {
	font-size: 34px;
	font-weight: 800;
	line-height: 110%;
}

.result_form-descr {
	font-size: 20px;
	font-weight: 400;
	line-height: 110%;
	margin-top: 10px;
}

.result_form {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.result_form-textarea {
	width: 100%;
	height: 100vh;
	max-width: 744px;
	max-height: 236px;
	font-size: 16px;
	font-weight: 400;
	line-height: 110%;
	padding: 14px 18px;
	border: 1px solid #CDCDCF;
	border-radius: 16px;
}

.result_form-condition-invoice {
	max-width: 744px;
	display: flex;
	justify-content: space-between;
	font-size: 14px;
	font-weight: 400;
	line-height: 100%;
}

.result_form-submit {
	width: fit-content;
	background-color: #BD0C1E;
	color: #FFFFFF;
	font-size: 16px;
	font-weight: 400;
	line-height: 100%;
	border-radius: 16px;
	border: none;
	margin-top: 16px;
	padding: 16px 24px;
	transition: background-color 0.3s, color 0.3s;
}

.result_form-submit:hover {
	background-color: #121217;
	color: #FFFFFF;
}


* desktop */ .year_change-container {
	height: 100vh;
	overflow: hidden;
}

.year_change-step {
	/* display: none; */
	opacity: 0;
}

.year_change-step.step-active {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
	pointer-events: all;
}

/* slider */
.swiper {
	width: 100%;
}

.swiper-slide {
	padding: 16px;
}

.year_change-container {
	position: relative;
	overscroll-behavior: contain;
}

.year_change-dynamic-info {
	opacity: 0.3;
	transition: opacity 0.4s ease, transform 0.4s ease;
}

.year_change-dynamic-info.step-active {
	opacity: 1;
	transform: translateY(0);
}

.year_change-container .swiper {
	max-width: 1260px;
	height: 100%;
}

.swiper-slide.year_change-dynamic-info {
	max-width: fit-content;
	height: fit-content;
}

.year_change-slider.mobile-only {
	flex-direction: column;
	align-items: center;
	gap: 16px;
	padding: 40px 16px;
	background-color: #F8F8F8;
}

.year_change-slider.mobile-only .swiper-slide {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
}

.year_change-slider.mobile-only .swiper-wrapper .swiper-pagination {
	position: relative;
}

.year_change-step-one {
	left: 0;
}

.year_change-step.year_change-step-two {
	left: 200px;
}

.year_change-step-three {
	left: 550px;
}

.year_change-step-four {
	left: 770px;
}

/* Стили для кнопок навигации */

.swiper-navigation {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 16px;
	position: relative;
}

.yearChangeSwiper .swiper-button-prev,
.yearChangeSwiper .swiper-button-next {
	width: 48px;
	height: 48px;
	background-color: #BD0C1E;
	border-radius: 50%;
	color: #FFFFFF;
	position: relative;
	transition: background-color 0.3s, color 0.3s;
}

.yearChangeSwiper .swiper-button-prev:after,
.yearChangeSwiper .swiper-button-next:after {
	font-size: 14px;
	color: #FFFFFF;
	display: flex;
	justify-content: center;
	align-items: center;
}

.swiper-button-prev:after {
	content: "";
	width: 100%;
	height: 100%;
}

.swiper-button-next:after {
	content: "";
	width: 100%;
	height: 100%;
}

.yearChangeSwiper .swiper-button-prev:hover,
.yearChangeSwiper .swiper-button-next:hover {
	background-color: #121217;
}

/* Адаптивность */

@media (max-width: 1450px) {

	.student_results_block {
		width: 100%;
		flex-wrap: wrap;
	}

	.student_results-info-block {
		width: 100%;
	}

	.calculations_year-container,
	.achievements_year-container {
		background-size: cover;
	}

	.achievements_year-blocks,
	.calculations_year-blocks {
		flex-wrap: wrap;
		justify-content: center;
	}

	.achievements_year-info-block,
	.calculations_year-info-block {
		max-width: 400px;
	}
}


@media (max-width: 1350px) {
	.events_year-slider-container-bottom .events_year-slider-block::before {
		width: 41px;
		height: 41px;
		top: 21px;
		left: 7px;
		background: url(./img/img-star-left-mobile.svg);
		background-size: contain;
		background-repeat: no-repeat;
		background-position: left top;
	}

	.events_year-slider-container-bottom .events_year-slider-block::after {
		width: 41px;
		height: 41px;
		bottom: -20px;
		right: 22px;
		background: url(./img/img-star-bottom-mobile.svg);
		background-size: contain;
		background-repeat: no-repeat;
		background-position: right bottom;
	}

	.slider-container-left-two::before {
		content: "";
		position: absolute;
		bottom: -190px;
		left: -1px;
		width: 100%;
		height: 100%;
		background: url(./img/img-star-three-mobile.svg);
		background-repeat: no-repeat;
		background-size: contain;
		background-position: left bottom;
		z-index: 0;
	}

	.sliders-container-bottom {
		position: relative;
	}

	.slider-container-left-one::after {
		content: "";
		width: 100%;
		height: 100%;
		max-width: 37px;
		max-height: 39px;
		position: absolute;
		bottom: -25px;
		left: 44px;
		background: url(./img/img-snowflake-left.svg);
		background-size: contain;
		background-repeat: no-repeat;
		background-position: left bottom;
	}

	.sliders-container-bottom::before {
		content: "";
		width: 100%;
		height: 100%;
		max-width: 49px;
		max-height: 51px;
		position: absolute;
		top: -25px;
		left: 44px;
		background: url(./img/img-snowflake-left.svg);
		background-size: contain;
		background-repeat: no-repeat;
		background-position: left top;
	}

	.slider-container-left-two::after {
		content: "";
		width: 100%;
		height: 100%;
		max-width: 37px;
		max-height: 39px;
		position: absolute;
		top: -25px;
		right: 44px;
		background: url(./img/img-snowflake-left.svg);
		background-size: contain;
		background-repeat: no-repeat;
		background-position: right top;
	}

	.slider-block-left-one::before {
		top: 37px;
		left: -2px;
		max-width: 41px;
		max-height: 41px;
		background-size: contain;
	}

	.slider-block-right-one::after {
		max-width: 41px;
		max-height: 41px;
		bottom: -11px;
		right: 10px;
		background-size: contain;
	}

	.events_year-sliders-container::after {
		content: "";
		position: absolute;
		top: -130px;
		right: 0;
		width: 100%;
		height: 100%;
		background: url(./img/img-backg-slide-block-mobile.svg);
		background-repeat: no-repeat;
		background-size: auto;
		background-position: right top;
		z-index: -1;
	}

	.events_year-container::before {
		content: "";
		width: 100%;
		height: 100%;
		max-width: 49px;
		max-height: 51px;
		position: absolute;
		top: -51px;
		right: 44px;
		background: url(./img/img-snowflake-left.svg);
		background-size: contain;
		background-repeat: no-repeat;
		background-position: right top;
	}
}

@media (max-width: 1300px) {

	.year_change-container,
	.calculations_year-container,
	.achievements_year-container {
		padding: 80px 16px;
	}

	.student_results_container,
	.comparisons_main-contaner,
	.events_year-container {
		padding: 0 16px;
	}

	.result_form-container {
		padding: 80px 16px 53px 16px;
	}

	.year_change-step-four {
		left: 745px;
	}
}

@media (max-width: 1250px) {

	.slider-block-right-one::before,
	.slider-block-left-two::after,
	.slider-block-right-two::after {
		display: none;
	}

	.year_change-step-three {
		left: 525px;
	}

	.year_change-step-four {
		left: 675px;
	}
}

@media (max-width: 1200px) {
	.year_change-step-four {
		left: 640px;
	}
}

@media (max-width: 1150px) {
	.year_change-step-four {
		left: 600px;
	}

	.events_year-slider-container-bottom .events_year-slider-block::before {
		top: 60px;
		left: -4px;
	}
}

@media (max-width: 1100px) {
	.year_change-step-three {
		left: 425px;
	}

	.year_change-step-four {
		left: 540px;
	}
}

@media (max-width: 1050px) {
	.year_change-step-four {
		left: 500px;
	}
}

@media (max-width: 1024px) {

	.year_change-container.desktop-only, .result_year-link-decstop {
		display: none;
	}

	.year_change-slider.mobile-only, .result_year-link-mobile {
		display: flex;
	}

	.year_change-dynamic-descr {
		width: 100%;
		max-width: 500px;
	}

	.year_change-slider.mobile-only {
		width: -webkit-fill-available;
	}

	.year_change-slider.mobile-only .swiper-pagination {
		width: fit-content;
		position: relative;
	}

	.year_change-slider.mobile-only .swiper-pagination .swiper-pagination-bullet {
		background-color: #C8C8C8;
	}

	.year_change-slider.mobile-only .swiper-pagination .swiper-pagination-bullet-active {
		background-color: #BD0C1E;
	}
}

@media (max-width: 900px) {
	.result_form-container {
		background-image: url(./img/result-form-star-backg-mobile.svg);
		background-size: auto;
		background-position: right bottom -345px;
	}
}

@media (max-width: 800px) {
	.slider-container-left-one::after {
		bottom: 2px;
		left: 34px;
	}
}

@media (max-width: 768px) {
	.events_year-title {
		font-size: 2rem;
	}

	.events_year-slider-title {
		font-size: 1.5rem;
	}

	.events_year-slider-left,
	.events_year-slider-right {
		height: 300px;
	}

	.events_year-slider-bottom {
		height: 350px;
	}

	.result_year-block {
		height: 100vh;
		max-height: 860px;
		background: radial-gradient(121.03% 121.03% at 33.46% 28%, #FFFFFF 0%, #FFFFFF 42.31%, #BD0C1E 98.08%);
		gap: 24px;
		padding: 71px 32px 32px 32px;
	}
}

@media (max-width: 600px) {
	.events_year-slider-container-bottom .events_year-slider-block::before {
		top: 86px;
	}

	.slider-container-left-two::after {
		top: -43px;
	}
}

@media (max-width: 480px) {

	.events_year-slider-left,
	.events_year-slider-right {
		height: 250px;
	}

	.events_year-slider-bottom {
		height: 300px;
	}

	.slider-arrow {
		width: 30px;
		height: 30px;
		font-size: 16px;
	}
}

@media (max-width: 450px) {

	.result_year-page__container {
		gap: 40px;
	}

	.result_year-text-content {
		gap: 8px;
	}

	.result_year-logo {
		margin-bottom: 8px;
	}

	.result_year__title {
		font-size: 34px;
		line-height: 110%;
	}

	.result_year__descr {
		font-size: 14px;
		font-weight: 300;
		line-height: 110%;
	}

	.result_year-link {
		font-size: 14px;
		font-weight: 400;
		line-height: 100%;
	}

	.year_change-title {
		font-size: 24px;
		font-weight: 700;
		line-height: 120%;
	}

	.student_results-info-block {
		padding: 20px 16px;
	}

	.student_results-info-calculations {
		font-size: 34px;
		font-weight: 500;
		line-height: 120%;
	}

	.student_results-info-desc {
		font-size: 16px;
		line-height: 110%;
	}

	.calculations_year-container {
		gap: 16px;
		padding: 40px 16px 33px 16px;
	}

	.calculations_year-title {
		font-size: 24px;
		font-weight: 700;
		line-height: 120%;
	}

	.calculations_year-blocks {
		gap: 16px;
	}

	.calculations_year-info-block {
		height: 100%;
		max-height: 100%;
		justify-content: normal;
		gap: 32px;
		padding: 20px 16px;
	}

	.calculations_year-info-numbers {
		font-size: 34px;
		font-weight: 500;
		line-height: 120%;
	}

	.calculations_year-info-desc {
		font-size: 14px;
		font-weight: 300;
		line-height: 110%;
	}

	.comparisons_main-contaner {
		gap: 24px;
	}

	.comparisons_main-title {
		font-size: 16px;
	}

	.comparisons_main-button {
		font-size: 16px;
		font-weight: 500;
		line-height: 110%;
	}

	.comparisons_main-img {
		display: none;
	}

	.comparisons_main-img-mobile {
		display: block;
	}

	.achievements_year-container {
		gap: 16px;
		padding: 40px 16px;
	}

	.achievements_year-title {
		font-size: 24px;
		font-weight: 700;
		line-height: 120%;
	}

	.achievements_year-blocks {
		gap: 16px;
	}

	.achievements_year-info-block {
		height: 100%;
		max-height: 100%;
		justify-content: normal;
		gap: 64px;
		padding: 20px 16px;
	}

	.achievements_year-info-text {
		font-size: 14px;
		font-weight: 400;
		line-height: 110%;
	}

	.achievements_year-info-numbers {
		font-size: 34px;
		font-weight: 500;
		line-height: 120%;
	}

	.achievements_year-info-desc {
		font-size: 14px;
		font-weight: 400;
		line-height: 110%;
	}

	.events_year-container {
		gap: 32px;
	}

	.events_year-title {
		font-size: 24px;
		font-weight: 700;
		line-height: 120%;
	}

	.events_year-slider-container {
		padding-bottom: 48px;
	}

	.events_year-slider-block {
		gap: 8px;
	}

	.events_year-slider-title {
		font-size: 16px;
		line-height: 110%;
	}

	.events_year-slider-container-bottom {
		padding-top: 48px;
	}

	.sliders-container-bottom .events_year-slider-block {
		gap: 10px;
	}

	.sliders-container-bottom .events_year-slider-title {
		font-size: 16px;
		font-weight: 700;
		line-height: 110%;
	}

	.result_form-container {
		padding: 40px 16px;
	}

	.result_form-block {
		gap: 16px;
	}

	.result_form-title {
		font-size: 24px;
		font-weight: 700;
		line-height: 120%;
	}

	.result_form-descr {
		font-size: 14px;
		font-weight: 400;
	}

	.result_form {
		gap: 8px;
	}

	.result_form-textarea {
		font-size: 14px;
	}

	.result_form-condition-invoice {
		line-height: 110%;
	}

	.result_form-submit {
		margin-top: 24px;
	}

	.events_year-slide-img {
		max-width: 309px;
	}

	.events_year-slide-img {
		border-radius: 16px;
	}

	.events_year-slider-bottom .events_year-slide-img {
		border-radius: 16px;
	}

	.slider-block-left-one::before {
		top: 12px;
		left: -10px;
		max-width: 41px;
		max-height: 41px;
		background-size: contain;
	}

	.slider-block-right-one::after {
		max-width: 41px;
		max-height: 41px;
		bottom: -17px;
		right: -3px;
		background-size: contain;
	}

	.events_year-slider-container-bottom .events_year-slider-block::before {
		width: 41px;
		height: 41px;
		top: 28px;
		left: -2px;
		background: url(./img/img-star-left-mobile.svg);
		background-size: contain;
		background-repeat: no-repeat;
		background-position: left top;
	}

	.events_year-slider-container-bottom .events_year-slider-block::after {
		width: 41px;
		height: 41px;
		bottom: -19px;
		right: 1px;
		background: url(./img/img-star-bottom-mobile.svg);
		background-size: contain;
		background-repeat: no-repeat;
		background-position: right bottom;
	}

	.result_year-block {
		height: 100vh;
		max-height: 860px;
		background: url(./img/result-main-back-mobile.webp) no-repeat right center / cover, radial-gradient(121.03% 121.03% at 33.46% 28%, #FFFFFF 0%, #FFFFFF 42.31%, #BD0C1E 98.08%);
		gap: 24px;
		padding: 71px 32px 32px 32px;
	}

	.achievements_year-info-left-backg {
		background-image: url(./img/img-vector-left-backg-mobile.svg);
		background-repeat: no-repeat;
		background-size: contain;
		background-position: top center;
	}

	.achievements_year-info-backg {
		background-image: url(./img/achievements-star-backg-mobile.svg);
		background-repeat: no-repeat;
		background-size: auto;
		background-position: right top;
	}

	.events_year-slider-title {
		max-width: 309px;
	}

	.events_year-container::before {
		top: -32px;
		right: 22px;
	}
}


/* visibility */
.desktop-only {
	display: flex;
}

.mobile-only {
	display: none;
}

@media (max-width: 400px) {
	.events_year-slider-container-bottom .events_year-slider-block::before {
		top: 47px;
		left: -4px;
	}
}