/*
COLORS
	#31b4c4		- blue
	#268f97		- darkblue
	#999999		- menu font color
*/

/*
FONTS
	font-family: 'Open Sans', sans-serif;
	font-family: 'Lora', serif;
	font-family: 'Oswald', sans-serif;
*/

/******************************************
|	GLOBAL STYLES
******************************************/
body{
	font-family: 'Source Sans Pro', sans-serif;
	/*background-color: #fafafa;*/
	background-color:#fff;
}
@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);	
	}
}


.flex{
	display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.flex-center {
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.flex-center-vert {
  -webkit-align-items: center;
  align-items: center;
}
.flex-col {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.flex-wrap{
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-direction: row; 
	flex-direction: row;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
}
.flex-space-between-top{
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-justify-content: space-between;
	justify-content: space-between;
}
.flex-space-between{
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;
}


.mix{
	position:relative;
	display:none;
	width: calc( ( 100% / 4 ) - 7px);
	margin-bottom:10px;
}
.mix:hover .bgPlus{
	opacity:1;
	pointer-events: none;
}

.mix img{
	width:100%;
}

.controls{
	margin-bottom:20px;
}
.controls button{
	margin-right:10px;
	border:1px solid #ed1c24;
	color:#000;
	text-transform:uppercase;
	background:#fff;
	outline:none;
	padding:10px 10px;
	-moz-transition:all .4s;
	-webkit-transition:all .4s;
	transition:all .4s;
}
.controls button:last-of-type{
	margin-right:0px;
}

.controls button:hover,
.controls button.active{
	background-color: #ed1c24;
	color: #fff;
}



/******************************************
|	HEADER
******************************************/
.padding-from-top{
	height:200px;
}


header{
	/*padding:38px 0 0;*/
	/*border-bottom: 2px solid #31b4c4;	*/
	/*background: rgba(255,255,255,0.9);*/
	position: fixed;
	width: 100%;
	top: 0;
	margin-top:-10px;
	z-index: 999;
	transition: all 0.6s;
	-webkit-transition: all 0.6s;
	-moz-transition: all 0.6s;
}
header.fixed .header_top{
	padding:25px 0;
	background-position:bottom center;
}

header .header_top{
	padding:24px 0;
	background:#fff url(../website/header-roleta.png) no-repeat top center;
	transition: all 0.6s;
	-webkit-transition: all 0.6s;
	-moz-transition: all 0.6s;
}

header img.logo{
	transition: 0.3s all;
	-moz-transition: 0.3s all;
	-webkit-transition: 0.3s all;
}

.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{
	float: left;
	height:75px;
	-moz-transition: all 0.6s;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}
header.fixed img.logo{
	height: 40px;
}
header.fixed ul.nav{
	margin-top: 0;
}
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;
}
body > .top{
	background: #e6e6e6;
	padding: 5px 0 8px;
	position: relative;
	z-index: 1000;
	display:none;
}
body > .top ul{text-align: right;}
body > .top ul a{
	padding-left: 25px;
	/*background-repeat:no-repeat;
	background-position: 0 50%;
	background-image: url(../controlmatik/icon-representatives.png);*/	  
	color:#999;
	font-size: 12px;
	font-family: 'Open Sans', sans-serif;
}
body > .top ul li{
	display: inline-block;
}
/*body > .top ul li:first-child a{
	background-image: url(../controlmatik/icon-download.png);
	margin-right: 15px;	  	
}*/
#topMenuItem0{
	background-repeat:no-repeat;
	background-position: 0 50%;
	background-image: url(../website/icon-download.png);
}

#topMenuItem1{
	background-repeat:no-repeat;
	background-position: 0 50%;
	background-image: url(../website/icon-representatives.png);
}

/******************************************
|	NAVIGATION
******************************************/
.header_menu{
	width:100%;
	background:#ed1c24;
	/*margin-top: 35px;*/
}


nav ul.nav{
	display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
	-webkit-justify-content: space-between;
  justify-content: space-between;
	-webkit-align-items: center;
  align-items: center;
	width:100%;
	/*display: inline-block;*/
 	/*float: right;*/
 	margin-right:0px;
}
.header_menu ul.nav:after,
.header_menu ul.nav:before{
	display:none;
}
.header_menu nav ul.nav > li{
	float:none;
	margin:0px;
}
header.fixed .header_menu nav ul.nav > li > a{
	padding:14px;
}

.header_menu nav ul.nav > li > a {
	position:relative;
	color: #fff;
	text-transform: uppercase;
	font-size: 14px;
	font-weight: bold;
	padding:25px 15px;
	overflow:hidden;
}

header.fixed .header_menu nav ul.nav > li:last-of-type > a {
	padding:10px 35px;
}

.header_menu nav ul.nav > li:last-of-type > a {
	position:relative;
	color:#000;
	background:#fff;
	padding:15px 35px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px; /* future proofing */
	-khtml-border-radius: 5px; /* for old Konqueror browsers */
}
.header_menu nav ul.nav > li:last-of-type > a:before {
	display:none;
}

