
/* --------------------------
--- GENERAL CSS ---
----------------------------- */
.intro-content,
.mod-intro,
.intro-text {
	min-height: 400px;
}

@media (min-width: 768px) {
	html,
	body,
	.animsition,
	.animsition-overlay,
	.intro-section,
	.intro-content,
	.mod-intro,
	.intro-text {
		height: 100%;
	}
}

html {
	font-size: 17px;
}

body {
	font-family: 'Work Sans', sans-serif;
	font-size: 17px;
	font-weight: normal;
	line-height: 1.8;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-x: hidden; /* fix for aos animation */
}

body.bg-init,
body .animsition-overlay-slide {
	background-color: #fff;
}
body .animsition-overlay-slide {
	z-index: 3001;
}

/* neki fix za component u modalu */
body.contentpane.modal {
	background: none;
	height: auto;
}

/* override default modal class */
/*.modal {
	position: static;
	display: block;
	overflow: visible;
}*/

p {
	margin: 0 0 25px;
}

ul,
ol {
	padding-left: 60px;
	margin-bottom: 25px;
}

p + ul,
p + ol {
	margin: -15px 0 25px;
}

.content ul {
	list-style: none;
	padding-left: 15px;
}
.content ul li {
	position: relative;
	padding-left: 25px;
	line-height: 1.4;
	margin-bottom: 10px;
}
.content ul li:before {
	content: "";
	position: absolute;
	display: block;
	width: 8px;
	height: 2px;
	background: transparent;
	border: 1px solid #00adf2;
	top: 10px;
	left: 0;
}
.content ul li ul {
	margin-top: 10px;
	padding-left: 15px;
}

img {
	height: auto;
	max-width: 100%;
}

h1, h2, h3, h4, h5, h6 {
	line-height: 1.2;
	font-weight: bold;
	margin: 0 0 25px;
	color: #000;
}

h2 {
	font-size: 28px;
	margin-bottom: 25px;
}

h4 {
	margin: 10px 0;
}

a {
	color: #0d4280;
  	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

a:focus,
a:hover {
	color: #333;
	text-decoration: none;
}

/* fix iPhone Safari changing colour of phone numbers */
a[href^=tel] {
	text-decoration:inherit;
	color: inherit;
}

/* --------------------------
--- CLASSES ---
----------------------------- */
.center {
	text-align: center;
}

/* Buttons */
.btn {
	position: relative;
    background: transparent;
    border-color: #000;
	border-width: 1px;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
	font-weight: bold;
    color: #000;
	text-transform: uppercase;
	padding: 15px 50px;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}
.btn:hover,
.btn:focus {
	background: #000;
	color: #fff;
}
.btn:active {
	color: inherit;
	background: none;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
}

.btn-primary,
.btn-primary:hover,
.btn-primary:focus {
	background: transparent;
}
.btn-primary:active:hover,
.btn-primary:active:focus {
	color: inherit;
	background: transparent;
}

.btn-white {
	color: #fff;
	border-color: #fff;
}
.btn-white:hover,
.btn-white:focus {
	color: #0d4280;
	background: #fff;
}

.btn-popup {
	font-size: inherit;
	padding: 0;
}
.btn-popup:before {
	content: "";
}
.btn-popup:after {
    content: "\f08e";
    font-family: 'FontAwesome';
	font-weight: normal;
	padding-left: 6px;
}

.btn-order {
	position: relative;
	display: inline-block;
	min-width: 100%;
	text-align: center;
    background: transparent;
    border: 2px solid #0d4280;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
	font-size: 17px;
	font-weight: normal;
    color: #0d4280;
	padding: 15px 25px;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
	margin-bottom: 15px;
	text-transform: uppercase;
	-webkit-transform: perspective(1px) translateZ(0);
	transform: perspective(1px) translateZ(0);
}
.btn-order:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #0d4280;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 0 50%;
    transform-origin: 0 50%;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
	width: auto;
	height: auto;
}
.btn-order:hover:before,
.btn-order:focus:before,
.btn-order:active:before {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
    transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}
.btn-order:hover,
.btn-order:focus,
.btn-order:active {
	color: #fff;
	border-color: #0d4280;
}
@media (min-width: 768px) {
	.btn-order {
		min-width: 50%;
	}
}


.no-btn {
	background: none;
	border: 0 none;
	padding: 0;
	margin: 0;
	text-transform: uppercase;
	font-size: 17px;
	line-height: 20px;
	vertical-align: baseline;
	color: #acf948;
	font-style: italic;
}
.no-btn:hover,
.no-btn:focus {
	background: none;
	border: 0 none;
	color: #fff;
}

/* Responsive BG image - image-cover */
.article-image {
	overflow: hidden;
	display: block;
}
.image-cover {
	background-size: cover;
	background-position: 50%;
	background-repeat: no-repeat;
	padding-bottom: 66%;
	-webkit-transition: transform 0.35s ease;
	-moz-transition: transform 0.35s ease;
	-o-transition: transform 0.35s ease;
	transition: transform 0.35s ease;
}
.article-image:hover .image-cover,
.article-image:focus .image-cover {
	-webkit-transform: scale(1.05);
	-moz-transform: scale(1.05);
	-o-transform: scale(1.05);
	-ms-transform: scale(1.05);
	transform: scale(1.05);
}

/* imgContainer on mod-intro */
.imgContainer {
	background-size: cover;
	background-position: 50%;
	background-repeat: no-repeat;
	padding-bottom: 66%;
}

/* Tabs */
.nav-tabs {
    border-bottom: 1px solid #0d4280;
	padding-left: 0 !important;
}
.nav-tabs > li {
	padding-left: 0 !important;
}
.nav-tabs > li:before {
	display: none !important;
}
.nav-tabs > li > a {
	background: #0d4280;
	font-size: 20px;
	color: #fff;
	padding: 10px 20px;
}
.nav-tabs > li > a:hover {
	color: #0d4280;
    border-color: rgba(122,30,40,0.6);
}
.nav.nav-tabs > li.active > a,
.nav.nav-tabs > li.active > a:focus,
.nav.nav-tabs > li.active > a:hover {
	color: #0d4280;
	border: 1px solid #0d4280;
	border-bottom-color: transparent;
	background-color: #fff !important;
}
.tab-content {
	border: 1px solid #0d4280;
	border-top: 0;
	padding: 30px;
}
.tab-content .tab-pane h2 {
	margin: 0 0 15px 0;
}
@media (max-width: 767px) {
	.nav-tabs > li {
		margin-bottom: 8px;
	}
}

/* --------------------------
--- MAIN BLOCKS ---
----------------------------- */

/* Module title */
.module-title h3 {
	font-size: 28px;
	padding: 0 0 50px;
	margin: 0;
}

/* modal popup */
.modal-backdrop.in {
    filter: alpha(opacity=80);
    opacity: .8;
}
.modal-content {
	background-color: #0d4280;
	border: 0 none;
	color: #fff;
}
.modal-header {
	padding: 20px 15px 0 15px;
	border: 0 none;
}
.modal .close-button {
	height: 36px;
}
.modal .close-button .close {
	opacity: .8;
	color: #fff;
	font-size: 30px;
}
.modal .close-button .close:hover,
.modal .close-button .close:focus {
	opacity: .5;
}
.modal-content h1,
.modal-content h2,
.modal-content h3,
.modal-content h4 {
	color: #fff;
}
.modal-content ul {
	padding-left: 30px;
}

/* header */
header {
	position: absolute;
	z-index: 30;
	width: 100%;
}

/* Logo */
.brand-container {
	display: inline-block;
	position: absolute;
	top: 20px;
	left: 25px;
	z-index: 1;
}
.navbar-brand {
	float: none;
	display: inline-block;
	height: auto;
	padding: 0;
}
.navbar-brand > img {
	display: inline-block;
	height: 50px;
}
@media (min-width: 992px) {
	.navbar-brand > img {
		height: 82px;
	}
	.brand-container {
		top: 20px;
	}
}

/* lang-switcher */
.lang-switcher {
	float: right;
	color: #fff;
}
.lang-switcher .custom {
	font-size: 17px;
	text-transform: uppercase;
}
.lang-switcher .custom p {
	margin: 0;
}
.lang-switcher .custom a {
	display: inline-block;
	background: none;
    border: 1px solid #fff;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	border-radius: 25px;
    color: #fff;
	padding: 10px 25px;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
	margin: 0 0 0 15px;
}
.lang-switcher .custom a:hover,
.lang-switcher .custom a:focus {
	background: #fff;
	color: #333;
}

/* Main Menu - navbar - navbar-collapse */
nav.navbar {
	display: none;
	margin-top: 40px;
	border: 0 none;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
	margin-bottom: 0;
}
#navbar-default {
	text-align: right;
	padding-left: 200px;
	padding-right: 30px;
}
.navbar .navbar-nav {
	display: inline-block;
	float: none;
}
.navbar .navbar-nav > li {
	float: none;
	display: inline-block;
}
.navbar .navbar-nav li {
	padding: 0 30px;
}
.navbar .navbar-nav a,
.navbar .navbar-nav .nav-header {
  	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}
.navbar .navbar-nav a,
.navbar .navbar-nav .nav-header {
	display: block;
	font-size: 17px;
	font-weight: bold;
	line-height: 20px;
	letter-spacing: -0.5px;
	color: #fff;
	text-transform: uppercase;
	padding: 20px 0;
	background: transparent;
	position: relative;
}
.navbar .navbar-nav a:hover,
.navbar .navbar-nav .nav-header:hover {
	-webkit-transform: translateY(2px);
	-moz-transform: translateY(2px);
	-o-transform: translateY(2px);
	-ms-transform: translateY(2px);
	transform: translateY(2px);
}
.navbar .navbar-nav a:after,
.navbar .navbar-nav .nav-header:after {
	content: "";
	display: block;
	width: 100%;
	height: 2px;
	background: #00adf2;
	position: absolute;
	z-index: -1;
	bottom: 10px;
	opacity: 0;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}
.navbar .navbar-nav a:hover:after,
.navbar .navbar-nav .nav-header:hover:after {
	opacity: 1;
	bottom: 16px;
}
.navbar .navbar-nav .dropdown a {
	padding-right: 0;
}
.nav > li > a:hover,
.nav > li > a:focus {
	background-color: transparent !important;
}
@media (min-width: 992px) {
	nav.navbar {
		display: block;
	}
}

/* Padajuci menu */
.dropdown-menu {
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
	border: 0 none;
	padding: 10px 0 15px;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
	display: block;
	float: none;
	opacity: 0;
	visibility: hidden;
	-webkit-transform: translate3d(0, -5%, 0);
	-moz-transform: translate3d(0, -5%, 0);
	-o-transform: translate3d(0, -5%, 0);
	-ms-transform: translate3d(0, -5%, 0);
	transform: translate3d(0, -5%, 0);
	-webkit-transition: all .6s cubic-bezier(.56,.04,.2,1.01);
	-moz-transition: all .6s cubic-bezier(.56,.04,.2,1.01);
	-o-transition: all .6s cubic-bezier(.56,.04,.2,1.01);
	transition: all .6s cubic-bezier(.56,.04,.2,1.01);
}
.navbar .navbar-nav .dropdown-menu li {
	float: none;
	padding: 0 30px;
	margin: 15px 0;
}
.navbar .navbar-nav .dropdown-menu a {
	display: inline-block;
	color: #808080;
	padding: 0;
}
.navbar .navbar-nav .dropdown-menu a:after {
	bottom: 0;
	background: #e2e2e2;
}
.dropdown-menu > li > a:focus,
.dropdown-menu > li > a:hover,
.dropdown-menu>.active>a:focus,
.dropdown-menu>.active>a:hover {
	background: none;
}
.chevron {
	display: inline-block;
	width: 16px;
	height: 16px;
	background: url('../images/droparrow.svg');
	margin: 0 0 0 10px;
	position: absolute;
	top: 32px;
	right: 10px;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
.navbar .navbar-nav .dropdown .chevron {
	display: none;
}
.dropdown:hover .dropdown-menu {
	display: block;
}
.navbar .navbar-nav li.dropdown:hover .chevron,
.navbar .navbar-nav li.dropdown:focus .chevron {
	-webkit-transform: rotate(180deg);
	-moz-transform: rotate(180deg);
	-o-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	transform: rotate(180deg);
}
.navbar .navbar-nav li.dropdown:hover .dropdown-menu,
.navbar .navbar-nav li.dropdown:focus .dropdown-menu {
    opacity: 1;
    visibility: visible;
	-webkit-transform: translateZ(0);
	-moz-transform: translateZ(0);
	-o-transform: translateZ(0);
	-ms-transform: translateZ(0);
	transform: translateZ(0);
}
@media (min-width: 992px) {
	.chevron {
		right: 20px;
	}
}

/* Hamburger toggle */
.hamburger-container {
	position: absolute;
	z-index: 2008;
	right: 15px;
	top: 41px;
}
.menu-overlay-open .blackBG {
	background: #000;
}
.hamburger {
	width: 60px;
	height: 15px;
	outline: none;
	padding: 0px;
	display: inline-block;
	cursor: pointer;
	transition-property: opacity, filter;
	transition-duration: 0.15s;
	transition-timing-function: linear;
	font: inherit;
	color: inherit;
	text-transform: none;
	background-color: transparent;
	border: 0;
	overflow: visible;
}
.hamburger:hover {
	opacity: 0.7;
}
.hamburger.is-active:hover {
	opacity: 0.7;
}
.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
	background-color: #fff;
}
.hamburger-box {
	width: 60px;
	height: 15px;
	display: inline-block;
	position: relative;
	vertical-align: top;
}
.hamburger-inner {
	display: block;
	top: 50%;
	margin-top: -1px;
}
.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
	width: 60px;
	height: 2px;
	background-color: #fff;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
	position: absolute;
	transition-property: transform;
	transition-duration: 0.15s;
	transition-timing-function: ease;
}
.hamburger-inner::before, .hamburger-inner::after {
	content: "";
	display: block;
}
.hamburger-inner {

}
.hamburger-inner::before {
	top: -6px;
}
.hamburger-inner::after {
	bottom: -6px;
}
@media (min-width: 992px) {
	.hamburger-container {
		top: 43%;
	}
}

