/* =========================================================
   USTAWIENIA OGÓLNE
   ========================================================= */

* {
	box-sizing: border-box;
}

body {
	margin: 0;
	padding: 0;
	background: #d7dce0;
}


/* =========================================================
   GŁÓWNY UKŁAD STRONY
   ========================================================= */

.wrapper {
	width: calc(100% - 18px);
	max-width: 1340px;

	margin: 0 auto;

	display: grid;

	grid-template-columns:
		220px minmax(0, 1fr);

	grid-template-areas:
		"submenu main"
		"footer footer";

	align-items: stretch;

	font-weight: bold;
	text-align: center;
}


/* =========================================================
   LEWA KOLUMNA - MENU
   ========================================================= */

.aside-1 {
	grid-area: submenu;

	width: 100%;
	min-width: 0;

	margin: 0;

	background: #eef3f6;

	border-right: 1px solid #c8d2da;
}


/* =========================================================
   GŁÓWNA TREŚĆ
   ========================================================= */

.main {
	grid-area: main;

	width: 100%;
	max-width: 100%;
	min-width: 0;

	margin: 0;

	overflow: hidden;

	text-align: center;

	background: #d9eef7;
}


/* =========================================================
   PRAWA KOLUMNA - WYŁĄCZONA
   ========================================================= */

.aside-2 {
	display: none !important;
}


/* =========================================================
   MENU POZIOME
   ========================================================= */

.navigation {
	display: flex;
	flex-flow: row wrap;

	justify-content: center;
	gap: 12px;

	list-style: none;

	margin: 0;
	padding: 10px 15px;

	background: #ffffff;

	border-bottom: 1px solid #d7dce0;
}


/* =========================================================
   LINKI MENU POZIOMEGO
   ========================================================= */

.navigation a {
	display: block;

	padding: 8px 16px;

	text-decoration: none;

	color: #21435c;

	background: #f7f9fa;

	border: 1px solid #d8e0e5;
	border-radius: 18px;
}


/* =========================================================
   MENU POZIOME - NAJECHANIE
   ========================================================= */

.navigation a:hover {
	background: #e6f0f6;
	color: #0b2c44;

	border-color: #b8c9d4;
}


/* =========================================================
   LINKI W LEWYM MENU
   ========================================================= */

#submenu a {
	display: block;

	padding: 12px 14px;

	text-decoration: none;

	color: #27465e;

	border-bottom: 1px solid #d9e0e5;
}

#submenu a:hover {
	background: #ddeaf2;
	color: #0b2c44;
}

/* =========================================================
   STOPKA
   ========================================================= */

.footer {
	grid-area: footer;

	width: 100%;

	margin-top: 35px;
	padding: 18px;

	background: #ffffff;

	border-top: 2px solid #b5c1c9;

	text-align: center;

	font-size: 13px;
	font-weight: normal;
	letter-spacing: 0.5px;

	color: #65737e;
}


/* =========================================================
   TABLET
   ========================================================= */

@media all and (max-width: 800px) {

	.navigation {
		justify-content: space-around;
	}

}


/* =========================================================
   TELEFON / WĄSKI EKRAN
   ========================================================= */

@media all and (max-width: 799px) {

	.wrapper {
		width: 100%;

		grid-template-columns: 1fr;

		grid-template-areas:
			"submenu"
			"main"
			"footer";
	}

	.aside-1 {
		width: 100%;

		border-right: 0;
		border-bottom: 3px solid #263c4f;
	}

	.main {
		width: 100%;
	}

}


/* =========================================================
   MENU POZIOME - TELEFON
   ========================================================= */

@media all and (max-width: 600px) {

	.navigation {
		flex-flow: column wrap;
		padding: 0;
	}

	.navigation a {
		text-align: center;
		padding: 10px;

		border-top:
			1px solid rgba(255, 255, 255, 0.3);

		border-bottom:
			1px solid rgba(0, 0, 0, 0.1);
	}

	.navigation li:last-of-type a {
		border-bottom: none;
	}

}