body {
  background-color: #eee;
}

* {
  font-family: Georgia, 'Times New Roman', sans-serif;
}

/* The navigation bar */
.navbar {
  background-color: rgb(0, 53, 128);
  min-height: 90px;
  z-index: 10;
  border-radius: 8px;
  border-style: solid;
  border-width: 3px;
  border-color: white;
}

/* Links inside the navbar */
.navbar a {
  display: inline-block;
  color: #f2f2f2;
  text-align: center;
  margin-top: 10px;
  min-width: 30%;
  min-height: 50px;
  text-decoration: none;
  border-radius: 8px;
  font-size: 130%;
  vertical-align: middle;
}

a.aLocation {
  margin-top: 1px;
}

/* Change background on mouse-over */
.ahover:hover {
  background: rgb(26, 74, 141);
}

/* Dropdown Button */
.dropbtn {
  background-color: rgb(0, 53, 128);
  color: white;
  padding: 16px;
  font-size: 130%;
  border: none;
  border-radius: 8px;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
  position: relative;
  display: inline-block;
  text-align: center;
  padding: 14px 2px;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
  border-radius: 8px;
}

/* Links inside the dropdown */
.dropdown-content a {
  color: black;
  padding: 8px 6px;
  text-decoration: none;
  width: 100%;
  border-radius: 8px;
  margin-top: 0px;
}

.mobile {
  display: none;
  text-align: center;
  padding: 24px 10px;
}

a.mobilea {
  display: inline;
  padding: 5px 30px;
  background-color: #045faa;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {
  background-color: rgb(26, 74, 141);
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
  display: block;
}

/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn {
  background-color: rgb(26, 74, 141);
}


/* Main content */

* {
  box-sizing: border-box
}

/* Slideshow container */
.slideshow-container {
  max-width: 1400px;
  position: relative;
  margin: auto;
}

/* Hide the images by default */
.mySlides {
  display: none;
}

/* Add a pointer when hovering over the thumbnail images */
.cursor {
  cursor: pointer;
}


/* Next & previous buttons */
.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* Container for image text */
.caption-container {
  text-align: center;
  background-color: rgb(0, 53, 128);
  padding: 2px 6px;
  color: white;
  border-radius: 5px;
  width: 99%;
  font-size: 115%;
}

.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Twenty columns side by side */
.column {
  float: left;
  width: 10%;
}

/* Add a transparency effect for thumnbail images */
.demo {
  opacity: 0.6;
  max-width: 98%;
}

.active,
.demo:hover {
  opacity: 1;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {
    opacity: .4
  }

  to {
    opacity: 1
  }
}

div.Opis {
  margin: 20px 20px 50px 10px;
  padding: 10px;
  font-family: sans-serif;
  font-size: medium;
  max-width: 1400px;
  margin: auto;
}

.flex-container {
  display: flex;
  flex-wrap: wrap;
}


div.Kategorija {
  margin: 5px;
  border-style: solid;
  border-width: 1px;
  border-radius: 8px;
  background-color: rgb(235, 243, 255);
  position: relative;
  font-family: sans-serif;
  font-size: smaller;
  padding: 10px;
}

div.KategorijaHeader {
  margin: 5px;
  font-size: 130%;
}

div.KategorijaHeaderSub {
  margin: 5px;
  font-size: 115%;
}

div.sredina {
  top: 50%;
  transform: translate(0, -50%);
  margin-right: 10px;
}

div.footerData {
  display: inline-block;
  text-align: center;
  width: 24%;
  padding: 35px;
}

@media screen and (max-width: 1000px) {
  .navbar a {
    display: block;
  }

  .mobile {
    display: block;
  }

  a.mobilea {
    display: inline;
  }

  div.footerData {
    display: block;
    width: 100%;
    padding: 5px;
  }
}

@media screen and (max-width: 1000px) {
  .dropdown {
    display: none;
  }
}