/** Stand */
.hamburger--stand .hamburger-inner {
	transition: transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.075s linear;
}
.hamburger--stand .hamburger-inner::before {
    transition: top 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--stand .hamburger-inner::after {
    transition: bottom 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--stand.is-active .hamburger-inner {
	transform: rotate(90deg);
	background-color: transparent !important;
	transition: transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0s 0.15s linear;
}
.hamburger--stand.is-active .hamburger-inner::before {
	width: 60px;
	top: 0;
	transform: rotate(-45deg);
	transition: top 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--stand.is-active .hamburger-inner::after {
	width: 60px;
	bottom: 0;
	transform: rotate(45deg);
	transition: bottom 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/* Menu overlay #navigation */
#navigation {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: #0d4280;
    z-index: 200 !important;
    overflow-y: scroll;
    /*overflow-y: auto;*/
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.nav-black-bg {
	position: absolute;
	width: 100%;
	height: 75px;
	top: 0;
	left: 0;
	background: #0d4280;
	z-index: 1;
}
.fixedBG {
	position: fixed;
}
.nav-container {
	position: relative;
	margin: 0 auto;
	display: table;
	width: 100%;
	height: 100%;
	padding-top: 120px;
	padding-left: 30px;
	padding-right: 30px;
}
.nav-container .nav-cell {
	display: table-cell;
}
.nav-container .cell-1 {
	display: none;
}
.nav-container .cell-2 {
	text-align: right;
}
.nav-container .contact-area {
	color: #fff;
	position: relative;
	filter: alpha(opacity=0);
	opacity: 0;
	right: -30%;
	-webkit-transition: all 0.8s ease;
	-moz-transition: all 0.8s ease;
	-o-transition: all 0.8s ease;
	transition: all 0.8s ease;
}
.nav-container .contact-area .fa {
	margin-right: 5px;
}
.nav-container .contact-area strong {
	font-size: 26px;
	text-transform: uppercase;
}
.nav-logo {
	position: relative;
	margin: 0 0 20px;
}
.nav-logo a {
	display: inline-block;
}
.nav-logo img {
	height: 100px;
}
.nav-animation .navbar-nav {
	margin: 0;
}
.nav-animation .navbar-nav,
.nav-animation ul li {
	float: none;
	margin: 0;
}
.nav-animation ul li a,
.nav-animation ul li .nav-header {
	font-size: 30px;
	font-weight: bold;
	line-height: 20px;
	text-transform: uppercase;
	color: #fff;
	padding: 15px 0;
	position: relative;
	display: inline-block;
}
.nav-animation ul li a:hover,
.nav-animation ul li a:focus {
	-webkit-transform: translateY(2px);
	-moz-transform: translateY(2px);
	-o-transform: translateY(2px);
	-ms-transform: translateY(2px);
	transform: translateY(2px);
}
.nav-animation ul li a:after,
.nav-animation ul li .nav-header:after {
	content: "";
	display: block;
	width: 100%;
	height: 1px;
	background: #fff;
	position: absolute;
	z-index: -1;
	bottom: 10px;
	opacity: 0;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}
.nav-animation ul li a:hover:after,
.nav-animation ul li .nav-header:hover:after {
	opacity: 1;
	bottom: 16px;
}
.nav-animation ul li .chevron {
	background: url('../images/droparrow-white.svg');
	top: 17px;
	right: 5px;
	cursor: pointer;
}
#navigation .dropdown-menu {
	display: none;
	position: static;
	opacity: 1;
	visibility: visible;
	background: none;
	-webkit-transition: none;
	-moz-transition: none;
	-o-transition: none;
	transition: none;
	padding: 10px 0 10px 15px;
}
#navigation .dropdown-menu li {
	margin-bottom: 5px;
}
#navigation .dropdown-menu li a {
	display: inline-block;
	text-transform: none;
	white-space: normal;
	padding: 0;
	background: none;
}
#navigation .dropdown-menu li a:after {
	bottom: 3px;
}
#navigation .dropdown.subopen .chevron {
	-webkit-transform: rotate(180deg);
	-moz-transform: rotate(180deg);
	-o-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	transform: rotate(180deg);
}
.body-overlay {
	position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background: rgba(0,0,0,.7);
    z-index: 100;
	opacity: 0;
	visibility: hidden;
	cursor: pointer;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}
.menu-overlay-open {
	/*overflow-x: hidden;*/
	overflow: hidden;
	padding-right: 15px;
}
.menu-overlay-open .body-overlay {
	opacity: 1;
	visibility: visible;
}
.menu-overlay-open .animsition {
	/*overflow-x: hidden;*/
	overflow: hidden;
	/*transform: scale3d(0.9, 0.9, 0.9);*/
}
#navigation .hamburger {
	margin-top: 30px;
}
#navigation .hamburger-inner,
#navigation .hamburger-inner:before,
#navigation .hamburger-inner:after {
	background-color: #fff;
}
#navigation::-webkit-scrollbar {
	background: none;
	width: 8px;
}
#navigation::-webkit-scrollbar-track {
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
	border-radius: 0;
}
#navigation::-webkit-scrollbar-thumb {
	background: rgba(255,255,255,0.2);
	border-radius: 0;
}
@media (max-width: 1199px) {
	.nav-container .cell-1 {
		font-size: 17px;
		line-height: 1.6;
	}
}
@media (min-width: 768px) {
	.nav-container {
		padding-left: 60px;
		padding-right: 60px;
	}
	.nav-container .cell-1 {
		display: table-cell;
	}
	.nav-animation .navbar-nav,
	.nav-animation ul li {
		margin: 10px 0;
	}
	.nav-animation ul li .chevron {
		top: 36px;
	}
	#navigation .dropdown-menu li a {
		font-size: 24px;
	}
}
@media (min-width: 992px) {
	.nav-container {
		padding-top: 108px;
		padding-left: 90px;
		padding-right: 90px;
	}
	.nav-black-bg {
		height: 100px;
	}
}
@media (min-width: 1200px) {
	.nav-container {
		width: 80%;
		padding-left: 30px;
		padding-right: 30px;
	}

}
@media (min-width: 1600px) {
	.nav-animation ul li a,
	.nav-animation ul li .nav-header {
		font-size: 48px;
		line-height: 1.25;
		padding: 20px 0;
	}
}
@media (orientation: portrait) {
	.nav-container .nav-cell {
		vertical-align: top;
	}
}
@media (orientation: landscape) {
	.nav-container .nav-cell {
		vertical-align: middle;
	}
}

/* Google Map */
#map {
	width: auto;
	height: 500px;
	margin: 0 0 50px 0;
	color: #333;
}

/* main Content */
.content {
	position: relative;
	padding: 0;
}
.inner-content {
	padding-top: 0;
	padding-bottom: 0;
}

/* Footer */
.footer {
	position: relative;
	background: #1e2225;
	color: #fff;
	font-size: 17px;
	line-height: 1.4;
	text-align: center;
	padding: 100px 0 0;
}
.footer a {
	color: #fff;
}
.footer a:hover,
.footer a:focus {
	color: #0d4280;
}
.footer .container {
	position: relative;
}
.footer h3 {
	font-size: calc(1rem + 0.5vw);
	color: #fff;
	margin-bottom: 10px;
}
.footer ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
.footer ul.navbar-nav {
	float: none;
	display: inline-block;
}
.footer ul li {
	float: none;
}
.footer ul li a {
	float: none;
	display: block;
	padding: 0;
	line-height: 1.4;
}
.footer-0 {
	position: relative;
}
.footer-0 p {
	margin-bottom: 15px;
}
.footer-logo {
	margin-bottom: 22px;
}
.footer-logo img {
	width: 80px;
}
.footer-about {
	margin-bottom: 50px;
}
.right-foot ul {
	margin-bottom: 50px;
}
#footer-bg {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	overflow: hidden;
}
#footer-bg img {
	max-width: none;
	opacity: 0.05;
	position: absolute;
	width: 100%;
	right: -2%;
	bottom: 6%;
}
@media (min-width: 768px) {
	#footer-bg img {
		width: 100%;
		right: 0;
		bottom: 0;
	}
	.footer {
		padding: 150px 0 0;
		text-align: left;
	}
	.footer h3 {
		margin-bottom: 20px;
	}
	.footer-0 {
		margin-top: -50px;
		margin-bottom: 80px;
	}
	.izbornik ul li {
		float: left;
		margin-right: 10px;
	}
	.footer-about {
		margin-bottom: 0;
	}
	.footer-2,
	.footer-3 {
		padding-left: 50px;
	}
}
@media (min-width: 992px) {

}
@media (min-width: 1200px) {
	#footer-bg img {
		width: auto;
		height: 120%;
		top: -20%;
		right: -5%;
	}
	.footer-0 {
		margin-top: 0;
		margin-bottom: 0;
	}
	.footer-logo {
		position: absolute;
		top: -37px;
		margin-bottom: 0;
	}
	.footer-about {
		padding-left: 100px;
	}
	.footer-2,
	.footer-3 {
		padding-left: 0;
	}
}
@media (min-width: 1200px) and (max-width: 1299px) {
	.footer .container {
		padding-left: 50px;
		padding-right: 50px;
	}
}

/* footer Copy */
.copy {
	padding: 80px 0 30px;
	font-size: 12px;
}
@media (min-width: 1200px) {
	.copy {
		padding: 280px 0 30px;
	}
}

#back-to-top {
	display: inline-block;
	display: none;
    width: 30px;
    height: 30px;
	cursor: pointer;
    border: 0 none;
	position: fixed;
	bottom: 15px;
	right: 10px;
	z-index: 1000;
	filter: alpha(opacity=0);
	opacity: 0;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}
#back-to-top:after {
    position: absolute;
    top: 50%;
    left: 50%;
    content: '';
    width: 16px;
    height: 16px;
    margin: -4px 0 0 -8px;
    border-right: 4px solid #fff;
    border-top: 4px solid #fff;
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
#back-to-top.reveal {
	filter: alpha(opacity=100);
	opacity: 1;
}
#back-to-top.reachBottom {
	bottom: 15px;
}

/* Cookie Hint */
#redim-cookiehint {
	background: #171b1f;
	padding: 30px 30px;
}
#redim-cookiehint .cookiebuttons {
	padding: 0;
	margin-top: 15px;
}
#redim-cookiehint .cookiebuttons .btn {
	padding: 10px 15px 12px 15px !important;
	color: #fff;
	font-weight: bold;
	background: none;
	border: 1px solid rgba(256,256,256,0.4);
	text-transform: uppercase;
}
#redim-cookiehint .cookiebuttons .btn:hover {
	background: rgba(256,256,256,0.1);
	color: #fff;
}

/* System message */
#system-message-container {
	max-width: 1170px;
	margin: 0 auto;
	padding: 0px 15px;
}
#system-message .alert {
	background: #8EBF5F;
	color: #fff;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 4px;
}
#system-message h4 {
	margin: 5px 0;
	color: #fff;
}
.close {
    float: right;
    font-size: 21px;
    font-weight: 700;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    filter: alpha(opacity=20);
    opacity: .2;
	cursor: pointer;
}

/* bottom module */
.bottom {
	
}

/* bottom-contact-cta */
.moduletable.bottom-contact-cta {
	background: #0d4280;
	color: #fff;
	text-align: center;
	padding: 50px 15px;
}
.moduletable.bottom-contact-cta h3 {
	color: #fff;
}
.moduletable.bottom-contact-cta p {
	margin-bottom: 0;
}

