* {
  box-sizing: border-box;
}

/* Style the body */
body {
  font-family: Arial, Helvetica, sans-serif;
  margin: 0;
}

/* Header/logo Title */
header {
  font-size: 18px;
  background-color: #006633;
  color: #E32468;
  padding-right: 16px;
}

/* Increase the font size of the heading */
header h1 {
  font-size: 40px;
}

/* Style the top navigation bar */
nav {
  overflow: hidden;
  background-color: #282A35;
  line-height: 1;
}

/* Style the navigation bar links */
nav a {
  float: left;
  display: block;
  color: white;
  text-align: center;
  padding: 14px 20px;
  text-decoration: none;
}

/* Right-aligned link */
nav a.right {
  float: right;
}

/* Change color on hover */
nav a:hover {
  background-color: black;
  color: white;
}

nav a.active {
  background-color: #88B04B;
  color: white;
}

/* Column container */
section {  
  display: -ms-flexbox; /* IE10 */
  display: flex;
  -ms-flex-wrap: wrap; /* IE10 */
  flex-wrap: wrap;
  margin-left: 220px;
}

/* Create two unequal columns that sits next to each other */
/* Sidebar/left column */
aside {
  -ms-flex: 21%; /* IE10 */
  flex: 21%;
  background-color: #f1f1f1;
  padding: 10px;
}

/* Main column */
article {   
  -ms-flex: 79%; /* IE10 */
  flex: 79%;
  background-color: white;
  padding: 20px;
}

/* Footer */
footer {
  padding: 20px;
  text-align: center;
  background: #ddd;
}

/* The sticky class is added to the navbar with JS when it reaches its scroll position */
.sticky {
  position: fixed;
  top: 0;
  width: 100%;
}

/* Add some top padding to the page content to prevent sudden quick movement (as the navigation bar gets a new position at the top of the page (position:fixed and top:0) */
.sticky + section {
  padding-top: 60px;
}

.reklama {
  background-color: #aaa;
  width:300px;height:250px;
}

.opis {
  background-color: #f1f1f1;
  width: 100%;
  padding: 20px;
}

/* Responsive layout - when the screen is less than 700px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 700px) {
  .row {   
    flex-direction: column;
  }
}

/* Responsive layout - when the screen is less than 400px wide, make the navigation links stack on top of each other instead of next to each other */
@media screen and (max-width: 400px) {
  .navbar a {
    float: none;
    width: 100%;
  }
}

/* MEGAMENU */
.navbar {
  font-size: 18px;
  overflow: hidden;
  font-family: Arial, Helvetica, sans-serif;
}

.navbar a {
  float: left;
  font-size: 46px;
  color: white;
  text-align: center;
  padding: 3px 16px;
  text-decoration: none;
}

.dropdown {
  float: left;
  overflow: hidden;
}

.dropdown .dropbtn {
  font-size: 16px;  
  border: none;
  outline: none;
  color: white;
  padding: 27px 16px;
  background-color: inherit;
  font: inherit;
  margin: 0;
}

.navbar a:hover, .dropdown:hover .dropbtn {
  background-color: black;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  width: 100%;
  left: 0;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content .header {
  background: #282A35;
  padding: 16px;
  color: #FFF4A3;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* Create three equal columns that floats next to each other */
.column {
  float: left;
  width: 33.33%;
  padding: 10px;
  background-color: #282A35;
  color: #FFF4A3;
  height: 250px;
}

.column a {
  float: none;
  color: white;
  padding: 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.column a:hover {
  background-color: #ddd;
  color: black;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}
/* KONIEC MEGAMENU */
h3 {
  color: #282A35;
  border-radius: 5px;
  background: #FFF4A3;
  padding: 10px;
  width: 155px;
  font-size: 21px;
  margin: 10px;
}

h5 {
 margin:0px 0px 5px 20px;
}

.dark-mode {
  background-color: black;
  color: white;
}

/* boczne menu */
ul {
  list-style-type: disc;
  margin: 0;
  padding: 0;
  width: 220px;
  background-color: #f1f1f1;
  position: fixed;
  height: 100%;
  overflow: auto;
}

li a {
  display: block;
  color: #000;
  padding: 8px 16px;
  text-decoration: none;
}

li a.active {
  background-color: #88B04B;
  color: white;
}

li a:hover:not(.active) {
  background-color: #555;
  color: white;
}
/* koniec bocznego menu */

.podmenu {
  margin-left: 40px;
  background-color: #ddd;
  line-height: 1.8em;
}

#szukaj{
  width: 100%;
  font-size: 18px;
  padding: 11px;
  border: 1px solid #ddd;
}

#bocznemenu{
  padding: 20px 0px 80px 0px;
}
.logo1{color: #1cfd76;}