/*
	Theme Name: MWEB template
	Theme URI: http://mweb.rs
	Description: MWEB wordpress template
	Version: 1.0.0
	Author: Marko Milic (@marcomilic)
	Author URI: http://marcomilic.com
	Tags: HTML5, CSS3, WP

	License: MIT
	License URI: http://opensource.org/licenses/mit-license.php
*/

/*------------------------------------*\
    MAIN
\*------------------------------------*/

/* global box-sizing */
*,
*:after,
*:before {
	-moz-box-sizing:border-box;
	box-sizing:border-box;
	-webkit-font-smoothing:antialiased;
	font-smoothing:antialiased;
	text-rendering:optimizeLegibility;
}
/* html element 62.5% font-size for REM use */
html {
	font-size:62.5%;
}
body {
	font: 400 11px/1.4 'PT Sans', sans-serif;
	color:#444;
}
/* clear */
.clear:before,
.clear:after {
    content:' ';
    display:table;
}

.clear:after {
    clear:both;
}
.clear {
    *zoom:1;
}
img {
	max-width:100%;
	vertical-align:bottom;
}
a {
	color:#444;
	text-decoration:none;
}
a:hover {
	color:#444;
}
a:focus {
	outline:0;
}
a:hover,
a:active {
	outline:0;
}
input:focus {
	outline:0;
	border:1px solid #04A4CC;
}

ul {list-style: none;}

.hideiframe {display: none;}


h1.title {
	color: #1976d2;
	margin-top: 0;
}

main ul {list-style: initial;}
main ul li {font-size: 16px; margin-bottom: 10px;}
main ol li {color: #555;font-size: 16px;font-weight: 400;line-height: 24px; }


article a {
	color: #1976d2;
	-webkit-transition: all 0.5s ease-out 0s;
	-moz-transition: all 0.5s ease-out 0s;
	-ms-transition: all 0.5s ease-out 0s;
	-o-transition: all 0.5s ease-out 0s;
	transition: all 0.5s ease-out 0s;
}

article a:hover {
	color: #1976d2;
	text-decoration: underline;
}

article h1, article h2, article h3, article h4, article h5 {
	color: #1976d2;
}


.content-main iframe{
	max-width: 100%;
	/* height: auto; */
}


/* Buttons */

.cta-green {
	background-color: #00c853;
	border-radius: 2px;
	color: #fff;
	font-size: 16px;
	font-weight: 700;
	text-transform: uppercase;
	padding: 10px 54px;
	-webkit-transition: all 0.5s ease-out 0s;
	-moz-transition: all 0.5s ease-out 0s;
	-ms-transition: all 0.5s ease-out 0s;
	-o-transition: all 0.5s ease-out 0s;
	transition: all 0.5s ease-out 0s;	
}

.cta-green:hover {
	color: #FFF;
	background-color: #f57c18;
}

.link-right {
	color: #1976d2;
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
}

.link-right:after {
	content: '\f105';	
	margin-left: 10px;
	font-family: 'FontAwesome';
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
}

.btn-download {
	text-align: center;
    padding: 12px 0;
    background-color: #1976d2;
    color: #fff;
    text-transform: uppercase;
    width: 220px;
    display: table;
    border-radius: 3px;
    font-size: 14px;
    font-weight: 700;
    -webkit-transition: all 0.5s ease-out 0s;
	-moz-transition: all 0.5s ease-out 0s;
	-ms-transition: all 0.5s ease-out 0s;
	-o-transition: all 0.5s ease-out 0s;
	transition: all 0.5s ease-out 0s;	
    margin: 0 10px;
}    

.btn-download:hover {
    background-color: #f57c18;
    color: #fff;
    text-decoration: none;
} 

.btn-download:after {
	content: '\f105';	
	margin-left: 10px;
	font-family: 'FontAwesome';
}

.btn-regular{
   padding: 12px 0;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: #1976d2;
    -webkit-transition: all 0.5s ease-out 0s;
	-moz-transition: all 0.5s ease-out 0s;
	-ms-transition: all 0.5s ease-out 0s;
	-o-transition: all 0.5s ease-out 0s;
	transition: all 0.5s ease-out 0s;	
}

.btn-regular:after{
	content: '\f105';	
	margin-left: 10px;
	font-family: 'FontAwesome';
}

.btn-regular:hover {
    color: #f57c18;
} 



/*------------------------------------*\
    STRUCTURE
\*------------------------------------*/

/* WRAPPER */
.wrapper {
	max-width:1200px;
	width:95%;
	margin:0 auto;
	position:relative;
}

/* HEADER */
.header {
	height: 100px;
	background: url('img/www-dots.png') no-repeat 50% 50%;
	border-bottom: 1px solid #ececec;
}


.header .logo {
	float: left;
	display: block;
	margin-right: 105px;
	padding: 25px 0;
}

.header .nav {
	float: left;
}

.header .nav ul {
	margin: 0;
    padding: 38px 0;
    display: table;
}

.header .nav ul li{
	float: left;
	font-size: 16px;
	font-family: 'PT Sans', sans-serif;
	margin-right: 25px;
}


.header .nav ul li:last-child{
	margin-right: 0;
}

.header .nav ul li a{
	color: #212121;
	font-weight: 100;
}

.header .nav ul li a:hover{
	color: #1976d2;
}
/* 
.header .nav ul li:first-child a:after{
	font-family: 'FontAwesome';
	content: '\f107';
	font-size: 18px;
	margin-left: 4px;
}
*/

.header-line {
	position: relative;
}
.header .nav ul li ul {
	position: absolute;
	top: 87px;
	left: 0;
	width: 100%;
	background-color: #ECECEC;
	z-index: 990;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}

#mega-menu-wrap-header-menu {margin-top: 20px;}
#mega-menu-wrap-header-menu #mega-menu-header-menu > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link {
	color: #1976d2;
	font-weight: 700;
	text-transform: none;
}
#mega-menu-wrap-header-menu #mega-menu-header-menu > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:after {
	color: #1976d2;	
	font-family: FontAwesome;
   	content: "\f105";
}