/* newsletter module */
.newsletter {
	position: relative;
	background: #2e2e2e;
	color: #fff;
	padding: 60px 0 40px;
	margin-bottom: 0;
}
.right-pillar {
	display: none;
	position: absolute;
	width: 50px;
	height: 100%;
	right: 0;
	bottom: 0;
	background: #fff;
}
.acym_introtext {
	font-size: 24px;
	line-height: 1.2;
	color: #fff;
	margin-bottom: 30px;
	text-align: center;
}
.acym_form p,
.acysubbuttons {
	margin-bottom: 15px;
}
.newsletter .acym_module_form input {
	max-width: 100%;
	color: #000;
}
.acysubbuttons {
	text-align: center;
}
.newsletter .btn {
	text-transform: lowercase;
}
@media (min-width: 768px) {
	.right-pillar {
		display: block;
	}
	.acym_introtext {
		margin-bottom: 10px;
		text-align: left;
	}
	.acym_form {
		min-width: 50%;
	}
	.acym_form,
	.acysubbuttons {
		display: inline-block;
		vertical-align: middle;
	}
	.acysubbuttons {
		padding-left: 30px;
	}
}

/* --------------------------
--- HOMEPAGE ---
----------------------------- */

/* parallax scene */
#scene-1 {
	position: absolute !important;
	width: 100%;
	height: 100%;
}
#scene-1 .layer-1 {
	width: 100%;
	height: 100%;
}

/* Home - intro-section */
.intro-section {
	position: relative;
	z-index: 20;
	margin-bottom: 0;
	background: #0d4280;
}
.mod-intro {
	position: relative;
}
.intro-bg-container {
	position: absolute;
	top: 0;
	right: 0;
	width: 62%;
	height: 90%;
	overflow: hidden;
}
.intro-bg {
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: 50% 100%;
}
/* Zoom animation for intro-bg */
.intro-bg {-webkit-animation:zoom-animation 15s ease infinite alternate both;animation:zoom-animation 15s ease infinite alternate both}
@-webkit-keyframes zoom-animation{0%{-webkit-transform:scale(1) translateY(0);transform:scale(1) translateY(0);-webkit-transform-origin:50% 84%;transform-origin:50% 84%}100%{-webkit-transform:scale(1.25) translateY(15px);transform:scale(1.25) translateY(15px);-webkit-transform-origin:bottom;transform-origin:bottom}}@keyframes zoom-animation{0%{-webkit-transform:scale(1) translateY(0);transform:scale(1) translateY(0);-webkit-transform-origin:50% 84%;transform-origin:50% 84%}100%{-webkit-transform:scale(1.25) translateY(15px);transform:scale(1.25) translateY(15px);-webkit-transform-origin:bottom;transform-origin:bottom}}
#bg-logo-layer {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	overflow: hidden;
}
#bg-logo-layer img {
	max-width: none;
	opacity: 0.05;
	position: absolute;
	height: 100%;
	top: 0;
	left: -60%;
}
.intro-text {
	position: relative;
	z-index: 1;
	display: table;
	width: 100%;
	height: 100%;
	top: 0;
	padding-top: 60px;
}
.intro-text-row {
	display: table-row;
}
.intro-text-cell {
	display: table-cell;
	vertical-align: middle;
	padding: 0 25px;
}
.intro-text h1 {
	font-size: 32px;
	line-height: 1;
	color: #fff;
	margin: 0 0 10px;
	text-transform: uppercase;
}
.intro-text h1 span {
	display: block;	
}
.titleReveal {
	display: block;
    -webkit-clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 80%);
    clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 80%);
    transform: translateY(-50px);
    opacity: 0;
    animation-name: titleReveal;
    animation-timing-function: ease;
    animation-duration: 1.5s;
	-webkit-animation-fill-mode: forwards;
}
.timing-1 {
	animation-delay: 1.9s;
}
.timing-2 {
	animation-delay: 1.7s;
}
.timing-3 {
	animation-delay: 1.5s;
}
.timing-4 {
	animation-duration: 1s;
	animation-delay: 1.9s;
}
.timing-5 {
	animation-duration: 1s;
	animation-delay: 2.1s;
}
.timing-6 {
	animation-duration: 1s;
	animation-delay: 2.2s;
}
@keyframes titleReveal {
	0% {
		transform: translateY(-50px);
		opacity: 0;
		-webkit-clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 80%);
		clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 80%);
	}
	100% {
		transform: translateY(0);
		opacity: 1;
		-webkit-clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 0);
		clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 0);
	}
}

.intro-text h2 {
	text-transform: uppercase;
	color: #9d9d9d;
	margin-bottom: 0;
}
.intro-text h3 {
	font-size: 20px;
	color: #fff;
	text-transform: uppercase;
	margin: 0;
	font-weight: normal;
}
.intro-text .btn {
	margin: 0;
	text-transform: none;
	font-size: 17px;
}
.bgimage1 {
	position: absolute;
	right: 0;
	top: 0;
	height: 70%;
}
.bgimage1 img {
	height: 100%;
}
.bgimage2 {
	display: none;
	position: absolute;
	left: 0;
	bottom: 100px;
	height: 61%;
}
.bgimage2 img {
	height: 100%;
}
.intro-bottom-layer {
	display: block;
}
.intro-text-row.no2 {
	color: #fff;
}
.intro-text-row.no2 .intro-text-cell {
	height: 80px;
	padding: 0;
}
.scroll-down {
	display: inline-block;
	position: absolute;
    bottom: -28px;
    left: auto;
	right: 20px;
    z-index: 2;
    background: #fff;
	padding: 10px 18px;
}
.scroll-down img {
	width: 12px;
	display: inline-block;
	vertical-align: middle;
}
.scroll-down svg {
	height: 15px;
	fill: #000;
	display: inline-block;
	vertical-align: middle;
}
.scroll-down.desktop {
	display: none;
}
.scroll-down.mobile {
	bottom: 5%;
}
@media (min-width: 480px) {
	#bg-logo-layer img {
		left: -40%;
	}
	.intro-text h1 {
		font-size: calc(1.4rem + 3vw);
	}
	.intro-text h3 {
		font-size: calc(0.7rem + 1vw);
	}
}
@media (min-width: 768px) {
	#bg-logo-layer img {
		left: -50%;
	}
	.intro-text {
		padding-top: 82px;
	}
	.intro-text h3 {
		margin-bottom: 10%;
	}
	.intro-text .btn {
		font-size: 17px;
	}
	.bgimage1 {
		height: 86%;
	}
	.bgimage2 {
		display: block;
	}
	.scroll-down.desktop {
		display: inline-block;
		bottom: 0;
		left: 3%;
		right: auto;
		padding: 14px 20px;
	}
	.scroll-down.desktop img {
		width: 16px;
	}
	.scroll-down.desktop svg {
		height: 20px;
	}
	.scroll-down.mobile {
		display: none;
	}
	.intro-bottom-layer {
		position: absolute;
		z-index: 1;
		width: 65%;
		bottom: 0;
		right: 0;
	}
}
@media (min-width: 992px) {
	#bg-logo-layer img {
		left: -40%;
	}
	.intro-text-cell {
		padding: 0 13%;
	}
	.intro-text h1 {
		font-size: calc(1.4rem + 4vw);
	}
}
@media (min-width: 1200px) {
	#bg-logo-layer img {
		left: -30%;
	}
}

