*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

a {
	color: inherit;
	text-decoration: none;
}

button {
	font-family: inherit;
	cursor: pointer;
	border: none;
	outline: none;
	background: none;
}

input,
textarea {
	font-family: inherit;
	outline: none;
}

ul,
ol {
	list-style: none;
}

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

html {
	font-size: var(--font-size-base);
	line-height: var(--line-height-normal);
	scroll-behavior: smooth;
}

body {
	font-family: var(--font-family-primary);
	background-color: var(--color-primary);
	color: var(--text-primary);
	min-height: 100dvh;
	overflow-x: hidden;
	min-width: 340px;
}

.container {
	max-width: var(--container-max-width);
	margin: 0 auto;
	padding: 0 var(--container-padding);
	width: 100%;
}

.layout {
	display: flex;
	flex-direction: column;
	height: 100dvh;
    /*overflow-x: hidden;*/
	& main {
		flex: 1;
	}
}

@media(max-width: 570px){
    .layout {
        overflow-x: hidden;
    }
}

.flex {
	display: flex;
}

.flex-col {
	flex-direction: column;
}

.flex-wrap {
	flex-wrap: wrap;
}

.items-center {
	align-items: center;
}

.items-start {
	align-items: flex-start;
}

.items-end {
	align-items: flex-end;
}

.justify-center {
	justify-content: center;
}

.justify-between {
	justify-content: space-between;
}

.justify-start {
	justify-content: flex-start;
}

.justify-end {
	justify-content: flex-end;
}

.gap-10 {
	gap: 10px;
}
section.main__section {
	padding: 70px 0;
}
@media screen and (max-width: 768px) {
	section.main__section {
		padding: 32px 0;
	}
}

.header {
	/* position: fixed;
	top: 0;
	left: 0;
	right: 0; */
	z-index: var(--z-fixed);
	transition: var(--transition-normal);
	background-color: white;
}
.header::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	width: 100%;
	background: url("data:image/svg+xml,%3Csvg width='100%' height='66' viewBox='0 0 1797 66' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_21_8605)'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M-12 4.45267C450.074 4.45267 627.199 66 899.5 66C1172.3 66 1347.02 5.03366 1811 5.03366V0H-12V4.45267Z' fill='white'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_21_8605'%3E%3Crect width='1809' height='66' fill='white' transform='matrix(1 0 0 -1 -12 66)'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A")
		no-repeat center 100%;
	height: 61px;
}
.header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: relative;
	height: 104px;
}
.header__logo {
	position: absolute;
	left: 0;
	right: 0;
	margin: 0 auto;
	/*width: 125px;*/
    width: 170px;
	/*height: 140px;*/
	z-index: 1;
}
.header__logo svg,
.footer__logo svg{
    width: 100%;
    height: auto;
}
.header__nav-list {
	display: flex;
	align-items: center;
}
.header__nav-link {
	backdrop-filter: blur(20px);
	border: 1px solid #ffffff33;
	border-radius: 64px;
	background-color: #f4f4f4e5;
	font-size: 16px;
	font-weight: 500;
	padding: 22px 24px;
	letter-spacing: -0.04em;
	line-height: 100%;
	transition: 0.3s ease;
	white-space: nowrap;
}
.header__nav-link:hover {
	background-color: #d8d8d8a5;
}

