* {
	box-sizing: border-box;
}

:root {
	--bg-soft: #f3efe9;
	--blue-soft: #d8e4f2;
	--blue-softer: #e4edf7;
	--pink-soft: #f4b8c7;
	--pink-softer: #f8d7df;
	--text-main: #171717;
	--text-muted: #3f3f3f;
	--border-soft: rgba(23, 23, 23, 0.18);
	--shadow-soft: rgba(0, 0, 0, 0.18);
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	min-height: 100vh;

	background-image: url(presentation.jpeg);
	background-size: cover;
	background-position: center;
	background-attachment: fixed;

	font-family: Georgia, "Times New Roman", serif;
	color: var(--text-main);
}

body::before {
	content: "";
	position: fixed;
	inset: 0;

	background: rgba(243, 239, 233, 0.32);
	backdrop-filter: grayscale(10%) contrast(80%) brightness(75%);

	pointer-events: none;
	z-index: 0;
}

.site {
	position: relative;
	z-index: 1;

	width: min(86%, 1440px);
	margin: 0 auto;
}

.ticker {
	width: 100%;
	margin: 0 auto;
	overflow: hidden;

	background-color: rgba(248, 215, 223, 0.72);
	border-bottom: 1px solid rgba(23, 23, 23, 0.08);

	padding: 6px 0;
	white-space: nowrap;

	backdrop-filter: blur(6px);
}


.ticker_track {
	display: flex;
	width: max-content;
	animation: tickerMove 55s linear infinite;
}

.ticker_group {
	display: flex;
	flex-shrink: 0;

	font-family: Georgia, "Times New Roman", serif;
	font-weight: 600;
	font-size: 14px;
	color: rgba(23, 23, 23, 0.78);
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.ticker_group span::after {
	content: "•";
	margin: 0 30px;
	opacity: 0.55;
}

@keyframes tickerMove {
	0% {
		transform: translateX(0);
	}

	100% {
		transform: translateX(-50%);
	}
}


.banner {
	width: 100%;
	height: 135px;

	background-image: url(pic.png);
	background-size: cover;
	background-position: center 60%;
	backdrop-filter: grayscale(5%) contrast(50%) brightness(65%);

	padding: 0;
	margin-top: 10px;
	border-radius: 18px;
	overflow: hidden;
}

.columns {
	width: 100%;
	display: flex;
	gap: 26px;
	align-items: stretch;
	margin-top: 22px;
}

.modul {
	min-height: 150px;
	border: none;
	border-radius: 18px;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

.modul_left {
	width: 20%;
	border: 1px solid var(--border-soft);
	background: rgba(255, 255, 255, 0.22);
	padding: 0;
	display: flex;
	overflow: hidden;
	border-radius: 12px;
	box-shadow: 0 10px 26px var(--shadow-soft);
}

.modul_left img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	border-radius: 12px;

	filter: saturate(75%) contrast(90%) brightness(98%);
}

.modul_center {
	width: 56%;
	background-color: rgba(224, 234, 246, 0.96);

	padding: 48px 58px 50px;
	border-radius: 22px;

	border: 1px solid rgba(23, 23, 23, 0.12);
	box-shadow: 0 12px 26px rgba(0, 0, 0, 0.12);
}

.modul_center h1 {
	margin: 0 0 24px;
	line-height: 1.1;
	font-size: 26px;
	letter-spacing: -0.02em;
	color: var(--text-main);
}

.modul_center p {
	margin: 0 0 18px;
	line-height: 1.38;
	font-size: 14.5px;
	color: rgba(23, 23, 23, 0.88);
}

.modul_center ul {
	margin: 0 0 24px 28px;
	padding: 0;
}

.modul_center li {
	margin-bottom: 9px;
	line-height: 1.36;
	font-size: 14.5px;
	color: rgba(23, 23, 23, 0.88);
}

.modul_right {
	width: 20%;
	background-image: url(right.jpeg);
	background-size: cover;
	background-position: center;

	border: 1px solid var(--border-soft);
	background-color: rgba(255, 255, 255, 0.18);
	padding: 0;
	overflow: hidden;
	border-radius: 12px;
	box-shadow: 0 10px 26px var(--shadow-soft);

	filter: saturate(70%) contrast(88%) brightness(92%);
}

.event_button {
	display: inline-block;
	margin-top: 18px;
	padding: 11px 26px;

	background-color: var(--pink-softer);
	color: var(--text-main);

	font-family: Georgia, "Times New Roman", serif;
	font-size: 15px;
	font-weight: 700;
	text-decoration: none;

	border: 1px solid var(--text-main);
	border-radius: 999px;

box-shadow: 3px 3px 0 rgba(23, 23, 23, 0.45);

	transition: 
		transform 0.2s ease,
		box-shadow 0.2s ease,
		background-color 0.2s ease;
}

.event_button:hover {
	transform: translateY(-2px);
	background-color: var(--pink-softer);
	box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.75);
}