/* Intro: mod-intro-investments */
.mod-intro-investments .item-container {
	position: relative;
}
.mod-intro-investments .item-image {
	position: relative;
	display: block;
}
.mod-intro-investments .item-image:after {
	content: "";
	position: absolute;
	width: 60%;
	height: 100%;
	top: 0;
	left: 0;
	background: rgb(0,0,0);
	background: -moz-linear-gradient(100deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 100%);
	background: -webkit-linear-gradient(100deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 100%);
	background: linear-gradient(100deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#000000",GradientType=1);
	opacity: 0.54;
}
.mod-intro-investments .item .image-cover {
	padding-bottom: 42%;
}
.mod-intro-investments .item-caption {
	position: absolute;
	left: 20px;
	bottom: 20px;
}
.mod-intro-investments .item-caption h3 {
	font-size: 20px;
	font-weight: bold;
	margin: 0;
}
.mod-intro-investments .item-caption a {
	color: #fff;
}
@media (min-width: 480px) {
	.mod-intro-investments .item {
		float: left;
		width: 50%;
	}
}

/* wwd block */
.wwd {
	position: relative;
	z-index: 30;
	background: #fff;
}

/* wwd-1 module */
.wwd-1 {
	padding: 0;
	margin-bottom: 40px;
}
.wwd-1-inner {
	padding: 0;
	line-height: 1.4;
}
.wwd-1 .txt-2 {
	color: #969696;
}
.wwd-1 .cell-1 {
	padding: 40px 10px 50px;
}
.wwd-1 .cell-2 {
	margin: 0 -15px;
}
.wwd-1 .cell-1 h2 {
	font-size: calc(1.4rem + 1vw);
}
.wwd-1 .cell-1 .btn {
	margin-top: 15px;
}
@media (min-width: 768px) {
	.wwd-1 {
		margin-bottom: 0;
	}
	.wwd-1 div[class^="col-sm"] + div[class^="col-sm"] {
		background: #0d4280;
		padding: 6% 8vw 6% 0;
	}
	.wwd-1 .cell-1 {
		margin: 0;
		padding: 15% 120px 15% 8vw;
	}
	.wwd-1 .cell-2 .article-image {
		margin-left: -80px;
	}
	.wwd-1-inner > .row {
		display: table;
		width: 100%;
		margin: 0;
	}
	.wwd-1-inner > .row:before,
	.wwd-1-inner > .row:after {
		display: none;
	}
	.wwd-1-inner > .row div[class^="col-sm"] {
		float: none;
		display: table-cell;
		vertical-align: middle;
		padding: 0;
	}
	.wwd-1 .txt-2 {
		display: none;
	}
}
@media (min-width: 992px) {
	.wwd-1 {
		margin-bottom: 60px;
	}
	.wwd-1 .cell-1 {
		padding: 15% 150px 15% 8vw;
	}
}
@media (min-width: 1200px) {
	.wwd-1 .txt-2 {
		display: block;
	}
}
@media (min-width: 1400px) {
	.wwd-1 .cell-1 {
		padding: 15% 20vw 15% 8vw;
	}
}

/* wwd-2 module */
.wwd-2 {
	margin-bottom: 40px;
}
.wwd-2 .module-title {
	padding: 0 25px;
}
.wwd-2 .module-title h3 {
	padding: 0;
}
.wwd-2 .col-1 .image-cover {
	padding-bottom: 80%;
}
.wwd-2 .col-2 {
	padding: 0 15px;
}
@media (min-width: 768px) {
	.wwd-2 .module-title {
		display: none;
		padding: 0 15px;
	}
	.wwd-2-container {
		display: table;
		width: 100%;
	}
	.wwd-2-container .col-item {
		display: table-cell;
		width: 50%;
		vertical-align: middle;
	}
	.wwd-2 .col-1 {
		position: relative;
		right: 50%;
	}
	.wwd-2 .col-2 {
		position: relative;
		left: 50%;
	}
	.wwd-2 .col-1 .image-cover {
		padding-bottom: 110%;
	}
}
@media (min-width: 1200px) {
	.wwd-2 .col-1 .image-cover {
		padding-bottom: 100%;
	}
}
@media (min-width: 1600px) {
	.wwd-2 .col-1 .image-cover {
		padding-bottom: 90%;
	}
}

/* wwd-consulting-usluge */
.wwd-consulting-usluge .row > div {
	padding-top: 15px;
	padding-bottom: 15px;
}
.wwd-consulting-usluge .item {
	text-align: center;
	margin: 1px;
    -webkit-transition: all 0.6s ease;
    -moz-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
    transition: all 0.6s ease;
}
.wwd-consulting-usluge .item:hover,
.wwd-consulting-usluge .item:focus {
    -webkit-box-shadow: 0 10px 40px 0 rgba(0,0,0,.3);
    -moz-box-shadow: 0 10px 40px 0 rgba(0,0,0,.3);
    box-shadow: 0 10px 40px 0 rgba(0,0,0,.3);
}
.wwd-consulting-usluge .item a {
	display: block;
	color: #000;
	padding: 10% 0;
}
.wwd-consulting-usluge .item img {
	margin-bottom: 20px;
	width: 33%;
}
.wwd-consulting-usluge .item h3 {
	font-size: 17px;
	color: #000;
}
.wwd-consulting-usluge .i0 .item-container:before,
.wwd-consulting-usluge .i2 .item-container:before {
	content: "";
	display: block;
	width: 1px;
	height: 80%;
	background: #ddd;
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
}
.wwd-consulting-usluge .i0 .item-container:after,
.wwd-consulting-usluge .i1 .item-container:after {
	content: "";
	display: block;
	width: 90%;
	height: 1px;
	background: #ddd;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
}
@media (min-width: 768px) {
	.wwd-2-inner > .row {
		display: table;
		width: 100%;
	}
	.wwd-2-inner > .row > .col-sm-6 {
		float: none;
		display: table-cell;
		vertical-align: middle;
	}
	.wwd-consulting-usluge .i2 .item-container:after {
		display: none;
	}
}

/* wwd-3-investicije */
.wwd-3-investicije .category-module {
	position: relative;
}
.wwd-3-investicije .module-title {
	padding: 0 15px;
	margin-bottom: 30px;
}
.wwd-3-investicije .module-title h3 {
	padding: 0;
}
.wwd-3-investicije .col-txt {
	padding: 40px 10px 15px;
	color: #969696;
}
.wwd-3-investicije .col-txt h2 {
	font-size: calc(1.4rem + 1vw);
}
.wwd-3-investicije .col-mod-category {
	margin: 0 -15px;
}
.wwd-3-investicije .item-container {
	position: relative;
}
.wwd-3-investicije .item-image {
	position: relative;
	display: block;
}
.wwd-3-investicije .item-image:after {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: rgb(0,0,0);
	background: -moz-linear-gradient(100deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 100%);
	background: -webkit-linear-gradient(100deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 100%);
	background: linear-gradient(100deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#000000",GradientType=1);
	opacity: 0.54;
}
.wwd-3-investicije .item .image-cover {
	padding-bottom: 42%;
}
.wwd-3-investicije .item-caption {
	position: absolute;
	width: 100%;
	padding: 0 15px;
	text-align: center;
	top: 50%;
	-webkit-transform: translate(0%, -50%);
	-moz-transform: translate(0%, -50%);
	-o-transform: translate(0%, -50%);
	-ms-transform: translate(0%, -50%);
	transform: translate(0%, -50%);
}
.wwd-3-investicije .item-caption h3 {
	font-size: 20px;
	font-weight: bold;
	text-transform: uppercase;
	margin: 0;
}
.wwd-3-investicije .item-caption a {
	color: #fff;
}
@media (min-width: 480px) {
	.wwd-3-investicije .module-title h3 {
		font-size: calc(1.4rem + 6vw);
	}
}
@media (min-width: 768px) {
	.wwd-3-investicije .module-title {
		margin-bottom: -3vw;
		text-align: center;
	}
	.wwd-3-investicije .module-title h3 {
		padding: 0;
		color: #fff;
		letter-spacing: 10px;
		text-shadow: 0 0 3px rgba(0,0,0,0.3);
	}
	.wwd-3-investicije .col-txt {
		padding: 60px 20vw 30px 8vw;
	}
	.wwd-3-investicije .mod-items .item {
		float: left;
		width: 50%;
		padding-bottom: 0;
	}
	.wwd-3-investicije .item-caption h3 {
		font-size: calc(1.4rem + 1vw);
	}
}
@media (min-width: 992px) {
	.wwd-3-investicije .module-title {
		margin-bottom: -4vw;
	}
	.wwd-3-investicije .module-title h3 {
		font-size: calc(2rem + 8vw);
	}
	.wwd-3-investicije .col-txt {
		padding: 15% 8vw 0;
	}
	.wwd-3-investicije .item .image-cover {
		padding-bottom: 58%;
	}
}
@media (min-width: 1200px) {
	.wwd-3-investicije .item .image-cover {
		padding-bottom: 50%;
	}
	.wwd-3-investicije .module-title h3 {
		font-size: calc(1.6rem + 12vw);
	}
}

/* home-1 */
.home-1 {
	position: relative;
	z-index: 1;
	overflow: hidden;
	margin-bottom: 0;
}

/* home-news */
.mod--home-news {
	margin-bottom: 50px;
}
.mod--home-news .more-news {
	display: none;
	margin-bottom: 25px;
}
.mod--home-news.cat-novosti {
	margin-bottom: 0;
}
.mod--home-news.cat-novosti .more-news {
	display: block;
	text-align: center;
}
.mod--home-news .module-title h3 {
	position: relative;
	/*font-size: 50px;*/
	font-size: calc(1.4rem + 18vw);
	line-height: 0.8;
	padding: 0;
	color: #f8f8f8;
	margin: 50px 0 30px;
}
.mod--home-news .article-item {
	margin: 0 15px 40px;
}
.mod--home-news .article-image {
	margin-bottom: 15px;
}
.mod--home-news .article-title {
	/*font-size: 36px;*/
	font-size: calc(1.4rem + 1vw);
	margin-bottom: 5px;
}
.mod--home-news .article-title a {
	color: #595959;
}
.mod-articles-category-introtext {
	font-size: 17px;
	line-height: 20px;
	color: #ababab;
}
@media (min-width: 480px) {
	.mod--home-news .module-title h3 {
		font-size: calc(1.4rem + 24vw);
	}
}
@media (min-width: 768px) {
	.mod--home-news {
		margin-bottom: 100px;
	}
	.mod--home-news .module-title h3 {
		font-size: 210px;
		top: 60px;
		margin: 0;
	}
	.mod--home-news .article-item {
		margin: 0;
	}
	.mod--home-news .article-image {
		margin-bottom: 30px;
	}
}
@media (min-width: 992px) {
	.mod--home-news .article-item {
		margin: 0 15px;
	}
	.mod--home-news .module-title h3 {
		font-size: 274px;
	}
}
@media (min-width: 1200px) {
	.mod--home-news .module-title h3 {
		font-size: 330px;
	}
	.mod-articles-category-introtext {
		font-size: 17px;
	}
}

/* --------------------------
--- CATEGORY PAGE ---
----------------------------- */

/* Category Blog */
.blog {
	margin-top: 0;
}
.category-main-content {
	padding: 0;
}
.category-header {
	position: relative;
	margin-bottom: 40px;
	/*background-size: cover;
	background-repeat: no-repeat;
	background-position: 100% 50%;
	background-image: url('../images/intro.jpg');*/
	padding: 0 10px;
	background-color: #0d4280;
}
.category-header-inner {
	position: relative;
	padding: 100px 0 30px;
}
.category-header a,
.category-header h2,
.category-header h3,
.category-header h4 {
	color: #fff;
}
.category-header h2 {
	font-size: 36px;
	margin-bottom: 45px;
	text-transform: uppercase;
}
.category-header .category-desc {
	display: inline-block;
	font-size: 17px;
	line-height: 1.4;
}
.category-body {
	padding: 0 10px;
}
.items-leading {
	position: relative;
	margin-bottom: 50px;
}
.items-leading .blog-list-thumb {
	margin-bottom: 0;
	padding-bottom: 0;
}
.items-leading .title-container h2 {
	font-size: 36px;
}
.catitem {
	position: relative;
	margin-bottom: 50px;
}
.category-name {
	display: inline-block;
	background: #fff;
	padding: 10px;
	font-size: 10px;
	line-height: 20px;
	text-transform: uppercase;
	margin-bottom: 20px;
}
.category-name a {
	color: #fff;
}
.date-published {
	font-size: 17px;
	color: #666;
}
.blog-list-content {
	position: relative;
}
.blog-list-content .article-image {
	display: block;
}
.blog-list-content .introtext {
	margin: 15px 0;
	float: left;
	width: 60%;
	padding-right: 10%;
}
.blog-list-content .introtext p a:not(.btn) {
	color: #0d4280;
}
.blog-list-content .introtext a {
	color: #fff;
}
.readmore {
	display: none;
	text-transform: lowercase;
}
.read-more-container {
	text-align: right;
}
.read-more-container .read-more {
	display: inline-block;
	position: static;
}
.read-more-container .read-more .btn-txt {
	opacity: 1;
	transform: translateX(-10px);
}
.items-row .item {
	margin-bottom: 30px;
}
.blog-list-content h2 {
	font-size: 28px;
	margin: 15px 0 10px;
}
.blog-list-thumb {
	display: none;
	position: relative;
	z-index: 1;
	background: #fff;
}
.items-leading .news-container {
	margin-bottom: 0;
}
.blog-list-thumb .image-cover {
    padding-bottom: 56%;
}
@media (min-width: 480px) {
	.category-header h2 {
		font-size: calc(1.4rem + 3vw);
	}
}
@media (min-width: 768px) {
	.category-header {
		margin-bottom: 80px;
		padding: 0;
	}
	.category-header-inner {
		padding: 180px 0 30px;
	}
	.category-body {
		padding: 0;
	}
	.blog-list-thumb {
		float: left;
		width: 40%;
		margin-bottom: 50px;
	}
	.blog-list-content.withThumb {
		padding-left: 0;
	}
}
@media (min-width: 992px) {
	.category-header-inner {
		padding: 230px 0 80px;
	}
	.blog-list-thumb .image-cover {
		padding-bottom: 70%;
	}
}
@media (min-width: 1200px) {
	.category-header h2 {
		font-size: calc(1rem + 3vw);
	}
	.blog-list-thumb .image-cover {
		padding-bottom: 56%;
	}
}

/* subcategory-modules (Odvjetnici i Vjezbenici) */
.subcategory-modules {}
.subcategory-items .article-item {
	padding: 0;
	margin-bottom: 50px;
}
.subcategory-items .article-item-inner {
	position: relative;
	overflow: hidden;
}
.subcategory-items .article-item-inner:hover .image-cover {
	-webkit-transform: scale(1.05);
	-moz-transform: scale(1.05);
	-o-transform: scale(1.05);
	-ms-transform: scale(1.05);
	transform: scale(1.05);
}
.subcategory-items .article-item .article-data {
	position: absolute;
	width: 100%;
	bottom: 0;
	left: 0;
}
.subcategory-items .article-item .article-data h3 {
	font-size: 19px;
	text-transform: uppercase;
	color: #fff;
	margin: 0;
}
.subcategory-items .article-item .article-data h3 a {
	display: block;
	color: #fff;
	padding: 50px;
}
.read-more {
	display: none;
	position: absolute;
	top: 30px;
	right: 30px;
	z-index: 1;
}
.subcategory-items .read-more {
	display: block;
}
.read-more:hover .btn-txt {
	opacity: 1;
	transform: translateX(0);
}

.btn-txt {
	display: inline-block;
	vertical-align: middle;
	color: rgba(255,255,255,0.3);
	margin-right: 5px;
	opacity: 0;
	transform: translateX(30px);
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}
.mod--odvjetnici {
	margin-bottom: 100px;
}
.mod--vjezbenici .subcategory-items .article-item .article-data {
	background: rgba(0,0,0,0.4);
}
.mod--vjezbenici .subcategory-items .article-item .article-data h3 {
	padding: 50px;
}
@media (min-width: 768px) {
	.subcategory-items .article-item {
		float: left;
		width: 50%;
	}
}
@media (min-width: 992px) {
	.subcategory-items .article-item {
		width: 33%;
	}
}


/* --------------------------
--- ARTICLE PAGE ---
item-page (default-item)
news-item
----------------------------- */
.item-page {
	display: block;
}

/* article header */
.page-header {
	border: 0 none;
	margin: 0;
	padding: 0;
}
.item-page .article-header {
	position: relative;
	/*background-size: 120%;
	background-repeat: no-repeat;
	background-position: 100% 0%;
	background-image: url('../images/intro-bg.jpg');*/
	margin-bottom: 40px;
	padding: 0 10px;
	background-color: #0d4280;
	background-size: cover;
	background-position: 100% 50%;
}
.item-page .article-header .image-intro {
	display: none;
	position: relative;
}
.item-page .article-header .image-intro:after {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: rgb(0,0,0);
	background: -moz-linear-gradient(0deg, rgba(0,0,0,0) 49%, rgba(0,0,0,0.6) 100%);
	background: -webkit-linear-gradient(0deg, rgba(0,0,0,0) 49%, rgba(0,0,0,0.6) 100%);
	background: linear-gradient(0deg, rgba(0,0,0,0) 49%, rgba(0,0,0,0.6) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#000000",GradientType=1);
	opacity: 0.65;
}
.item-page .article-header .container {
	position: relative;
	z-index: 1;
}
.item-page .article-header-inner {
	position: relative;
	padding: 130px 0 30px;
}
.item-page .article-header .title-container h2 {
	font-size: 36px;
	margin: 0 0 15px;
	text-transform: uppercase;
}
.item-page .date-published {
	font-size: 17px;
	color: #fff;
}
.item-page .article-introtext {
	display: block;
	color: #fff;
	font-size: 17px;
	line-height: 1.4;
}
.item-page .article-header h2,
.item-page .article-header h3,
.item-page .article-header h4,
.item-page .article-introtext a {
	color: #fff;
}
#article-header-bg {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	overflow: hidden;
}
#article-header-bg img {
	max-width: none;
	opacity: 0.05;
	position: absolute;
	height: 110%;
	top: -5%;
	left: -50%;
}
@media (min-width: 480px) {
	.item-page .article-header .title-container h2 {
		font-size: 60px;
		font-size: calc(1.4rem + 3vw);
	}
	.item-page .headerw60 {
		width: 80%;
	}
	#article-header-bg img {
		left: -30%;
	}
}
@media (min-width: 768px) {
	#article-header-bg img {
		height: 120%;
		top: -10%;
		left: -30%;
	}
	.item-page .article-header {
		margin-bottom: 80px;
		padding: 0;
	}
	.item-page .article-header-inner {
		padding: 180px 0 30px;
	}
	.item-page .headerw50 {
		padding-right: 20%;
	}
	.item-page .article-header .image-intro {
		display: block;
		background-size: cover;
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		width: 45%;
	}
}
@media (min-width: 768px) and (max-width: 991px) {
	.item-page .article-header .image-intro:after {
		background: rgba(0,0,0,0.6);
	}
}
@media (min-width: 992px) {
	#article-header-bg img {
		left: -40%;
	}
	.item-page .article-header-inner {
		padding: 230px 0 160px;
	}
	.item-page .headerw60 {
		width: 60%;
		font-size: 17px;
	}
	.item-page .headerw50 {
		width: 45%;
		padding-right: 5%;
	}
}
@media (min-width: 1200px) {
	#article-header-bg img {
		left: -24%;
	}
	.item-page .article-header .title-container h2 {
		font-size: calc(1rem + 3vw);
	}
	.item-page .article-header .image-intro {
		width: 55%;
	}
	.item-page .article-introtext.headerw50 {
		padding-right: 10%;
	}
}