.header__nav-link--lang-switch {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.header__menu-toggle {
	display: none;
	flex-direction: column;
	cursor: pointer;
	padding: 8px;
	background: none;
	border: none;
	z-index: 2;
}

.header__menu-toggle span {
	width: 24px;
	height: 2px;
	background-color: var(--text-primary);
	margin: 3px 0;
	transition: 0.3s;
	border-radius: 2px;
}

.header__menu-toggle.active span:nth-child(1) {
	transform: rotate(-45deg) translate(-5px, 6px);
}

.header__menu-toggle.active span:nth-child(2) {
	opacity: 0;
}

.header__menu-toggle.active span:nth-child(3) {
	transform: rotate(45deg) translate(-5px, -6px);
}

@media screen and (max-width: 1400px) {
	.header__nav-link {
		padding: 18px 14px;
	}
}

@media screen and (max-width: 1204px) {
	.header {
		display: flex;
		align-items: center;
	}
	.header__inner {
		height: 70px;
		flex-wrap: wrap;
		gap: 12px;
	}
	.header:after {
		display: none;
	}
	.header__logo {
		height: auto;
		padding: 0 16px 16px 0;
		width: 110px;
		position: static;
		order: 2;
		margin: 0;
	}

	.header__nav-link {
		font-size: 14px;
	}

	.weather__block {
		order: 1;
		flex: 1;
		& .text-24 {
			font-size: 14px;
		}
		& .text-14 {
			font-size: 10px;
		}
	}
	.header__nav-link {
		font-size: 13px;
		padding: 12px 16px;
	}

	.weather__block .top {
		gap: 6px;
	}

	.header__inner {
		height: auto;
		padding: 16px 0;
	}

	.header__menu-toggle {
		display: flex;
		order: 1;
	}

	.header__nav {
		order: 3;
		width: 100%;

		position: fixed;
		top: 0;
		left: -100%;
		width: 280px;
		height: 100vh;
		background: white;
		padding: 120px 20px 20px;
		transition: left 0.3s ease;
		box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
		z-index: 1;
	}

	.header__nav.active {
		left: 0;
	}

	.header__nav-list {
		flex-direction: column;
		justify-content: center;
		gap: 32px;
		align-items: stretch;
	}

	.header__nav-link {
		text-align: center;
		padding: 16px 20px;
		font-size: 16px;
		border-radius: 12px;
	}
	.header__overlay {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: rgba(0, 0, 0, 0.5);
		opacity: 0;
		visibility: hidden;
		transition: all 0.3s ease;
		z-index: 0;
	}

	.header__overlay.active {
		opacity: 1;
		visibility: visible;
	}
}

@media screen and (max-width: 520px) {
	.header__nav-link {
		font-size: 14px;
		padding: 14px 18px;
	}
	.header__nav {
		padding: 80px 20px 20px;
	}
	.header__logo {
		/*width: 80px;*/
        width: 95px;
        transform: translateY(10px);
	}
}

.main {
	position: relative;
}
.banner {
	position: relative;
	margin: 0 auto;
}

.banner__inner {
	position: relative;
	height: 838px;
	display: flex;
	flex-direction: column;
	align-items: center;
	/*padding-top: 100px;*/
    justify-content: center;
}
.banner__descr {
	color: white;
	text-align: center;
	max-width: 256px;
    position: relative;
    z-index: 2;

}
.banner__title {
	font-weight: 600;
	color: white;
	line-height: 100%;
	font-size: 100px;
	text-transform: uppercase;
	max-width: 786px;
	text-align: center;
    position: relative;
    z-index: 2;
}
.banner__img {
	position: absolute;
	inset: 0;
	height: 100%;
	width: 100%;
	margin: 0 auto;
	z-index: -1;
	object-fit: cover;
}

.banner__nav-btn {
	position: absolute;
	bottom: 40px;
	z-index: 10;
	width: 80px;
	height: 50px;
	background: #f4f4f433;
	backdrop-filter: blur(20px);
	border: 1px solid #ffffff33;
	border-radius: 64px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s ease;
}

.banner__nav-btn:hover {
	background: rgba(244, 244, 244, 0.3);
	/* transform: translateY(-2px); */
}

.banner__nav-btn--prev {
	left: 40px;
}

.banner__nav-btn--next {
	right: 40px;
}

.banner__btn {
	background: rgba(244, 244, 244, 0.2);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 64px;
	backdrop-filter: blur(20px);
	padding: 6px 46px;
	height: 62px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-family: var(--font-family-primary);
	font-size: 20px;
	font-weight: 500;
	line-height: 1em;
	letter-spacing: -0.04em;
	text-decoration: none;
	transition: all 0.3s ease;
	margin-top: 40px;
    position: relative;
    z-index: 2;
}

.banner__btn:hover {
	background: rgba(244, 244, 244, 0.3);
	border-color: rgba(255, 255, 255, 0.3);
	transform: translateY(-2px);
}

@media (max-width: 1024px) {
	.banner__inner {
		height: 600px;
		padding-top: 80px;
	}

	.banner__title {
		font-size: 70px;
		max-width: 600px;
	}

	.banner__nav-btn {
		width: 60px;
		height: 40px;
		bottom: 30px;
	}

	.banner__nav-btn--prev {
		left: 30px;
	}

	.banner__nav-btn--next {
		right: 30px;
	}
}

@media (max-width: 768px) {
	.banner__inner {
		height: 500px;
		padding-top: 60px;
	}

	.banner__title {
		font-size: 50px;
		max-width: 400px;
	}

	.banner__descr {
		font-size: 14px;
		max-width: 200px;
	}

	.banner__btn {
		font-size: 16px;
		padding: 4px 32px;
		height: 50px;
		margin-top: 30px;
	}

	.banner__nav-btn {
		width: 50px;
		height: 35px;
		bottom: 20px;
	}

	.banner__nav-btn--prev {
		left: 20px;
	}

	.banner__nav-btn--next {
		right: 20px;
	}

	.banner__nav-btn svg {
		width: 14px;
		height: 13px;
	}
}

@media (max-width: 480px) {
	.banner__inner {
		height: 400px;
		padding-top: 40px;
	}

	.banner__title {
		font-size: 36px;
		max-width: 280px;
	}

	.banner__descr {
		font-size: 12px;
		max-width: 180px;
	}

	.banner__btn {
		font-size: 14px;
		padding: 3px 24px;
		height: 42px;
		margin-top: 20px;
	}
}

.footer {
	padding-top: 70px;
	& .weather__block .top {
		justify-content: end;
	}
}


.footer-banner{
	margin: 0 auto;
	height: 800px;
	object-fit: cover;
	width: 100%;
	position: relative;
    overflow: hidden;
}

.footer-banner img.footer__banner-image{
	width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer__banner .footer__banner-image{
	position: relative;
	width: 100%;
	height: 100%;
	display: flex;
	object-fit: cover;

}

.footer-banner-elipses{
	position: absolute;
	z-index: 1;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	gap: 240px;
	top: -300px;
}

.footer-banner-elipses-item {
	--ellipse-pulse-translate: -12px;
	--ellipse-pulse-scale: 1.02;
	--ellipse-pulse-delay: 0s;
	pointer-events: none;
	will-change: opacity, transform;
}

.footer-banner-elipses-item.is-animated {
	opacity: 0;
	transform: translate3d(0, 120px, 0) scale(0.85);
	transition:
		opacity 1.1s cubic-bezier(0.19, 1, 0.22, 1),
		transform 1.1s cubic-bezier(0.19, 1, 0.22, 1);
}

.footer-banner-elipses-item:nth-child(2) {
	--ellipse-pulse-translate: 14px;
	--ellipse-pulse-scale: 1.015;
	--ellipse-pulse-delay: 0.35s;
}

.footer-banner-elipses-item.is-visible {
	opacity: 1;
	transform: translate3d(0, 0, 0) scale(1);
}

.footer-banner-elipses svg{
	height: 100%;
	display: block;
	opacity: 0.92;
	transform-origin: center;
}

.footer-banner-elipses-item.is-visible svg {
	animation: ellipsePulse 6s ease-in-out infinite alternate;
	animation-delay: var(--ellipse-pulse-delay);
}

@media (max-width: 1024px) {
	.footer-banner-elipses {
		top: -200px;
		gap: 140px;
	}

	.footer-banner-elipses svg {
		height: 82%;
	}
}

@media (max-width: 767px) {
	.footer-banner-elipses {
		top: -92px;
		gap: 220px;
		align-items: flex-start;
	}

	.footer-banner-elipses-item {
		display: flex;
		align-items: flex-start;
	}

	.footer-banner-elipses svg {
		height: clamp(600px, 180vw, 980px);
		width: auto;
		max-width: none;
	}
}

@media (max-width: 480px) {
	.footer-banner-elipses {
		top: -70px;
		gap: 140px;
	}

	.footer-banner-elipses svg {
		height: clamp(520px, 170vw, 900px);
		width: auto;
		max-width: none;
		opacity: 0.85;
	}
}

@keyframes ellipsePulse {
	0% {
		transform: translateY(0) scale(1);
		opacity: 0.9;
	}

	100% {
		transform: translateY(var(--ellipse-pulse-translate)) scale(var(--ellipse-pulse-scale));
		opacity: 0.98;
	}
}

@media (prefers-reduced-motion: reduce) {
	.footer-banner-elipses-item,
	.footer-banner-elipses-item.is-animated,
	.footer-banner-elipses-item.is-visible {
		opacity: 1;
		transform: none;
		filter: none;
		transition: none;
	}

	.footer-banner-elipses-item.is-visible svg,
	.footer-banner-elipses svg {
		animation: none;
	}
}

.footer__logo {
	position: absolute;
	left: 0;
	right: 0;
	margin: 0 auto;
	width: 170px;
	/*height: 140px;*/
	z-index: 1;
	top: -55px;
}
.footer-image-400-logo{
	position: absolute;
	left: calc((100% - 400px) / 2);
	top: 100px;
	width: 400px;
	z-index: 2;
}
.footer__inner {
	position: relative;
	height: 172px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.footer__inner::after {
	content: '';
	background: url("data:image/svg+xml,%3Csvg width='1800' height='134' viewBox='0 0 1800 134' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_25_872)'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M-9 124.96C449.525 124.96 625.29 0 895.5 0C1166.21 0 1339.58 123.78 1800 123.78V134H-9V124.96Z' fill='white'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_25_872'%3E%3Crect width='1809' height='134' fill='white' transform='translate(-9)'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A")
		no-repeat center 100%;
	position: absolute;
	left: -16px;
	right: -16px;
	/* width: ; */
	height: 140px;
	top: -126px;
}
.footer__link {
	border: 1px solid #ffffff33;
	border-radius: 64px;
	backdrop-filter: blur(20px);
	width: 286px;
	height: 82px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	font-weight: 700;

	position: absolute;
	left: 0;
	right: 0;
	top: -183px;
	z-index: 1;
	margin: 0 auto;
	color: white;
	background-color: #f4f4f433;
	transition: all 0.3s ease;
}
.footer__link:hover {
	transform: translateY(-5px);
}

@media (max-width: 768px) {
	.footer {
		padding-top: 40px;
	}
	.footer__banner {
		height: 600px;
	}
	.footer__inner {
		height: auto;
		padding: 20px 0;
		gap: 24px;
		justify-content: space-between;
		/* text-align: center; */
	}
	.footer__logo {
		display: none;
	}
	.footer__inner::after {
		display: none;
	}
}

@media (max-width: 480px) {
	.footer__banner {
		height: 600px;
	}
	.footer__inner {
		gap: 16px;
		padding: 16px 0;
	}
	.footer__logo {
		width: 80px;
		height: 90px;
	}
	.footer__link {
		width: 200px;
		height: 50px;
		font-size: 16px;
	}
}

.text-14 {
	font-size: 14px;
}
.text-18 {
	font-size: 18px;
}
.text-24 {
	font-size: clamp(1.25rem, 1.0313rem + 0.625vw, 1.5rem);
}
.main__title {
	font-size: clamp(3rem, -3.125rem + 17.5vw, 10rem);
	font-weight: 600;
	line-height: 90%;
	text-transform: uppercase;
	& .small {
		font-size: clamp(2.5rem, 1.0234rem + 4.2188vw, 4.1875rem);
		line-height: 50%;
		display: block;
	}
}
.stix {
	font-family: var(--font-family-secondary);
	font-weight: 600;
}

.font-thin {
	font-weight: var(--font-weight-thin);
}
.font-extralight {
	font-weight: var(--font-weight-extralight);
}
.font-light {
	font-weight: var(--font-weight-light);
}
.font-normal {
	font-weight: var(--font-weight-normal);
}
.font-medium {
	font-weight: var(--font-weight-medium);
}
.font-semibold {
	font-weight: var(--font-weight-semibold);
}
.font-bold {
	font-weight: var(--font-weight-bold);
}
.font-extrabold {
	font-weight: var(--font-weight-extrabold);
}
.text-primary {
	color: var(--text-primary);
}
.text-gray {
	color: var(--text-gray);
}
.text-secondary {
	color: var(--text-secondary);
}
.text-light {
	color: var(--text-light);
}

.icon-snow {
	display: inline-block;
	background: url("data:image/svg+xml,%3Csvg width='20' height='22' viewBox='0 0 20 22' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.750244 5.75L4.25024 7.75M4.25024 7.75L9.75024 10.75M4.25024 7.75L0.750244 8.75M4.25024 7.75L3.75024 4.25M18.7502 15.75L15.2502 13.75M15.2502 13.75L9.75024 10.75M15.2502 13.75L15.7502 17.25M15.2502 13.75L18.7502 12.75M9.75024 10.75L4.25024 13.75M9.75024 10.75V3.75M9.75024 10.75V17.25M9.75024 10.75L15.2502 7.75M4.25024 13.75L0.750244 15.75M4.25024 13.75L0.750244 12.75M4.25024 13.75L3.75024 17.25M9.75024 3.75V0.75M9.75024 3.75L7.25024 2.75M9.75024 3.75L12.2502 2.75M9.75024 17.25V20.75M9.75024 17.25L12.2502 18.75M9.75024 17.25L7.25024 18.75M15.2502 7.75L18.7502 5.75M15.2502 7.75L18.7502 8.75M15.2502 7.75L15.7502 4.25' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A")
		no-repeat 100% 100%;
	width: 20px;
	height: 24px;
}
.icon-arrow {
	display: inline-block;
	background: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 15L12 9L18 15' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A")
		no-repeat center;
	width: 24px;
	height: 24px;
}
.icon-arrow-big {
	display: inline-block;
	background: url("data:image/svg+xml,%3Csvg width='20' height='19' viewBox='0 0 20 19' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 9.38391H18M18 9.38391L9.5 0.883911M18 9.38391L9.5 17.8839' stroke='%231A1919' stroke-width='2.5' stroke-linejoin='round'/%3E%3C/svg%3E%0A")
		no-repeat center;
	width: 22px;
	height: 17px;
}

.events {
	& .main__title {
		line-height: 84px;
	}
}

.events__inner {
	position: relative;
	transition: opacity 0.25s ease, filter 0.25s ease;
}

.events__inner.is-loading .events__list {
	opacity: 0.35;
	filter: blur(1.5px);
	pointer-events: none;
}

.events__loader {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.55) 0%, rgba(255, 255, 255, 0.35) 100%);
	backdrop-filter: blur(6px);
	border-radius: 24px;
	z-index: 4;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.25s ease, visibility 0.25s ease;
}

.events__inner.is-loading .events__loader {
	opacity: 1;
	visibility: visible;
}

.events__loader-inner {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding: 14px 18px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.8);
	box-shadow: 0 10px 35px rgba(26, 25, 25, 0.12);
}

