* {
    box-sizing: border-box;
}

body {
    margin: 0;
    /* font-family: Arial, sans-serif; */
	font-family: "Open Sans", sans-serif;
    /* background: #f5f5f5; Poniżej testowa modyfikacja tekstu i tła: */
}

/* HEADER */

.navbar {
	background: #00838f;

    position: sticky;
    top: 0;

    z-index: 1000; important!
}

.navbar-content {
max-width: 1100px;
margin: 0 auto;
padding: 1rem 2rem;

display: flex;
justify-content: space-between;
align-items: center;
 
padding: 1rem;
}

.logo {
    color: white;
    text-decoration: none;
	font-size: 1.25rem;
    /* font-weight: bold; */
}

.menu {
    display: flex;
    gap: 1rem;
	list-style: none;
    margin: 0;
    padding: 0;
	}

.menu a {
    color: white;
    text-decoration: none;
	text-transform: uppercase;
	color: rgba(255, 255, 255, .5);
}

.menu a:hover {
    text-decoration: underline;
}

.menu-toggle {
    display: none;
}

/* CONTENT */

.container {
    max-width: 1100px;

    margin: auto;

    /* background: white; */

    padding: 2rem;
	/* testowo: */
	font-weight: 400;
    color: #474747;
	background: #fff;
    /* font-size: 1.6rem; */
    line-height: 1.75;
	}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
	font-weight: 500;
}

a {
	color: #00838f;
    text-decoration: none;
    background-color: transparent;
}

.text-center{
	text-align: center;
}
/*
#terminy-list {
    padding-left: 1.5rem;
}
*/

/*
#terminy-list li {
    margin-bottom: 0.75rem;
}
*/

/*
.termin-data {
    font-weight: 600;
}
*/

.termin-uwaga {
    margin-top: 0.25rem;
    color: #b00020;
    font-size: 0.95rem;
    font-style: italic;
}

hr {
height: 1px;
border: 0;
/* background-color: gray; */
background-color: rgba(0, 0, 0, .1);
}

/* FOOTER */

footer {

   /* background: #003366;*/

    /* color: white; */
	color: grey;

    /* margin-top: 40px; */
}

.footer-content {

    padding: 20px;

    text-align: center;
}

/* MAPA */

#map {

    width: 100%;
    height: 400px;

    margin: 20px 0;
}

/* MOBILE */

@media (max-width: 768px) {

    .menu-toggle {
        display: block;
    }

    .menu {

        display: none;

        position: absolute;

        top: 60px;
        left: 0;
        right: 0;

        flex-direction: column;

        /* background: #003366; */
		background: #00838f;

        padding: 1rem;
    }

    .menu.open {
        display: flex;
    }
}