/* article body */
.item-page .article-body {
	position: relative;
}
.item-page .article-body-inner {
	padding: 0;
}
.item-image img { /* to treba ??? */
	padding: 15px;
	-webkit-box-shadow: 0px 0px 10px #ccc;
	-moz-box-shadow: 0px 0px 10px #ccc;
	box-shadow: 0px 0px 10px #ccc;
	margin: 0 30px 30px 0;
}
.item-page .article-body h1 {
	font-size: 36px;
	margin: 80px 0;
}
.item-page .article-body h2 {
	position: relative;
	margin: 20px 0 30px;
}
.item-page .article-body h4 {
	font-weight: bold;
}
@media (min-width: 768px) {
	.item-page .article-body .image-intro {
		display: none;
	}
}

/* news-item */
.item-page.news-item .article-header {
	background-image: none;
}
.news-item .article-header-inner {
	padding: 100px 0 60px;
}
.article-header .author {
	font-size: 24px;
	color: #0d4280;
}
.news-item .articleText {
	-webkit-box-shadow: 10px 10px 40px rgba(0, 0, 0, 0.2);
	-moz-box-shadow: 10px 10px 40px rgba(0, 0, 0, 0.2);
	box-shadow: 10px 10px 40px rgba(0, 0, 0, 0.2);
	padding: 5% 0 3%;
}
@media (min-width: 480px) {
	.news-item .article-header .title-container h2 {
		font-size: calc(1.4rem + 2vw);
	}
}
@media (min-width: 768px) {
	.news-item .article-header-inner {
		padding: 180px 0 30px;
	}
}
@media (min-width: 992px) {
	.news-item .article-header-inner {
		padding: 230px 0 80px;
	}
	.news-item .articleText,
	.pagenav {
		width: 70%;
	}
}
@media (min-width: 1200px) {
	.news-item .article-header .title-container h2 {
		font-size: calc(1rem + 2vw);
	}
}

/* rightArticle */
.rightArticle {
	padding-left: 0;
	margin-top: 60px;
}
.rightArticle .moduletable {
	position: relative;
}
.rightArticle ul {
	padding: 0;
}
.rightArticle ul li {
	margin-bottom: 0;
}
.rightArticle h3 {
	font-size: 20px;
	padding-left: 15px;
	margin-bottom: 20px;
	border-bottom: 1px solid #eee;
	padding-bottom: 15px;
}
.rightArticle h3:before {
	content: "";
	display: block;
	width: 6px;
	height: 15px;
	background: #0d4280;
	position: absolute;
	left: 0;
	top: 5px;
}
.rightArticle .category-module .article-image {
	margin-bottom: 0px;
}
.rightArticle .image-cover {
	padding-bottom: 100%;
}
.rightArticle h4 {
	font-size: 17px;
	margin: 0px 0;
}
.rightArticle a {
	color: #000;
}
.mod-articles-category-category {
	font-size: 12px;
	display: block;
	margin: -3px 0 3px;
}
.mod-articles-category-category a {
	color: #000;
}
.mod-list-thumb {
	float: left;
	width: 30%;
	margin-bottom: 30px;
}
.mod-list-content {
	padding-left: 35%;
	margin-bottom: 15px;
}
@media (min-width: 480px) {
	.rightArticle h4 {
		font-size: 4vw;
	}
}
@media (min-width: 768px) {
	.rightArticle {
		margin-top: 0;
	}
	.rightArticle h4 {
		font-size: 17px;
		height: 64px;
		overflow: hidden;
	}
}
@media (min-width: 992px) {
	.rightArticle {
		padding-left: 30px;
	}
	.rightArticle h4 {
		height: auto;
	}
}

/* Simple Image Gallery */
ul.sigProResponsive li.sigProThumb a.sigProLink {
	color: #e9eaeb;
	background-color: #e9eaeb;
	border: 6px solid #e9eaeb;
}
ul.sigProResponsive span.sigProPseudoCaption {
	background: #e9eaeb;
}
ul.sigProResponsive span.sigProCaption {
	color: #000;
}
ul.sigProResponsive li.sigProThumb a.sigProLink:hover {
	color: #27303a;
	background-color: #27303a;
	border: 6px solid #27303a;
}
ul.sigProResponsive li.sigProThumb a.sigProLink:hover span.sigProPseudoCaption {
	background: #27303a;
}
ul.sigProResponsive li.sigProThumb a.sigProLink:hover span.sigProCaption {
	color: #fff;
}
.nivo-lightbox-theme-default.nivo-lightbox-overlay {
	background: rgba(17,17,17,0.99);
}
.nivo-lightbox-theme-default .nivo-lightbox-close {
	background-position: 0 0;
}

/* Simple Image Gallery - natural-photos */
.article-gallery.sigProContainer {
	padding-bottom: 15px;
}
.natural-photos .photo-item,
.natural-photos .photo-item .image-cover {
	position: relative;
}
.natural-photos .photo-item .image-cover:after {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: #000;
	opacity: 0;
	-webkit-transition: all 0.4s ease-in-out;
	-moz-transition: all 0.4s ease-in-out;
	-o-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
}
.natural-photos .photo-item:hover .image-cover:after {
	opacity: 0.7;
}
.btn-plus {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	display: inline-block;
	vertical-align: middle;
	width: 5vw;
	height: 5vw;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
	opacity: 0;
}
.natural-photos .photo-item:hover .btn-plus {
	opacity: 1;
}
.btn-plus:before {
	position: absolute;
	top: 50%;
	margin-top: -0.5px;
	left: 10px;
	right: 10px;
	content: "";
	display: block;
	height: 1px;
	background: rgba(255,255,255,0.5);
}
.btn-plus:after {
	position: absolute;
	top: 10px;
	bottom: 10px;
	left: 50%;
	margin-left: -0.5px;
	content: "";
	display: block;
	width: 1px;
	background: rgba(255,255,255,0.5);
}
@media (min-width: 768px) {
	.natural-photos-container {
		margin: 0 -15px;
	}
	.natural-photos .photo-item {
		float: left;
		width: 50%;
		padding: 15px;
	}
}
@media (min-width: 992px) {
	.natural-photos .photo-item {
		width: 33.3333%;
	}
}

/* social share */
div.s2s_supra_contenedor {
	clear: none;
	margin-top: 20px;
	margin-left: -6px;
}
.s2s_contenedor.s2s-btn-group > div.s2s_btn {
	border-left: 0 none;
	margin-right: 10px;
}
.blog div.s2s_supra_contenedor {
	display: none;
}

/* navigacija */
.pagenav {
	margin: 30px 0;
	padding-top: 30px;
	padding-left: 0 !important;
}
.pager li {
	padding-left: 0 !important;
}
.pager li:before {
	display: none;
}
.pager li > a,
.pager li > span {
	font-size: 17px;
	background: none;
	border: 0 none;
	padding: 0;
	color: #333;
}
.pager li > a:hover,
.pager li > a:focus {
	background: none;
	color: #fff;
}
.pager li > a:hover .dir-label svg,
.pager li > a:focus .dir-label svg {
	fill: #fff;
}
.pager .previous>a, .pager .previous>span {
	width: 50%;
	text-align: left;
}
.pager .next>a, .pager .next>span {
	width: 49%;
	text-align: right;
}
.dir-label {
	display: block;
	text-transform: uppercase;
	position: relative;
	padding: 0;
}
.dir-label svg {
	width: 16px;
	fill: #333;
	position: relative;
	-webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
.previous .chevron,
.previous .dir-label svg {
	left: 0;
	top: 3px;
	margin: 0;
	transform: rotate(90deg);
}
.next .chevron,
.next .dir-label svg {
	right: 0;
	top: 3px;
	margin: 0;
	transform: rotate(-90deg);
}

/* article-bottom */
.article-bottom {

}

/* --------------------------
--- SUB SPECIFIC PAGES ---
----------------------------- */

/* Opcenito - clanak */
.block-2 {
	position: relative;
	background: #efefef;
}
.block-3 {
	position: relative;
}
.block-4 {
	position: relative;
	background: #efefef;
}
.block-6 {
	position: relative;
}
.block-videos .video {
	position: relative;
}
.block-videos .video:hover .play-icon .fa {
	color: #FF0000;
}
.block-videos .video .modal {
	position: static;
	display: block;
}
.play-icon {
    position: absolute;
    z-index: 1;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 20vw;
    height: 20vw;
}
.play-icon .fa {
    font-size: 20vw;
    color: rgba(255,255,255,0.5);
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}
@media (min-width: 768px) {
	.block-videos {
		margin: 0 -15px 30px;
	}
	.block-videos .video {
		float: left;
		width: 50%;
		padding: 0 15px;
		margin-bottom: 0;
	}
	.play-icon {
		width: 10vw;
		height: 10vw;
	}
	.play-icon .fa {
		font-size: 10vw;
	}
}
@media (min-width: 992px) {
	.block-videos .video .image-cover {
		padding-bottom: 56.25%;
	}
	.play-icon {
		width: 8vw;
		height: 8vw;
	}
	.play-icon .fa {
		font-size: 8vw;
	}
}
@media (min-width: 1200px) {
	.play-icon {
		width: 6vw;
		height: 6vw;
	}
	.play-icon .fa {
		font-size: 6vw;
	}
}
@media (min-width: 1600px) {
	.play-icon {
		width: 4vw;
		height: 4vw;
	}
	.play-icon .fa {
		font-size: 4vw;
	}
}

/* O nama */
.page.o-nama .item-page .article-header {
	background-color: #1e2225;
	margin-bottom: 0;
}
.page.o-nama .block-1 {
	background: #1e2225;
	color: #fff;
	padding: 50px 10px 30px;
}
.page.o-nama .block-1 h3 {
	color: #fff;
}
.page.o-nama .block-1 ul {
	padding: 0;
}
.page.o-nama .content .block-1 ul li {
	margin-bottom: 0;
}
.page.o-nama .block-1 .articleText img {
	width: 72px;
	padding: 12px;
}
.page.o-nama .block-1 .row div[class*="col-"] p:first-child {
	display: inline-block;
	background: #292d30;
	-webkit-border-radius: 100px;
	-moz-border-radius: 100px;
	border-radius: 100px;
}
.page.o-nama .tim-reference {
	padding: 50px 0 0;
}
.page.o-nama .tim-reference h2 {
	font-size: 36px;
	text-transform: uppercase;
	margin: 0 0 30px;
	text-align: center;
}
.page.o-nama .tim-reference h3 {
	font-size: 28px;
	text-transform: uppercase;
	margin: 0 0 30px;
	text-align: center;
}
.page.o-nama .tim-reference ul {
	list-style: none;
	padding: 0;
	margin: 0;
	overflow: hidden;
}
.page.o-nama .tim-reference ul li:before {
	display: none;
}
.page.o-nama .tim-reference ul li {
	float: left;
	width: 50%;
	padding: 0 15px;
	min-height: 86px;
	margin-bottom: 40px;
	text-align: center;
}
.page.o-nama .tim-reference h2 + .row {
	margin-bottom: 20px;
}
.page.o-nama .block-6 {
	margin: 0;
}
.wide-text {
	padding-top: 25px;
}
.wide-slika {
	display: table;
	width: 100%;
	height: 500px
}
.wide-slika a {
	position: relative;
	display: table-cell;
	vertical-align: middle;
	text-align: center;
	overflow: hidden;
}
.wide-slika .bg-image:before {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: rgba(0,0,0,0.49);
}
.wide-slika a:hover,
.wide-slika a:focus {
	color: #0d4280;
}
.wide-slika .bg-image {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-size: cover;
	background-position: 50% 10%;
	-webkit-transition: transform 0.35s ease;
	-moz-transition: transform 0.35s ease;
	-o-transition: transform 0.35s ease;
	transition: transform 0.35s ease;
}
.wide-slika a:hover .bg-image,
.wide-slika a:focus .bg-image {
	-webkit-transform: scale(1.05);
	-moz-transform: scale(1.05);
	-o-transform: scale(1.05);
	-ms-transform: scale(1.05);
	transform: scale(1.05);
}
.wide-slika h2 {
	font-size: 40px;
	color: #fff;
	text-transform: uppercase;
}
.mod-logo-slider .item-container {
	text-align: center;
}
.mod-logo-slider .slick-slide img {
	display: inline-block;
}
.mod--our-team {
	background: #0d4280;
	color: #fff;
	padding: 10% 0;
}
.mod--our-team .module-title h3 {
	font-size: 10vw;
	text-transform: uppercase;
	text-align: center;
	padding: 0 0 30px;
}
.mod--our-team .image-cover {
	padding-bottom: 100%;
}
.mod--our-team .image-cover {
	padding-bottom: 100%;
}
.mod--our-team .item-container {
	text-align: center;
	padding: 0;
	margin-bottom: 15vw;
}
.mod--our-team .row .col-sm-6 + .col-sm-6 .item-container {
	margin-bottom: 0;
}
.mod--our-team .item-container .article-image {
	margin-bottom: 20px;
	padding: 0 25%;
	overflow: visible;
}
.mod--our-team .item-container h3 {
	font-size: 10vw;
	color: #fff;
	margin-bottom: 0;
}
.mod--our-team .introtext {
	margin-bottom: 15px;
}
@media (min-width: 480px) {
	.page.o-nama .tim-reference h2 {
		font-size: calc(1.4rem + 3vw);
	}
	.page.o-nama .tim-reference h3 {
		font-size: calc(1.4rem + 2vw);
	}
}
@media (min-width: 768px) {
	.page.o-nama .block-1 {
		padding: 80px 0;
	}
	.page.o-nama .tim-reference {
		padding: 100px 0;
	}
	.wide-slika a {
		height: 600px;
	}
	#our-team .modal-dialog {
		width: 90%;
	}
	.mod--our-team .module-title h3 {
		font-size: 60px;
	}
	.mod--our-team .item-container {
		margin-bottom: 0;
	}
	.mod--our-team .item-container h3 {
		font-size: 40px;
	}
}
@media (min-width: 768px) and (max-width: 1199px) {
	.page.o-nama .block-1 .col-sm-6:nth-child(odd) {
		clear:left;
	}
}
@media (min-width: 992px) {
	.page.o-nama .tim-reference h2 {
		margin: 10px 0 80px;
	}
	.page.o-nama .tim-reference h3 {
		font-size: calc(1rem + 1.5vw);
		text-align: left;
	}
	.page.o-nama .tim-reference h2 + .row {
		margin-bottom: 100px;
	}
	#our-team .modal-dialog {
		width: 70%;
	}
	.mod--our-team {
		padding: 10% 0;
	}
}
@media (min-width: 1200px) {
	.page.o-nama .block-1 h3,
	.page.o-nama .block-1 ul {
		padding-right: 30px;
	}
	.page.o-nama .tim-reference ul li {
		width: 33.333333%;
	}
	.page.o-nama .tim-reference h2 {
		font-size: calc(1rem + 3vw);
	}
	.page.o-nama .tim-reference h3 {
		font-size: calc(1rem + 1.2vw);
	}
	.mod--our-team {
		padding: 10% 5%;
	}
}
@media (min-width: 1600px) {
	.page.o-nama .tim-reference h3 {
		font-size: 36px;
	}
	.mod--our-team {
		padding: 10%;
	}
}