.events__loader-ring {
	width: 20px;
	height: 20px;
	border-radius: 50%;
	border: 2px solid rgba(88, 172, 75, 0.25);
	border-top-color: #58ac4b;
	animation: eventsLoaderSpin 0.9s linear infinite;
}

.events__loader-text {
	font-size: 14px;
	font-weight: 600;
	color: #1a1919;
}

@keyframes eventsLoaderSpin {
	to {
		transform: rotate(360deg);
	}
}
.events__item {
	border-top: 1px solid #0000001a;
	display: flex;
	justify-content: space-between;
	gap: 65px;
	padding: 44px 0;
}
.events__item-inner {
	max-width: 1070px;
}
.events__item:last-child {
	padding-bottom: 0;
}
.events__item-content {
	display: grid;
	grid-template-columns: 1fr 441px;
	gap: 99px;
	justify-content: end;
	& .top {
		display: flex;
		align-items: center;
		gap: 12px;
	}
	& .title {
		margin-top: 8px;
		font-weight: 800;
		font-size: clamp(1.5rem, 0.1875rem + 3.75vw, 3rem);
		line-height: 100%;
		display: -webkit-box;
		/*-webkit-line-clamp: 3;*/
		-webkit-box-orient: vertical;
		overflow: hidden;
		text-overflow: ellipsis;
	}
	& .descr {
		margin-top: 16px;
		color: #1a191980;
		font-size: 18px;
		display: -webkit-box;
		-webkit-line-clamp: 5;
		-webkit-box-orient: vertical;
		overflow: hidden;
		text-overflow: ellipsis;
	}
}

.events__item-img {
	border-radius: 24px;
	object-fit: cover;
	display: block;
	width: 100%;
	height: 248px;
}
.events__item-gallery {
	position: relative;
	height: 248px;
	border-radius: 24px;
	overflow: hidden;
}
.events__item-gallery-slide {
	position: absolute;
	inset: 0;
	display: block;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: none;
	backface-visibility: hidden;
	transform: translateZ(0);
	will-change: opacity;
}
.events__item-gallery-slide.is-active {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}
.events__item-gallery-slide .events__item-img {
	height: 100%;
	border-radius: 0;
	backface-visibility: hidden;
	transform: translateZ(0);
}
.events__item-gallery-zones {
	position: absolute;
	inset: 0;
	z-index: 2;
	display: flex;
}
.events__item-gallery-zone {
	flex: 1 1 auto;
	border: 0;
	padding: 0;
	background: transparent;
	cursor: pointer;
}
.events__item-gallery-dots {
	position: absolute;
	left: 50%;
	bottom: 14px;
	transform: translateX(-50%);
	z-index: 3;
	display: flex;
	gap: 8px;
	pointer-events: none;
}
.events__item-gallery-dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.6);
	transition: transform 0.2s ease, background-color 0.2s ease;
}
.events__item-gallery-dot.is-active {
	background: #fff;
	transform: scale(1.2);
}
.events__list {
	padding-bottom: 32px;
}
.events__list-child {
	& .child-item {
		padding: 44px 0;
		border-top: 1px solid #0000001a;
	}
	& .child-item:first-child {
		border-top: unset;
		padding-top: 0;
	}
	& .child-item:last-child {
		padding-bottom: 0;
	}
}
.events__item-date {
	display: flex;
	align-items: flex-start;
	gap: 20px;
	font-size: 18px;
	& .day {
		font-size: clamp(2rem, -1.9375rem + 11.25vw, 6.5rem);
		letter-spacing: -0.08em;
		font-weight: 800;
		line-height: 90%;
	}
	& span:not(.day) {
		margin-top: 16px;
		display: inline-block;
	}
}

.events__bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	& .events__filter {
		max-width: 1070px;
		width: 100%;
	}
}
.events__loading {
	list-style: none;
}

