:root {
	--bg: #ffffff;
	--bg2: #f7f5ff;
	--bg3: #fff8f0;
	--ink: #12103a;
	--muted: #6b6888;
	--border: #ebe8f5;
	--red: #ff3d5a;
	--orange: #ff7b2c;
	--yellow: #ffc926;
	--green: #22c55e;
	--blue: #2563ff;
	--purple: #8b44ff;
	--pink: #ff44ac;
	--cyan: #00c8e0;
	--light: #0f172a;
	--shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.08);
	--text: #334155;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box
}

html {
	scroll-behavior: smooth
}

body {
	font-family: 'Nunito', sans-serif;
	background: var(--bg);
	color: var(--ink);
	overflow-x: hidden
}
/* HEADER */
header {
	position: sticky;
	display: flex;
	top: 0;
	left: 0;
	right: 0;
	z-index: 200;
	align-items: center;
	background-color: #ffffff;
	padding: 0.75rem 1.5rem;
	border-bottom: 1px solid #eef0f2;
	gap: 12px;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
		sans-serif;
}

.header-img {
	height: 2rem;
	margin-right: 0.5rem;
}

nav a {
	color: #5f6368;
	text-decoration: none;
	padding: 8px 16px;
	border-radius: 8px;
	font-size: 14px;
	font-weight: 500;
	border: 1px solid transparent;
	transition: all 0.2s ease;
	white-space: nowrap;
}

nav a:hover {
	background-color: #f1f3f4;
}

.warning-header {
	display: flex;
	right: 0;
	left: 0;
	position: relative;
	z-index: 100;
	justify-content: center;
	background: linear-gradient(90deg, var(--red), var(--orange));
	color: white;
	padding: 0.4rem 1.5rem;
	gap: 12px;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
		sans-serif;
}

.header-desktop {
	display: unset;
}

.header-mobile {
	display: none;
}

.nav-modal {
	display: none;
	position: fixed;
	inset: 0;
	background: #ffffff;
	opacity: 0.98;
	z-index: 9999;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 2rem;
	z-index: 9999;
}

.menu-close-btn {
	position: absolute;
	top: 1.5rem;
	right: 1.5rem;
	font-size: 3rem;
	background: none;
	border: none;
	color: var(--red);
	cursor: pointer;
	line-height: 1;
}

.mobile-nav-links {
	display: flex;
	flex-direction: column;
	gap: 2rem;
	text-align: center;
}

.mobile-nav-links a {
	font-family: 'Unbounded', sans-serif;
	font-weight: 700;
	font-size: 1.4rem;
	color: var(--ink);
	text-decoration: none;
	border: 1px solid gray;
}
/* FOOTER */
footer {
	background: var(--ink);
	padding: 5rem 5rem 2rem;
}

#footer-maincontent {
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr 1fr;
	gap: 3rem;
	margin-bottom: 1rem;
	padding-bottom: 3rem;
	border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.footer-orgname {
	font-family: 'Unbounded', sans-serif;
	font-weight: 900;
	font-size: 1.2rem;
	line-height: 1.2;
	margin-bottom: 1rem;
}

.footer-orgname em {
	font-style: normal;
	background: linear-gradient(90deg, var(--orange), var(--yellow));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.footer_org_description {
	font-size: .82rem;
	font-weight: 400;
	color: rgba(255, 255, 255, .45);
	line-height: 1.75
}

.footer-nav span, .footer-title {
	font-family: 'Unbounded', sans-serif;
	font-size: .6rem;
	font-weight: 700;
	letter-spacing: .15em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, .4);
	margin-bottom: 1.2rem;
	display: block;
}

.footer-nav a, .footer-contacts-span, .footer-contacts a {
	display: block;
	font-size: .82rem;
	font-weight: 400;
	color: rgba(255, 255, 255, .55);
	text-decoration: none;
	margin-bottom: .55rem;
	transition: color .2s
}

.footer-nav a:hover, .footer-contacts-span:hover, .footer-contacts a:hover
	{
	color: #fff
}

.footer-social {
	display: flex;
	flex-flow: column wrap;
	flex-direction: row;
	gap: 0.8rem;
	max-height: 160px;
	width: fit-content;
}

.socialmedium-container {
	width: 42px;
	height: 42px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.05);
	border-radius: 8px;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.socialmedium-container:hover {
	transform: translateY(-3px);
	background: rgba(255, 255, 255, 0.1);
}

.socialmedium-container img {
	width: 24px;
	height: 24px;
	opacity: 0.8;
	transition: opacity 0.2s;
}

.socialmedium-container:hover img {
	opacity: 1;
}

.socialmedium-container a {
	margin-bottom: 0 !important;
	display: flex;
}

#footer-copyright {
	font-size: .78rem;
	color: rgba(255, 255, 255, .35);
	text-align: center;
}

@media ( max-width : 900px) {
	#footer-maincontent {
		grid-template-columns: 1fr 1fr
	}
	footer {
		padding-left: 1.5rem;
		padding-right: 1.5rem;
	}
}

@media ( max-width : 730px) {
	header {
		padding-left: 1.5rem;
		padding-right: 1.5rem;
		justify-content: space-between;
	}
	.header-img {
		height: 2rem;
		aspect-ratio: 1/1;
	}
	#nav a {
		text-align: center;
		width: 100%;
		box-sizing: border-box;
	}
	.header-mobile {
		display: flex;
	}
	.header-mobile button {
		font-size: .85rem;
		font-weight: 600;
		color: var(--muted);
		text-decoration: none;
		padding: 8px 16px;
		border-radius: 8px;
	}
	.header-desktop {
		display: none;
	}
}