@charset "utf-8";
/* CSS Document */

@import 'https://fonts.googleapis.com/css?family=Roboto:400,500';



#korisnicki{
	color:#6C6C6C!important; 
}

/* MOBILE / TABLET */


	
html {
  box-sizing: border-box;
}

*, *:before, *:after {
  box-sizing: inherit;
  
}

html,
body {
  font-family: 'Montserrat', sans-serif;
}

html, body, div, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, ol, ul, li, form, legend, label, table, header, footer, nav, section, figure {
  margin: 0;
  padding: 0;
}

header, footer, nav, section, article, hgroup, figure {
  display: block;
}

body {
  font-size: 100%;
  line-height: 1.5;
}

#menuContainer {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  max-width: 90%;
}

#menuContainer:after {
  content: "";
  display: table;
  clear: both;
}

#menuContainer {
  margin-left: auto;
  margin-right: auto;
  width: 90%;
  max-width: 90%;
}

/* 
Full screen background image
*/
.hero {
z-index: 100;
}

/*
Blueish tint overlay
*/


/* 
Making sure everything in .hero sits above our :after elements 
*/
.hero * {
  position: relative;
  z-index: 100;
	
}

#masthead {
  padding: 2.5em 0 0 0;
  position: fixed;
  width: 100%;
}

#masthead.is-active {
  /*box-shadow: 0 4px 4px rgba(0, 0, 0, 0.15);*/
}

/*
Using this method because browsers can transition opacity very cheaply as opposed to using background: rgba
https://www.html5rocks.com/en/tutorials/speed/high-performance-animations/
*/
#masthead:after {
  content: '';
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  opacity: 0;
  transition: opacity 0.3s ease;
}

#masthead.is-active:after {
  opacity: 1;
}

/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
.hamburger {
  background-color: transparent;
  border: 0;
  color: inherit;
  cursor: pointer;
  display: inline-block;
  float: left;
  font: inherit;
  margin: 0.8125em 0 0;
  overflow: visible; 
  outline: none;
  padding: 0;
  text-transform: none;
  transition: opacity 0.15s;
  -webkit-appearance: none;
}

.hamburger:hover {
  opacity: 0.7; 
}

.hamburger-box {
  width: 30px;
  height: 24px;
  display: inline-block;
  position: relative; 
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px; 
}

.hamburger-inner, 
.hamburger-inner::before, 
.hamburger-inner::after {
  width: 30px;
  height: 2px;
  background-color: #cccccc;
  border-radius: 4px;
  position: absolute;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  transition-duration: 0.15s;
  transition-timing-function: ease; 
}

#masthead.is-active .hamburger-inner, 
#masthead.is-active .hamburger-inner::before, 
#masthead.is-active .hamburger-inner::after {
    background-color: #cccccc;
}

.hamburger-inner::before, 
.hamburger-inner::after {
  content: "";
  display: block; 
}

.hamburger-inner::before {
  top: -6px; 
}

.hamburger-inner::after {
  bottom: -6px; 
}

/*
 * Boring
 */
.hamburger--boring .hamburger-inner, 
.hamburger--boring .hamburger-inner::before, 
.hamburger--boring .hamburger-inner::after {
  transition-property: none; 
}

.hamburger--boring.is-active .hamburger-inner {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg); 
}

.hamburger--boring.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0; 
}

.hamburger--boring.is-active .hamburger-inner::after {
  bottom: 0;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg); 
}

.hamburger-label {
  color: #cccccc;
  display: inline-block;
  font-weight: 700;
  letter-spacing: 0em;
  line-height: 1;
  margin-left: 0.3125em;
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
}

#masthead.is-active .hamburger-label {
  color: #cccccc;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
}

.hamburger-box,
.hamburger-label {
  display: inline-block;
  vertical-align: middle;
}

#site-nav {
  clear: both;
  display: flex;
  flex-direction: column; 
  height: 0;
  overflow: hidden;
  padding-top: 0em;
  top: -6em;
  left: 7em;
}

#site-nav.is-active {
  height: auto;
  overflow: visible;
}

#site-nav .col { 
  padding-bottom: 0em;
} 

@media screen and (min-width: 550px) {
  #site-nav {
    flex-direction: row;
    flex-wrap: wrap;
  }
  
  #site-nav .col {
    flex: 0 0 50%;
  } 
}

@media screen and (min-width: 768px) {
  #site-nav .col {
    flex: 0 0 33.333333333%;
  } 
}

@media screen and (min-width: 960px) {
  #site-nav {
    flex-wrap: nowrap;
  }
  
  #site-nav .col {
    flex: 0 0 20%;
  } 
  
  #site-nav .col:last-child {
    /*display: flex;*/
    justify-content: flex-end;
  }  
}

#site-nav h4 {
  letter-spacing: 0em;
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
  font-weight: bold;
  color: #2d545e;
}

#site-nav ul {
  list-style-type: none;
  margin-top: 1em;
}

#site-nav li {
  margin-bottom: 0.3125em;
}

#site-nav li a {
  color: #b3b3b3;
  text-decoration: none;
  transition: color 0.3s ease;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
}