.events__empty {
	margin: 90px auto 100px;
	max-width: 430px;
	padding: 28px 26px;
	border-radius: 28px;
	background: rgba(255, 255, 255, 0.7);
	backdrop-filter: blur(7px);
	box-shadow: 0 14px 46px rgba(0, 0, 0, 0.06);
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.events__empty-icon {
	width: 62px;
	height: 62px;
	border-radius: 50%;
	background: linear-gradient(180deg, #58ac4b 0%, #8abc47 100%);
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 14px;
}

.events__empty-title {
	font-size: 36px;
	line-height: 1.1;
	font-weight: 700;
	color: #1a1919;
}

.events__empty-subtitle {
	margin-top: 10px;
	font-size: 18px;
	line-height: 1.35;
	color: #1a1919b3;
}
.events__filter {
	display: flex;
	align-items: center;
    z-index: var(--z-dropdown);
}
.events__filter-dropdown {
	padding: 5px;
	border-radius: 64px;
	background: #f4f4f4e5;
	display: flex;
	align-items: center;
	width: fit-content;
}

.dropdown {
	position: relative;
}

.events__filter-btn {
	padding: 23px 30px;
	border-radius: 40px;
	background-color: white;
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 22px;
	font-weight: 500;
	line-height: 100%;
	transition: var(--transition-normal);
}

.events__filter-btn:hover {
	background-color: #f8f8f8;
}

.events__filter-btn .icon-arrow {
	transition: transform var(--transition-normal);
}

@media (max-width: 1280px) {
	.events__item-content {
		grid-template-columns: 1fr 300px;
		gap: 16px;
	}
	.events__item-img {
		height: 200px;
	}
	.events__item-gallery {
		height: 200px;
	}
}

@media (max-width: 768px) {
	.events__item {
		flex-direction: column;
		gap: 24px;
		padding: 32px 0;
	}
	.events__item-content {
		grid-template-columns: 1fr;
		& .title {
			font-size: clamp(1.25rem, 0.5rem + 2vw, 2rem);
		}
		& .descr {
			font-size: 16px;
		}
	}
	.events__item-img {
		height: 220px;
	}
	.events__item-gallery {
		height: 220px;
	}
	.events__item-date {
		flex-direction: row;
		align-items: center;
		gap: 16px;
		& .day {
			font-size: 48px;
		}
		& span:not(.day) {
			margin-top: 0;
		}
	}
	.events__bottom {
		justify-content: unset;
	}

	.events__empty {
		margin: 48px auto 64px;
		padding: 20px 16px;
		border-radius: 20px;
	}

	.events__empty-title {
		font-size: 28px;
	}

	.events__empty-subtitle {
		font-size: 16px;
	}
}

@media (max-width: 640px) {
	.events {
		& .main__title {
			line-height: 90%;
		}
	}
	.events__filter {
		flex-direction: column;
		align-items: flex-start;
		flex-wrap: wrap;
		gap: 16px;
	}
	.events__filter-dropdown {
		padding: 8px;
		gap: 8px;
	}
	.events__filter-btn {
		padding: 16px 20px;
		font-size: 18px;
	}
	.btn__more {
		padding: 20px 24px;
		font-size: 18px;
		text-align: center;
	}

	.events__empty {
		margin-top: 28px;
	}

	.events__empty-title {
		font-size: 24px;
	}

	.events__empty-subtitle {
		font-size: 14px;
	}
}

.dropdown.active .icon-arrow {
	transform: rotate(180deg);
}

.dropdown__content {
	position: absolute;
	top: calc(100% + 8px);
	left: 0;
	right: 0;
	background: white;
	border-radius: 16px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
	opacity: 0;
	visibility: hidden;
	transform: translateY(-8px);
	transition: all var(--transition-normal);
	z-index: var(--z-dropdown);
	min-width: 200px;
	overflow: hidden;
}

.dropdown.active .dropdown__content {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.dropdown__item {
	padding: 16px 20px;
	font-size: 18px;
	font-weight: 500;
	cursor: pointer;
	transition: background-color var(--transition-fast);
	border-bottom: 1px solid #f0f0f0;
}

.dropdown__item:last-child {
	border-bottom: none;
}

.dropdown__item:hover {
	background-color: #f8f8f8;
}

.dropdown__item.selected {
	background-color: #f4f4f4;
	font-weight: 700;
}

/* Language Dropdown Styles */
.language-dropdown {
	position: relative;
}

.language-dropdown__btn {
	display: flex;
	align-items: center;
	gap: 8px;
	position: relative;
}

.language-dropdown__current {
	display: flex;
	align-items: center;
	gap: 4px;
}

.language-dropdown__flag {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background-size: cover;
	flex-shrink: 0;
}

.language-dropdown__flag--tat {
	background: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3CclipPath id='tatFlagClip'%3E%3Ccircle cx='6' cy='6' r='6'/%3E%3C/clipPath%3E%3C/defs%3E%3Cg clip-path='url(%23tatFlagClip)'%3E%3Crect width='12' height='5.5' fill='%2300A551'/%3E%3Crect y='5.5' width='12' height='1' fill='%23FFFFFF'/%3E%3Crect y='6.5' width='12' height='5.5' fill='%23D52B1E'/%3E%3C/g%3E%3C/svg%3E") no-repeat center;
	background-size: cover;
}

.language-dropdown__flag--rus {
	background: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='6' cy='6' r='6' fill='%23ffffff'/%3E%3Cpath d='M0 4h12v4H0z' fill='%230039A6'/%3E%3Cpath d='M0 8h12v4H0z' fill='%23D52B1E'/%3E%3C/svg%3E") no-repeat center;
	background-size: cover;
}

.language-dropdown__content {
	position: absolute;
	top: calc(100% + 8px);
	left: 0;
	right: 0;
	background: white;
	border-radius: 16px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
	opacity: 0;
	visibility: hidden;
	transform: translateY(-8px);
	transition: all var(--transition-normal);
	z-index: var(--z-dropdown);
	min-width: 120px;
	overflow: hidden;
}

.language-dropdown.active .language-dropdown__content {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.language-dropdown__item {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 12px 16px;
	font-size: 16px;
	font-weight: 500;
	cursor: pointer;
	transition: background-color var(--transition-fast);
	border-bottom: 1px solid #f0f0f0;
}

.language-dropdown__item:last-child {
	border-bottom: none;
}

.language-dropdown__item:hover {
	background-color: #f8f8f8;
}

.language-dropdown__item.selected {
	background-color: #f4f4f4;
	font-weight: 700;
}

/* Safari may apply blue text paint to button-like controls; force inherited UI color for dropdowns. */
[data-dropdown-btn],
.dropdown__item,
.dropdown__item span,
.language-dropdown__item,
.language-dropdown__item span {
	color: #1a1919;
	-webkit-text-fill-color: currentColor;
}

@media screen and (max-width: 1204px) {
	.language-dropdown__content {
		position: fixed;
		top: auto;
		left: 20px;
		right: 20px;
		width: fit-content;
		min-width: auto;
		margin-top: 8px;
	}

	.language-dropdown__item {
		padding: 16px 20px;
		font-size: 16px;
	}

	.language-dropdown__btn .icon-arrow {
		width: 20px;
		height: 20px;
	}
}

@media screen and (max-width: 520px) {
	.language-dropdown__content {
		left: 16px;
		right: 16px;
	}

	.language-dropdown__item {
		padding: 14px 18px;
		font-size: 14px;
	}

	.language-dropdown__flag {
		width: 10px;
		height: 10px;
	}
}

.btn__more {
	border-radius: 64px;
	background: linear-gradient(180deg, #58ac4b 0%, #8abc47 100%);
	color: white;
	padding: 29px 36px;
	font-size: 22px;
	font-weight: 500;
	line-height: 100%;
	display: inline-block;
	font-family: var(--font-family-primary);
	transition: filter 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
	cursor: pointer;
}

.btn__more:hover {
	filter: brightness(1.1);
	transform: scale(1.02);
	box-shadow: 0 4px 12px rgba(88, 172, 75, 0.3);
}

.btn__more:active {
	filter: brightness(0.95);
	transform: scale(0.98);
}

.mayor__inner {
	margin: 0 auto;
	display: grid;
	grid-template-columns: 500px 1fr;
	gap: 100px;
	justify-content: space-between;
	max-width: 1188px;
	margin: 0 auto;
}

.mayor__card {
	background: white;
	box-shadow: 0px 4px 44px 0px #0000000f;
	border-radius: 24px;
	padding: 18px;
	padding-bottom: 54px;
	position: relative;
}
.mayor__photo {
	margin-bottom: 20px;
}

.mayor__img {
	height: 585px;
	border-radius: 16px;
	object-fit: cover;
	margin: 0 auto;
}

.mayor__name {
	font-size: clamp(1.125rem, 0.3594rem + 2.1875vw, 2rem);
	font-weight: 500;
	line-height: 100%;
	margin-bottom: 8px;
}

.mayor__position {
	font-size: 18px;
	font-weight: 500;
	color: var(--text-gray);
	margin: 0;
}

.mayor__text {
	font-size: clamp(1.375rem, 0.9375rem + 1.25vw, 1.875rem);
	line-height: 135%;
	font-family: var(--font-family-secondary);
	font-weight: 300;
	& .title {
		display: inline-block;
		margin-top: 25px;
		line-height: 90%;
		font-family: var(--font-family-secondary);
		font-size: clamp(2.5rem, 0.8594rem + 4.6875vw, 4.375rem);
		letter-spacing: -3px;
	}
	& .btn__more {
		margin-top: 35px;
	}
}

.projects__list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px;
	grid-template-rows: 351px 351px;
	margin-top: 32px;
}
.projects__item {
	position: relative;
	color: white;
	padding: 30px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 24px;
    border-radius: 20px;
    cursor: pointer;
    min-height: 351px;

	& .title {
		font-weight: 600;
		font-size: clamp(1.25rem, 0.1563rem + 3.125vw, 2.5rem);
		line-height: 90%;
		text-transform: uppercase;
	}
	& .descr {
		color: #ffffffcc;
		font-size: 14px;
		line-height: 100%;
	}
	& .status-on {
		width: clamp(80px, 15vw, 119px);
		height: clamp(80px, 15vw, 119px);
		border-radius: 50%;
		background-color: white;
		box-shadow: 0px 12px 34px 0px #848e8333;
		display: flex;
		align-items: center;
		justify-content: center;
		color: #848e83;
		font-weight: 800;
		font-size: clamp(12px, 2vw, 15px);
		text-transform: uppercase;
	}
	& .status {
		border-radius: 190px;
		background-color: white;
		display: flex;
		align-items: center;
		justify-content: center;
		box-shadow: 0px 12px 34px 0px #848e8333;
		font-size: clamp(12px, 2vw, 15px);
		font-weight: 800;
		width: fit-content;
		padding: clamp(16px, 3vw, 23px) clamp(14px, 2.5vw, 20px);
		color: #868384;
		text-transform: uppercase;
	}
}
.projects__item-img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	object-fit: cover;
	border-radius: 20px;
}
@media (min-width: 1281px) {
    .projects__inner:not(.ajaxed) .projects__item:first-child {
        background: linear-gradient(180deg, #58ac4b 0%, #8abc47 100%);
        border-radius: 370px;
        grid-row: 2 span;
        display: flex;
        flex-direction: column;
        gap: 10px;
        align-items: center;
        justify-content: center;
        padding: 0 clamp(40px, 8vw, 78px) clamp(100px, 20vw, 170px) clamp(50px, 10vw, 100px);

& .status-on {
      position: absolute;
      left: 0;
      top: 0;
      transform: rotate(-10deg);
  }

& img {
      position: absolute;
      height: unset;
      bottom: 0;
      top: unset;
      z-index: 1;
      border-radius: 0 0 252px 252px;
  }
}

}
/*.main__section .projects__item:nth-child(3) {*/
/*	justify-content: center;*/
/*	text-align: center;*/
/*    border-radius: 230px;*/

/*	& .status-on {*/
/*		position: absolute;*/
/*		right: 0;*/
/*		top: 0;*/
/*		transform: rotate(10deg);*/
/*	}*/
/*	& .projects__item-img {*/
/*		border-radius: 230px;*/
/*	}*/
/*}*/
.projects__bottom {
	display: flex;
	justify-content: end;
	margin-top: 10px;
	& .btn__more {
		width: 100%;
		max-width: 514px;
		text-align: center;
	}
}

@media screen and (max-width: 1310px) {
	/*.projects__item:first-child {*/
	/*	padding: 40px;*/
	/*	padding-top: 180px;*/
	/*	justify-content: flex-start;*/
	/*}*/

    .projects__item:first-child .descr{
        display: none;
    }
}

@media screen and (max-width: 1260px) {
	.projects__list {
		grid-template-columns: repeat(2, 1fr);
		grid-template-rows: auto;
		gap: 16px;
	}
	/*.projects__item:first-child {*/
	/*	grid-column: 1 / -1;*/
	/*	grid-row: auto;*/
	/*	border-radius: 24px;*/
	/*	padding-top: 40px;*/
	/*	& .status-on {*/
	/*		position: static;*/
	/*		transform: none;*/
	/*		height: 100px;*/
	/*		width: 100px;*/
	/*	}*/
	/*	& img {*/
	/*		display: none;*/
	/*	}*/
	/*}*/
	.projects__item {
		padding: 24px;
		& .status-on {
			height: auto;
            width: fit-content;
           font-size: clamp(12px, 2vw, 15px);
              border-radius: 190px;
              padding: clamp(16px, 3vw, 23px) clamp(14px, 2.5vw, 20px);
		}
	}
}

@media (max-width: 768px) {
	.projects__list {
		grid-template-columns: 1fr;
		gap: 16px;
	}
	.projects__item {
		padding: 24px;
	}
	/*.projects__item:first-child {*/
	/*	padding: 32px;*/
	/*}*/
	.projects__item:nth-child(3) .status-on {
		position: static;
		transform: none;
		border-radius: 190px;
		background-color: white;
		display: flex;
		align-items: center;
		justify-content: center;
		box-shadow: 0px 12px 34px 0px #848e8333;
		font-size: clamp(12px, 2vw, 15px);
		font-weight: 800;
		width: fit-content;
		padding: clamp(16px, 3vw, 23px) clamp(14px, 2.5vw, 20px);
		color: #868384;
		text-transform: uppercase;
	}
}

.history.main__section {
	padding-top: 98px;
}
.history__title {
	font-size: clamp(3rem, -3.125rem + 17.5vw, 10rem);
	font-weight: 600;
	line-height: 80%;
	text-transform: uppercase;
	text-align: center;
}

.history__title .uzor {
	max-width: 540px;
	margin: 0 auto;
}

.history__title .small {
	font-size: clamp(1.75rem, -2.7891rem + 12.9688vw, 6.9375rem);
	display: block;
}

.history__inner {
	position: relative;
	--history-card-ease: cubic-bezier(0.19, 1, 0.22, 1);
}

.history__cards-container {
	margin-bottom: 60px;
}

.history-swiper {
	overflow: visible !important;
}

.history-swiper .swiper-slide:nth-child(even) .history__card {
	border-radius: 194px;
}

.history-swiper .swiper-slide:first-child .history__card {
	border-radius: 84px 84px 24px 24px;
}

.history-swiper .swiper-slide:nth-child(3n):not(:first-child) .history__card {
	border-radius: 24px 24px 84px 84px;
}

.history__card {
	display: block;
	width: 100%;
	padding: 0;
	border: none;
	position: relative;
	height: 441px;
	border-radius: 24px;
	overflow: hidden;
	cursor: pointer;
	background-color: #0f0f0f;
	opacity: 1;
	transform: translate3d(0, 0, 0) !important;
	transition: transform 0.65s var(--history-card-ease), box-shadow 0.65s var(--history-card-ease);
	box-shadow: 0 20px 50px rgba(7, 7, 7, 0.15);
	isolation: isolate;
	will-change: transform, box-shadow;
}

.history__card::before {
	content: '';
	position: absolute;
	inset: 0;
	z-index: 2;
	pointer-events: none;
	background: linear-gradient(180deg, rgba(5, 5, 5, 0.6) 0%, rgba(5, 5, 5, 0.08) 32%, rgba(5, 5, 5, 0.1) 65%, rgba(5, 5, 5, 0.72) 100%);
}

.history__card:hover {
	box-shadow: 0 35px 85px rgba(5, 5, 5, 0.45);
	transform: translate3d(0, -6px, 0) !important;
}

.history__card.active {
	transform: translate3d(0, -2px, 0) !important;
	box-shadow: 0 30px 75px rgba(5, 5, 5, 0.4), 0 0 0 2px rgba(138, 188, 71, 0.75);
	z-index: 10;
}

.history__card.active:hover {
	transform: translate3d(0, -8px, 0) !important;
}

.history__card.active .history__card-content {
	background: linear-gradient(180deg, rgba(5, 5, 5, 0.78) 0%, rgba(5, 5, 5, 0.56) 100%);
	backdrop-filter: blur(10px);
}

.history__card.active .history__card-year {
	color: #d8f8cb;
}

.history__card-bg {
	position: absolute;
	inset: 0;
	z-index: 1;
}

.history__card-bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.65s var(--history-card-ease);
	will-change: transform;
}

.history__card:hover .history__card-bg img {
	transform: scale(1.08);
}

.history__card-content {
	position: absolute;
	inset: 0;
	z-index: 3;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	padding: 32px;
	gap: 14px;
	background: transparent;
	backdrop-filter: blur(0px);
	transition: background 0.65s var(--history-card-ease), backdrop-filter 0.65s var(--history-card-ease);
	will-change: backdrop-filter;
}

.history__card--has-stories .history__card-content::after {
	content: '←  →';
	position: absolute;
	top: 14px;
	left: 50%;
	transform: translateX(-50%) translateY(-4px);
	padding: 6px 10px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.2);
	color: #fff;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.08em;
	opacity: 0;
	transition: opacity 0.25s ease, transform 0.25s ease;
}

.history__card--has-stories:hover .history__card-content::after {
	opacity: 1;
	transform: translateX(-50%) translateY(0);
}

.history__card-open-hint {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin-top: 10px;
	padding: 9px 14px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.2);
	color: #fff;
	font-size: 13px;
	font-weight: 600;
	opacity: 0;
	transform: translateY(8px);
	transition: opacity 0.25s ease, transform 0.25s ease, background 0.25s ease;
}

.history__card--has-stories:hover .history__card-open-hint {
	opacity: 1;
	transform: translateY(0);
}

.history__card--has-stories:hover .history__card-open-hint:hover {
	background: rgba(255, 255, 255, 0.32);
}

.history__card-open-hint-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 18px;
	height: 18px;
}