#mega-menu-wrap-header-menu #mega-menu-header-menu[data-effect="fade_up"] li.mega-menu-item.mega-menu-megamenu.mega-toggle-on ul.mega-sub-menu {
	padding-left: 20px;
}



.header .right-panel {
	float: right;
	margin-top: 35px;
}


.header #lang_sel_list {
    height: 28px;
}

.header .lang-selector .lang_sel_list_horizontal {
	border: 1px solid #1976d2;
    border-radius: 2px 3px 3px 2px;
}

.header .lang-selector #lang_sel_list ul {
	border-top: none;
}

.header .lang-selector #lang_sel_list a.lang_sel_sel {
	background-color: #1976d2;
	color: #FFF;
	font-size: 12px;
	padding: 7px 3px;
}

.header .lang-selector #lang_sel_list ul a.lang_sel_other {
	color: #1976d2;
	font-size: 12px;
	font-weight: 400;
	line-height: 26px;
    padding: 0 3px;
}


.title_part {
	padding: 48px 0;
}

.title_part h1 {
	color: #1976d2;
	font-size: 36px;
	font-weight: 400;
	line-height: 30px;
	text-align: center;
}

.title_part span.sub_title {
	color: #898989;
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	text-align: center;
	margin: 0 auto;
	display: table;
	max-width: 700px;
}


/* Izdavaštvo */

.row-casopis  {
	background-color: #f8f8f8;
	width: 100%;
	display: table;
	padding: 20px 0 40px 0;
}

.row-casopis:nth-child(even)  {
	background-color: #fff;

}

.row-casopis  h2 {
    color: #1976d2;
    text-align: center;
    margin-bottom: 30px;
}

.row-casopis  .uvodni_tekst {
 	display: table;
    max-width: 800px;
    margin: 0 auto;
}

.row-casopis  .uvodni_tekst p {
	font-size: 16px;
	line-height: 22px;
	text-align: center;
}

.casopis-row {
	margin-bottom: 80px;
}

.casopis-item {
    background: #fff;
    border: 1px solid #ccc;
    display: table;
    max-width: 800px;
    width: 100%;
    margin: 20px auto 0 auto;
	padding: 35px 25px;
	-webkit-transition: all 0.5s ease-out 0s;
	-moz-transition: all 0.5s ease-out 0s;
	-ms-transition: all 0.5s ease-out 0s;
	-o-transition: all 0.5s ease-out 0s;
	transition: all 0.5s ease-out 0s;
}

.casopis-item:hover {
	-webkit-box-shadow: 0px 0px 27px -4px rgba(0,0,0,1);
	-moz-box-shadow: 0px 0px 27px -4px rgba(0,0,0,1);
	box-shadow: 0px 0px 27px -4px rgba(0,0,0,1);
}

.casopis-photo {
    float: left;
    width: 200px;
    display: table;
    height: auto;
    margin-right: 35px;
}

.casopis-content h3 a{
	color: #1976d2;
}
.casopis-item .kratak-uvod {
	font-size: 16px;
    line-height: 22px;
    margin-bottom: 30px;
}

.casopis-item .kratak-uvod p {
	color: #898989;
}


.casopis-item .link-btn a{
	float: left;
	margin-right: 20px;
	margin-left: 0;
	width: 180px;
}


.lista-casopisa {
	
}

.lista-casopisa .wrapper {
	max-width: 800px;
	display: table;
	margin: 0 auto;
}
 
.lista-casopisa .casopis-photo {
	width: 50px;
}