.site_footer {
	width: 100%;
	margin: 18px auto 0;

	background: rgba(248, 215, 223, 0.94);
	border: 1px solid var(--border-soft);
	border-radius: 16px 16px 0 0;
	overflow: hidden;

	box-shadow: 0 -8px 26px rgba(0, 0, 0, 0.16);

	font-family: Georgia, "Times New Roman", serif;
	color: var(--text-main);

	animation: footerAppear 0.7s ease both;
}

.footer_inner {
	display: grid;
	grid-template-columns: 1.2fr 0.9fr 0.8fr;
	gap: 32px;

	padding: 26px 34px 22px;

	justify-items: start;
	align-items: start;
}

.footer_brand h2 {
	margin: 0 0 10px;

	font-size: 34px;
	line-height: 1;
	letter-spacing: -0.04em;
}

.footer_brand p {
	margin: 0;

	max-width: 280px;

	font-size: 15px;
	line-height: 1.25;
	color: var(--text-muted);
}

.footer_column {
	text-align: left;
	justify-self: start;
}

.footer_column h3 {
	margin: 0 0 10px;

	font-size: 16px;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.footer_column p {
	margin: 0 0 5px;

	font-size: 15px;
	line-height: 1.2;
	color: var(--text-muted);
}

.footer_column a {
	position: relative;

	display: block;
	width: fit-content;

	margin-bottom: 6px;

	color: var(--text-main);
	font-size: 16px;
	font-weight: 700;
	text-decoration: none;

	transition: transform 0.25s ease, opacity 0.25s ease;
}

.footer_column a::after,
.footer_bottom a::after {
	content: "";

	position: absolute;
	left: 0;
	bottom: -3px;

	width: 0;
	height: 2px;

	background: var(--text-main);

	transition: width 0.25s ease;
}

.footer_column a:hover {
	transform: translateX(5px);
	opacity: 0.72;
}

.footer_column a:hover::after,
.footer_bottom a:hover::after {
	width: 100%;
}

.footer_bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 20px;

	padding: 14px 34px;

	background: rgba(23, 23, 23, 0.92);
	color: var(--pink-softer);

	font-size: 14px;
}

.footer_bottom p {
	margin: 0;
}

.footer_bottom a {
	position: relative;

	color: var(--pink-softer);
	font-weight: 700;
	text-decoration: none;

	transition: opacity 0.25s ease, transform 0.25s ease;
}

.footer_bottom a:hover {
	opacity: 0.78;
	transform: translateY(-1px);
}

.footer_bottom a::after {
	background: var(--pink-softer);
}