.history__card-open-hint-icon svg {
	display: block;
}

.history__card:hover .history__card-content {
	background: linear-gradient(180deg, rgba(5, 5, 5, 0.85) 0%, rgba(5, 5, 5, 0.6) 100%);
	backdrop-filter: blur(14px);
}

.history__card-year {
	font-size: clamp(3rem, 2.5rem + 2vw, 5.125rem);
	font-weight: 700;
	line-height: 100%;
	color: white;
	text-transform: uppercase;
	margin-bottom: 20px;
	letter-spacing: 0.06em;
	text-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
	transition: color 0.45s var(--history-card-ease), transform 0.65s var(--history-card-ease);
	position: relative;
}

.history__card:hover .history__card-year {
	color: #d8f8cb;
	transform: translateY(-2px);
}
/* узор на титле не смогу добавить кринж */
/* .history__card-year:after {
	content: '';
	
} */

.history__card-description {
	font-size: 18px;
	line-height: 135%;
	color: white;
	opacity: 0;
	transform: translateY(14px);
	transition: opacity 0.65s var(--history-card-ease), transform 0.65s var(--history-card-ease), max-height 0.65s var(--history-card-ease);
	max-width: 320px;
	width: 100%;
	max-height: 0;
	overflow: hidden;
	will-change: opacity, transform, max-height;
}

.history__card:hover .history__card-description {
	opacity: 1;
	max-height: 240px;
	transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
	.history__inner * {
		transition: none !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
	}
}

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

.history__nav-btn {
	width: 92px;
	height: 62px;
	border-radius: 64px;
	background: #f4f4f4e5;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	border: none;
	cursor: pointer;
	margin: 0 10px;
}

.history__nav-btn:hover {
	background: #f0f0f0;
	transform: scale(1.05);
}

.history__nav-btn.prev .icon-arrow-big {
	transform: rotate(180deg);
}

.history__years-pagination {
	display: flex;
	align-items: center;
	background: #f4f4f4e5;
	backdrop-filter: blur(20px);
	border-radius: 64px;
	padding: 6px;
}

.history__year-btn {
	border-radius: 40px;
	background: transparent;
	border: none;
	font-size: 22px;
	font-weight: 500;
	line-height: 100%;
	text-transform: uppercase;
	cursor: pointer;
	transition: all 0.3s ease;
	color: #1a1919;
	width: 80px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.history__year-btn:hover {
	background: rgba(255, 255, 255, 0.5);
}

.history__year-btn.active {
	background: linear-gradient(111.34deg, #58ac4b 0%, #8abc47 100%);
	color: white;
}

.history__card:focus-visible {
	outline: 2px solid #8abc47;
	outline-offset: 3px;
}

.history-stories {
	position: fixed;
	inset: 0;
	z-index: 9999;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}

.history-stories.is-open {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.history-stories__overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.75);
	backdrop-filter: blur(8px);
}

.history-stories__dialog {
	position: relative;
	width: min(420px, calc(100% - 28px));
	height: min(86dvh, 760px);
	margin: 3dvh auto 0;
	border-radius: 28px;
	overflow: visible;
	background: #141414;
	box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

.history-stories__close {
	position: fixed;
	top: 18px;
	right: 18px;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.4);
	color: #fff;
	font-size: 18px;
	line-height: 1;
	z-index: 5;
}

.history-stories__progress {
	position: absolute;
	top: 14px;
	left: 50%;
	transform: translateX(-50%);
	width: calc(100% - 32px);
	display: flex;
	gap: 6px;
	z-index: 5;
}

.history-stories__progress-item {
	flex: 1;
	height: 3px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.28);
	overflow: hidden;
}

.history-stories__progress-line {
	display: block;
	width: 100%;
	height: 100%;
	background: #fff;
	transform-origin: left center;
	transform: scaleX(0);
}

.history-stories__content {
	position: relative;
	height: 100%;
	border-radius: 28px;
	overflow: hidden;
}