.header_menu nav ul.nav > li > a:before{
	display:block;
	content:"";
	position:absolute;
	top:0px;
	left:0px;
	/*left:50%;*/
	-webkit-transform: translateX(-105%);
  transform: translateX(-105%);
	height:2px;
	width:100%;
	background:#fff;
	-moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

/*HOVER MENIJA*/
.header_menu nav ul.nav > li:hover > a:before,
.header_menu nav ul.nav > li > a.active:before{
	/*background:#fff;*/
	/*animation: WidthTo100 .4s linear 0s 1 normal both;*/
	/*-webkit-animation: WidthTo100 .4s linear 0s 1 normal both;*/
	-webkit-transform: translateX(0%);
  transform: translateX(0%);
	-moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.header_menu nav ul.nav > li:hover:last-of-type > a {
	color:#ed1c24;
}




/*@-webkit-keyframes WidthTo100 {*/
/*  from 	{  width:0%;  }*/
/*  to 		{  width:100%; 		}*/
/*}*/
/**/
/*@keyframes WidthTo0 {*/
/*  from 	{  width:100%;  }*/
/*  to 		{  width:0%; 		}*/
/*}*/


/* SUB-MENU */

.header_menu ul.nav ul{
	/*display:block;*/
	width:auto;
	/*z-index: 10000;*/
	border-top:2px solid #fff;
	padding:0px;
	background: #000;
	white-space:nowrap;
}

.header_menu ul.nav ul li a{
	padding: 10px 20px;
	line-height: 18px;
	color:#fff;
	background:none;
	border:none;
	-moz-transition: background .3s;
  -webkit-transition: background .3s;
  transition: background .3s;
}

.header_menu ul.nav ul li:hover a,
.header_menu ul.nav ul li a.active{
	background:#ed1c24;
}



header div.container{position: relative;}
div.search-box{
	display:none;
	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;
}
aside li:hover > ul{
	display: none;
}

.fullwidthbanner-container{
	overflow:hidden !important;
}

.fullwidthbanner-container:before,
.subpage-banner:before{
	/*content:"";*/
	background:url(../website/bannerefekt.png) no-repeat 0 0;
	background-size:cover;
	z-index:99;
	opacity:0.2;
	position:absolute;
	top:0px;
	left:60px;
	width:100%;
	height:100%;
	/*animation: fadeIn .6s linear 1s 1 normal both;*/
  /*-webkit-animation: fadeIn .6s linear 1s 1 normal both;*/
}

.fullwidthbanner-container.animiraj:before,
.subpage-banner.animiraj:before{
	animation: MoveUpDown 4s linear .5s 1 normal both;
  -webkit-animation: MoveUpDown 4s linear .5s 1 normal both;
}


@-webkit-keyframes MoveUpDown {
  0% 		{ opacity: 0.1; left:60px;}
  50%		{ opacity: 0.3; left:20px;}
	100%	{ opacity: 0.2; left:0px;}
}

@keyframes MoveUpDown {
  0% 		{ opacity: 0.1; left:60px;}
  50%		{ opacity: 0.3; left:20px;}
	100%	{ opacity: 0.2; left:0px;}
}
@-webkit-keyframes fadeIn {
  0% 		{ opacity: 0.2; 	}
	20%		{ opacity: 0;		}
	100%	{ opacity: 0.2; 	}
}

@keyframes fadeIn {
  0% 		{ opacity: 0.2; 	}
	20%		{ opacity: 0;		}
	100%	{ opacity: 0.2; 	}
}



/* 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 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: 0.7s;
-moz-animation-delay: 0.7s;
animation-delay: 0.7s;
}

.fade-in.two {
-webkit-animation-delay: 1.2s;
-moz-animation-delay:1.2s;
animation-delay: 1.2s;
}

.fade-in.three {
-webkit-animation-delay: 1.6s;
-moz-animation-delay: 1.6s;
animation-delay: 1.6s;
}

.fade-in.four {
-webkit-animation-delay: 2.1s;
-moz-animation-delay: 2.1s;
animation-delay: 2.1s;
}

.fade-in.five {
-webkit-animation-delay: 2.6s;
-moz-animation-delay: 2.6s;
animation-delay: 2.6s;
}

.fade-in.six {
-webkit-animation-delay: 3.1s;
-moz-animation-delay: 3.1s;
animation-delay: 3.1s;
}

.fade-in.seven {
-webkit-animation-delay: 3.6s;
-moz-animation-delay: 3.6s;
animation-delay: 3.6s;
}


.fade-in.eight {
-webkit-animation-delay: 4.1s;
-moz-animation-delay: 4.1s;
animation-delay: 4.1s;
}

.fade-in.nine {
-webkit-animation-delay: 4.6s;
-moz-animation-delay: 4.6s;
animation-delay: 4.6s;
}

.fade-in.ten {
-webkit-animation-delay: 5.1s;
-moz-animation-delay: 5.1s;
animation-delay: 5.1s;
}

.fade-in.eleven {
-webkit-animation-delay: 5.6s;
-moz-animation-delay: 5.6s;
animation-delay: 5.6s;
}

/******************************************
|	HOME PAGE
******************************************/
.home_podmeni{
	position:relative;
	z-index: 99;
	margin-top:-120px;
}

.home_podmeni .container h2{
	padding:0px;
	margin:0px;
	margin-top:25px;
	display:block;
	color:#ed1c24;
	font-size:30px;
	font-weight:700;
	font-family: 'Raleway', sans-serif;
	text-transform:uppercase;
}
.home_podmeni .container h2:after{
	content:"";
	display:block;
	width:110px;
	height:1px;
	background:#ed1c24;
	margin-top:10px;
}
.home_podmeni .container hr{
	padding:0px;
	margin:0px;
	margin-top:5px;
	border:none;
	width:50px;
	height:1px;
	background:#ed1c24;
	text-align:left;
}
.home_podmeni .container ul{
	margin-top:30px;
}

.home_podmeni .container ul li a{
	text-transform:uppercase;
	color:#01273a;
	font-size:16px;
	font-weight:600;
	display:block;
	padding:6px 0px;
	-moz-transition: all 0.2s;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.home_podmeni .container ul li a:hover{
	color:#000;
}

.home_podmeni .container .img_wrap{
	position:relative;
	border:10px solid #fff;
}
.home_podmeni .container .img_wrap img{
	width:100%;
	height:100%;
	object-fit:cover;
}

.home_podmeni .container .img_wrap:before{
	content:"";
	position:absolute;
	top:0px;
	left:0px;
	width:100%;
	height:100%;
	display:block;
	background:rgba(0,0,0,.2);
	-moz-transition: all 0.6s;
  -webkit-transition: all 0.6s;
  transition: all 1s;
}

.home_podmeni .container .img_wrap:hover:before{
	background:rgba(0,0,0,0);
	height:0%;
}


/* 																				AKROL WAY */

.home_akrol_crta {
    padding-top: 50px;
}

.home_akrol_crta hr.crtaall {
    padding: 0px;
    margin: 0px;
    margin-top: 5px;
    border: none;
    width: 100%;
    height: 1px;
    background: #ed1c24;
}

.home_akrol_crta hr.crta {
    padding: 0px;
    margin: 0px auto;
    margin-top: 5px;
    border: none;
    width: 70px;
    height: 1px;
    background: #ed1c24;
    text-align: center;
}

section.home_akrol_way{
	margin-top:20px;
	padding-top:60px;
	background:#fff;
}

.dvesliki img{
	float:right;
	margin:0 0 10px 10px;
	-moz-transition: all 0.7s;
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
}

.dvesliki img:hover{
	  transform: scale(1.05);
    -moz-transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -o-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=1.5, M12=0, M21=0, M22=1.5, SizingMethod='auto expand')";
    filter: progid:DXImageTransform.Microsoft.Matrix(M11=1.5, M12=0, M21=0, M22=1.5, SizingMethod='auto expand');
}

section.home_akrol_way h1{
	font-family: 'Raleway', sans-serif;
	font-size:32px;
	line-height:38px;
	color:#222222;
	padding-top:10px;
}
section.home_akrol_way h1 span{
	color:#ed1c24;
}
section.home_akrol_way h2{
	font-size:18px;
	color:#444444;
	margin-top:18px;
	line-height:20px;
	font-weight:600;
}
section.home_akrol_way p{
	font-size:16px;
	line-height:18px;
}


section.home_akrol_way .krogi_prednosti{
	margin-top:80px;
}

section.home_akrol_way .krogi_prednosti span{
	display:block;
	text-transform:uppercase;
	margin-top:30px;
	font-weight:600;
	font-size:14px;
	-moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

section.home_akrol_way .krogi_prednosti div:hover span{
	color:#ed1c24;
}


.img_right{
	margin-bottom:10px;
}
.img_right img{
	float:right;
}
.img_right img:first-of-type{
	margin-left:10px;
}


.home_navodila{
	position:relative;
	padding-top:80px;
	display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
	background: #fff;
}
.home_navodila .wrap{
	position:relative;
	width:50%;
}

.home_navodila .navodila{
	position:absolute;
	top:50%;
	left:-90px;
	transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
	background: #f8f8f8;
	padding:60px;
}
.home_navodila .navodila b{
	color:#ed1c24;
	font-size: 17px;
	font-weight:600;
}
.home_navodila .navodila h1{
	color:#222222;
	text-transform:uppercase;
	font-size:30px;
	line-height:34px;
	font-weight:700;
	font-family: 'Raleway', sans-serif;
	margin:20px 0px;
	letter-spacing: 1px;
}
.home_navodila .navodila p{
	color:#777777;
	font-size: 16px;
	line-height:20px;
}


section.page_video{
	position:relative;
	background: #fff;
	height:700px;
	margin-top:0px;
	overflow:hidden;
}

section.home_video{
	position:relative;
	background: #fff;
	height:700px;
	margin-top:60px;
	overflow:hidden;
}
section.home_video video,
section.page_video video{
	position:absolute;
	top:0px;
	left:0px;
	width:100%;
	height:100%;
	object-fit:cover;
}

section.home_video.pod_stran{
	height:320px;
}

section.home_video.pod_stran img{
	position:absolute;
	top:0px;
	left:0px;
	width:100%;
	height:100%;
	object-fit:cover;
}

section.home_video .home_video_text{
	position:relative;
	text-align:center;
}

section.home_video .home_video_text h3{
	font-size:45px;
	color:#fff;
	font-family: 'Raleway', sans-serif;
	margin-bottom:43px;
	letter-spacing:1px;
}

section.home_video .home_video_text a{
	padding:19px 42px;
	background-color: #fff;
	text-transform:uppercase;
	color:#ed1c24;
	font-size:16px;
	font-weight:700;
	letter-spacing:1px;
	display:inline-block;
	-moz-transition: all 0.6s;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}
section.home_video .home_video_text a:hover{
	border-color:#ed1c24;
	background:rgba(0,0,0,1.0);
}

section.home_video.pod_stran .home_video_text h3{
	font-size:29px;
	margin-bottom:32px;
}
section.home_video.pod_stran .home_video_text h3 strong{
	display:block;
	font-weight:700;
}

section.home_video.zakaj_akrol{
	margin-top:0px;
}

section.home_video.zakaj_akrol .home_video_text h3{
	font-size:35px;
	margin-bottom:10px;
}
section.home_video.zakaj_akrol .home_video_text p{
	font-size:20px;
	font-weight:300;
	line-height:24px;
	color:#fff;
}
section.home_video.zakaj_akrol .home_video_text a{
	margin-top:60px;
}



section.home-page{
	padding: 40px 0 50px;
}
section.home-page-1 .box-wrapper img{
	margin: 0 auto;
}
section.home-page-1 .box-wrapper .product-image {border: 12px solid #f7f7f7; }
section.home-page-1 .box-wrapper .product-name {color: #999; height:90px;}
section.home-page-1 ul.nav{margin-bottom: 30px; width: 100%;}
/*section.home-page-1 ul.nav li{width: 15%}*/
section.home-page-1 h1{
	color: #268f97;
	font-size: 32px;
	text-align: center;
}
section.home-page-1 hr{
	color: #268f97;
	border-color: #268f97;
	width: 70px;
	margin: 25px auto 30px;
}
ul.nav-tabs > li > a{
	border: none;
	color: #268f97;
	font-weight: normal;
	text-transform: capitalize;
}
ul.nav-tabs > li.active > a{
	font-weight: bold;
	color: #268f97;
	border: none;
}
ul.nav-tabs,
ul.nav-tabs > li > a:hover,
ul.nav-tabs > li > a:focus,
ul.nav-tabs > li.active > a:focus,
ul.nav-tabs > li.active > a:hover{
	border:none;
	color: #268f97;
}
.home-page-1 .tab-pane div.product{
	transition:0.4s all;
}
.home-page-1 .tab-pane div.product.hidden-product {
	visibility: none;
	opacity: 0;
	display: none;
}
.pagination-wrapper {
	clear: both;
	padding: 0 30px;
}


section.home-page-1 img{
	display: block;
	margin: 0 auto;
	margin-bottom: 10px;
}
section.home-page-1 p{text-align: center; margin-bottom: 10px; }
section.home-page-1 p.title{
	font-weight: bold;
	color: #000;
}
section.home-page-1 p.content{
	color: #444;
	font-size: 12px;
	line-height: 20px;
	margin-bottom: 60px;
}
section.home-page-2{
	background-attachment: fixed;
	background-size:cover; 

}
.home-page-2 .box-wrapper{
	opacity: 0;
	-webkit-animation-duration: 3s;
	-moz-animation-duration: 3s;
	animation-duration: 3s;
}
section.home-page-2 p.title{
	text-align: center;
	color: #fff;
	font-size: 18px;
	margin-bottom: 30px;
}
section.home-page-2 p.title span.line{
  width: 15px;
  height: 1px;
  position: relative;
  top: 0px;
  border-bottom: 2px solid #fff;
  display: inline-block;
  margin: 0 5px;
}
section.home-page-2{
	padding: 60px 0 60px;
}
section.home-page-2 .box-wrapper div{
	display: block;
	margin: 20px auto;
	border: 2px solid #fff;
	border-radius: 50%;	
	-moz-border-radius: 50%;	
	-webkit-border-radius: 50%;
	transition: 0.3s all;	
	-webkit-transition: 0.3s all;	
	-moz-transition: 0.3s all;	
	height: 124px;
	width: 124px;
}
section.home-page-2 .box-wrapper div:hover{
	background-position: 100% 50%;
}
section.home-page-2 .box-wrapper div.scheme:hover{
	background-position: 50% 100%;	
}
section.home-page-2 img{	
	display: block;
	margin: 20px auto;
	border: 2px solid #fff;
	border-radius: 50%;	
	-moz-border-radius: 50%;	
	-webkit-border-radius: 50%;
	transition: 0.3s all;	
	-webkit-transition: 0.3s all;	
	-moz-transition: 0.3s all;	
}
section.home-page-2 img.left:hover{
	animation: spinAroundLeft 2s linear infinite;
	-webkit-animation: spinAroundLeft 2s linear infinite;
	-moz-animation: spinAroundLeft 2s linear infinite;
}
section.home-page-2 img.right:hover{
	animation: spinAroundRight 2s linear infinite;
	-webkit-animation: spinAroundRight 2s linear infinite;
	-moz-animation: spinAroundRight 2s linear infinite;
}
section.home-page-2 p{
	text-align: center;	
	color: #fff;
}
.featured-products-wrapper{margin-bottom: 0;}
section.home-page-3{
	background: url(../bg-home-page-3.jpg) no-repeat 50% 0;
	background-size: cover;
	padding: 45px 0 50px 0;
}
section.home-page-3 p{color: #fff; }
section.home-page-3 p.title{font-weight: bold; margin-bottom: 15px; font-size:16px;}
section.home-page-3 p.description{font-size: 12px; line-height: 24px;} 
section.home-page-3 ul.dot li{color:#FFF;} 
section.home-page-3 a.view-more{
	color: #fff;
	border: 1px solid #fff;
	padding: 10px 12px;
	margin-top: 25px;
	display: inline-block;
	font-size: 14px;
	-webkit-transition: all 300ms;
	-moz-transition: all 300ms;
	-ms-transition: all 300ms;
	-o-transition: all 300ms;
	transition: all 300ms;
}
section.home-page-3 a.view-more:hover{
	background: #fff;
	color: #268E97;
}
section.home-page-3 .right{
	padding-left: 35px;
}
section.home-page-3 .new-product{
	background-repeat: no-repeat;
	background-size: cover;
	background-position: top center;
	height: 350px; 
}
section.home-page-3 h2{
	color: #fff;
	margin-bottom: 30px;
	font-family: 'open sans';
	font-weight: bold;
	font-size:20px;
}
section.home-page-3 div.right a.view-more{
	margin-top: 45px;
}
section.home-page-3-0{
	background: #e6e6e6;
	color:#268f97;
	font-size: 24px;
	padding: 60px 0;
}
section.home-page-3-0 h1{
	text-align: center;
	font-size: 30px;
	font-style: italic; 
}
section.home-page-3-0 .box-wrapper{
	text-align: center;
}
section.home-page-3-0 .box-wrapper span::before,
section.home-page-3-0 .box-wrapper span::after{
	content: " ";
	border-bottom: 2px solid #268f97;
	width: 15px;
	height: 1px;
	display: inline-block;
	position: relative;
	bottom: 6px;
	margin-right: 25px;
}
section.home-page-3-0 .box-wrapper span::after{
	margin-right: 0px;	
	margin-left: 25px;	
}
section.google-maps #map-canvas{
	height: 350px;
	width: 100%;
}

.schematics h1{
	color:#FFF!Important;
	text-align:center!Important;
	font-size:40px!Important;
	padding-bottom:40px!Important;
}


/**********************************
|	SUBPAGES
***********************************/
.main-content{
	padding-bottom: 70px;
}

/*.container img.sponsive{
	width:100%;
}
*/

.container.main-content h1{
	font-family: 'Open Sans', sans-serif;
	font-size:18px;
	margin-bottom:20px;
	color:#1c9196;
	font-weight:bold;
}

.container.main-content h2{
	font-family: 'Open Sans', sans-serif;
	font-size:16px;
	margin-top:30px;
	margin-bottom:20px;
	color:#1c9196;
}

.container.main-content h3{
	font-family: 'Open Sans', sans-serif;
	font-size:14px;
	margin-bottom:20px;
	color:#1c9196;
}

.container.main-content p{
	font-family: 'Open Sans', sans-serif;
	font-size:14px;
	color:#666;
	line-height:20px;
}


.container.main-content ul.dot{
	margin-left:40px;
	margin-bottom:20px;
	margin-top:20px;
}

.container.main-content ul.dot li{
	font-family: 'Open Sans', sans-serif;
	font-size:14px;
	color:#666;
	padding:2px 0 2px 0;
	list-style-type:circle;
}


.container span.quoaition{
	color:#319ba0;
	font-weight:bold;
}




/**********************************
|	SUBPAGES FULL WIDTH
***********************************/

section.subpage-banner {
    height: 400px;
    background-repeat: no-repeat;
    position: relative;
    background-size: cover;
		margin-bottom:50px;
		text-align:center;
		overflow:hidden;
}

section.subpage-banner h1 {
	font-family: 'Raleway', sans-serif;
	font-size: 50px;
	margin-bottom:10px;
	font-weight:600;
	text-transform:uppercase;
	color: #fff;
	padding: 120px 0 0 0;
	text-align: center;
}
section.subpage-banner a{
	font-family: 'Raleway', sans-serif;
	font-size:12px;
	font-weight:500;
	letter-spacing:1px;
	color:#fff;
}
section.subpage-banner a:hover{
	color:#fff;
}


section.subpage-banner p.content {
    font-family: 'Open Sans', sans-serif;
    font-size: 30px;
    margin-bottom: 20px;
    color: #fff;
    text-align: center;
		padding: 0 50px 0 50px;
		line-height:30px;
}


.container .page_submenu {
	padding-top: 40px;
	padding-bottom: 40px;
}

.container .page_submenu .image_wrap{
	position:relative;
	overflow:hidden;
	width:20%;
	height:140px;
	flex:0 0 140px;
}
.container .page_submenu .image_wrap img{
	width:100%;
	height:100%;
	object-fit:cover;
}

.container .page_submenu .image_wrap:before{
	content:"";
	position:absolute;
	top:0px;
	left:0px;
	width:100%;
	height:100%;
	display:block;
	background:rgba(0,0,0,.2);
	-moz-transition: all 0.6s;
  -webkit-transition: all 0.6s;
  transition: all 1s;
}

.container .page_submenu .flex:hover .image_wrap:before{
	background:rgba(0,0,0,0);
	width:0%;
}


.container .page_submenu_text{
	margin-left:23px;
}
.container .page_submenu .row{
	margin-bottom:50px;
}
.container .page_submenu_text h2{
	font-family: 'Raleway', sans-serif;
	margin:0;
	padding:0;
	color:#303030;
	font-size:18px;
	text-transform:uppercase;
}
.container .page_submenu_text h2:after{
	content:"";
	display:block;
	height:1px;
	width:50%;
	background-color:#ed1c24;
	margin-top:20px;
}
.container .page_submenu_text hr{
	display:block;
	width:20%;
	height:1px;
	border:none;
	margin:0;
	margin-top:5px;
	margin-bottom:20px;
	background-color:#ed1c24;
	text-align:left;
}
.container .page_submenu_text p{
	font-family: 'Raleway', sans-serif;
	font-size:12.5px;
	font-weight:300;
}

.margin-top-60{
	margint-top:60px;
}

.no-padding{
	margin:0;
	padding:0;
}
.red{
	color:#ed1c24 !important;
}

.two_col{
	margin-bottom:60px;
}

.container .two_col h2{
	font-family: 'Raleway', sans-serif;
	font-size:30px;
	font-weight:700;
	padding:0;
	margin: 0;
	margin-bottom:25px;
	text-transform:uppercase;
	color:#3b3b3b;
}
.container .two_col .border-left h2{
	font-weight: 100;
	/*color:#3b3b3b;*/
}
.border-left{
	padding-left:40px;
	border-left:1px solid #e1e1e1;
}

.container .two_col p{
	color:#333333;
	font-size: 16px;
	line-height:20px;
	margin-bottom:10px;
	font-weight:300;
	font-family: 'Raleway', sans-serif;
}
.container .two_col p.red{
	text-align:center;
	font-weight:500;
}
.container .two_col p strong{
	font-weight:500;
}

.container .page_submenu_title{
	text-transform:uppercase;
	font-family: 'Raleway', sans-serif;
	font-size: 33px;
	text-align:center;
	letter-spacing: 2px;
	margin:70px 0px;
}

.container .page_submenu_title.align-left{
	text-align:left;
	font-size:30px;
	letter-spacing:normal;
	margin:0px 0px 60px 0px;
}



.page_ostalo a{
	position:relative;
	display:block;
	text-align:center;
}
.page_ostalo a img{
	width:100%;
	height:100%;
	object-fit:cover;
}

.page_ostalo a:before{
	content:"";
	position:absolute;
	top:0px;
	left:0px;
	width:100%;
	height:100%;
	display:block;
	background:rgba(0,0,0,.2);
	-moz-transition: all 0.6s;
  -webkit-transition: all 0.6s;
  transition: all 1s;
}

.page_ostalo a:hover:before{
	background:rgba(0,0,0,.2);
	height:40px;
}



.page_ostalo a div{
	position:absolute;
	top:0px;
	background-color:#323232;
	color:#fff;
	font-family: 'Source Sans Pro', sans-serif;
	font-weight:600;
	font-size:15px;
	text-transform: uppercase;
	width:100%;
	height:40px;
	line-height:40px;
	text-align: center;
}

.zakaj-akrol .row{
	margin-bottom:48px;
}
.zakaj-akrol .row:last-of-type{
	margin-bottom:0px;
}

.zakaj-akrol img,
.zakaj-akrol p{
	/*display:inline-block;*/
	/*vertical-align:middle;*/
}
.zakaj-akrol img{
	margin-right:20px;
}
.container.zakaj-akrol p{
	font-family: 'Raleway', sans-serif;
	font-size:18px;
	color:#333333;
	font-weight:700;
}
.container.zakaj-akrol p span{
	text-transform:uppercase;
	display:block;
}

.page_zakaj_akrol{
	margin-bottom:60px;
}

.container.page_zakaj_akrol h1{
	text-transform:uppercase;
	color:#303030;
	font-size:22px;
	font-family: 'Raleway', sans-serif;
	font-weight:400;
	padding:0px;
	margin:0px;
}
.page_zakaj_akrol h1:after{
	content:"";
	display:block;
	width:110px;
	height:1px;
	background:#ed1c24;
	margin-top:10px;
}
.page_zakaj_akrol hr{
	padding:0px;
	margin:0px;
	margin-top:5px;
	border:none;
	width:50px;
	height:1px;
	background:#ed1c24;
	text-align:left;
	margin-bottom:20px;
}
.container.page_zakaj_akrol p{
	font-family: 'Raleway', sans-serif;
	color:#696969;
	font-size:14px;
	margin-bottom:20px;
}
.container.page_zakaj_akrol > .row > .no-padding{
	padding-right:40px;
}
.container.page_zakaj_akrol .row .row{
	margin-top:40px;
	padding-left:60px;
}
.container.page_zakaj_akrol .row .row img{
	margin-bottom:25px;
}
.container.page_zakaj_akrol .row .row h5{
	text-transform:uppercase;
	color:#303030;
	font-size:13px;
	font-family: 'Raleway', sans-serif;
	font-weight:600;
}
.container.page_zakaj_akrol .row .row .span{
	color:#000000;
	font-family: 'Raleway', sans-serif;
	font-size:12px;
	margin-top:15px;
	display:block;
	line-height:18px;
	padding:0px 18px;
}




.container  h1{
	font-family: 'Raleway', sans-serif;
	font-size:18px;
	margin-bottom:20px;
	margin-top:20px;
	color:#1c9196;
	font-weight:bold;
}

.container h2{
	font-family: 'Source Sans Pro', sans-serif;
	font-size:16px;
	margin-top:30px;
	margin-bottom:20px;
	color:#1c9196;
}

.container h3{
	font-family: 'Source Sans Pro', sans-serif;
	font-size:14px;
	margin-bottom:20px;
	color:#1c9196;
}

.container  p{
	font-family: 'Source Sans Pro', sans-serif;
	font-size:14px;
	color:#666;
	line-height:20px;
}

a.footerurl{
	font-family: 'Source Sans Pro', sans-serif;
	font-size:14px;
	color:#666;
	line-height:20px;
}



#rezervni-deli h2{
	text-align: center;
	font-size: 30px;
}




/**********************************
|	SUBPAGE NOTRANJA SENČILA
***********************************/

#notranja-sencila-akrol {
    height: 322px;
	background: url(../website/banner-notranja-sencila-spodaj.jpg) no-repeat;
}

#notranja-sencila-akrol .notranja-sencila-akrol-text {
	top:50%;
	left:50%;
	transform: translate(-50%,-50%);
	-webkit-transform: translate(-50%,-50%);
	text-align: center;
	position: relative;
}

#notranja-sencila-akrol .notranja-sencila-akrol-text h3{
	font-size:30px;
	font-weight: 200;
	line-height: 45px;
	color:#fff;
	font-family: 'Raleway', sans-serif;
	margin-bottom:43px;
	letter-spacing:1px;
}

#notranja-sencila-akrol .notranja-sencila-akrol-text a{
	padding:19px 42px;
	border:2px solid #fff;
	text-transform:uppercase;
	color:#fff;
	font-size:16px;
	font-weight:700;
	letter-spacing:1px;
	display:inline-block;
	-moz-transition: all 0.6s;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}

#notranja-sencila-akrol .notranja-sencila-akrol-text a:hover{
	border:2px solid #fff;
	background:rgba(0,0,0,1.0);
}

