﻿/*
COLORS
	#31b4c4		- blue
	#268f97		- darkblue
	#999999		- menu font color
*/

/*
FONTS
	font-family: 'Raleway', sans-serif;
	font-family: 'Lora', serif;
	font-family: 'Oswald', sans-serif;
*/

/******************************************
|	GLOBAL STYLES
******************************************/
body{font-family: 'Open Sans', sans-serif; background-color: #ffffff;}
@keyframes spinAroundLeft {
	from {
		-ms-transform: rotate(0deg);
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	to {
		-ms-transform: rotate(-360deg);
		-webkit-transform: rotate(-360deg);
		transform: rotate(-360deg);
	}
}

@-webkit-keyframes spinAroundLeft {
	from {
		-webkit-transform: rotate(0deg);		
	}
	to {
		-webkit-transform: rotate(-360deg);	
	}
}

@keyframes spinAroundRight {
	from {
		-ms-transform: rotate(0deg);
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	to {
		-ms-transform: rotate(360deg);
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@-webkit-keyframes spinAroundRight {
	from {
		-webkit-transform: rotate(0deg);		
	}
	to {
		-webkit-transform: rotate(360deg);	
	}
}
/******************************************
|	HEADER
******************************************/
header{
	background: rgba(255,255,255,1);
	position: fixed;
	width: 100%;
	top: 0;
	z-index: 999;
	transition: padding 0.3s ;
	-webkit-transition: padding 0.3s ;
	-moz-transition: padding 0.3s ;
	
}

header .header_top{
	height:60px;
	-moz-transition: height .3s ;
	-webkit-transition: height .3s ;
	transition: height .3s ;
	z-index:999999;
}
header .header_top ul.header_contact{
	float:left;
	margin-left:25px;
	margin-top:12px;
	font-size:12px;
}
header .header_top ul.header_contact li{
	margin-right:10px;
}

header .header_top .lang_nav a{
	color: #333;
	font-size: 14px;
}

header .header_top .lang_nav a:hover{
	color: #ff6600;
}

header .header_top ul.lang_nav{
	float:right;
	margin-right:25px;
	margin-top:25px;
}

header .header_top ul li{
	color:#333;
	font-size: 14px;
	padding-left: 20px;
}

header .header_top ul li a,
header .header_top ul li span{
	color:#fff;
	padding:0 5px;
	-moz-transition: color .3s ;
	-webkit-transition: color .3s ;
	transition: color .3s ;
}

header.fixed .header_top{
	height:0px;
	overflow:hidden;
}

header img.logo{
	transition: 0.3s all;
	-moz-transition: 0.3s all;
	-webkit-transition: 0.3s all;
}

header .header_top ul li.flex{
	position:relative;
	padding-right:100px;
}



.nav_jeziki{
	right:0px;
	top:-10px;
	position:absolute;
	z-index:9999999;
}
.nav_jeziki li{
	padding-bottom:10px;
	order:2;
	text-align: right;
	font-size:13px;
	padding:10px;
	background:rgba(0,0,0,.8);
	display:none;
}
.nav_jeziki li.activ{
	order:1;
	background:transparent !important;
	display:block;
}
.nav_jeziki li:hover{
	background:rgba(255, 102, 0, 1);
	color:#fff;
}


.izberi_jezik:hover ul li{
	display:block;
}


.flex{
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-direction: row; 
	flex-direction: row;
}
.flex-colum{
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-direction: column;
	flex-direction: column;
}

.language{
	font-size:12px;
	padding-top:4px;
	text-align:right;
}

.language span{
	padding-right:10px;
}



header.fixed{
	position: fixed;
	padding:0px 0 0;
	top:0;
}
header img.logo{
	height: 70px;
	float: left;
	margin-top: -40px;
	position: relative;
	z-index: 99999999999;
}

header.fixed img.logo{
	height: 40px;
	margin: 5px;
}

header.fixed ul.nav{
	height: 50px;
	margin-top: -20px;
	transition: 0.3s all;
	-moz-transition: 0.3s all;
	-webkit-transition: 0.3s all;
}


header img.search,
header span.search{
	position: absolute;
	top: 36px;
	cursor: pointer;
	right: 15px;
	color: #31b4c4;

}
header.fixed img.search,
header.fixed span.search{
	top: 20px;
	color: #31b4c4;
}

/******************************************
|	NAVIGATION
******************************************/
nav ul.nav{
	font-family: 'Open Sans', sans-serif;
	display: inline-block;
 	float: right;
	padding-top:18px;
}
header ul.nav ul{
	width: 200px;
	z-index: 10000
}
header ul.nav ul{
	border-top: 2px solid #ff6600;
	padding: 10px 10px;
	background: #fff;
}


nav ul.nav > li > a {
	color: #000;
	font-size: 19px;
	font-weight: 600;
}

header ul.nav ul li a{
	border-bottom: 1px solid #999;
	padding: 15px 10px;
	line-height: 18px;
}


ul.nav li a[data-submenu="true"]::after{
	content: "›";
	margin-left: 8px;
	font-size: 24px;
	position: absolute;
	top: 17px;
	transform: rotate(90deg);
	-moz-transform: rotate(90deg);
	-webkit-transform: rotate(90deg);
	color: #000000;
}



header div.container{position: relative;}
div.search-box{
	position: absolute;
	top: 100%;
	right: 0;
	z-index: 999;
	padding: 12px 15px;
	background: #31b4c4;
	width: 400px;
	opacity: 0;
}
div.search-box input[type="text"]{
	display: inline-block;
	width: 280px;
	background: #fff;
	border: none;
	color: #666;
	margin-bottom: 0;
}
div.search-box input[type="submit"]{
	padding: 5px 10px;
	font-size: 12px;
	color: #fff;
	margin-left: 20px;
	min-width: 60px;
	background: #228088;
	margin-top:0;
}
header ul.nav li:hover, header ul.nav li:hover > a, header ul.nav > li a.active, header ul.nav ul > li a:hover{
	color: #ff6600;	
}


aside li:hover > ul{
	display: none;
}
/******************************************
|	HOME PAGE
******************************************/

section.siavto{
	padding-bottom: 100px;
}

section.siavto h1{
	color: #000;
	font-size: 56px;
	line-height: 60px;
	text-align: center;
	font-weight: 300;
	padding-top: 30px;
	padding-bottom: 20px;
	margin-top: 40px;
}


section.siavto p{
	color: #000;
	font-size: 20px;
	line-height: 34px;
	text-align: center;
	font-weight: 400;
	padding-bottom: 2px;
}


section.storitve{
	padding-bottom: 100px;
}

section.storitve h1{
	color: #000;
	font-size: 56px;
	line-height: 60px;
	text-align: center;
	font-weight: 300;
	padding-top: 90px;
}

section.storitve h2{
	color: #000;
	font-size: 20px;
	line-height: 34px;
	text-align: center;
	font-weight: 400;
	padding-bottom: 80px;
}

section.storitve h3{
	color: #000;
	font-size: 21px;
	text-align: center;
	font-weight: 600;
	padding-top: 20px;
}

section.storitve p{
	text-align: center;
	color: #999999;
	padding: 0px 40px;
	font-size: 14px;
}

section.storitve p.poizvej{
	font-size: 14px;
	margin-top: 10px;
}





section.kontakt{
	padding-bottom: 100px;
}

section.kontakt h1{
	color: #000;
	font-size: 30px;
	text-align: center;
	font-weight: 300;
	padding-top: 40px;
	padding-bottom: 40px;
}



section.kontakt p{
	color: #999999;
	font-size: 14px;
}



#counter h3.number2{
	font-family: 'Roboto', sans-serif;
	font-size: 60px;
	color: #ffffff;
	font-weight:300;
	margin-top: 50px;
}

#count-5{
	border: 1px solid #fff;
	width: 100px;
	height: 100px;
	padding-top: 35px;
	display: inline-block;
}

#count-6{
	border: 1px solid #fff;
	width: 160px;
	height: 100px;
	padding-top: 35px;
	display: inline-block;
}

#count-7{
	border: 1px solid #fff;
	width: 100px;
	height: 100px;
	padding-top: 35px;
	display: inline-block;
}

#counter p.numbertext2{
	color: #ffffff;
	font-size: 18px;
	font-weight: 600;
	padding-bottom: 50px;
}