.history-stories__content::before {
	content: '';
	position: absolute;
	inset: 0;
	z-index: 2;
	pointer-events: none;
	background: linear-gradient(
		180deg,
		rgba(5, 5, 5, 0.72) 0%,
		rgba(5, 5, 5, 0.16) 24%,
		rgba(5, 5, 5, 0.06) 52%,
		rgba(5, 5, 5, 0.25) 72%,
		rgba(5, 5, 5, 0.88) 100%
	);
}

.history-stories__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.history-stories__caption {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 4;
	padding: 22px;
	background: linear-gradient(180deg, rgba(5, 5, 5, 0) 0%, rgba(5, 5, 5, 0.9) 56%, rgba(5, 5, 5, 0.96) 100%);
	color: #fff;
}

.history-stories__title {
	font-size: 24px;
	line-height: 1.1;
	font-weight: 700;
	margin-bottom: 10px;
}

.history-stories__text-wrap {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.history-stories__text {
	font-size: 16px;
	line-height: 1.4;
	color: rgba(255, 255, 255, 0.95);
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
}

.history-stories__text.expanded {
	display: block;
	-webkit-line-clamp: unset;
	overflow: auto;
	max-height: 38dvh;
}

.history-stories__more {
	display: none;
	align-self: flex-start;
	padding: 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.45);
	color: #fff;
	font-size: 14px;
	font-weight: 600;
}

.history-stories__more.is-visible {
	display: inline-block;
}

.history-stories__tap-zone {
	position: absolute;
	top: 0;
	bottom: 0;
	width: 50%;
	z-index: 3;
}

.history-stories__tap-zone::after {
	content: '';
	position: absolute;
	top: 50%;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.22);
	transform: translateY(-50%) scale(0.9);
	opacity: 0;
	transition: opacity 0.2s ease, transform 0.2s ease;
}

.history-stories__tap-zone::before {
	content: '';
	position: absolute;
	top: 50%;
	width: 10px;
	height: 10px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	transform: translateY(-50%) rotate(45deg);
	opacity: 0;
	transition: opacity 0.2s ease;
	z-index: 1;
}

.history-stories__tap-zone:hover::after,
.history-stories__tap-zone:hover::before {
	opacity: 1;
}

.history-stories__tap-zone:hover::after {
	transform: translateY(-50%) scale(1);
}

.history-stories__tap-zone--prev {
	left: 0;
}

.history-stories__tap-zone--prev::after {
	left: 16px;
}

.history-stories__tap-zone--prev::before {
	left: 33px;
	transform: translateY(-50%) rotate(-135deg);
}

.history-stories__tap-zone--next {
	right: 0;
}

.history-stories__tap-zone--next::after {
	right: 16px;
}

.history-stories__tap-zone--next::before {
	right: 33px;
}

.history-stories__side-preview {
	position: absolute;
	top: 50%;
	height: 72%;
	aspect-ratio: 420 / 760;
	transform: translateY(-50%) scale(0.9);
	border-radius: 24px;
	overflow: hidden;
	background: rgba(15, 15, 15, 0.92);
	color: #fff;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.25s ease, transform 0.25s ease;
	z-index: 1;
}

.history-stories__side-preview.is-visible {
	opacity: 0.62;
	pointer-events: auto;
}

.history-stories__side-preview:hover {
	opacity: 1;
	transform: translateY(-50%) scale(0.96);
}

.history-stories__side-preview--prev {
	right: calc(100% + 20px);
}

.history-stories__side-preview--next {
	left: calc(100% + 20px);
}

.history-stories__side-image {
	width: 100%;
	height: calc(100% - 38px);
	object-fit: cover;
}

.history-stories__side-title {
	display: block;
	padding: 8px 10px 10px;
	text-align: center;
	font-size: 13px;
	font-weight: 700;
}

@media (max-width: 640px) {
	.history-stories__dialog {
		height: min(88dvh, 680px);
		border-radius: 20px;
	}

	.history-stories__close {
		position: absolute;
		top: 50px;
		right: 12px;
		width: 32px;
		height: 32px;
	}

	.history-stories__content {
		border-radius: 20px;
	}

	.history__card-open-hint {
		opacity: 1;
		transform: none;
	}

    .projects__item .history__card-open-hint {
        top: 29px;
        bottom: auto;
        right: 16px;
        left: auto;
        transform: none;
    }

    .projects__item:hover .projects__item-open-hint{
        transform: none;
    }

    .projects__item:hover .title, .projects__item:hover .descr{
        transform: none;
    }

	.history-stories__side-preview {
		height: 64%;
	}

	.history-stories__side-preview--prev {
		right: calc(100% + 12px);
	}

	.history-stories__side-preview--next {
		left: calc(100% + 12px);
	}

	.history-stories__side-image {
		height: calc(100% - 28px);
	}

	.history-stories__side-title {
		font-size: 11px;
		padding: 6px;
	}

	.history-stories__caption {
		padding: 18px;
	}

	.history-stories__title {
		font-size: 20px;
	}

	.history-stories__text {
		font-size: 14px;
	}
}

.congratulations {
	display: flex;
	gap: 20px;
	max-width: 1188px;
	margin: 0 auto;
	margin-top: 66px;
}

.congratulations__item {
	flex: 1;
	background: white;
	box-shadow: 0px 4px 44px 0px #0000000f;
	border-radius: 24px;
	padding: 12px 12px 12px 24px;
	display: flex;
	align-items: center;
	gap: 20px;
	cursor: pointer;
	transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
	position: relative;
	overflow: hidden;
	will-change: transform, box-shadow, background, color;
}
.congratulations__item:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}
.congratulations__item:hover {
	background: #58ac4b;
	color: white;
	transform: translateY(-2px) scale(1.01);
	box-shadow: 0 8px 24px rgba(88, 172, 75, 0.25);
	filter: brightness(1.05);
}
.congratulations__item:active {
	transform: translateY(0) scale(0.99);
	filter: brightness(0.95);
}

.congratulations__content {
	flex: 1;
}

.congratulations__title {
	font-size: clamp(1.125rem, 0.5781rem + 1.5625vw, 1.75rem);
	font-weight: 500;
	margin-bottom: 8px;
	line-height: 1.2;
	color: #1a1919;
	transition: color 0.15s ease;
}

.congratulations__item:hover .congratulations__title {
	color: white;
}

.congratulations__subtitle {
	font-size: 14px;
	color: #1a191980;
	transition: color 0.15s ease;
}

.congratulations__item:hover .congratulations__subtitle {
	color: rgba(255, 255, 255, 0.9);
}

.congratulations__image {
	width: 144px;
	height: 80px;
	border-radius: 68px;
	overflow: hidden;
	flex-shrink: 0;
}

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

.mayor__video-btn {
	position: absolute;
	bottom: -26px;
	right: 18px;
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 18px 16px;
	background: white;
	border-radius: 24px;
	color: #1a191980;
	transition: all 0.3s ease;
	box-shadow: 0px 4px 44px 0px #0000000f;

	width: fit-content;
	overflow: hidden;
}

.mayor__video-btn svg path {
	transition: fill 0.2s ease;
}

.mayor__video-btn:hover {
	background: #58ac4b;
	color: white;
}

.mayor__video-btn:hover svg path {
	fill: white;
	transition: fill 0.2s ease;
}

.mayor__video-btn-text {
	font-size: 16px;
	font-weight: 500;
	line-height: 1.3;
	text-align: left;
}

.video-popup {
	position: fixed;
	inset: 0;
	z-index: 10000;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}

.video-popup.is-open {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.video-popup__overlay {
	position: absolute;
	inset: 0;
	background: rgba(10, 10, 10, 0.78);
	backdrop-filter: blur(8px);
}

.video-popup__dialog {
	position: relative;
	width: min(1080px, calc(100% - 32px));
	margin: 6vh auto 0;
	padding: 0;
	background: transparent;
	box-shadow: none;
}

.video-popup__close {
	position: absolute;
	top: 18px;
	right: 18px;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.4);
	color: #fff;
	font-size: 18px;
	line-height: 1;
	z-index: 5;
}

.video-popup__frame {
	overflow: hidden;
	border-radius: 24px;
	background: #060606;
	position: relative;
	cursor: pointer;
	box-shadow: 0 30px 90px rgba(0, 0, 0, 0.35);
	aspect-ratio: 16 / 9;
}

.video-popup__player {
	display: block;
	width: 100%;
	height: 100%;
	max-height: 72dvh;
	background: #060606;
	object-fit: contain;
}

.video-popup__controls {
	position: absolute;
	left: 12px;
	right: 12px;
	bottom: 12px;
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px;
	border-radius: 14px;
	background: rgba(16, 16, 16, 0.62);
	backdrop-filter: blur(10px);
	z-index: 2;
}

.video-popup__control {
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.14);
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: background 0.2s ease, transform 0.2s ease;
	flex-shrink: 0;
}