.lista-casopisa .casopis-list-item {
	clear: both;
	display: table;
	width: 100%;
	margin-bottom: 10px;
}

.lista-casopisa .casopis-items {
	background-color: #fff;
	padding: 20px;
	border-radius: 5px;
}


/* Monografije */

.row-casopis .monografije_box {

}

.row-casopis .monografije_box {
	
}

.short_intro_box {
	display: table;
	margin: 0 auto;
	max-width: 800px;
}

.short_intro_box p {
	font-size: 16px;
	color: #898989;
	text-align: center;
}


.monografija-korice {
	float: left;
	margin-right: 20px;
}

.monografija-info {
	display: table;
}

.monografija-intro-content {
	display: table;
	margin-top: 25px;
	margin-bottom: 20px;
}

.korice-kataloga {
	display: table;
	margin: 0 auto 30px auto;
	border: 2px solid #ccc;
	-webkit-transition: all 0.5s ease-out 0s;
	-moz-transition: all 0.5s ease-out 0s;
	-ms-transition: all 0.5s ease-out 0s;
	-o-transition: all 0.5s ease-out 0s;
	transition: all 0.5s ease-out 0s;

}

.korice-kataloga:hover {
	border: 2px solid #1976d2;
}


/* O nama */
.zaposleni-linkbox {
	display: table;
	margin: 30px auto 0 auto;
}

.zaposleni-linkbox a{
	float: left;
}


.istorijat-link {
	margin: 30px auto;
	display: table;
}


.vizija-misija .sub-text {
	text-align: center;
	max-width: 800px;
	margin-bottom: 50px;
}

.vizija-misija .sub-text:last-child {
	margin-bottom: 0px;
}





/* Izdavaštvo */

.row-about {
	background-color: #f8f8f8;
	width: 100%;
	display: table;
	padding: 20px 0 40px 0;
}

.row-about .wrapper {
	display: table;
    max-width: 800px;
    margin: 0 auto;
}

.row-about:nth-child(even)  {
	background-color: #fff;

}

.row-about h2 {
    color: #1976d2;
    text-align: center;
    margin-bottom: 30px;
}

.row-about p {
	font-size: 16px;
    line-height: 22px;
    color: #444;
}

.row-about .uvodni_tekst {
 	display: table;
    max-width: 800px;
    margin: 0 auto;
}

.row-about .uvodni_tekst p {
	font-size: 16px;
	line-height: 22px;
	text-align: center;
}


/* Slider */
.slider {}

.slider .wrapper { 
	width: 100%;
	height: 100%;
	display: table;
}

.slider .wrapper .slide-head {
	vertical-align:bottom;
	display: table-cell;
	padding-bottom:30px;
}

.slider .wrapper { 
	width: 100%;
	height: 100%;
	display: table;
}

.slider ul {
	margin: 0;
	padding:0;
}

.slider ul li {
	height: 500px;
	background-size: cover;
	background-position: 50% 50%;
}


.slider h1 {
    color: #fff;
    font-size: 40px;
    font-weight: 700;
    line-height: 48px;
    float: left;
    clear: both;
    padding: 7px 10px;
    background-color: rgba(51, 51, 51, 0.55);
}

.slider .intro-text {
    max-width: 800px;
    display: table;
    clear: both;
    padding: 0px 10px;
    background-color: rgba(51, 51, 51, 0.55);
    margin-bottom: 10px;
}

.slider .intro-text p {
	color: #fff;
	font-size: 20px;
	font-weight: 400;
	line-height: 30px;
}

/* Page Slider */
.page-slider {
	position: relative;
	/* height: 500px; */
}

.page-slider .wrapper {
	display: table;
	height: 100%;
}

.page-slider .wrapper .slide-head {
	position: absolute;
    bottom: 0;
}

.page-slider .slide-cnt { 
	width: 100%;
	height: 100%;
	display: table;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	/* background-color: rgba(0, 0, 0, 0.4); */
}

.page-slider ul {
	margin: 0;
	padding:0;
}

.page-slider ul li {
	height: 500px;
	background-size: cover;
	background-position: 50% 50%;
}


.page-slider h1 {
	color: #fff;
    font-size: 40px;
    font-weight: 700;
    line-height: 48px;
    float: left;
    clear: both;
    padding: 7px 10px;
    background-color: rgba(51, 51, 51, 0.55);
}

.page-slider .intro-text {
    max-width: 800px;
    display: table;
    clear: both;
    padding: 0px 10px;
    background-color: rgba(51, 51, 51, 0.55);
    margin-bottom: 10px;
}

.page-slider .intro-text p {
    color: #fff;
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    clear: both;
    display: table;
    margin: 0px 0;
}


/* HOME */
.row-service {
	width: 100%;
	min-height: 120px;
	background-color: #e28b3e;
}

.row-service .service-items {
	width: 100%;
	padding: 0 50px;
}