/* animatedModal */
.animatedModal {
	display: none;
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	right: 0;
	z-index: 1005;
	overflow-y: auto;
}
.body-modal-open {
	overflow: hidden;
}
.btn-close-animatedModal {
	position: absolute;
	z-index: 2;
	right: 0;
	top: -20px;
}
.btn-close-animatedModal img {
	-webkit-transition: all 0.2s;
	-moz-transition: all 0.2s;
	-ms-transition: all 0.2s;
	-o-transition: all 0.2s;
	transition: all 0.2s;
	cursor: pointer;
}
.btn-close-animatedModal img:hover {
	-webkit-transform: rotate(360deg);
	-moz-transform: rotate(360deg);
	-o-transform: rotate(360deg);
	-ms-transform: rotate(360deg);
	transform: rotate(360deg);
}
.animatedModal-footer {
	text-align: center;
	margin-bottom: 50px;
}
.animatedModal-footer .btn-close-animatedModal {
	position: static;
}
@media (min-width: 768px) {
	.btn-close-animatedModal {
		top: 20px;
	}
}


/* Page Usluge */
.page.usluge .category-header {
	display: none;
}
.page.usluge .category-body {
	background: #0d4280;
	padding: 150px 0 100px;
}
.page.usluge.investicije .category-body {
	background: #1e2225;
}
.page.usluge .subcategory-modules .moduletable > h3 {
	position: relative;
	font-size: 40px;
	color: #fff;
	text-transform: uppercase;
	padding-bottom: 15px;
	margin-bottom: 30px;
}
.page.usluge .subcategory-modules .moduletable > h3:after {
	position: absolute;
	bottom: 0;
	left: 0;
	content: "";
	display: block;
	width: 100px;
	height: 2px;
	background: #00adf2;
}
.page.usluge .subcategory-modules .article-title {
	margin: 0;
}
.page.usluge .subcategory-modules .article-title a {
	display: inline-block;
	padding-top: 36px;
	color: #fff;
}
.page.usluge .subcategory-modules ol {
	padding: 0;
	list-style: none;
	counter-reset: counter-01;
}
.page.usluge .subcategory-modules ol li {
	position: relative;
	counter-increment: counter-01;
	padding-left: 80px;
	margin-bottom: 10px;
}
.page.usluge .subcategory-modules ol li:before {
	position: absolute;
	top: 0;
	left: 0;
	content: counter(counter-01, decimal-leading-zero);
	color: #fff;
	font-size: 46px;
	font-weight: 800;
	-webkit-text-fill-color: transparent;
	-webkit-text-stroke-width: 1px;
	-webkit-text-stroke-color: rgba(255,255,255,0.6);
  	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}
.page.usluge .subcategory-modules ol li:hover .article-title a {
	color: #00adf2;
}
.page.usluge .subcategory-modules ol li:hover:before {
	color: #00adf2;
	-webkit-text-fill-color: #00adf2;
	-webkit-text-stroke-color: #00adf2;
}
.page.usluge .subcategory-modules .square-bg-left,
.page.usluge .subcategory-modules .square-bg-right {
	display: none;
	-webkit-transition: opacity 0.8s ease;
	-moz-transition: opacity 0.8s ease;
	-o-transition: opacity 0.8s ease;
	transition: opacity 0.8s ease;
}
.page.usluge .subcategory-modules .square-bg-left {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: url('../images/usluge-square-left.jpg') no-repeat 50% 50%;
	background-size: cover;
}
.page.usluge .subcategory-modules .square-bg-right {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	right: 0;
	/*background: url('../images/kanfanar-3d-1.jpg') no-repeat 50% 50%;*/
	background: url('../images/usluge-square-right.jpg') no-repeat 50% 50%;
	background-size: cover;
}
.page.usluge.consulting .subcategory-modules .square-bg-right {
	background: url('../images/usluge-square-left.jpg') no-repeat 50% 50%;
}
.page.usluge .subcategory-modules .square-bg-left:after,
.page.usluge .subcategory-modules .square-bg-right:after {
	content: "";
	display: block;
	position: absolute;
	z-index: 2;
	width: 100%;
	height: 100%;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(13, 66, 128, 0.59);
}
.page.investicije .subcategory-modules .square-bg-right:after {
	content: "";
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(0, 0, 0, 0.59);
}
.moduletable.usluge-consulting {
	margin-bottom: 80px;
}
.imgHide {
	filter: alpha(opacity=0);
	opacity: 0;
}
.category-body-bg {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	overflow: hidden;
}
.category-body-bg img {
	max-width: none;
	opacity: 0.05;
	position: absolute;
	height: 50%;
	top: 0;
	left: -50%;
}
.mod--usluge-img-slider,
.mod--usluge-img-slider .carousel,
.mod--usluge-img-slider .carousel-inner,
.mod--usluge-img-slider .item,
.mod--usluge-img-slider .item-bg {
	height: 100%;
}
.mod--usluge-img-slider .item-bg {
	background-repeat: no-repeat;
	background-position: 50% 50%;
	background-size: cover;
}
.mod--usluge-investicije .article-title .podnaslov {
	display: block;
	font-size: 17px;
	font-weight: normal;
	margin-top: 5px;
}
@media (min-width: 480px) {
	.category-body-bg img {
		left: -32%;
	}
}
@media (min-width: 768px) {
	.category-body-bg img {
		height: 100%;
		top: -10%;
		left: -40%;
	}
	.page.usluge .subcategory-modules .square-bg-left,
	.page.usluge .subcategory-modules .square-bg-right {
		display: block;
		width: 50%;
	}
	.moduletable.usluge-consulting {
		margin-bottom: 0;
	}
	.moduletable.usluge-investicije {
		padding-left: 30px;
	}
}
@media (min-width: 992px) {
	.page.usluge .category-body {
		padding: 250px 0 200px;
	}
	.page.usluge .subcategory-modules .moduletable > h3 {
		font-size: 50px;
		margin-bottom: 60px;
	}
	.page.usluge.investicije .category-body {
		min-height: 896px;
	}
}
@media (min-width: 1200px) {
	.category-body-bg img {
		height: 100%;
		left: -30%;
	}
	.moduletable.usluge-investicije {
		padding-left: 80px;
	}
}

/* Consulting - clanak */
.page.consulting .item-page .article-header {
	margin-bottom: 0;
}
.page.consulting .item-page .block-1,
.page.consulting .item-page .block-2,
.page.consulting .item-page .block-3 {
	padding: 50px 10px 25px;
}
.page.consulting .block-1 img,
.page.consulting .block-2 img, 
.page.consulting .block-3 img,
.page.consulting .block-4 img {
	width: 72px;
	padding: 12px;
}
.page.consulting .block-1 .row div[class*="col-"] p:first-child {
	display: inline-block;
	background: #292d30;
	-webkit-border-radius: 100px;
	-moz-border-radius: 100px;
	border-radius: 100px;
}
@media (max-width: 767px) {
	.page.consulting .item-page .article-header-inner {
		padding-bottom: 50px;
	}
}
@media (min-width: 768px) {
	.page.consulting .item-page .block-1,
	.page.consulting .item-page .block-2,
	.page.consulting .item-page .block-3 {
		padding: 80px 0 50px;
	}
}