/**********************************
|	SUBPAGE REZEREVNI DELI
***********************************/

#rezervni-deli{
	padding:40px 0 60px 0;
}

#rezervni-deli p {
    color: #333333;
    font-size: 18px;
    padding-top: 20px;
    text-align: center;
    padding-bottom: 60px;
    font-family: 'Raleway', sans-serif;
}

#rezervni-deli-kontakt {
    height: 322px;
	background: url(../website/banner-notranja-sencila-spodaj.jpg) no-repeat;
}

#rezervni-deli-kontakt .rezervni-deli-kontakt-text {
	top:50%;
	left:50%;
	transform: translate(-50%,-50%);
	-webkit-transform: translate(-50%,-50%);
	text-align: center;
	position: relative;
}

#rezervni-deli-kontakt .rezervni-deli-kontakt-text h3{
	font-size:30px;
	font-weight: 200;
	line-height: 36px;
	color:#fff;
	font-family: 'Raleway', sans-serif;
	margin-bottom:43px;
	letter-spacing:1px;
}

#rezervni-deli-kontakt .rezervni-deli-kontakt-text a{
	padding:19px 42px;
	border:2px solid #fff;
	text-transform:uppercase;
	color:#fff;
	font-size:16px;
	font-weight:700;
	letter-spacing:1px;
	display:inline-block;
	-moz-transition: all 0.6s;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}