.row-service .service-item {
	width: 20%;
	float: left;
	height: 120px;
	-webkit-transition: all 0.5s ease-out 0s;
	-moz-transition: all 0.5s ease-out 0s;
	-ms-transition: all 0.5s ease-out 0s;
	-o-transition: all 0.5s ease-out 0s;
	transition: all 0.5s ease-out 0s;
}

.row-service .service-item:hover{
	background-color: rgba(0,0,0,0.2);
}

.row-service .service-item a {
	width: 100%;
	height: 100%;
	display: table;
}

.row-service .service-item .service-icon {
	display: table;
	margin: 0 auto;
	padding-top: 20px;
}

.row-service .service-item h3 {
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	text-align: center;
	margin: 5px 0;
	color: #fffefe;
}

.row-service .service-item:nth-child(2) h3 {
	margin-top: 10px;
}


.content-part {
	background-color: #ececec;
	padding: 50px 0;
}


.content-part .container  {
	padding-left: 0;
	padding-right: 0;
}

.content-part .wrapper {
	width: 100%;
}


main table {
	margin-bottom: 20px;
}

main table, main table td {
	border:1px solid #555;
}

main table thead {
	background-color: #e2e2e2;
}

main table thead td {
	font-size: 16px;
}

main table td {
	font-size: 16px;
	padding: 5px 10px;
}


.col-main {
	width: 100%;
	max-width: 820px;
	display: table;
	float: left;
	margin-right: 20px;
}



.front-news-big {
	width: 100%;
	height: 100%;
	background-color: #FFF;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
	padding: 20px;
}

.front-news-big .thumb {
	width: 81px;
	height: 81px;
	float: left;
	margin-right: 20px;
}

.front-news-big h3 {
	margin-top: -5px;
}

.front-news-big h3 a {
	color: #1976d2;
	font-size: 20px;
	font-weight: 400;
	line-height: 30px;
}

.front-news-big h3 a:hover {
	color: #555;
}

.front-news-big .intro-text ol {
	padding-left: 10px;
}

.front-news-big .intro-text ol li{
	color: #898989;
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
}


.front-news-small {
	width: 100%;
	height: 100%;
	background-color: #FFF;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
	padding: 20px;
}

.front-news-small .thumb {
	width: 50px;
	height: 50px;
	float: left;
	margin-right: 20px;
}

.front-news-small h3 {
	margin-top: -5px;
}

.front-news-small h3 a {
	color: #1976d2;
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
}


.front-news-small h3 a:hover {
	color: #555;
}


.front-news-small .intro-text p, .front-news-big .intro-text p  {
	font-size: 14px;
	font-weight: 400;
	line-height: 24px;
	color: #898989;
}

.col-main .padding-ten {margin-bottom: 20px;}


.col-main .services-title h2 {
	color: #1976d2;
	font-size: 20px;
	font-weight: 700;
	line-height: 30px;
	margin-top: 0;
}

.col-sidebar {
	width: 100%;
	max-width: 360px;
	margin-left: 20px;
	display: table;
}

.col-sidebar .row{
	margin-right: 0;
	margin-left: 0;
	margin-bottom: 20px;
}

.col-sidebar .row.news{
	background-color: #FFF;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
	padding: 20px 0px 20px 0;
}

.col-sidebar h2 {
	color: #1976d2;
	font-size: 20px;
	font-weight: 700;
	line-height: 30px;
	margin-top: 0;
}

.col-sidebar .sidebar-news {
	padding-bottom: 20px;
}


.col-sidebar .sidebar-news {

}

.col-sidebar .sidebar-news .thumb {
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
	width: 29px;
	height: 29px;
	float: left;
	margin: 0 20px 20px 0;
}

.col-sidebar .news-cont {
	display: table;
}

.col-sidebar .sidebar-news h3 {
	margin: -9px 0 12px 0;
}

.col-sidebar .sidebar-news h3 a{
	color: #555;
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
}

.col-sidebar .sidebar-news h3 a:hover{
	color: #337ab7;
}

.col-sidebar span.news-date{
	color: #898989;
	font-size: 12px;
}

.col-sidebar iframe{
	width: 100%;
}

/* PAGE */
.content-main {
    margin-bottom: 20px;
}

.content-main main {
	background-color: #FFF;
	-webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    padding: 20px;

}