/* Investicije - clanak */
.page.investicije .item-page {
	line-height: 1.4;
	background: #1e2225;
	color: #fff;
}
.page.investicije .item-page .article-body {
	padding: 0 10px;
}
.page.investicije .item-page .article-body-inner {
	padding-bottom: 60px;
}
.page.investicije .item-page .article-header {
	filter: grayscale(33%);
}
.page.investicije .item-page .article-header:before {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: rgba(0,0,0,0.57);
}
.page.investicije .item-page .article-header:after {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: rgb(0,0,0);
	background: -moz-linear-gradient(0deg, rgba(0,0,0,0) 49%, rgba(0,0,0,0.6) 100%);
	background: -webkit-linear-gradient(0deg, rgba(0,0,0,0) 49%, rgba(0,0,0,0.6) 100%);
	background: linear-gradient(0deg, rgba(0,0,0,0) 49%, rgba(0,0,0,0.6) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#000000",GradientType=1);
	opacity: 0.65;
}
.page.investicije .item-page h4 {
	font-size: 24px;
	margin: 10px 0 20px;
}
.page.investicije .item-page h2,
.page.investicije .item-page h3,
.page.investicije .item-page h4 {
	line-height: 1;
	color: #fff;
}
.page.investicije .item-page ul {
	padding: 0;
}
.page.investicije .item-page ul li {
	margin-bottom: 2px;
}
.page.investicije .text-2 {
	margin: 0;
	padding: 0;
}
.page.investicije .block-2 {
	background: none;
	margin-bottom: 45px;
}
.page.investicije .text-3 {
	width: 90%;
}
.page.investicije .text-4 {
	margin: 0;
	padding: 0;
}
.page.investicije .block-3 {
	margin-bottom: 30px;
}
.page.investicije .block-4 {
	background: none;
	margin-bottom: 0;
}
.page.investicije .block-4 h2 {
	margin-top: 0;
}
.page.investicije .block-sadrzaji h2 {
	padding: 0 50px;
	margin-bottom: 50px;
}
.page.investicije .block-sadrzaji div[class*="col"] {
	padding-left: 65px;
	padding-right: 65px;
}
.page.investicije .block-5 {
	margin-bottom: 60px;
}
.page.investicije .text-5,
.page.investicije .text-6,
.page.investicije .text-7 {
    padding: 0;
	text-align: left;
	margin-bottom: 60px;
}
.page.investicije .text-8 h2 {
	font-size: 36px;
	text-transform: uppercase;
}
.page.investicije .block-6 {
	margin: 0;
}
.page.investicije .block-videos {
	margin-top: 40px;
}
@media (min-width: 480px) {
	.page.investicije .text-8 h2 {
		font-size: calc(1.4rem + 3vw);
	}
}
@media (min-width: 768px) {
	.page.investicije .item-page .article-body {
		padding: 0;
	}
	.page.investicije .item-page .article-header-inner,
	.page.investicije .block-2,
	.page.investicije .block-5 {
		padding-left: 50px;
		padding-right: 50px;
	}
	.page.investicije .block-2 {
		margin-bottom: 65px;
	}
	.page.investicije .text-1 {
		padding: 0 25% 0 0;
	}
	.page.investicije .text-5,
	.page.investicije .text-6,
	.page.investicije .text-7 {
		padding: 0 50px;
		margin-bottom: 0;
	}
	.page.investicije .block-sadrzaji {
		margin-bottom: 180px;
	}
	.page.investicije .block-videos {
		margin-top: 0;
	}
}
@media (min-width: 1200px) {
	.page.investicije .text-8 h2 {
		font-size: calc(1rem + 3vw);
	}
}
@media (min-width: 1600px) {
	.page.investicije .block-1 .col-lg-6 {
		width: 33.33333333%;
	}
	.page.investicije .text-3 {
		width: 50%;
		width: 100%;
	}
	.page.investicije .text-8 p {
		width: 60%;
	}
}

/* Nacin rada */
.page.nacin-rada .article-header {
	margin-bottom: 0;
}
.page.nacin-rada .block-1 {
	/*background: #0d4280;*/
	color: #fff;
}
.page.nacin-rada .block-1 div[class*="col-"]:before {
	-webkit-clip-path: polygon(100% 0, 100% 90%, 50% 100%, 0 90%, 0 0);
	clip-path: polygon(100% 0, 100% 90%, 50% 100%, 0 90%, 0 0);
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #0d4280;
}
.page.nacin-rada .block-1 div[class*="col-"]:nth-child(1) {
	background: #0f4e96;
}
.page.nacin-rada .block-1 div[class*="col-"]:nth-child(2) {
	background: #1259ad;
}
.page.nacin-rada .block-1 div[class*="col-"]:nth-child(2):before {
	background: #0f4e96;
}
.page.nacin-rada .block-1 div[class*="col-"]:nth-child(3) {
	background: #1259ad;
}
.page.nacin-rada .block-1 div[class*="col-"]:nth-child(3):before {
	background: #1259ad;
}
.page.nacin-rada .block-1 h2,
.page.nacin-rada .block-1 h3 {
	position: relative;
	color: #fff;
}
.page.nacin-rada .block-1 ul {
	margin-bottom: 20px;
}
.page.nacin-rada .block-1 ul li {
	margin-bottom: 0;
}
.page.nacin-rada .block-1 ul ul {
	margin-top: 0;
	margin-bottom: 0;
}
.page.nacin-rada .block-2 {
	padding: 50px 0 60px;
	background: none;
	text-align: center;
}
.page.nacin-rada .block-2 div[class*="col-"]:before {
	-webkit-clip-path: polygon(100% 0, 100% 90%, 50% 100%, 0 90%, 0 0);
	clip-path: polygon(100% 0, 100% 90%, 50% 100%, 0 90%, 0 0);
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #cdcdcd;
}
.page.nacin-rada .block-2 div[class*="col-"]:nth-child(1) {
	background: #d6d6d6;
}
.page.nacin-rada .block-2 div[class*="col-"]:nth-child(2) {
	background: #dfdfdf;
}
.page.nacin-rada .block-2 div[class*="col-"]:nth-child(2):before {
	background: #d6d6d6;
}
.page.nacin-rada .block-2 div[class*="col-"]:nth-child(3) {
	background: #efefef;
}
.page.nacin-rada .block-2 div[class*="col-"]:nth-child(3):before {
	background: #dfdfdf;
}
.page.nacin-rada .block-2 div[class*="col-"]:nth-child(4) {
	background: #efefef;
}
.page.nacin-rada .block-2 div[class*="col-"]:nth-child(4):before {
	background: #efefef;
}
.page.nacin-rada .block-2 h3,
.page.nacin-rada .block-2 p {
	position: relative;
}
.page.nacin-rada .block-2 h3 {
	margin: 0 0 5px;
}
.page.nacin-rada .block-2 p {
	margin-bottom: 80px;
}
.page.nacin-rada .block-2 h2,
.page.nacin-rada .block-3 h2 {
	font-size: 36px;
	text-transform: uppercase;
	margin: 0 0 40px;
}
.page.nacin-rada .block-3 h2 {
	margin: 0 0 10px;
}
.page.nacin-rada .block-3 {
	padding: 0;
}
.page.nacin-rada .content .block-3 ul {
	padding: 0;
}
.page.nacin-rada .content .block-3 ul li {
	padding: 15px 20px;
	background: #0f4e96;
	color: #fff;
}
.page.nacin-rada .content .block-3 ul li:before {
	display: none;
}
.page.nacin-rada .block-4 {
	background: none;
	padding: 50px 10px 25px;
}
.page.nacin-rada .text-3 {
	margin-bottom: 50px;
}
.page.nacin-rada .text-3 .fa {
	font-size: 10rem;
}
.page.nacin-rada .block-4 h2 {
	font-size: 36px;
	text-transform: uppercase;
	margin: 0 0 30px;
}
.page.nacin-rada .block-4 .row {
	text-align: center;
}
.page.nacin-rada .text-4 ul,
.page.nacin-rada .text-4 ul li {
	padding-left: 0;
}
.page.nacin-rada .text-4 ul li:before {
	display: none;
}
@media (min-width: 480px) and (max-width: 991px) {
	.page.nacin-rada .block-1 h3 {
		text-align: center;
	}
	.page.nacin-rada .block-1 ul {
		width: 320px;
		margin: 0 auto 20px;
	}
}
@media (max-width: 991px) {
	.page.nacin-rada .block-1 .row div[class*="col-"],
	.page.nacin-rada .block-2 .row div[class*="col-"] {
		padding: 50px 25px;
	}
	.page.nacin-rada .block-2 p {
		margin-bottom: 35px;
	}
	.page.nacin-rada .block-2 h3 + p {
		margin-bottom: 0;
	}
}
@media (min-width: 768px) {
	.page.nacin-rada .block-1 .container,
	.page.nacin-rada .block-2 .container {
		padding: 0;
		width: auto;
	}
	.page.nacin-rada .block-3 .container {
		padding: 0 80px;
		width: auto;
	}
	.page.nacin-rada .block-1 .row,
	.page.nacin-rada .block-2 .row {
		margin: 0;
	}
	.page.nacin-rada .block-2 {
		padding: 60px 0 90px;
	}
	.page.nacin-rada .block-2 h2 {
		font-size: 40px;
		margin: 20px 0 60px;
		padding: 0 80px;
	}
	.page.nacin-rada .block-3 h2 {
		font-size: 40px;
	}
	.page.nacin-rada .block-4 {
		padding: 80px 0;
	}
	.page.nacin-rada .block-4 h2 {
		font-size: 28px;
		margin: 20px 0 60px;
	}
	.page.nacin-rada .text-3 {
		margin-bottom: 0;
	}
}
@media (min-width: 992px) {
	.page.nacin-rada .block-2 {
		text-align: left;
	}
	.page.nacin-rada .block-1 .row,
	.page.nacin-rada .block-2 .row {
		display: table;
		width: 100%;
		margin: 0;
	}
	.page.nacin-rada .block-1 .row:before,
	.page.nacin-rada .block-1 .row:after {
		display: none;
	}
	.page.nacin-rada .block-1 .row div[class*="col-"],
	.page.nacin-rada .block-2 .row div[class*="col-"] {
		display: table-cell;
		float: none;
	}
	.page.nacin-rada .block-1 div[class*="col-"]:before,
	.page.nacin-rada .block-2 div[class*="col-"]:before {
		-webkit-clip-path: polygon(90% 0, 100% 50%, 90% 100%, 0 100%, 0 0);
		clip-path: polygon(90% 0, 100% 50%, 90% 100%, 0 100%, 0 0);
	}
	.page.nacin-rada .block-1 h2,
	.page.nacin-rada .block-1 h3 {
		margin-top: 80px;
	}
	.page.nacin-rada .block-1 ul {
		margin-bottom: 100px;
	}
	.page.nacin-rada .block-2 h3 {
		margin: 80px 0 25px;
	}
}
@media (min-width: 1200px) {
	.page.nacin-rada .block-1 .row div[class*="col-"],
	.page.nacin-rada .block-2 .row div[class*="col-"] {
	    padding-left: 80px;
		padding-right: 80px;
	}
}

/* Page Kontakt */
.page.kontakt .block-1 {
	padding: 0 10px 30px;
}
.page.kontakt .item-page .article-header {
	margin-bottom: 0;
}
@media (min-width: 768px) {
	.page.kontakt .item-page .article-header {
		margin-bottom: 40px;
	}
	.page.kontakt .block-1 {
		padding: 0 0 50px;
	}
}


/* Contact page and Form */
textarea, input[type="text"], input[type="password"], input[type="datetime"], input[type="datetime-local"], input[type="date"], input[type="month"], input[type="time"], input[type="week"], input[type="number"], input[type="email"], input[type="url"], input[type="search"], input[type="tel"], input[type="color"], .uneditable-input {
	background-color: #eee;
	border: 0 none;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
	-webkit-transition: border linear .2s, box-shadow linear .2s;
	-moz-transition: border linear .2s, box-shadow linear .2s;
	-o-transition: border linear .2s, box-shadow linear .2s;
	transition: border linear .2s, box-shadow linear .2s;
	padding: 10px;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
	width: 100%;
	font-weight: normal;
	height: 50px;
}
textarea.form-control {
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
	padding: 10px;
}
.form-control {
	background-color: #eee;
	border: 0 none;
	font-size: 17px;
	color: #000;
}
button:focus,
button:active,
.btn:focus,
.btn:active:focus,
input:focus,
textarea:focus,
select:focus {
	outline: none;
}
.form-group {
	position: relative;
	margin-bottom: 20px;
}
.formRed {
	padding: 0;
}
.form-horizontal .formControlLabel {
	cursor: text;
	font-size: 17px;
	color: #1e2329;
	float: none;
	padding: 0 5px;
	display: inline-block;
	width: auto;
	text-align: left;
	margin-bottom: 0;
	font-weight: normal;
	position: absolute;
	z-index: 1;
	top: 10px;
	left: 10px;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.input-focus .formControlLabel {
	background: #fff;
	top: -10px;
	font-size: 10px;
}
.form-horizontal .formControls {
	margin-left: 0;
	width: 100%;
}
.form-control:focus,
.has-error .form-control:focus {
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
	border-color: #0d4280;
}
.formValidation .formError {
	color: #ff0000;
	font-size: 17px;
	font-weight: normal;
}
.has-error .form-control {
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
}
.thank-you {
	color: green;
}
.form-horizontal .rsform-block-send .formControlLabel {
	display: none;
}
.form-horizontal .btn-primary {
	margin: 30px 0 0;
}
.form-horizontal .btn-order {
	min-width: 200px;
}
strong.formRequired {
	font-weight: normal;
}
#contactForm {
	margin: 0 0 30px;
}
#contactForm h2 {
	padding: 0;
}
.rsform-block .formControls + .col-sm-3 {
	width: 100%;
}
.rsform-block-subject .formControlLabel,
.rsform-block-message .formControlLabel,
.rsform-block-product .formControlLabel,
.rsform-block-quantity .formControlLabel,
.rsform-block-phone .formControlLabel,
.rsform-block-address .formControlLabel,
.rsform-block-company .formControlLabel,
.rsform-block-oib .formControlLabel,
.rsform-block-note .formControlLabel,
.rsform-block-name .formControlLabel,
.rsform-block-email .formControlLabel {
	margin-left: 15px;
}
.rsform-block-recaptcha .formControlLabel {
	display: none;
}