#rezervni-deli-kontakt .rezervni-deli-kontakt-text a:hover{
	border:2px solid #fff;
	background:rgba(0,0,0,1.0);
}

/**********************************
|	SUBPAGE DUO ROLOJI
***********************************/

#duo-roloji-akrol{
	padding:20px 0 40px 0;
}

#duo-roloji-akrol h2, #rezervni-deli h2  {
	text-transform: uppercase;
    color: #333333;
    font-size: 34px;
	margin-top:0px;
    font-family: 'Raleway', sans-serif;
    font-weight: bold;
}

#rezervni-deli h2{
	text-align: center;
	font-size: 30px;
}


#duo-roloji-akrol h2 strong{
    color: #ed1c24;
}

#duo-roloji-akrol h3{
    color: #ed1c24;
    font-size: 22px;
    font-weight: bold;
}

#duo-roloji-akrol h5{
    color: #ed1c24;
    font-size: 30px;
    font-weight: bold;
    text-align: center;
    padding-top: 30px;
}

#duo-roloji-akrol p{
	font-family: 'Raleway', sans-serif;
	font-size:16px;
	color:#333;
	line-height:22px;
}

#duo-roloji-akrol p.strong.red{
	font-family: 'Raleway', sans-serif;
	font-size:16px;
	color:#e71d24;
	line-height:22px;
}