.content-main p {
    color: #555;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}



/* Service items - list */
.sub-services .service-item {
	display: table;
	width: 100%;
	margin-bottom: 20px; 
}

.sub-services h2 {
	color: #1976d2;
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
}

    

.sub-services .service-item .service-photo {
	-webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    overflow: hidden;
    float: left;
    margin-right: 20px;
}

.service-item-content {display: table;}

.sub-services .service-item h3 {	
	margin-top: 0;
}

.sub-services .service-item h3 a {
	font-weight: bold;
	font-size: 18px;
}
.sub-services .service-item h3 a:hover {
	color: #1976d2;
}



/* Breadcrumbs */

.breadcrumbs {
	font-size: 18px;
	margin-bottom: 15px;
}

.breadcrumbs a {
	color: #1976d2;
}




/*Single Vesti */
.single-vesti h1.title {
	color: #1976d2;
	margin-top: 0;
}

.single-vesti .datum-posta{
	font-size: 14px;
	margin-bottom: 15px;
	display: table;
}

.single-vesti .datum-posta span{
	font-weight: bold;
	color: #898989;
}

.share-buttons {display: table; margin: 0 auto;}
.share-buttons .hupso_twitter {margin-left: 0;}

/* Kontakt */
.contact-map {
	margin-bottom: 70px;
	margin-left: 0;
	margin-right: 0;
}

.contact-map .mapa iframe{ width: 100%; height: 350px;}

.contact-inner {padding-left: 50px;}
.contact-inner .col {float: left;}
.contact-inner h3 {
	color: #212121;
	font-size: 20px;
	font-weight: 700;
	line-height: 24px;
	margin-bottom: 0;
    margin-top: 25px;
}

.contact-inner p {
	color: #898989;
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;	
}

.menadzment_part {
	width: 100%;
	display: table;
	background-color: #f8f8f8;
	margin-right: 0px;
	margin-left: 0px;
	line-height: 24px;
	font-size: 16px;
	padding: 50px 0;
}

.menadzment_part .wrapper {
	max-width: 1060px;
}
.menadzment_part .profili {
	margin-left: 0;
	margin-right: 0;
}

.menadzment_part .profili .col-sm-4 {
	margin-bottom: 50px;
}

.menadzment_part .profili .col-sm-4:nth-child(4) {
	clear: both;
}

.menadzment_part h2 {
	color: #1976d2;
	font-size: 32px;
	font-weight: 400;
	line-height: 30px;
	text-align: center;
	margin-bottom: 60px;
}

.menadzment_part h3 {
	font-size: 16px;
	color: #1976d2;
	font-weight: 700;
	text-transform: uppercase;
}

.menadzment_part .funkcija {
	color: #212121;
}

.menadzment_part .zvanje {
	color: #898989;
}

.menadzment_part .contact-info span {
	color: #212121;
	font-weight: 700;
}

.menadzment_part .contact-info p{
	color: #1976d2;
	font-weight: 400;
}

.sluzbe {
	padding: 50px 0;
	display: table;
	width: 100%;
}

.sluzbe h2 {
	color: #1976d2;
	font-size: 32px;
	font-weight: 400;
	line-height: 30px;
	text-align: center;
	margin-bottom: 30px;
}

.sluzba {
	border: 1px solid #ccc;
    float: left;
    width: 18%;
    padding: 50px 0 20px 0;
    margin: 0 1%;
    -webkit-transition: all 0.5s ease-out 0s;
	-moz-transition: all 0.5s ease-out 0s;
	-ms-transition: all 0.5s ease-out 0s;
	-o-transition: all 0.5s ease-out 0s;
	transition: all 0.5s ease-out 0s;
}

.sluzba:hover {
	border: 1px solid #1976d2;

}

.sluzba h3 {
	color: #1976d2;
	font-size: 20px;
	font-weight: 700;
	line-height: 24px;
	text-align: center;
}

.sluzba a {
	height: 100%;
	width: 100%;
	display: table;
}

.sluzba img {
	display: table;
	margin: 0 auto;
}



/* Serifikati */
.row-sertifikati {
	padding: 0px 0 20px 0;
	display: table;
	width: 100%;
}

.row-sertifikati .wrapper {
	max-width: 1000px;
}


.row-sertifikati h2 {
	color: #1976d2;
	text-align: center;
	margin-top: 50px;
	margin-bottom: 30px;
}

.content-certificates {
	display: table;
	margin: 0 auto;
}

.row-sertifikati .sertifikat-logo {
	display: table; 
	margin: 0 auto 30px auto;
}

.row-sertifikati .certificates-items {
	display: table;
	text-align: center;
}

.row-sertifikati .certificates-item {
	display: inline-table;
    float: none!important;
    position: relative;
    padding-bottom: 30px;
	margin: 0 10px;
}

.row-sertifikati .certificates-item .certificates-photo{
	border: 2px solid #ccc;
	-webkit-transition: all 0.5s ease-out 0s;
	-moz-transition: all 0.5s ease-out 0s;
	-ms-transition: all 0.5s ease-out 0s;
	-o-transition: all 0.5s ease-out 0s;
	transition: all 0.5s ease-out 0s;
	width: 170px;
}

.row-sertifikati .certificates-item .certificates-photo:hover{
	border: 2px solid #1976d2;
}

.row-sertifikati .certificates-item h3 {
	margin-top: 10px;
}

.row-sertifikati .certificates-item h3 a {
	font-size: 16px;
	color: #1976d2;
	border-bottom: 2px solid transparent;
    -webkit-transition: all 0.5s ease-out 0s;
	-moz-transition: all 0.5s ease-out 0s;
	-ms-transition: all 0.5s ease-out 0s;
	-o-transition: all 0.5s ease-out 0s;
	transition: all 0.5s ease-out 0s;
}

.row-sertifikati .certificates-item h3 a:hover {
	border-bottom: 2px solid #1976d2;;
}

.row-akreditacija {
	background-color: #F8F8F8;
	padding: 30px 0 55px 0;
}

.row-akreditacija h2 {
	color: #1976d2;
	text-align: center;
	margin-bottom: 30px;
}

.row-akreditacija h3 {
	font-size: 20px;
	color: #555;
}

.row-akreditacija p {
	font-size: 16px;
	color: #555;
}

.row-akreditacija ul {
	display: table;
	margin: 0 auto;
}

.row-akreditacija ul li{
	text-align: left;
	font-size: 16px;
	list-style: disc;
}

.row-licence {
	padding: 30px 0 55px 0;	
}

.row-licence h2 {
	color: #1976d2;
	text-align: center;
	margin-bottom: 30px;
}

.row-licence table {
	margin: 0 auto;
	width: 100% !important;
	max-width: 900px;
}

.row-licence table tr {
	margin-bottom: 15px;
	display: table;
	width: 100%;
}

.row-licence table td {
	font-size: 16px;
}

.row-licence-softvera {
	padding: 30px 0 55px 0;
	background-color: #F8F8F8;
}

.row-licence-softvera h2 {
	color: #1976d2;
	text-align: center;
	margin-bottom: 30px;
}

.row-licence-softvera .logo-licence {
	max-width: 200px;
}


.row-licence-softvera .licence-items {
    display: table;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.row-licence-softvera .licence-item {
	display: inline-table;
    float: none!important;
    position: relative;
    padding-bottom: 30px;
	margin: 0 10px;
	vertical-align: middle;
}

.page-template-page-standardi .sub_title {
	max-width: 470px;
}

.row-politika {
	background-color: #f8f8f8;
	padding: 30px 0 50px 0;
	width: 100%;
	display: table;
}

.row-politika h2 {
    color: #1976d2;
    text-align: center;
    margin-bottom: 30px;
}

.row-politika .uvodni_tekst {
 	display: table;
    max-width: 800px;
    margin: 0 auto;
}

.row-politika .uvodni_tekst p {
	font-size: 16px;
	line-height: 22px;
	text-align: center;
}

.row-politika .link-btn {
	margin: 20px auto 0 auto;
	display: table;
}

.row-politika .link-btn a {
	float: left;
}

.row-politika .uvodni_tekst img {
	border: 2px solid #ccc;
	-webkit-transition: all 0.5s ease-out 0s;
    -moz-transition: all 0.5s ease-out 0s;
    -ms-transition: all 0.5s ease-out 0s;
    -o-transition: all 0.5s ease-out 0s;
    transition: all 0.5s ease-out 0s;
}

.row-politika .uvodni_tekst img:hover {
	border: 2px solid #1976d2;
}



.row-politika .uvodni_tekst a.btn-download {
	margin: 20px auto 0 auto;
	display: table;
}


/* Category */
main.cat h1 {
	color: #1976d2;
	margin-bottom: 20px;
}

main.cat article {
	display: table;
	margin-bottom: 20px;
}
   
main.cat .news-cat-img {
	float: left;
	margin-right: 10px;
}

main.cat .news-cat-cnt {
	display: table;
}

main.cat .news-cat-cnt h2 {
	margin-top: 0;
	font-size: 24px;
}


main.cat a.link-right:hover {
	text-decoration: none;
	color: #000;
}


/* Paginacija */

.wp-pagenavi {
	clear: both;
}

.wp-pagenavi a, .wp-pagenavi span {
	text-decoration: none;
	border: 1px solid #197BD2;
	background-color: #197BD2;
	padding: 5px 10px;
	margin: 2px;
	color: #fff;
}

.wp-pagenavi a:hover, .wp-pagenavi span.current {
	border-color: #F57C18;
	background-color: #F57C18;
}

.wp-pagenavi span.current {
	font-weight: bold;
}


/* Projekti*/


/* Resorno ministartstvo */
.row-projekat  {
	background-color: #f8f8f8;
	width: 100%;
	display: table;
	padding: 20px 0 40px 0;
}

.row-projekat:nth-child(even)  {
	background-color: #fff;

}

.row-projekat h2 {
    color: #1976d2;
    text-align: center;
    margin-bottom: 30px;
}

.row-projekat .uvodni_tekst {
 	display: table;
    max-width: 700px;
    margin: 0 auto;
}

.row-projekat .uvodni_tekst p {
	font-size: 16px;
	line-height: 22px;
	text-align: center;
}


.row-projekat .projekti-lista {
	margin: 20px auto 0 auto;
	display: table;
}

.row-projekat .projekti-lista ul{
	list-style: disc;
}

.row-projekat .projekti-lista ul li a{
	font-size: 18px;
	font-weight: bold;
	color: #1976d2;
}

.row-projekat .projekti-lista ul li a:hover{
	text-decoration: underline;
}

.row-projekat  .zaposleni-linkbox {
    display: table;
    margin: 0px auto 0 auto;
}


.row-projekat .projekti-lista.medjunarodni {
	width: 100%;
	max-width: 700px;
}

.row-projekat .projekti-lista.medjunarodni .u-text p{
	color: #555;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}

.row-projekat .sub-services .service-item h3 a {
	font-weight: bold;
    font-size: 22px;
    color: #1976d2;
}    

/* Bootstrap hack */

/* Col fix */
.padding-ten {
	padding-left: 10px !important;
	padding-right: 10px !important;
}

/* Row fix */
.margin-ten {
	margin-left: -10px !important;
	margin-right: -10px !important;
}

/*
.row-eq-height {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display:         flex;
}
*/


/*
.row {
    display: table;
}

[class*="col-"] {
    float: none;
    display: table-cell;
    vertical-align: top;
}
*/



/* footer */
.footer {
	width: 100%;
	background-color: #5d4037;
	display: table;
}

.footer .wrapper {
	padding: 83px 0 29px 0;
	max-width: 1200px;
	width: 100%;
	display: table;
}

.footer .col {
	width: 25%;
	float: left;
}

.footer .company-info p {
	color: #fff;
	font-size: 16px;
	line-height: 24px;
}


.footer .footer-menu {
	padding-left: 90px;
}

.footer h3 {
	color: #fffefe;
	font-size: 20px;
	font-weight: 700;
	margin: 7px 0 20px 0;
}

.footer .footer-menu ul{
	padding: 0;
	margin: 0;
}

.footer .footer-menu ul li a{
	color: #fff;
	font-size: 16px;
	line-height: 24px;
	font-weight: 400;
}

.footer .col p {
	color: #fff;
	font-size: 16px;
	line-height: 24px;
}

.footer .standardi img {
	margin: 0 9px;
}

.footer .copyright {
	border-top: 1px solid  #ebebeb;
}

.footer .copyright p {
	color: #fff;
	font-size: 16px;
	line-height: 24px;
	text-align: center;
	margin: 32px 0;
}

.footer .copyright span{
	font-weight: 700;
}




/* NAV */ 
nav.nav {display:table;}
nav.nav-res {display: none;}



*------------------------------------*\
	TYPOGRAPHY
\*------------------------------------*/

@font-face {
	font-family:'Font-Name';
	src:url('fonts/font-name.eot');
	src:url('fonts/font-name.eot?#iefix') format('embedded-opentype'),
		url('fonts/font-name.woff') format('woff'),
		url('fonts/font-name.ttf') format('truetype'),
		url('fonts/font-name.svg#font-name') format('svg');
    font-weight:normal;
    font-style:normal;
}

/*------------------------------------*\
    RESPONSIVE
\*------------------------------------*/

@media only screen and (max-width:480px) {
	.slider ul li {height: 300px;}
	.page-slider ul li {height: 250px;}
	.footer .col {width: 100%;}
	.footer .footer-menu {padding-left: 0px;}

	.col-sidebar {width: initial; margin-right: 20px;}

	.row-service {min-height: 75px;}
	.row-service .service-items {width: 100%;padding: 0 15px;}
	.row-service .service-item {height: initial;}
	.row-service .service-item h3 {display: none;}
	.row-service .service-item:hover { background-color: transparent; }
	.row-service .service-item .service-icon {width: 80%;}


	/* Slider */
	.slider h1 {font-size: 30px;font-weight: 700;line-height: 30px;}
	.slider .intro-text p {font-size: 14px;line-height: 22px;}
	.page-slider h1 {font-size: 30px;font-weight: 700;line-height: 30px;}
	.page-slider .intro-text p {font-size: 14px;line-height: 22px;}
	.inner-content .cta-green {font-size: 13px; padding: 5px 15px; margin-left: 20px;}

	/* Breadcrumbs */
	.breadcrumbs {font-size: 16px;margin-bottom: 15px;padding: 0 15px;}

	.content-part {padding: 15px 0;}

	.contact-info .contact-inner {padding-left: 0;}

}	

@media only screen and (min-width:480px) and (max-width:640px){
	.row-service {min-height: 75px;}
	.row-service .service-item h3 {display: none;}

}

@media only screen and (min-width:480px) and (max-width:768px){
	.slider ul li {height: 400px;}
	.page-slider ul li {height: 400px;}
	.footer .col {width: 50%;}
	.footer .footer-menu {padding-left: 5%;}
	.footer .footer-contact { clear: both;}
	.footer .standardi {padding-left: 5%;}


	.contact-info .contact-inner {padding-left: 0;}
	.contact-info .col-sm-6 {width: 50%; float: left;}
}


@media only screen and (min-width:768px) and (max-width:1024px){


	.contact-info .contact-inner {padding-left: 30px;}
	
}

@media only screen and (min-width:768px) {
.slider ul li {height: 500px;}
}
@media only screen and (min-width:1024px) {

}
@media only screen and (min-width:1140px) {

}

@media only screen and (max-width:900px) {
	nav.nav {display: none;}
	.header .right-panel {display: none;}
	.zaposleni-linkbox a {clear: both; margin-bottom: 10px;}
}

@media only screen and (min-width:901px) {
	nav.nav-res {display: none!important;}
}

@media only screen and (min-width:901px) and (max-width:950px) {
	.header .logo {margin-right: 0;}
}

@media only screen and (min-width:951px) and (max-width:1050px) {
	.header .logo {margin-right: 50px;}
}


@media only screen and (max-width:640px) {
	.service-item-content {clear: both; margin-top: 10px;}
	.projekti-lista .poject-content {clear: both; margin-top: 10px;display: table;}
	.sub-services .service-item .service-photo {margin-bottom: 15px; display: table;}
	.sub-services .service-item .service-photo img {height: auto;}
	.bx-controls-direction {display: none;}
}


@media only screen and (max-width:1280px) {
	.footer .wrapper {padding-left: 15px; padding-right: 15px;}
}
@media only screen and (-webkit-min-device-pixel-ratio:1.5),
	   only screen and (min-resolution:144dpi) {

}

@media only screen and (max-width:1100px) {
	.footer .wrapper {padding-left: 15px; padding-right: 15px;}
}



/*------------------------------------*\
    MISC
\*------------------------------------*/

::selection {
	background:#04A4CC;
	color:#FFF;
	text-shadow:none;
}
::-webkit-selection {
	background:#04A4CC;
	color:#FFF;
	text-shadow:none;
}
::-moz-selection {
	background:#04A4CC;
	color:#FFF;
	text-shadow:none;
}

/*------------------------------------*\
    WORDPRESS CORE
\*------------------------------------*/

.alignnone {
	margin:5px 20px 20px 0;
}
.aligncenter,
div.aligncenter {
	display:block;
	margin:5px auto 5px auto;
}
.alignright {
	float:right;
	margin:5px 0 20px 20px;
}
.alignleft {
	float:left;
	margin:5px 20px 20px 0;
}
a img.alignright {
	float:right;
	margin:5px 0 20px 20px;
}
a img.alignnone {
	margin:5px 20px 20px 0;
}
a img.alignleft {
	float:left;
	margin:5px 20px 20px 0;
}
a img.aligncenter {
	display:block;
	margin-left:auto;
	margin-right:auto;
}
.wp-caption {
	background:#FFF;
	border:1px solid #F0F0F0;
	max-width:96%;
	padding:5px 3px 10px;
	text-align:center;
}
.wp-caption.alignnone {
	margin:5px 20px 20px 0;
}
.wp-caption.alignleft {
	margin:5px 20px 20px 0;
}
.wp-caption.alignright {
	margin:5px 0 20px 20px;
}
.wp-caption img {
	border:0 none;
	height:auto;
	margin:0;
	max-width:98.5%;
	padding:0;
	width:auto;
}
.wp-caption .wp-caption-text,
.gallery-caption {
	font-size:11px;
	line-height:17px;
	margin:0;
	padding:0 4px 5px;
}
.sticky {

}
.bypostauthor {

}

/*------------------------------------*\
    PRINT
\*------------------------------------*/

@media print {
	* {
		background:transparent !important;
		color:#000 !important;
		box-shadow:none !important;
		text-shadow:none !important;
	}
	a,
	a:visited {
		text-decoration:underline;
	}
	a[href]:after {
		content:" (" attr(href) ")";
	}
	abbr[title]:after {
		content:" (" attr(title) ")";
	}
	.ir a:after,
	a[href^="javascript:"]:after,
	a[href^="#"]:after {
		content:"";
	}
	pre,blockquote {
		border:1px solid #999;
		page-break-inside:avoid;
	}
	thead {
		display:table-header-group;
	}
	tr,img {
		page-break-inside:avoid;
	}
	img {
		max-width:100% !important;
	}
	@page {
		margin:0.5cm;
	}
	p,
	h2,
	h3 {
		orphans:3;
		widows:3;
	}
	h2,
	h3 {
		page-break-after:avoid;
	}
}