/**********************************
|	SUBPAGES BANNER
***********************************/

section.subpage-banner {
    height: 370px;
    background-repeat: no-repeat;
    position: relative;
    background-size: cover;
    margin-top: 138px;
    text-align: center;
}

section.subpage-banner .ozadje{
    margin-top: 150px;
}

section.subpage-banner h1 {
	font-family: 'Open Sans', sans-serif;
    font-size: 35px;
    font-weight: 600;
    padding-bottom: 20px;
    color: #ff6633;
    text-align: center;
    margin: 0 auto;
}


section.subpage-banner p {
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    color: #fff;
    font-weight: 300;
    text-align: center;
	line-height:33px;
}


section.subpage-banner2 {
    height: 898px;
    background-repeat: no-repeat;
    position: relative;
    background-size: cover;
    margin-top: 150px;
    text-align: center;
}

section.subpage-banner2 .ozadje{
    text-align: center;
    margin-top: 300px;
    background-color: #f8fafc;
 	opacity: 0.8;
    filter: alpha(opacity=80);
    display: inline-block;
    padding:20px; 
    position: relative;
}

section.subpage-banner2 h1 {
	font-family: 'Open Sans', sans-serif;
    font-size: 35px;
    font-weight: 300;
    padding-bottom: 20px;
    color: #333;
    text-align: center;
    margin: 0 auto;
}