@keyframes footerAppear {
	from {
		opacity: 0;
		transform: translateY(20px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}




@keyframes blinkBackground {
0% {
	background-color: rgba(255, 255, 255, 0.85);
}
50% {
	background-color: rgba(255, 255, 200, 0.85);
}
100% {
	background-color: rgba(255, 255, 255, 0.85);
}

}


.event_details {
	width: 100%;
	margin: 24px auto 0;

	padding: 30px 34px 32px;

	background: #f8d7df;
	border: 1px solid rgba(23, 23, 23, 0.12);
	border-radius: 22px;

	box-shadow: 0 10px 26px rgba(0, 0, 0, 0.12);

	color: var(--text-main);
}

.event_details_header {
	margin-bottom: 20px;
}

.event_details_header p {
	margin: 0 0 8px;

	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.16em;

	color: rgba(23, 23, 23, 0.5);
}

.event_details_header h2 {
	margin: 0;

	font-family: Georgia, "Times New Roman", serif;
	font-size: 28px;
	line-height: 1;
	letter-spacing: -0.04em;
}

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

.event_card {
	min-height: 145px;

	padding: 18px 18px 20px;

	background: #e4edf7;
	border: 1px solid rgba(23, 23, 23, 0.08);
	border-radius: 16px;

	box-shadow: 0 6px 14px rgba(0, 0, 0, 0.07);

	transition:
		transform 0.25s ease,
		box-shadow 0.25s ease,
		background-color 0.25s ease;
}

.event_card:hover {
	transform: translateY(-3px);
	background: #edf4fb;
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.event_card span {
	display: inline-block;
	margin-bottom: 14px;

	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.12em;

	color: rgba(23, 23, 23, 0.38);
}

.event_card h3 {
	margin: 0 0 9px;

	font-family: Georgia, "Times New Roman", serif;
	font-size: 18px;
	line-height: 1.05;
	letter-spacing: -0.03em;
}

.event_card p {
	margin: 0;

	font-family: Arial, Helvetica, sans-serif;
	font-size: 13px;
	line-height: 1.35;

	color: rgba(23, 23, 23, 0.68);
}
.event_card {
	min-height: 170px;

	padding: 22px 20px;

	background: rgba(224, 234, 246, 0.84);
	border: 1px solid rgba(23, 23, 23, 0.1);
	border-radius: 18px;

	box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);

	transition:
		transform 0.25s ease,
		box-shadow 0.25s ease,
		background-color 0.25s ease;
}

.event_card:hover {
	transform: translateY(-4px);
	background: rgba(228, 237, 247, 0.96);
	box-shadow: 0 12px 24px rgba(0, 0, 0, 0.13);
}

.event_details,
.site_footer {
	width: min(86%, 1440px);
	margin-left: auto;
	margin-right: auto;
}

.event_details {
	background: #f5cfd8;
	border: 1px solid rgba(23, 23, 23, 0.14);
	box-shadow: 0 10px 26px rgba(0, 0, 0, 0.14);
}

.event_card {
	background: #e7eef7;
	border: 1px solid rgba(23, 23, 23, 0.1);
	color: #171717;
}

.event_card h3 {
	color: #171717;
}

.event_card p {
	color: rgba(23, 23, 23, 0.76);
}

.site_footer {
	background: #f8d7df;
}

.footer_bottom {
	background: #171717;
}

.event_details {
	width: min(86%, 1440px);
	margin: 26px auto 0;

	padding: 30px 34px 34px;

	background: #f8d7df;
	border: 1px solid rgba(23, 23, 23, 0.14);
	border-radius: 22px;

	box-shadow: 0 10px 26px rgba(0, 0, 0, 0.13);

	color: var(--text-main);
}

.event_details_header {
	margin-bottom: 22px;
}

.event_details_header p {
	margin: 0 0 8px;

	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.14em;

	color: rgba(23, 23, 23, 0.55);
}

.event_details_header h2 {
	margin: 0;

	font-size: 30px;
	line-height: 1;
	letter-spacing: -0.04em;

	color: #171717;
}

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

.event_card {
	min-height: 145px;

	padding: 20px 20px 22px;

	background: #e4edf7;
	border: 1px solid rgba(23, 23, 23, 0.1);
	border-radius: 18px;

	box-shadow: 0 7px 16px rgba(0, 0, 0, 0.08);
}

.event_card span {
	display: inline-block;
	margin-bottom: 16px;

	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.1em;

	color: rgba(23, 23, 23, 0.42);
}

.event_card h3 {
	margin: 0 0 9px;

	font-size: 19px;
	line-height: 1.05;
	letter-spacing: -0.03em;

	color: #171717;
}

.event_card p {
	margin: 0;

	font-size: 14px;
	line-height: 1.35;

	color: rgba(23, 23, 23, 0.76);
}

.site_footer {
	width: min(86%, 1440px);
	margin-left: auto;
	margin-right: auto;

	background: #f8d7df;
}

.event_details {
	background: rgba(248, 215, 223, 0.68) !important;
	background-image: none !important;

	border: 1px solid rgba(23, 23, 23, 0.18) !important;
	box-shadow: 0 14px 32px rgba(0, 0, 0, 0.18) !important;
}

.event_card {
	background: #edf3fa !important;
	opacity: 1 !important;

	border: 1px solid rgba(23, 23, 23, 0.14) !important;
	box-shadow: 0 8px 18px rgba(0, 0, 0, 0.11) !important;
}

.event_details_header h2,
.event_card h3 {
	color: #171717 !important;
}

.event_details_header p,
.event_card span {
	color: rgba(23, 23, 23, 0.55) !important;
}

.event_card p {
	color: rgba(23, 23, 23, 0.82) !important;
}

.event_details,
.site_footer {
	width: 100%;
	margin-left: 0;
	margin-right: 0;
	position: relative;
	z-index: 1;
}


.event_card {
	background: #edf3fa !important;
	opacity: 1 !important;
}

.event_details {
	background: rgba(248, 215, 223, 0.62) !important;
	background-color: rgba(248, 215, 223, 0.62) !important;
	background-image: none !important;
}

