html,
body {
  height: 100%;
}

body {
  margin: 0px;
  padding: 0px;
  background-image: url(../slike/bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 12pt;
  font-weight: 400;
  color: #515151;
}

h1,
h2,
h3 {
  margin: 0;
  padding: 0;
  color: #32251b;
}

p,
ol,
ul {
  margin-top: 0;
}

ol,
ul {
  padding: 0;
  list-style: none;
}

p {
  line-height: 180%;
}

a {
  color: #32251b;
}

a:hover {
  text-decoration: none;
}

.container {
  margin: 0em auto;
  width: 1200px;
}

/*********************************************************************************/
/* Image Style                                                                   */
/*********************************************************************************/

img {
	width: 100%;
}

/*********************************************************************************/
/* Button Style                                                                  */
/*********************************************************************************/

.button {
  display: inline-block;
  padding: 1em 3em 1em 2em;
  letter-spacing: 0.2em;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 400;
  font-size: 0.9em;
  color: #fff;
}

.button:before {
  display: inline-block;
  background: #ffc31f;
  margin-right: 1em;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 20px;
  text-align: center;
  color: #272925;
}

/*********************************************************************************/
/* Heading Titles                                                                */
/*********************************************************************************/

.title {
  margin-bottom: 3em;
}

.title h2 {
  font-weight: 400;
  font-size: 2.8em;
  color: #323232;
}

.title .byline {
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 400;
  font-size: 1.1em;
  color: #6f6f6f;
}

.subtitle {
	margin-bottom: 2rem;
}

/*********************************************************************************/
/* Header                                                                        */
/*********************************************************************************/

#header {
  height: 150px;
  display: flex;
  justify-content: space-between;
}

/*********************************************************************************/
/* Logo                                                                          */
/*********************************************************************************/

#logo {
  top: 2em;
  left: 0px;
  width: 350px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 1rem;
}

#logo img {
	width: 300px;
	height: 100px;
}

/*********************************************************************************/
/* Menu                                                                          */
/*********************************************************************************/

#menu .current_page_item a {
  background: #20b2aa !important;
  color: #ffffff;
}

#menu,
#menu ul,
#menu li,
#menu a {
  border: none;

  line-height: 1;

  margin: 0;

  padding: 0;
}

#menu {
  height: 150px;

  display: block;

  width: auto;

  margin: 0;

  padding: 0;
}

#menu > ul {
  list-style: inside none;

  margin: 0;

  padding: 0;
}

#menu > ul > li {
  list-style: inside none;
  display: inline-block;
  position: relative;
  margin: 0;
  padding: 0;
}

#menu.align-center > ul {
  text-align: center;
}

#menu.align-center > ul > li {
  float: none;

  margin-left: -3px;
}

#menu.align-center ul ul {
  text-align: left;
}

#menu.align-center > ul > li:first-child > a {
  border-radius: 0;
}

#menu > ul > li > a {
  outline: none;

  display: block;

  position: relative;

  text-align: center;

  text-decoration: none;

  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.4);

  font-weight: 700;

  height: 0px;
  font-size: 18px;

  font-family: Arial, Helvetica, sans-serif;

  color: #ffffff;
  padding: 75px 20px;
}

#menu > ul > li:first-child > a {
  border-radius: 0;
}
#menu > ul > li > a:after {
  content: '';

  position: absolute;

  top: -1px;

  bottom: -1px;

  right: -2px;

  z-index: 99;
}

#menu ul li.has-sub:hover > a:after {
  top: 0;

  bottom: 0;
}

#menu > ul > li.has-sub > a:before {
  content: '';

  position: absolute;

  top: 85px;

  right: 6px;

  border: 5px solid transparent;

  border-top: 5px solid #ffffff;
}

#menu > ul > li.has-sub:hover > a:before {
  top: 85px;
}

#menu > ul > li.has-sub:hover > a {
  z-index: 999;

  border-color: #3f3f3f;
}

#menu ul li.has-sub:hover > ul,
menu ul li.has-sub:hover > div {
  display: block;
}

#menu > ul > li.has-sub > a:hover,
menu > ul > li.has-sub:hover > a {
  border-color: #3f3f3f;
}

#menu ul li > ul,
menu ul li > div {
  display: none;

  width: 500px;

  position: absolute;

  top: 150px;

  background: #20b2aa;
  z-index: 999;

  padding: 0px 0;
}

#menu ul li > ul {
  width: 190px;
}

#menu ul ul ul {
  position: absolute;
}