section.subpage-banner2 p {
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    color: #333;
    text-align: center;
	line-height:33px;
}




/**********************************
|	SUBPAGES FULL WIDTH
***********************************/


.container  h1{
	font-size:18px;
	margin-bottom:20px;
	color:#ed1b24;
	font-weight:bold;
}

.container h2{
	font-size:16px;
	margin-bottom:20px;
	color:#1c9196;
}

.container h3{
	font-size:14px;
	margin-bottom:20px;
	color:#1c9196;
}

.container  p{
	font-size:14px;
	color:#333;
	line-height:20px;
}


.container ul.dot{
	margin-left:40px;
	margin-bottom:20px;
	margin-top:20px;
}

.container ul.dot li{
    background: url(../ic/li-arrow.png) no-repeat left;
    padding: 5px 0px 4px 30px;
    font-size: 16px;
    color: #000;
    font-weight: 300;
}


section.OpisApartmaja p.formatekst {
	font-size: 20px;
	padding-top: 20px;
}

section.OpisApartmaja p.formatekst2 {
	font-size: 20px;
	padding-top: 5px;
}


/* make keyframes that tell the start state and the end state of our object */

@-webkit-keyframes fadeIn { from { opacity:0; opacity: 1\9; /* IE9 only */ } to { opacity:1; } }
@-moz-keyframes fadeIn { from { opacity:0; opacity: 1\9; /* IE9 only */ } to { opacity:1; } }
@keyframes fadeIn { from { opacity:0; opacity: 1\9; /* IE9 only */ } to { opacity:1; } }

.fade-in {
	opacity:0;  /* make things invisible upon start */
	-webkit-animation:fadeIn ease-in-outn 1;  /* call our keyframe named fadeIn, use animattion ease-in and repeat it only 1 time */
	-moz-animation:fadeIn ease-in 1;
	animation:fadeIn ease-in 1;

	-webkit-animation-fill-mode:forwards;  /* this makes sure that after animation is done we remain at the last keyframe value (opacity: 1)*/
	-moz-animation-fill-mode:forwards;
	animation-fill-mode:forwards;

	-webkit-animation-duration:1s;
	-moz-animation-duration:1s;
	animation-duration:1s;
}

.fade-in.one {
-webkit-animation-delay: 1.2s;
-moz-animation-delay: 1.2s;
animation-delay: 1.2s;
}

.fade-in.two {
-webkit-animation-delay: 2.0s;
-moz-animation-delay:2.0s;
animation-delay: 2.0s;
}

.fade-in.three {
-webkit-animation-delay: 2.8s;
-moz-animation-delay: 2.8s;
animation-delay: 2.8s;
}

.fade-in.four {
-webkit-animation-delay: 3.6s;
-moz-animation-delay: 3.6s;
animation-delay: 3.6s;
}

.fade-in.five {
-webkit-animation-delay: 4.2s;
-moz-animation-delay: 4.2s;
animation-delay: 4.2s;
}

.fade-in.six {
-webkit-animation-delay: 5.0s;
-moz-animation-delay: 5.0s;
animation-delay: 5.0s;
}

/*---make a basic box ---*/
.box{
position: relative;
float: left;
}





/**********************************
|	FOOTER
***********************************/

#kontaktgoogle{
	background-color: #f1f1f1;
	background-image: url(../ic/background-kontakt.png);
	height: 510px;
}


.googlemap {
    width: 100%;
    height: 510px;
}

#kontaktspodaj{
	background-color: #333333;
	height: auto;
}


footer {
	background: #333;
	clear: both;
	padding: 20px 0;
	color: #cccccc;
}


footer p{
	color: #cccccc!Important;
	font-family: 'Roboto', sans-serif;
	text-align: center;
	margin-top: 10px!Important;
	font-size: 14px;
}

footer p a{
	color: #cccccc;
}

footer p a:hover{
	color: #ff6600!Important;
}



/**********************************
|	PLACEHOLDERS
***********************************/
footer ::-webkit-input-placeholder {color: #efefef; }
footer :-moz-placeholder { /* Firefox 18- */ color: #fff; }
footer ::-moz-placeholder {  /* Firefox 19+ */ color: #fff; }
footer :-ms-input-placeholder {color: #fff; }



#quote1,#quote2,#quote3 {
	margin-bottom: 80px;
	text-align: center;
}





td {
	font-size: 12px;
}