/* Continue button */
input[type="button"] {
    font-size: 17px;
    padding: 15px 25px;
    background: #0d4280;
    color: #fff;
	text-transform: uppercase;
	min-width: 200px;
}
input[type="button"]:hover,
input[type="button"]:focus,
input[type="button"]:active {
    background: #25262a;
    color: #fff;
}

.rsform-block-privacy-link {
	margin-bottom: 0;
	font-style: italic;
}
.rsform-block-privacy-link a {
	text-decoration: underline;
}
.rsform-block-privacy-link a:hover,
.rsform-block-privacy-link a:focus {
	text-decoration: none;
}

@media (min-width: 480px) {

}

/* --------------------------
--- SEARCH RESULTS ---
----------------------------- */

/* search module */
.search-module.moduletable {
	margin: 50px 0 15px;
}
.search-module form {
	position: relative;
}
.search-module form label {
	display: none;
}
.search-module form input {
	padding: 10px 30px;
	font-weight: normal;
}
.search-module input:focus {
	outline: none;
}
.search-icon {
	font-size: 17px;
	position: absolute;
	left: 0;
	bottom: 10px;
}

/* search form */
#searchForm .btn-group {
	float: none;
}
#searchForm .btn-toolbar label {
	display: none;
}
#searchForm .btn-toolbar .btn-group:first-child {
	width: 100%;
}
#searchForm input {
	font-weight: normal;
	padding: 10px 30px;
}
#searchForm input:focus {
	outline: none;
}
#searchForm .form-limit {
    margin-bottom: 25px;
}

/* search results */
.com-search-body {
	margin-top: 50px;
}
.search-results .result-wrapper {
	border: 1px solid #ddd;
	padding: 30px 40px;
	margin-bottom: 20px;
}
.search-results .content,
.search-results .page-title {
    text-align: left;
    margin: 0 0 30px;
}
.search-results .input-group {
    display: table;
    position: relative;
    border-collapse: separate;
}
.search-results .search-input {
    margin-bottom: 25px;
}
.search-results .input-group .form-control {
    display: table-cell;
}
#search-searchword {
    height: 50px;
    padding: 10px 20px;
    font-size: 17px;
}
#searchForm .input-group-btn .btn {
    height: 50px;
    background: #eee;
    border: 1px solid #eee;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
    padding: 6px 22px;
}
.searchintro {
    margin: 50px 0 60px;
}
.searchintro p {
    margin: 0;
}
.searchintro .badge {
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
    font-size: 17px;
    background: #eee;
    color: #a22631;
    padding: 2px 8px;
}
#searchForm legend {
    border: 0 none;
    text-transform: uppercase;
    margin-bottom: 0;
}
.phrases-box label {
    display: inline-block;
    padding-left: 20px;
    margin-right: 15px;
}
.phrases .ordering-box {
    margin-bottom: 10px;
}
dl.search-results a {
    color: #a22631;
}
.result-text {
	word-break: break-all;
}
.result-category,
.result-created {
    color: #999;
    font-size: 85%;
}
span.highlight {
    background: #FFFFCC;
    font-weight: bold;
}

/* --------------------------
--- PAGINATION ---
----------------------------- */

.pagination {
	display: block;
	margin: 20px 0;
	font-size: 17px;
}
.pagination .counter.pull-right {
	display: none;
}
.pagination ul{display:inline-block;padding-left:0;margin:0;border-radius:0}
.pagination ul > li {
	display:inline-block;
	padding-left: 0;
}
.pagination ul > li:before {
	display: none;
}
.pagination ul > li > a,
.pagination ul > li > span{
	display:inline-block;
    position:relative;
	padding: 12px 20px;
    line-height: 20px;
    text-decoration:none;
    border:1px solid #ddd;
    margin-left:-1px;
	color: #999;
}
.pagination ul > li > a {
	/*background-color:#f9f9f9;*/
	color: #0d4280;
}
.pagination ul > li:first-child > a,
.pagination ul > li:first-child > span{
    margin-left:0;
    border-bottom-left-radius:0;
    border-top-left-radius:0
}
.pagination ul > li:last-child > a,
.pagination ul > li:last-child > span{
    border-bottom-right-radius:0;
    border-top-right-radius:0
}
.pagination ul > li > a:hover,
.pagination ul > li > a:focus {
    color: #fff;
    background-color: #0d4280;
    border-top-color: #0d4280;
    border-bottom-color: #0d4280;
}
.pagination ul > li > span:hover,
.pagination ul > li > span:focus {
}

.pagination ul > .active > a,
.pagination ul > .active > span,
.pagination ul > .active > a:hover,
.pagination ul > .active > span:hover,
.pagination ul > .active > a:focus,
.pagination ul > .active > span:focus{
    z-index:2;
    color: #fff;
    background-color: #0d4280;
    border-top-color: #0d4280;
    border-bottom-color: #0d4280;
    cursor:default
}
.pagination ul > .disabled > span,
.pagination ul > .disabled > span:hover,
.pagination ul > .disabled > span:focus,
.pagination ul > .disabled > a,
.pagination ul > .disabled > a:hover,
.pagination ul > .disabled > a:focus
{color:#999999;
 background-color:#ffffff;
 /*border-color:#dddddd;
 cursor:not-allowed*/
}
.pagination ul-lg > li > a,
.pagination ul-lg > li > span{
    padding:13px 40px;
    font-size:18px
}.pagination ul-lg > li:first-child > a,
.pagination ul-lg > li:first-child > span{
    border-bottom-left-radius:0;
    border-top-left-radius:0
}
.pagination ul-lg > li:last-child > a,
.pagination ul-lg > li:last-child > span
{border-bottom-right-radius:0;
 border-top-right-radius:0
}
.pagination ul-sm > li > a,
.pagination ul-sm > li > span{
    padding:6px 12px;
    font-size:12px
}
.pagination ul-sm > li:first-child > a,
.pagination ul-sm > li:first-child > span{
    border-bottom-left-radius:0;
    border-top-left-radius:0
}
.pagination ul-sm > li:last-child > a,
.pagination ul-sm > li:last-child > span{
    border-bottom-right-radius:0;
    border-top-right-radius:0
}

/* --------------------------
--- ANIMATIONS ---
----------------------------- */

/* intro img */
.fade-in{-webkit-animation:fade-in 3s cubic-bezier(.39,.575,.565,1.000) .8s both;animation:fade-in 3s cubic-bezier(.39,.575,.565,1.000) .8s both}
@-webkit-keyframes fade-in{0%{opacity:0}100%{opacity:1}}@keyframes fade-in{0%{opacity:0}100%{opacity:1}}

/* navbar menu */
.fade-in-top{-webkit-animation:fade-in-top 1s cubic-bezier(.39,.575,.565,1.000) .5s both;animation:fade-in-top 1s cubic-bezier(.39,.575,.565,1.000) .5s both}
@-webkit-keyframes fade-in-top{0%{-webkit-transform:translateY(-50px);transform:translateY(-50px);opacity:0}100%{-webkit-transform:translateY(0);transform:translateY(0);opacity:1}}@keyframes fade-in-top{0%{-webkit-transform:translateY(-50px);transform:translateY(-50px);opacity:0}100%{-webkit-transform:translateY(0);transform:translateY(0);opacity:1}}

/* scroll-down arrow */
.fade-in-top-arrow{-webkit-animation:fade-in-top 1s cubic-bezier(.39,.575,.565,1.000) 3s both;animation:fade-in-top 1s cubic-bezier(.39,.575,.565,1.000) 3s both}

/* Logo, Hamburger */
.focus-in-expand{-webkit-animation:focus-in-expand .8s cubic-bezier(.25,.46,.45,.94) .8s both;animation:focus-in-expand .8s cubic-bezier(.25,.46,.45,.94) .8s both}
@-webkit-keyframes focus-in-expand{0%{letter-spacing:-.5em;-webkit-filter:blur(12px);filter:blur(12px);opacity:0}100%{-webkit-filter:blur(0);filter:blur(0);opacity:1}}@keyframes focus-in-expand{0%{letter-spacing:-.5em;-webkit-filter:blur(12px);filter:blur(12px);opacity:0}100%{-webkit-filter:blur(0);filter:blur(0);opacity:1}}

/* slide-in-right: not in use */
.slide-in-right{-webkit-animation:slide-in-right 1.5s cubic-bezier(.25,.46,.45,.94) 0.5s both;animation:slide-in-right 1.5s cubic-bezier(.25,.46,.45,.94) 0.5s both}
@-webkit-keyframes slide-in-right{0%{-webkit-transform:translateX(1000px);transform:translateX(1000px);opacity:0}100%{-webkit-transform:translateX(0);transform:translateX(0);opacity:1}}@keyframes slide-in-right{0%{-webkit-transform:translateX(1000px);transform:translateX(1000px);opacity:0}100%{-webkit-transform:translateX(0);transform:translateX(0);opacity:1}}

/* intro - bg-logo-layer */
.slide-in-left{-webkit-animation:slide-in-left 2s cubic-bezier(.25,.46,.45,.94) 1.2s both;animation:slide-in-left 2s cubic-bezier(.25,.46,.45,.94) 1.2s both}
@-webkit-keyframes slide-in-left{0%{-webkit-transform:translateX(-1000px);transform:translateX(-1000px);opacity:0}100%{-webkit-transform:translateX(0);transform:translateX(0);opacity:0.05}}@keyframes slide-in-left{0%{-webkit-transform:translateX(-1000px);transform:translateX(-1000px);opacity:0}100%{-webkit-transform:translateX(0);transform:translateX(0);opacity:0.05}}

/* intro-bottom-layer */
.fade-in-bottom{-webkit-animation:fade-in-bottom 1s cubic-bezier(.39,.575,.565,1.000) 4s both;animation:fade-in-bottom 1s cubic-bezier(.39,.575,.565,1.000) 4s both}
@-webkit-keyframes fade-in-bottom{0%{-webkit-transform:translateY(50px);transform:translateY(50px);opacity:0}100%{-webkit-transform:translateY(0);transform:translateY(0);opacity:1}}@keyframes fade-in-bottom{0%{-webkit-transform:translateY(50px);transform:translateY(50px);opacity:0}100%{-webkit-transform:translateY(0);transform:translateY(0);opacity:1}}

/* podstranice */
.fade-in-up-1{-webkit-animation:fade-in-bottom 1s cubic-bezier(.39,.575,.565,1.000) 1.2s both;animation:fade-in-bottom 1s cubic-bezier(.39,.575,.565,1.000) 1.2s both}
.fade-in-up-2{-webkit-animation:fade-in-bottom 1s cubic-bezier(.39,.575,.565,1.000) 1.6s both;animation:fade-in-bottom 1s cubic-bezier(.39,.575,.565,1.000) 1.6s both}

/* Animsition - custom loading class */
.custom-animsition-loading {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 100;
}
.custom-animsition-loading img {
	max-width: 340px;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
}
@media (max-width: 767px) and (orientation: portrait) {
	.custom-animsition-loading img {
		max-width: 70%;
	}
}
@media (max-width: 767px) and (orientation: landscape) {
	.custom-animsition-loading img {
		max-height: 20%;
	}
}
@media (min-width: 768px) {
	.custom-animsition-loading img {
		min-width: 200px;
	}
}
.custom-animsition-loading img {-webkit-animation:pulsate-bck .5s ease-in-out infinite both;animation:pulsate-bck .5s ease-in-out infinite both}
@-webkit-keyframes pulsate-bck{0%{-webkit-transform:scale(1);transform:scale(1)}50%{-webkit-transform:scale(.9);transform:scale(.9)}100%{-webkit-transform:scale(1);transform:scale(1)}}@keyframes pulsate-bck{0%{-webkit-transform:scale(1);transform:scale(1)}50%{-webkit-transform:scale(.9);transform:scale(.9)}100%{-webkit-transform:scale(1);transform:scale(1)}}



/******************************************************************************************
* responsive MAX-width 
******************************************************************************************/
@media (max-width: 479px) {
	.xdsoft_datetimepicker {
		left: 5px !important;
	}
}
@media (max-width: 767px) {
	textarea, input {
		width: 100%;
	}
}
@media (max-width: 991px) {

}

/*****************************************************************************************
* responsive MIN-width
******************************************************************************************/
@media (min-width: 480px) {

}
@media (min-width: 768px) {

}
@media (min-width: 992px) {

}
@media (min-width: 1200px) {
	.container {
		width: 100%;
		padding-left: 115px;
		padding-right: 115px;
	}
}
@media (min-width: 1600px) {

}