#duo-roloji-akrol .line {
	border-right: 4px solid #e1e1e1;
}

#duo-roloji-akrol .noline {
	padding-left: 35px;
}

#duo-roloji-akrol ul.dot2 {
    padding: 20px 0px 0px 0px;
}

#duo-roloji-akrol ul.dot2 li {
    background: url(../website/li-dot2.png) no-repeat left top;
	font-family: 'Raleway', sans-serif;
    padding: 0px 20px 20px 40px;
    font-size: 16px;
    line-height: 22px;
    color: #333;
}


#duo-roloji-akrol-zakaj{
	padding:30px 0 30px 0;
}

#duo-roloji-akrol-zakaj h1 {
	text-transform: uppercase;
    color: #333333;
    text-align: center;
    font-size: 40px;
	margin-top:50px;
	margin-bottom:80px;
    font-family: 'Raleway', sans-serif;
    font-weight: bold;
}

#duo-roloji-akrol-zakaj h1 strong{
    color: #ed1c24;
}


#duo-roloji-akrol-zakaj p{
	font-family: 'Raleway', sans-serif;
	font-size:18px;
	font-weight: bold;
	color:#333;
    position: relative;
}

#duo-roloji-akrol-zakaj p.first{
	padding-top: 10px;
}



#duo-roloji-akrol-zakaj img { padding-right: 20px; padding-bottom: 40px; float: left; }


#duo-roloji-akrol h4 {
	text-transform: uppercase;
    color: #333333;
    text-align: center;
    font-size: 18px;
	margin-top:20px;
	margin-bottom:20px;
    font-family: 'Raleway', sans-serif;
    font-weight: bold;
}