#site-nav li a:hover,
#site-nav li a:focus {
  color: #b3b3b3;
}

#site-nav .social {
  margin: 0;
  overflow: hidden;
}

#site-nav .social li {
  float: left;
  margin: 0 0.3125em;
  width: 32px;
  height: 32px;
}

#site-nav .social li svg {
  display: block;
  fill: #b4b9ba;
  width: 100%;
  height: 100%;
  transition: fill 0.3s ease;
}

#site-nav .social li:hover svg {
  fill: #686d6e;
}

#masthead-search {
  float: right;
  margin-top: 0.625em;
  width: 100%;
  max-width: 14em;
  position: relative;
  -webkit-appearance: none;
}

#masthead-search input {
  background: transparent;
  border: none;
  border-color: #fff;
  border-style: solid;
  border-width: 1px;
  border-radius: 50px;
  outline: none;
  width: 100%;
  padding: 0.75em 1.125em;
  transition: border-color 0.3s ease;
  -webkit-appearance: none;
}

#masthead-search button {
  background: none;
  border: none;
  color: #fff;
  font-size: 1em;
  padding: 0;
  position: absolute;
  top: 50%;
  right: 0.75em;
  transform: translateY(-50%);
  -webkit-appearance: none;
}

#masthead.is-active #masthead-search button {
  color: #b4b9ba;
}

#masthead.is-active #masthead-search input {
  border-color: #b4b9ba;
}

#masthead-search ::-webkit-input-placeholder {
    color:    #fff;
}

#masthead-search :-moz-placeholder {
   color:    #fff;
   opacity:  1;
}

#masthead-search ::-moz-placeholder {
   color:    #fff;
   opacity:  1;
}

#masthead-search :-ms-input-placeholder {
   color:    #fff;
}

#masthead.is-active #masthead-search ::-webkit-input-placeholder {
    color:    #b4b9ba;
}

#masthead.is-active #masthead-search :-moz-placeholder {
   color:    #b4b9ba;
   opacity:  1;
}

#masthead.is-active #masthead-search ::-moz-placeholder {
   color:    #b4b9ba;
   opacity:  1;
}

#masthead.is-active #masthead-search :-ms-input-placeholder {
   color: #b4b9ba
}

#masthead .col {
  opacity: 0;
}

#masthead.is-active .col {
  transform: translateY(40px);
  transition: opacity 0.3s ease;
  animation: fade-in-stagger 0.8s ease forwards;
}

#masthead.is-active .col:nth-child(1) {
    -webkit-animation-delay: 0;
}

#masthead.is-active .col:nth-child(2) {
    -webkit-animation-delay: 0.1s;
}

#masthead.is-active .col:nth-child(3) {
    -webkit-animation-delay: 0.2s;
}

#masthead.is-active .col:nth-child(4) {
    -webkit-animation-delay: 0.3s;
}

#masthead.is-active .col:nth-child(5) {
    -webkit-animation-delay: 0.4s;
}

@keyframes fade-in-stagger {
  to {
    opacity: 1;
    transform: translateY(0); 
  }
}

#logo{
	width: 14em;
}

#masthead-search a{
	text-decoration: none;
	cursor: pointer;
	transition: 1s;
	opacity: 1;

}

#masthead-search a:hover{
		opacity: 0.5;
	transition: 0.5s;
}
#flag{
	width: 30px;
	height: auto;
	display: block;
	text-align: center;
	position: relative;
	margin-right: auto;
	margin-left: auto;
	margin-top: 5vh;
	
	
	
}


#masthead-search p{
	text-align: center;
	padding-top: 1vh;
	font-size: 9px;
	transition: 1s;
	font-family: 'Montserrat', sans-serif;
  font-weight: 500;
	text-shadow: none;
	color: #b3b3b3;
}

#masthead-search p:hover{
		opacity: 0.5;
	transition: 1s;
}





/* MOBILE */
@media screen and (max-width: 767px){
	
	#masthead{
		padding: 1.5em 0 2em 0;
		height: auto;
		width: 100%;
		max-width: 100%;
	}
	
	#masthead-search{
		margin-top: -1.8rem;
		width: fit-content;
		max-width: 100%;
		margin-right: 2rem;
		float: right;
	}
	
	.hamburger{
		margin-left: 1rem;
	}
	
	
	#site-nav{
		left: 1em;
		top: 2em;
	}
	
	#logo{
		display: none;
	}
	
	#site-nav.is-active{
		min-height: 100vh;
	}
}

/* Tablet */

@media (min-width:767px) and (max-width:1200px) {
		
	
	#site-nav{
		flex-wrap: wrap;
	}
	
	#site-nav .col{
		flex: 50%;
		padding-bottom: 3em;
	}
	
	
	
	#masthead{
		padding: 1.5em 0 2em 0;
		
	}
	
	#masthead-search{
		margin-top: -1.375em;
		margin-right: 1em;
	}
	
	#site-nav{
		left: 1em;
		top: 2em;
	}
	
	#logo{
		display: none;
	}
}
	