.video-popup__control:hover {
	background: linear-gradient(180deg, #58ac4b 0%, #8abc47 100%);
	transform: translateY(-1px);
}

.video-popup__icon {
	position: relative;
	display: block;
	width: 16px;
	height: 16px;
}

.video-popup__icon--play::before {
	content: '';
	position: absolute;
	left: 4px;
	top: 2px;
	width: 0;
	height: 0;
	border-left: 8px solid #fff;
	border-top: 6px solid transparent;
	border-bottom: 6px solid transparent;
}

.video-popup.is-playing .video-popup__icon--play::before {
	left: 3px;
	top: 2px;
	width: 3px;
	height: 12px;
	border: 0;
	background: #fff;
	box-shadow: 6px 0 0 #fff;
}

.video-popup__icon--sound::before {
	content: '';
	position: absolute;
	left: 0;
	top: 4px;
	width: 8px;
	height: 8px;
	background: #fff;
	clip-path: polygon(0 25%, 42% 25%, 72% 0, 72% 100%, 42% 75%, 0 75%);
}

.video-popup__icon--sound::after {
	content: '';
	position: absolute;
	left: 8px;
	top: 1px;
	width: 7px;
	height: 12px;
	border: 2px solid #fff;
	border-left: 0;
	border-radius: 0 12px 12px 0;
}

.video-popup.is-muted .video-popup__icon--sound::after {
	left: 7px;
	top: 1px;
	width: 2px;
	height: 14px;
	border: 0;
	background: #fff;
	border-radius: 999px;
	transform: rotate(45deg);
}

.video-popup.is-muted .video-popup__icon--sound {
	opacity: 0.75;
}

.video-popup__icon--fullscreen::before,
.video-popup__icon--fullscreen::after {
	content: '';
	position: absolute;
	width: 12px;
	height: 12px;
	border: 2px solid #fff;
}

.video-popup__icon--fullscreen::before {
	left: 2px;
	top: 2px;
	border-right: 0;
	border-bottom: 0;
}

.video-popup__icon--fullscreen::after {
	right: 2px;
	bottom: 2px;
	border-left: 0;
	border-top: 0;
}

.video-popup__dialog:fullscreen,
.video-popup__dialog:-webkit-full-screen {
	width: 100vw;
	height: 100dvh;
	max-width: none;
	margin: 0;
	display: block;
}

.video-popup__dialog:fullscreen .video-popup__frame,
.video-popup__dialog:-webkit-full-screen .video-popup__frame {
	height: 100%;
	aspect-ratio: auto;
	border-radius: 0;
	box-shadow: none;
}

.video-popup__dialog:fullscreen .video-popup__player,
.video-popup__dialog:-webkit-full-screen .video-popup__player {
	height: 100%;
	max-height: none;
	width: 100%;
	object-fit: contain;
}

.video-popup__time {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	color: rgba(255, 255, 255, 0.95);
	font-size: 13px;
	font-weight: 600;
	min-width: 92px;
}

.video-popup__progress-wrap {
	flex: 1;
	display: inline-flex;
	align-items: center;
}

.video-popup__progress {
	--video-progress: 0%;
	width: 100%;
	height: 4px;
	appearance: none;
	border-radius: 999px;
	background: linear-gradient(90deg, #8abc47 var(--video-progress), rgba(255, 255, 255, 0.35) var(--video-progress));
	outline: none;
	cursor: pointer;
}

.video-popup__progress::-webkit-slider-thumb {
	appearance: none;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: #fff;
	box-shadow: 0 0 0 2px rgba(88, 172, 75, 0.9);
}

.video-popup__progress::-moz-range-thumb {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	border: 0;
	background: #fff;
	box-shadow: 0 0 0 2px rgba(88, 172, 75, 0.9);
}

.mayor-congr-popup {
	position: fixed;
	inset: 0;
	z-index: 10000;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mayor-congr-popup.is-open {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.mayor-congr-popup__overlay {
	position: absolute;
	inset: 0;
	background: rgba(10, 10, 10, 0.76);
	backdrop-filter: blur(8px);
}

.mayor-congr-popup__dialog {
	position: relative;
	width: min(980px, calc(100% - 32px));
	margin: 6vh auto 0;
	max-height: 88dvh;
	border-radius: 28px;
	background: linear-gradient(180deg, #f8f8f8 0%, #efefef 100%);
	box-shadow: 0 30px 90px rgba(0, 0, 0, 0.35);
	padding: 28px 24px;
	overflow: hidden;
}

.mayor-congr-popup__close {
	position: absolute;
	top: 18px;
	right: 18px;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.4);
	color: #fff;
	font-size: 18px;
	line-height: 1;
	z-index: 2;
}

.mayor-congr-popup__content {
	max-height: calc(88dvh - 56px);
	overflow: auto;
	padding-right: 8px;
	font-size: clamp(1.375rem, 0.9375rem + 1.25vw, 1.875rem);
	line-height: 135%;
	font-family: var(--font-family-secondary);
	font-weight: 300;
	color: #1a1919;
	scrollbar-color: #d0d0d0 #f1f1f1;
	scrollbar-width: thin;
}

.mayor-congr-popup__content p + p {
	margin-top: 0.9em;
}

.mayor-congr-popup__content b,
.mayor-congr-popup__content strong {
	font-weight: 600;
}

.mayor-congr-popup__content::-webkit-scrollbar {
	width: 10px;
}

.mayor-congr-popup__content::-webkit-scrollbar-track {
	background: #f1f1f1;
	border-radius: 999px;
}

.mayor-congr-popup__content::-webkit-scrollbar-thumb {
	border-radius: 999px;
	background: #d0d0d0;
	border: 2px solid #f1f1f1;
}

.mayor-congr-popup__sign {
	margin-top: -100px;
	margin-right: 50px;
	display: flex;
	justify-content: flex-end;
}

.mayor-congr-popup__sign img {
	max-width: 187px;
	width: 100%;
	height: auto;
	object-fit: contain;
}

@media (max-width: 1200px) {
	.history__title .uzor {
		max-width: 400px;
	}

	.history__card {
		height: 380px;
	}

	.history__card-content {
		padding: 25px;
	}

	.history__card-description {
		font-size: 16px;
		max-width: 240px;
	}
}

@media (max-width: 1024px) {
	.history.main__section {
		padding-top: 60px;
	}

	.history__cards-container {
		margin-bottom: 40px;
	}

	.history__card {
		height: 350px;
	}

	.history__card-content {
		padding: 20px;
	}

	.history__card-year {
		margin-bottom: 15px;
	}

	.history__card-description {
		font-size: 15px;
		max-width: 220px;
	}

	.history__nav-btn {
		width: 70px;
		height: 50px;
		margin: 0 8px;
	}

	.history__year-btn {
		width: 70px;
		height: 45px;
		font-size: 18px;
	}

	.history__years-pagination {
		padding: 4px;
	}
}

@media (max-width: 768px) {
	.history.main__section {
		padding-top: 40px;
	}

	.history__title .uzor {
		max-width: 300px;
	}

	.history__cards-container {
		margin-bottom: 30px;
	}

	.history__card {
		height: 320px;
	}

	.history__card-content {
		padding: 18px;
	}

	.history__card-year {
		margin-bottom: 12px;
	}

	.history__card-description {
		font-size: 14px;
		max-width: 200px;
		line-height: 1.3;
	}

	.history__pagination {
		flex-wrap: wrap;
		gap: 15px;
	}

	.history__nav-btn {
		width: 60px;
		height: 45px;
		margin: 0;
	}

	.history__year-btn {
		width: 60px;
		height: 40px;
		font-size: 16px;
	}

	.history__years-pagination {
		order: -1;
		width: 100%;
		justify-content: center;
		overflow-x: auto;
		padding: 3px;
	}
}

@media (max-width: 640px) {
	.history__card {
		height: 300px;
	}

	.history__card-content {
		padding: 15px;
	}

	.history__card-description {
		font-size: 13px;
		max-width: 180px;
	}

	.history__year-btn {
		width: 55px;
		height: 38px;
		font-size: 14px;
	}

	.history__nav-btn {
		width: 55px;
		height: 42px;
	}
}

@media (max-width: 480px) {
	.history.main__section {
		padding-top: 30px;
	}

	.history__title .uzor {
		max-width: 175px;
	}
    html .history__title-uzor img{
        margin: 0 -30px !important;
    }

	.history__cards-container {
		margin-bottom: 25px;
	}

	.history__card-content {
		padding: 12px;
	}

	.history__card-year {
		margin-bottom: 10px;
	}

	.history__card-description {
		font-size: 12px;
		max-width: 160px;
		line-height: 1.25;
	}

	.history__year-btn {
		width: 50px;
		height: 35px;
		font-size: 13px;
	}

	.history__nav-btn {
		width: 50px;
		height: 38px;
	}

	.history__years-pagination {
		padding: 2px;
		gap: 2px;
	}
}

@media (max-width: 640px) {
	body.menu-open {
		overflow: hidden;
	}
}

.header__inner,
.header__logo,
.header__nav,
.weather__block {
	transition: all var(--transition-normal);
}

/*.header__menu-toggle:focus {*/
/*	outline: 2px solid var(--color-accent);*/
/*	outline-offset: 2px;*/
/*}*/

/*.header__nav-link:focus {*/
/*	outline: 2px solid var(--color-accent);*/
/*	outline-offset: 2px;*/
/*}*/
@media (max-width: 1204px) {
	.footer {
		& .weather__block {
			flex: unset;
		}
	}
}
@media (max-width: 1024px) {
	.mayor__inner {
		grid-template-columns: 1fr;
		gap: 40px;
	}
	.mayor__img {
		height: auto;
	}

	.video-popup__dialog {
		width: min(960px, calc(100% - 24px));
	}

	.mayor-congr-popup__dialog {
		width: min(920px, calc(100% - 24px));
	}
}

@media (max-width: 768px) {
	.mayor__card {
		padding: 16px;
		padding-bottom: 40px;
	}
	.mayor__video-btn {
		position: static;
		margin-top: 20px;
		align-self: flex-start;
	}
	.congratulations {
		flex-direction: column;
		gap: 16px;
		margin-top: 40px;
	}
	.congratulations__item {
		padding: 16px;
	}
	.congratulations__image {
		width: 80px;
		height: 60px;
	}

	.video-popup__dialog {
		margin-top: 6vh;
		padding: 0;
	}

	.video-popup__frame {
		aspect-ratio: auto;
		min-height: 72dvh;
	}

	.video-popup__player {
		height: 72dvh;
		max-height: none;
		object-fit: cover;
	}

	.video-popup__controls {
		left: 8px;
		right: 8px;
		bottom: 8px;
		gap: 8px;
		padding: 8px;
		border-radius: 12px;
	}

	.video-popup__control {
		width: 34px;
		height: 34px;
	}

	.video-popup__time {
		min-width: 74px;
		font-size: 11px;
	}

	.video-popup__close {
		top: 10px;
		right: 12px;
		width: 32px;
		height: 32px;
	}

	.mayor-congr-popup__dialog {
		margin-top: 8vh;
		padding: 18px 14px;
		border-radius: 18px;
	}

	.mayor-congr-popup__close {
		top: 12px;
		right: 10px;
		width: 32px;
		height: 32px;
	}

	.mayor-congr-popup__content {
		font-size: 20px;
		max-height: calc(88dvh - 40px);
	}

	.mayor-congr-popup__sign {
		margin-top: -70px;
		margin-right: 24px;
	}

	.mayor-congr-popup__sign img {
		max-width: 147px;
	}
}
@media (max-width: 520px) {
	.footer__inner {
		flex-direction: column-reverse;
		align-items: flex-start;
		& .weather__block .top {
			justify-content: flex-start;
		}
	}
}
@media screen and (max-width: 1204px) {
	.header__menu-toggle {
		display: flex;
		flex-direction: column;
		cursor: pointer;
		padding: 8px;
		z-index: 3;
	}

	.header__menu-toggle span {
		width: 24px;
		height: 2px;
		background-color: var(--text-primary);
		margin: 3px 0;
		transition: 0.3s;
		border-radius: 2px;
	}

	.header__menu-toggle.active span:nth-child(1) {
		transform: rotate(-45deg) translate(-5px, 6px);
	}

	.header__menu-toggle.active span:nth-child(2) {
		opacity: 0;
	}

	.header__menu-toggle.active span:nth-child(3) {
		transform: rotate(45deg) translate(-5px, -6px);
	}

	.header__nav {
		position: fixed;
		top: 0;
		left: -100%;
		width: 280px;
		height: 100vh;
		background: white;
		padding: 120px 20px 20px;
		transition: left 0.3s ease;
		box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
		z-index: 2;
	}

	.header__nav.active {
		left: 0;
	}

	.header__nav-list {
		flex-direction: column;
	}

	.header__nav-link {
		text-align: center;
		padding: 16px 20px;
		border-radius: 12px;
		transition: all 0.3s ease;
	}

	.header__nav-link:hover {
		background-color: #f0f0f0;
		transform: translateY(-2px);
	}

	.header__overlay {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: rgba(0, 0, 0, 0.5);
		opacity: 0;
		visibility: hidden;
		transition: all 0.3s ease;
		z-index: 1;
	}

	.header__overlay.active {
		opacity: 1;
		visibility: visible;
	}
}

.banner__btn,
.btn__more,
.history__card,
.projects__item,
.congratulations__item,
.mayor__video-btn,
.footer__link,
.header__logo,
.history__year-btn,
.events__item-img {
	transition: transform 0.3s ease;
}

.history__card,
.projects__item,
.congratulations__item {
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	will-change: transform, opacity;
}

.main__title {
	will-change: transform, opacity;
}

.dropdown__content {
	transform: translateY(-10px);
	transition: all 0.3s ease;
}

.dropdown.active .dropdown__content {
	transform: translateY(0);
}

.projects__item .status,
.projects__item .status-on {
	transition: transform 0.3s ease;
}

a {
	transition: color 0.3s ease;
}

.projects__item:hover {
	transform: scale(1.02);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.projects__inner:not(.ajaxed) .projects__item:first-child:before{
    background: transparent !important;
}

.projects__item:hover .status,
.projects__item:hover .status-on {
	transform: scale(1.05);
}


.events__item:hover .events__item-img {
	transform: scale(1.02);
}

.history__year-btn:hover {
	transform: translateY(-2px);
}

.history__year-btn:active {
	transform: scale(0.95);
}

.mayor__video-btn:hover {
	transform: translateY(-3px) scale(1.02);
}

.footer__link:hover {
	transform: translateY(-3px);
}

.header__logo:hover {
	transform: scale(1.05);
}

button:active,
.banner__btn:active,
.btn__more:active {
	transform: scale(0.98);
}

.icon-snow {
	animation: float 3s ease-in-out infinite;
}

@keyframes float {
	0%,
	100% {
		transform: translateY(0px);
	}
	50% {
		transform: translateY(-5px);
	}
}

.banner-elipses{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	gap: 240px;
	justify-content: center;
	align-items: flex-start;
	z-index: 1;
}

.banner-elipses-item {
	--ellipse-pulse-translate: -12px;
	--ellipse-pulse-scale: 1.02;
	--ellipse-pulse-delay: 0s;
	pointer-events: none;
	will-change: opacity, transform;
}

.banner-elipses-item.is-animated {
	opacity: 0;
	transform: translate3d(0, 120px, 0) scale(0.85);
	transition:
		opacity 1.1s cubic-bezier(0.19, 1, 0.22, 1),
		transform 1.1s cubic-bezier(0.19, 1, 0.22, 1);
}

.banner-elipses-item:nth-child(2) {
	--ellipse-pulse-translate: 14px;
	--ellipse-pulse-scale: 1.015;
	--ellipse-pulse-delay: 0.35s;
}

.banner-elipses-item.is-visible {
	opacity: 1;
	transform: translate3d(0, 0, 0) scale(1);
}

.banner-elipses svg {
	height: 100%;
	display: block;
	opacity: 0.92;
	transform-origin: center;
}

.banner-elipses-item.is-visible svg {
	animation: ellipsePulse 6s ease-in-out infinite alternate;
	animation-delay: var(--ellipse-pulse-delay);
}

@media (max-width: 1024px) {
	.banner-elipses {
		gap: 140px;
	}

	.banner-elipses svg {
		height: 82%;
	}
}

@media (max-width: 767px) {
	.banner-elipses {
		gap: 220px;
		align-items: flex-start;
	}

	.banner-elipses-item {
		display: flex;
		align-items: flex-start;
	}

	.banner-elipses svg {
		height: clamp(600px, 180vw, 980px);
		width: auto;
		max-width: none;
	}
}

@media (max-width: 480px) {
	.banner-elipses {
		gap: 140px;
	}

	.banner-elipses svg {
		height: clamp(520px, 170vw, 900px);
		width: auto;
		max-width: none;
		opacity: 0.85;
	}
}

@keyframes ellipsePulse {
	0% {
		transform: translateY(0) scale(1);
		opacity: 0.9;
	}

	100% {
		transform: translateY(var(--ellipse-pulse-translate)) scale(var(--ellipse-pulse-scale));
		opacity: 0.98;
	}
}

@media (prefers-reduced-motion: reduce) {
	.banner-elipses-item,
	.banner-elipses-item.is-animated,
	.banner-elipses-item.is-visible {
		opacity: 1;
		transform: none;
		filter: none;
		transition: none;
	}

	.banner-elipses-item.is-visible svg,
	.banner-elipses svg {
		animation: none;
	}
}

.shimmer {
	position: relative;
	overflow: hidden;
	border-radius: var(--shimmer-radius, 5px);
	background: #e9edf3;
	isolation: isolate;
}

.shimmer::before,
.shimmer::after {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: inherit;
	pointer-events: none;
}

.shimmer::before {
	background: #e9edf3;
	z-index: 1;
}

.shimmer::after {
	transform: translateX(-100%);
	background: linear-gradient(
		90deg,
		rgba(255, 255, 255, 0) 0%,
		rgba(255, 255, 255, 0.55) 45%,
		rgba(255, 255, 255, 0.9) 50%,
		rgba(255, 255, 255, 0.55) 55%,
		rgba(255, 255, 255, 0) 100%
	);
	z-index: 2;
	animation: shimmer 1.4s linear infinite;
}

@keyframes shimmer {
	100% {
		transform: translateX(100%);
	}
}