#duo-roloji-akrol p.showtext {
    color: #333333;
    text-align: center;
    font-size: 14px;
		margin-top:20px;
		margin-bottom:20px;
		max-height:0px;
		opacity:0;
		overflow:hidden;
    font-family: 'Raleway', sans-serif;
		-moz-transition:max-height 1s, opacity 0.7s;
		-webkit-transition:max-height 1s, opacity 0.7s;
		transition:max-height 1s, opacity 0.7s;
}

/*#show-text {
  display: none;
}*/

#show-element-main {
	padding-top: 40px;
	padding-bottom: 40px;
}

#show-element:hover #show-text {
  opacity:1;
  cursor: pointer;
	max-height:300px;
}

img.show-element-image {
	margin: 0 auto;
}

.martin-krpan {
	background: url(../website/martin-krpan.png)  no-repeat top right;
}


#siroka-paleta-barv{
	padding:50px 0 50px 0;
	background-color: #f5f5f5;
}


#siroka-paleta-barv h2 {
	text-transform: uppercase;
    color: #333333;
    font-size: 34px;
    text-align: center;
	margin-top:0px;
    font-family: 'Raleway', sans-serif;
    font-weight: bold;
}

#siroka-paleta-barv h2 strong{
    color: #ed1c24;
}

#siroka-paleta-barv p {
    color: #333333;
    padding-bottom: 40px;
    padding-bottom: 60px;
    font-size: 16px;
    text-align: center;
    font-family: 'Raleway', sans-serif;
}

#siroka-paleta-barv h3 {
    color: #333333;
    padding-top: 30px;
    font-size: 20px;
    text-align: center;
    font-family: 'Raleway', sans-serif;
    font-weight: bold;
}


/**********************************
|	SUBPAGE NACIN SODELOVANJA
***********************************/

#nacin-sodelovanja {
	padding:70px 0 70px 0;
}


#nacin-sodelovanja h5{
	font-family: 'Raleway', sans-serif;
	font-size:16px;
	color:#333;
	line-height: 24px;
	padding-top: 30px;
	padding-bottom: 100px;
	text-align:center;
	font-weight:bold;
}


/**********************************
|	SUBPAGE MONTAZA
***********************************/

#montaza-section1 h1{
	font-family: 'Raleway', sans-serif;
	font-size:32px;
	color:#ed1c24;
	text-align:center;
	font-weight:bold;
	padding: 20px 20px 20px 20px;
}

#montaza-section1 h2{
	font-family: 'Raleway', sans-serif;
	font-size:32px;
	color:#1f1f1f;
	text-align:center;
	font-weight:bold;
}

#montaza-section2 {
	padding:70px 0 70px 0;
}

#montaza-section2 p{
	font-family: 'Raleway', sans-serif;
	font-size:16px;
	color:#333;
	line-height:25px;
	padding-left:40px;
	font-style:italic;
	font-weight:100;
}

#montaza-section2 h3{
	font-family: 'Source Sans Pro', sans-serif;
	font-size:55px;
	font-weight:bold;
	color:#ef4248;
	text-align:center;
	margin-bottom:5px;
}

#montaza-section2 p.izkusenj{
	font-family: 'Source Sans Pro', sans-serif;
	font-size:18px;
	color:#333;
	padding-left:5px;
	font-style:normal;
	font-weight:bold;
	letter-spacing:14px;
	text-align:center;
}


#montaza-section3 {
	margin-bottom:70px;
	padding:30px 0 30px 0;
	background-color:#717171;
	-webkit-border-top-right-radius: 10px;
	-webkit-border-bottom-left-radius: 10px;
	-moz-border-radius-topright: 10px;
	-moz-border-radius-bottomleft: 10px;
	border-top-right-radius: 10px;
	border-bottom-left-radius: 10px;
}

#montaza-section3 h2{
	font-family: 'Source Sans Pro', sans-serif;
	font-size:45px;
	color:#fff;
	text-align:right;
}

#montaza-section3 p{
	font-family: 'Raleway', sans-serif;
	font-size:25px;
	color:#fff;
	padding-right:40px;
	padding-top:20px;
	line-height:35px;
	font-weight:100;
}


#montaza-section4 {
	padding:60px 0 60px 0;
	background-color:#f3f3f3;
}

#montaza-section4 img{
	margin-top:30px;
}

#montaza-section4 h5 {
	text-transform: uppercase;
    color: #333333;
    font-size: 16px;
	margin-top:20px;
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
}


#montaza-section4 p {
    color: #333333;
	font-family: 'Source Sans Pro', sans-serif;
    font-size: 16px;
    margin-top: 20px;
	padding:0 50px 0 50px;
}

#montaza-section5 {
	padding:50px 0 30px 0;
}

#montaza-section5 h2 {
    color: #ed1c24;
    font-size: 25px;
	margin-top:20px;
	margin-bottom:20px;
    font-family: 'Raleway', sans-serif;
    font-weight: bold;
}


#montaza-section5 p {
    color: #333333;
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
	line-height:28px;
}


/**********************************
|	SUBPAGE NAS PRISTOP
***********************************/

#nas-pristop {
	padding:60px 0 60px 0;
}

#nas-pristop img{
	margin-top:10px;
}

#nas-pristop h5 {
	text-transform: uppercase;
    color: #333333;
    font-size: 16px;
	margin-top:20px;
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
}


#nas-pristop p {
    color: #333333;
	font-family: 'Source Sans Pro', sans-serif;
    font-size: 15px;
    margin-top: 20px;
	padding:0 5px 0 5px;
}


#nas-pristop2 {
	padding:60px 0 60px 0;
	background-color:#f3f3f3;
}

#nas-pristop2 h2 {
	text-transform: uppercase;
    color: #333333;
    font-size: 34px;
	margin-top:20px;
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
}

#nas-pristop2 h2 strong{
    color: #ed1c24;
    font-weight: 400;
}


#nas-pristop2 p {
    font-family: 'Raleway', sans-serif;
    color: #777777;
    font-size: 16px;
    margin-top: 20px;
	line-height:25px;
}

#nas-pristop2 h3 {
    color: #ed1c24;
    font-size: 65px;
	margin-top:100px;
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
}

#nas-pristop2 p.nas-pristop-text {
    font-family: 'Raleway', sans-serif;
    color: #222222;
    font-size: 20px;
    margin-top: 20px;
	padding:0 40px 0 40px;
}



/**********************************
|	SUBPAGE O NAS
***********************************/
.o-nas{
	font-size:30px;
	font-weight:700;
}
.o-nas h1{
	text-transform:uppercase;
	color:#222222;
	margin:0px;
}
.o-nas strong{
	color:#ed1c24;
}
.o-nas hr{
	margin:0px;
	margin:20px 0px;
	border:none;
	width:30%;
	border-bottom:2px solid #ed1c24;
}
.o-nas em{
	display:block;
	font-size:18px;
	line-height:26px;
	color:#2f2f2f;
	margin-bottom:20px;
}

.o-nas .contact_box{
	position:relative;
	width:100%;
	background:#01273a;
	padding:20px;
	margin-top:120px;
}
.o-nas .contact_box em,
.o-nas .contact_box a{
	color:#fff;
	font-size:23px;
	line-height:28px;
	margin:0px;
}
.o-nas .contact_box a{
	display:block;
	position:absolute;
	top:50%;
	right:20px;
	-webkit-transform: translateY(-50%);
  transform: translateY(-50%);
	background:#ed1c24;
	text-transform:uppercase;
	font-size:13px;
	padding:10px 20px;
	-moz-transition:all .4s;
	-webkit-transition:all .4s;
	transition:all .4s;
}
.o-nas .contact_box a:hover{
	color:#01273a;
}