#menu ul ul li:hover > ul {
  left: 100%;

  top: -10px;

  border-radius: 0px;
}

#menu ul li > ul li {
  display: block;

  list-style: inside none;

  position: relative;

  margin: 0;

  padding: 0;
}

#menu ul li > ul li a {
  outline: none;

  display: block;

  position: relative;

  font: 13pt Arial, Helvetica, sans-serif;

  color: #ffffff;

  text-decoration: none;

  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.5);

  margin: 0;

  padding: 15px 20px;
}

#menu ul ul > li:hover > a,
#menu ul ul li a:hover {
  background: #199e97;
}

#menu > ul > li > a:hover {
  background: #199e97;

  color: #ffffff;
}

#menu ul ul a:hover {
  color: #ffffff;
}

#menu > ul > li.has-sub > a:hover:before {
  border-top: 5px solid #ffffff;
}

#menu > ul > li.has-sub:hover {
  background: #199e97;
}

/*********************************************************************************/
/* Page                                                                          */
/*********************************************************************************/

#page {
  background-color: #fff;
  border-top: 20px solid #1da2cf;
  display: flex;
}

/*********************************************************************************/
/* Content                                                                       */
/*********************************************************************************/

#content {
  width: 500px;
  padding: 50px;
  background-color: #b4dfed;
}

#full-content {
	width: 100%;
	padding: 50px;
  	background-color: #b4dfed;
}

#panel-full-content {
	width: 100%;
	padding: 50px;
	background-color: #ffffff;
	position: relative;
}

#panel-full-content::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 500px;
	height: 100%;
	background-color: #b4dfed;
	z-index: 1;
}

#panel-full-content > * {
	z-index: 10;
	position: relative;
}

/*********************************************************************************/
/* Sidebar                                                                       */
/*********************************************************************************/

#sidebar {
  width: 500px;
  padding: 50px;
}

#sidebar p {
	padding-top: 0.25rem;
	padding-bottom: 0.75rem;
	line-height: normal;
	color: #6c6c6c;
}

#sidebar h4, #sidebar b {
	color: #6c6c6c;
}

#sidebar #njuskalo {
	color:red;
	text-decoration: none;
	font-weight: bold;
}
#sidebar #njuskalo:hover {
	text-decoration: underline;
}

/*********************************************************************************/
/* Copyright                                                                     */
/*********************************************************************************/

#copyright {
  padding: 5em 0em;
  width: 800px;
  margin: 0 auto;
}

#copyright span {
	letter-spacing: 0.2em;
	text-align: center;
	font-size: 0.8em;
	color:#ffffff;
	text-transform: uppercase;
}

/*********************************************************************************/
/* One Column                                                                    */
/*********************************************************************************/

#onecolumn {
  margin-top: 4em;
}

#onecolumn .title {
  margin-bottom: 1em;
}

#onecolumn .title h2 {
  font-size: 1.8em;
}

/*********************************************************************************/
/* Utility                                                                       */
/*********************************************************************************/

.text-center {
	text-align: center;
}
.text-left {
	text-align: left;
}
.text-right {
	text-align: right;
}
.text-justify {
	text-align: justify;
}

.no-padding {
	padding: 0 !important;
}

/*********************************************************************************/
/* Grid - DIGITALNI TISAK                                                        */
/*********************************************************************************/

.grid {
	display: flex;
	flex-wrap: wrap;
}
.grid .item {
	width: 25%;
	padding-bottom: 2rem;
}
.grid .item img {
	width: 225px;
	height: 300px;
}
.grid .item p {
	width: 225px;
	line-height: normal;
	padding-top: 0.5rem;
}
.grid .item a {
	width: 225px;
	padding: 0;
	margin-top: 0;
	margin-bottom: 0;
}

/*********************************************************************************/
/* Grid - PREDSKOLSKA DOB                                                        */
/*********************************************************************************/

.panel {
	display: flex;
	flex-direction: column;
}

.panel .item {
	width: 100%;
	height: auto;
	display: flex;
	justify-content: space-between;
	padding-bottom: 3rem;
}

.panel .item .img-container, 
.panel .item .small-img-container,
.panel .item .medium-img-container {
	width: 400px;
}

.panel .item .img-container img{
	width: 300px;
}

.panel .item .small-img-container img {
	width: 150px;
}

.panel .item .medium-img-container {
	width: 225px;
}

.panel .item .text-container {
	width: 600px;
}

/*********************************************************************************/
/* LIST                                                                          */
/*********************************************************************************/

.items-list {
	list-style-type: disc;
} 