.home_podmeni.o-nas{
	margin:0px;
	margin-bottom:60px;
}
.home_podmeni.o-nas h1{
	text-align:center;
	letter-spacing:-1px;
	font-size:60px;
	color:#292929;
	margin:40px 0px;
}

.poslanstvo.o-nas{
	margin:60px 0px;
}

.poslanstvo.o-nas h1{
	text-align:center;
	font-size:32px;
	margin-bottom:40px;
}
.poslanstvo.o-nas p{
	text-align:center;
}
.poslanstvo.o-nas p strong{
	display:block;
}
.poslanstvo.o-nas .dejansko{
	color:#2e2e2e;
	font-size:20px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-align-items: center;
	align-items: center;
	text-align:center;
	margin-top:20px;
}
.poslanstvo.o-nas .dejansko:before,
.poslanstvo.o-nas .dejansko:after{
	display:block;
	width:30px;
	height:25px;
	background-repeat:no-repeat;
	flex:0 0 30px;
}
.poslanstvo.o-nas .dejansko:before{
	content: "";
	margin-right:10px;
	background:url(../website/apostrof-levi.png);
}
.poslanstvo.o-nas .dejansko:after{
	content: "";
	margin-left:10px;
	background-image:url(../website/apostrof-desni.png);
}



#galerija-akrol{
	margin-bottom:50px;
}

#galerija-akrol h1{
	text-align:center;
	letter-spacing:-1px;
	font-size:60px;
	color:#292929;
	padding-top: 50px;
	padding-bottom: 30px;

}

#galerija-akrol h1 strong {
    color: #ed1c24;
}


#galerija-akrol h2{
	text-align:center;
	letter-spacing:-1px;
	font-size:24px;
	color:#292929;
	padding-bottom: 20px 0 10px 0;
}


/**********************************
|	KONTAKTIRAJTE NAS
***********************************/
.contact_form h1{
	color:#222222;
	font-size:26px;
	font-weight:700;
	text-transform:uppercase;
}

.contact_form .contact_icons{
	margin-top:40px;
}
.contact_form .contact_icons img{
	float:left;
}
.contact_form .contact_icons .contact_text{
	margin-left:70px;
	margin-bottom:30px;
}
.contact_form .contact_icons .contact_text h3{
	text-transform:uppercase;
	color:#222222;
	font-size:16px;
	font-weight:700;
	margin-bottom:15px;
}
.contact_form .contact_icons .contact_text p{
	margin-bottom:0px;
	color:#434343;
	font-size:16px;
	font-family: 'Source Sans Pro', sans-serif;
}

.contact_form .flex{
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;
}
.contact_form #enquiryForm .flex div{
	width:calc( 50% - 5px );
}


#enquiryForm input,
#enquiryForm textarea{
  width:100%;
  /*height:30px;*/
  padding:10px;
  font-size:14px;
  border:none;
  background:#fff;
  border:1px solid #e0e0e0;
  -moz-transition:all 0.5s;
  -webkit-transition:all 0.5s;
  transition:all 0.5s;
}
#enquiryForm textarea{
  /*height:110px;*/
  padding:10px;
  max-width:100%;
}

#enquiryForm input[type="submit"]{
	width:auto;
	background:#ed1c24;
	font-size:13px;
	padding:15px 20px;
	text-transform:uppercase;
}

#enquiryForm input:focus,
#enquiryForm textarea:focus{
  outline:none;
  border:1px solid #777777;
}

#enquiryForm ::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #777777;
  font-size:13px;
	text-transform:uppercase;
}
#enquiryForm ::-moz-placeholder { /* Firefox 19+ */
  color: #777777;
  font-size:13px;
	text-transform:uppercase;
}
#enquiryForm :-ms-input-placeholder { /* IE 10+ */
  color: #777777;
  font-size:13px;
	text-transform:uppercase;
}
#enquiryForm :-moz-placeholder { /* Firefox 18- */
  color: #777777;
  font-size:13px;
	text-transform:uppercase;
}
.google_map{
	margin-bottom:80px;
}
.google_map iframe{
	width:100%;
}


/**********************************
|	FOOTER
***********************************/
footer{
	color:#9b9b9b;
}

footer .footer_logo{
	display:inline-block;
	margin-bottom:20px;
}
footer .white{
	color:#fff;
	font-size:17px;
	margin-top:20px;
}


.ico_facebook,
.ico_twitter,
.ico_gplus,
.ico_linkedin{
	width:43px;
	height:42px;
	display:inline-block;
}

.ico_facebook{
	background:url(../ic/ico_facebook.png) no-repeat 0 0;
}
.ico_twitter{
	background:url(../ic/ico_twitter.png) no-repeat 0 0;
}
.ico_gplus{
	background:url(../ic/ico_gplus.png) no-repeat 0 0;
}
.ico_linkedin{
	background:url(../ic/ico_linkedin.png) no-repeat 0 0;
}

.bottom{
	padding-top:40px;
	padding-bottom:20px;
}

footer ul{
	margin-top:20px;
}
footer ul a{
	display:block;
	font-size:16px;
	line-height:20px;
	color:#9b9b9b;
}
footer ul a:before{
	content:"-";
	margin-right:5px;
}
footer a:hover{
	-moz-transition: color 0.2s;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
	color:#fff;
}

footer ul.footer_menu_last{
	margin-top:45px;
}
footer ul.footer_menu_last a{
	text-transform:uppercase;
	color:#fff;
	font-size: 17px;
	line-height:25px;
}
footer ul.footer_menu_last a:before{
	content:"";
}
footer ul.footer_menu_last a:hover{
	color:#9b9b9b;
}


#banner {
	padding: 50px 0 50px 0;
	text-align:center;
}


footer {
	background: #222222;
	padding: 88px 0 0;
	clear: both;
}

footer p.title{
	color: #fff;
	font-size: 17px;
	font-weight:700;
	text-transform:uppercase;
}
footer a,footer p{color:#9b9b9b;font-size: 16px;}
footer p.icon{
	padding-left: 30px;
	background-repeat:no-repeat;
	background-position: 0 50%; 
	line-height: 20px;
	margin: 5px 0; 
	font-size: 14px;
	font-weight: bold;
}



/**********************************
|	CATEGORY PAGE
***********************************/
.category-content{
	/*margin-bottom: 40px;*/
	float: none;
}
.container.main-content .category-content h1{
	color: #00afd1;
	font-weight: bold;
	font-size: 28px;
}
.container.main-content .category-content p{
	color: #666;
	line-height: 20px;
}
.category-wrapper div.category-img{
    padding: 30px 0 30px 0;
	background: #ffffff;
	overflow:hidden;

}
.category-wrapper div.category-img img{
	margin: 0 auto;
	max-width: 100%;
	display: block;
	position: relative;
	visibility: hidden;
}
.category-wrapper p.cat-title{
	color: #666;
	padding: 8px;
	/*border-bottom: 1px solid #31b4c4;*/
	font-size: 12px;	
}
.category-wrapper div.bottom-border{
	border-top:1px solid #31b4c4;
	background-color: #e6e6e6;	
}
.category-wrapper .box-wrapper{
	/*margin-bottom: 50px; */
	margin-top: 50px;
	cursor: pointer;
}
.category-wrapper .subcategory-details{
	background: #e6e6e6;
	padding: 20px;
	position: relative;
	/*height: 460px;*/
	/*top: -50px;	*/
}
.category-wrapper .subcategory-details h1{
	color: #969696;
	font-size: 18px;
}
.category-wrapper .subcategory-details p{
	color:#666666;
	font-size: 12px;
	line-height: 20px;
	overflow: hidden;
}
.category-wrapper .subcategory-details-wrapper{
	float: none;
	clear: both;
	/*margin-top: -40px;	*/
}
.category-wrapper .subcategory-details .sliderProduct{
	/*margin-top: 50px;*/
}
.category-wrapper .subcategory-details .sliderProduct .box-wrapper{
	margin-bottom: 0;
}
.category-wrapper .subcategory-details .sliderProduct .box-wrapper.slide img{
	border: 10px solid #f7f7f7;
}


/**********************************
|	SCHEMES 
***********************************/

		.description-scheme {
			display: none;
			position: absolute;
			font-family: 'Open Sans', sans-serif;
			border: 1px solid #000;
			float: left;
			color: white;
			padding:25px;
			background-color: rgba(0, 0, 0, 0.8);
			text-align:center;
		}


		p.linkshema {
			padding-top:20px;
		}
		p.linkshema a {
			font-family: 'Open Sans', sans-serif;
			color: #fff;
			font-size:12px;
			padding:10px;
			text-decoration:none;
			background-color:#1c9196;
		}

.products-wrapper > div{
	padding: 0 10px;
  margin-top: 10px;
}
.products-wrapper .item {
	text-align: center;
	border:1px solid #efefef;
	background: #fff;
	padding-bottom: 10px;
}
.products-wrapper > div img {
	margin: 0 auto;
	margin-bottom: 10px;
}
.products-wrapper a:hover p {
	color: #00AFD1;
}
.products-wrapper .product-name {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  padding: 0 10px;
}

.slick-next:before
{
    color: blue;
}

.slick-prev:before {
	color: blue;
}

.owl-theme .owl-controls{
	margin-top:0px !important;
}

.owl-prev {
	position: absolute;
    z-index: 10;
    top: 50%;
    left: 0;
    width: 40px;
    margin-top: -50px !important;
    margin-left: 0px !important;
    height: 100px;
    background-size: contain !important;
    border-radius: 0px !important;
    background: url('../icons/arrow_owl_left.png') center center no-repeat !important;

}
.owl-next {
	position: absolute;
	z-index: 10;
	top: 50%;
	right: 0;
	width: 40px;
	margin-top: -50px !important;
	margin-right: 0px !important;
	height: 100px;
	background-size: contain !important;
	border-radius: 0px !important;
	background: url('../icons/arrow_owl_right.png') center center no-repeat !important;
}

.bgPlus{
		background:rgba(0,0,0,.7);
		height: 100%;
		width: 100%;
		position: absolute;
		left: 0;
		top: 0;
		text-align: center;
		z-index: 2;
		-webkit-opacity: 0;
		-moz-opacity: 0;
		opacity: 0;
		filter: alpha(opacity=0);
		-webkit-transition: all 0.25s ease-in-out;
		-moz-transition: all 0.25s ease-in-out;
		-ms-transition: all 0.25s ease-in-out;
		-o-transition: all 0.25s ease-in-out;
		transition: all 0.25s ease-in-out;
		display: -webkit-box;
		display: -ms-flexbox;
		display: -webkit-flex;
		display: flex;
		-webkit-justify-content: center;
		justify-content: center;
		-webkit-align-items: center;
		align-items: center;
		-webkit-flex-direction: column;
		flex-direction: column;
}
.bgPlus:after{
	content:'+';
	font-size:52px;
	font-family: 'Raleway', sans-serif;
	font-weight:300;
	color:#fff;
	width:55px;
	height:55px;
	/*position:absolute;*/
	/*top:50%;*/
	/*left:50%;*/
	/*transform: translate(-50%,-50%);*/
  /*-webkit-transform: translate(-50%,-50%);*/
	border:1px solid #fff;
	-webkit-border-radius: 200px;/*Safari, Chrome*/
	-moz-border-radius: 200px;/*Firefox*/
	border-radius: 200px;
}
.bgPlus p{
	font-family: 'Raleway', sans-serif;
	font-size:16px;
	color:#fff;
	font-weight:300;
	margin-bottom:20px;
}

.imageBgPlus:hover .bgPlus {
  -webkit-opacity: 1;
  -moz-opacity: 1;
  opacity: 1;
  filter: alpha(opacity=100);
}

img.post_images {
    width: 100%;
	padding:20px;
}

.single-image img{
	padding: 0px;
}

.single-image a.fancybox {
  margin: 0px!important;
  padding: 0px!important;
  border: none!important;
  display: block;
}

.nopadding img.post_images {
    width: 100%;
	padding:0px;
	display: block;
    border-right: 1px solid #cecece;
    border-bottom: 1px solid #cecece;
    max-width: 100%;
    height: auto;
}

.galleryGal .bgPlus{
		background: rgba(156, 156, 156, 0.74) url('../images/cross_small.png') center center no-repeat;		
}





/**************************************
|	IZBIRA JEZIKA
**************************************/

/* Dropdown Button */
.dropbtn {
    color: white;
    padding: 17px;
    font-size: 12px;
    border: none;
	background:none;
    cursor: pointer;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
    position: relative;
    display: inline-block;
	margin-top:-3px;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
    display: none;
	font-size:14px;
    position: absolute;
    background-color: #000000;
    min-width: 40px;
	float:right;
	margin-left:70px;
}

/* Links inside the dropdown */
.dropdown-content a {
    color: white;
	text-align:right;
    padding: 8px 16px;
    text-decoration: none;
    display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover { background:none;}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
    display: block;
	z-index: 999999999;
}

/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn {
	background:none;
}


/* Dropdown Button */
.dropbtn3 {
    color: 000;
    font-family: 'Raleway', sans-serif;
	font-size: 14px;
	padding-bottom:10px;
	font-weight:700;
    border: none;
	background:none;
    cursor: pointer;
}


#video-container{
	margin-top: -170px;

}







/**********************************
|	CSS DODATNI
***********************************/


#zunanje-zaluzije{
	background-color: #efefef;
	padding: 20px;
}


#zunanje-zaluzije h2{
	text-transform: uppercase;
    color: #333333;
    font-size: 20px;
    margin-top: 20px;
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
}

#zunanje-zaluzije h2 strong{
	color: #ed1c24;
    font-weight: 600;
}


#zunanje-zaluzije p {
    color: #333333;
    font-size: 18px;
    padding-top: 20px;
    font-family: 'Raleway', sans-serif;
}



#rolete-akrol{
	background-color: #efefef;
	padding: 20px;
}

#rolete-akrol p {
    color: #333333;
    font-size: 20px;
    text-align: center;
    font-weight: 500;
    line-height: 25px;
    padding: 20px;
    font-family: 'Raleway', sans-serif;
}


#komarniki-akrol{
	background-color: #efefef;
	padding: 20px;
}

#komarniki-akrol p {
    color: #333333;
    font-size: 20px;
    text-align: center;
    font-weight: 500;
    line-height: 25px;
    padding: 20px;
    font-family: 'Raleway', sans-serif;
}



#screen-sencila{
	background-color: #efefef;
	padding: 20px;
}


#screen-sencila h2{
	text-transform: uppercase;
    color: #333333;
    font-size: 22px;
    line-height: 25px;
    margin-top: 20px;
    font-family: 'Raleway', sans-serif;
    font-weight: 500;
}

#screen-sencila h2 strong{
	color: #ed1c24;
    font-weight: 600;
}


#screen-sencila p {
    color: #333333;
    font-size: 18px;
    padding-top: 20px;
    font-family: 'Raleway', sans-serif;
}
