@import url('../fonts/futuramdbtbold/futuramdbtbold.css');
@import url('../fonts/futura-lt-book/FuturaLT-Book.css');

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

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

html {
	font-size: 16px;
}

body {
	font-family: 'FuturaLT-Book', sans-serif;
	font-size: 16px;
	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: 30px;
}
.content ul li {
	position: relative;
	padding-left: 30px;
	line-height: 1.4;
	margin-bottom: 10px;
}
.content ul li:before {
	position: absolute;
	left: 0;
	top: -2px;
	font-family: "FontAwesome";
	content: "\f101 ";
	font-size: 24px;
	line-height: 1;
}
.content ul li ul {
	margin-top: 10px;
	padding-left: 15px;
}
.content ul li ul li:before {
	content: "– ";
}

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

h1, h2, h3, h4, h5, h6 {
	font-family: 'futuramdbtbold', sans-serif;
	line-height: 1.2;
	font-weight: bold;
	margin: 0 0 25px;
}

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

h4 {
	margin: 10px 0;
}

a {
	color: #ed2328;
  	-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 {
	font-family: 'futuramdbtbold', sans-serif;
	position: relative;
    background: transparent;
    border-color: #000;
	border-width: 1px;
	-webkit-border-radius: 28px;
	-moz-border-radius: 28px;
	border-radius: 28px;
	font-size: 20px;
	font-weight: normal;
    color: #000;
	padding: 10px 36px;
	-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;
	text-transform: uppercase;
}
.btn:hover,
.btn:focus {
    background: #ed2328;
    border-color: #d40a0f;
	color: #fff;
}
.navbar .navbar-nav .btn {
	padding: 10px 36px;
	text-transform: none;
}
.nav > li > .btn:hover,
.nav > li > .btn:focus {
	background: #ed2328;
}
.btn:active {
	color: inherit;
	background: none;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
}

.btn-red {
	background: #ed2328;
	border-color: #d40a0f;
	color: #fff;
}
.btn-red:hover, 
.btn-red:focus {
    background-color: #d40a0f;
    border-color: #d40a0f;
}



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

.btn-white,
.btn-white:hover,
.btn-white:focus {
	color: #fff;
	text-transform: lowercase;
}
.btn-white:before {
	background: #fff;
	color: #ed2328;
}

.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 #ed2328;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
	font-size: 18px;
	font-weight: normal;
    color: #ed2328;
	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: #ed2328;
    -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: #ed2328;
}
@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: 14px;
	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 #ed2328;
	padding-left: 0 !important;
}
.nav-tabs > li {
	padding-left: 0 !important;
}
.nav-tabs > li:before {
	display: none !important;
}
.nav-tabs > li > a {
	background: #ed2328;
	font-size: 20px;
	color: #fff;
	padding: 10px 20px;
}
.nav-tabs > li > a:hover {
	color: #ed2328;
    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: #ed2328;
	border: 1px solid #ed2328;
	border-bottom-color: transparent;
	background-color: #fff !important;
}
.tab-content {
	border: 1px solid #ed2328;
	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: 40px;
	padding: 0 0 50px;
	margin: 0;
}
.home-page .module-title h3 {
	text-transform: uppercase;
	text-align: center;
	color: #fff;
}
.module-title-bg {
	font-size: 200px;
	line-height: 1;
	font-weight: bold;
	color: rgba(255, 255, 255, 0.05);
	text-transform: uppercase;
	text-align: center;
	margin-bottom: -150px;
	white-space: nowrap;
}

/* modal popup */
.modal-content {
	position: relative;
	background-color: #1c1f24;
	-webkit-background-clip: padding-box;
	background-clip: padding-box;
	border: 1px solid rgba(0, 0, 0, .2);
	border-radius: 0;
	color: #fff;
	padding: 0 20px;
	outline: 0;
	-webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
	box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
}
.modal-header {
	padding: 20px 15px 0 15px;
	border: 0 none;
}
.modal-header .close {
	font-size: 36px;
	color: #fff;
    filter: alpha(opacity=100);
    opacity: 1;
}
.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%;
}
.white-gradient-mobile {
	position: absolute;
	z-index: 21;
	width: 100%;
	height: 150px;
	top: 0;
	left: 0;
	background: rgb(255,255,255);
	background: -moz-linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
	background: -webkit-linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
	background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff",endColorstr="#ffffff",GradientType=1);
}
@media (min-width: 768px) {
	.white-gradient-mobile {
		display: none;
	}
}

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

/* lang-switcher */
.lang-switcher {
	float: right;
	color: #fff;
}
.lang-switcher .custom {
	font-size: 14px;
	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 {
	margin-top: 39px;
	border: 0 none;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
	margin-bottom: 0;
}
#navbar-default {
	display: block;
	text-align: right;
}
.navbar .navbar-nav {
	display: inline-block;
	float: none;
}
.navbar .navbar-nav > li {
	float: none;
	display: inline-block;
}
.navbar .navbar-nav li {
	padding: 0 15px;
}
.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: 14px;
	font-weight: bold;
	line-height: 20px;
	letter-spacing: -0.5px;
	text-transform: uppercase;
	padding: 20px 0;
	background: transparent;
	position: relative;
}

.navbar .navbar-nav .dropdown a {
	padding-right: 0;
}
.nav > li > a:hover,
.nav > li > a:focus {
	background-color: transparent;
}
@media (min-width: 768px) {
	#navbar-default {
		padding-left: 200px;
		padding-right: 30px;
	}
	.navbar .navbar-nav li {
		padding: 0 30px;
	}
}
@media (min-width: 992px) {
	nav.navbar {
		display: block;
		margin-top: 72px;
	}
}

/* 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: 30px;
	top: 30px;
}
.menu-overlay-open .blackBG {
	background: #000;
}
.hamburger {
	width: 30px;
	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: 30px;
	height: 15px;
	display: inline-block;
	position: relative;
	vertical-align: top;
}
.hamburger-inner {
	display: block;
	top: 50%;
	margin-top: -1.5px;
}
.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
	width: 25px;
	height: 3px;
	background-color: #fff;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
	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 {
	width: 30px;
	top: -6px;
}
.hamburger-inner::after {
	width: 20px;
	bottom: -6px;
}
@media (min-width: 992px) {
	.hamburger-container {
		right: 50px;
		top: 63px;
	}
}

/** 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: 25px;
	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: 25px;
	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: #000;
    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: #000;
	z-index: 1;
}
.fixedBG {
	position: fixed;
}
.nav-container {
	position: relative;
	margin: 0 auto;
	display: table;
	width: 100%;
	height: 100%;
	padding-top: 75px;
	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 {
	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-logo {
	position: relative;
	margin: 0 0 20px;
}
.nav-logo a {
	display: inline-block;
	background: #fff;
	padding: 15px;
}
.nav-logo img {
	height: 60px;
}
.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: #ed2328;
	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: 14px;
		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: 30px;
	padding-bottom: 80px;
}

/* Footer */
.footer {
	position: relative;
	background: #161616;
	color: #777777;
	line-height: 1.6;
	padding: 120px 0;
}
.footer-0 {
	text-align: center;
	padding-left: 15px;
	padding-right: 15px;
}
.footer-1 {
	text-align: center;
	font-weight: bold;
	padding-left: 15px;
	padding-right: 15px;
}
.footer-1 br {
	display: none;
}
.footer b,
.footer strong {
	color: #fff;
}
.footer .container {
	position: relative;
}
.footer .moduletable h3 {
	font-size: calc(1rem + 0.5vw);
	color: #fff;
	text-transform: uppercase;
	margin-bottom: 10px;
}
.footer ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
.footer ul.navbar-nav {
	float: none;
}
.footer ul li {
	float: none;
}
.footer ul li a {
	float: none;
	display: block;
	padding: 0;
}
.right-foot {
	padding-top: 0;
	padding-bottom: 60px;
}
.right-foot ul {
	margin-bottom: 50px;
}
.right-foot a {
	color: #ed2328;
}
.right-foot a:hover,
.right-foot a:focus {
	color: #fefefe;
}
.right-foot h3,
.izbornik h3 {
	color: #fff;
	text-transform: uppercase;
	font-size: 14px;
	margin: 20px 0 10px;
}
.izbornik ul li {
	float: left;
	margin-right: 10px;
}
.izbornik ul li a {
	color: #ed2328;
}
@media (min-width: 768px) {
	.footer {
		text-align: left;
	}
	.footer-1 br {
		display: block;
	}
	.footer .moduletable h3 {
		font-size: calc(0.5rem + 0.5vw);
		color: #ed2328;
		margin-bottom: 20px;
	}
	.right-foot {
		padding-top: 150px;
		padding-left: 50px;
		padding-bottom: 0;
	}
	.right-foot a {
		color: #000;
	}
	.right-foot a:hover,
	.right-foot a:focus {
		color: #ed2328;
	}
}
@media (min-width: 992px) {
	.footer-0 {
		text-align: right;
		padding-right: 30px;
	}
	.footer-1 {
		text-align: left;
		padding-left: 30px;
	}
}

/* footer Copy */
.copy {
	padding: 15px 0;
	font-size: 12px;
}

#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 {
	
}

/* 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 ---
----------------------------- */

/* Home - intro-section */
.intro-section {
	position: relative;
	z-index: 20;
	margin-bottom: 0;
}
.mod-intro {
	position: relative;
}
.intro-slider,
.carousel,
.carousel-inner,
.intro-slider .item {
	height: 300px;
}
.intro-bg {
	width: 100%;
	height: 300px;
	background-size: cover;
	background-position: 50% 100%;
}
.top-white-gradient {
	position: absolute;
	z-index: 25;
	top: 0;
	left: 0;
	width: 100%;
	height: 200px;
	background: rgb(255,255,255);
	background: -moz-linear-gradient(0deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
	background: -webkit-linear-gradient(0deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
	background: linear-gradient(0deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff",endColorstr="#ffffff",GradientType=1);
}
.person-layer {
	position: absolute;
	height: 70%;
	bottom: 0;
	right: 0;
}
.intro-text {
	position: relative;
	z-index: 3;
	display: table;
	width: 100%;
	height: 100%;
	top: 0;
	padding-top: 50px;
}
.intro-text-row {
	display: table-row;
}
.intro-text-cell {
	display: table-cell;
	vertical-align: middle;
	padding: 0 25px;
}
.intro-text h1 {
	font-size: 26px;
	color: #000;
	margin: 0 0 40px;
}
.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;
}
@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: 16px;
	color: #f5ecd9;
	margin: 0 0 5vw;
	font-weight: normal;
}
.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-bottom-layer .subtitle-1 {
	color: #000;
	text-align: left;
	line-height: 1.4;
	padding: 60px 25px;
}
.intro-bottom-layer .bgimage3.desktop {
	display: none;
}
.intro-bottom-layer .bgimage3.mobile {
	position: relative;
	padding-right: 40px;
}
.intro-text .btn {
	font-size: 16px;
	float: right;
	margin-bottom: 50px;
}
@media (min-width: 480px) {
	.person-layer {
		height: 92%;
	}
	.intro-text h1 {
		font-size: calc(1.4rem + 3vw);
	}
	.intro-text h3 {
		font-size: calc(0.7rem + 1vw);
	}
}
@media (min-width: 768px) {
	.intro-slider {
		position: absolute;
		top: 0;
		right: 0;
		width: 80%;
		height: 100%;
	}
	.carousel,
	.carousel-inner,
	.intro-slider .item,
	.intro-bg {
		height: 100%;
	}
	.intro-text {
		padding-top: 100px;
	}
	.intro-text .btn {
		font-size: 20px;
		float: none;
	}
	.bgimage1 {
		height: 86%;
	}
	.bgimage2 {
		display: block;
	}
	.intro-bottom-layer .bgimage3.desktop {
		display: table-cell;
	}
	.intro-bottom-layer .bgimage3.mobile {
		display: none;
	}
	.intro-bottom-layer {
		position: absolute;
		z-index: 1;
		width: 50%;
		bottom: 0;
		right: 0;
	}
	.intro-bottom-layer .inner {
		display: table;
	}
	.intro-bottom-layer .subtitle-1,
	.intro-bottom-layer .bgimage3 {
		display: table-cell;
		vertical-align: middle;
		width: 50%;
		padding: 0 5%;
	}
	.intro-bottom-layer .subtitle-1 {
		text-align: right;
		padding: 0;
	}
}
@media (min-width: 992px) {
	.intro-text-cell {
		padding: 0 13%;
	}
	.intro-text h1 {
		font-size: calc(1.4rem + 2.2vw);
	}
	.person-layer {
		right: 4%;
	}
}
@media (min-width: 1200px) {
	.person-layer {
		right: 8%;
	}
}

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

/* mod-wwd-1 */
.mod-wwd-1 {
	position: relative;
	margin: 50px 0;
}
.mod-wwd-1 .txt-box {
	padding: 50px 0;
}
.mod-wwd-1 h2 {
	font-size: 16px;
	font-weight: normal;
	margin-bottom: 10px;
}
.mod-wwd-1 .btn {
	font-size: 14px;
	text-transform: uppercase;
	color: #ed2328;
}
.mod-wwd-1 .btn:before {
	background: #ed2328;
}
.wwd-1-image-fluid {
	position: relative;
}
.wwd-1-image-fluid,
.wwd-1-image-fluid .article-image {
	height: 100%;
}
@media (min-width: 768px) {
	.mod-wwd-1 h2 {
		font-size: calc(0.6rem + 1vw);
	}
	.mod-wwd-1 .btn {
		font-size: calc(0.3rem + 0.5vw);
	}
	.wwd-1-image-fluid {
		position: absolute;
		max-width: 1000px;
		width: 46%;
		right: 54%;
	}
}
@media (min-width: 992px) {
	.mod-wwd-1 .txt-box {
		padding: 80px 15% 80px 0;
	}
}
@media (min-width: 1200px) {
	.mod-wwd-1 .txt-box {
		padding: 100px 15% 100px 0;
	}
}
@media (min-width: 1600px) {
	.mod-wwd-1 .txt-box {
		padding: 200px 0;
	}
}

/* mod-wwd-2 */
.mod-wwd-2 {
	position: relative;
	margin: 50px 0 0;
}
.mod-wwd-2 .txt-box {
	padding: 50px 0;
}
.mod-wwd-2 .subtitle-1 {
	text-transform: uppercase;
	color: #ed2328;
}
.mod-wwd-2 .maintitle {
	font-size: 16px;
	line-height: 1.2;
	font-weight: normal;
	color: #000;
	margin-bottom: 10px;
}
.mod-wwd-2 .maintitle a {
	color: #000;
	text-decoration: underline;
	text-transform: lowercase;
}
.wwd-2-image-fluid {
	position: relative;
}
.wwd-2-image-fluid,
.wwd-2-image-fluid .article-image {
	height: 100%;
}
@media (min-width: 768px) {
	.mod-wwd-2 .txt-box {
		padding: 20% 15% 20% 0;
	}
	.wwd-2-image-fluid .image-cover {
		padding-bottom: 78%;
	}
	.mod-wwd-2 .maintitle {
		font-size: calc(0.6rem + 1vw);
	}
	.wwd-2-image-fluid {
		position: absolute;
		max-width: 1000px;
		width: 48%;
		left: 52%;
	}
}
@media (min-width: 992px) {
	.wwd-2-image-fluid .image-cover {
		padding-bottom: 74%;
	}
}
@media (min-width: 1200px) {
	.mod-wwd-2 .txt-box {
		padding: 25% 15% 25% 0;
	}
	.wwd-2-image-fluid .image-cover {
		padding-bottom: 76%;
	}
}
@media (min-width: 1600px) {
	.mod-wwd-2 .txt-box {
		padding: 35% 15% 35% 0;
	}
	.wwd-2-image-fluid .image-cover {
		padding-bottom: 78%;
	}
}

/* about-us module */
.about-us {
	padding: 120px 0 200px;
}
.about-us-inner {
	padding: 0 13%;
	line-height: 1.4;
}
.about-us .module-title h3 {
	opacity: 0;
}
.about-us .col-1 {
	font-weight: bold;
	text-transform: uppercase;
	width: 50%;
}
.about-us .col-2 {
	width: 70%;
}
.about-us .col-3 {
	width: 135%;
	position: relative;
	z-index: 2;
}

/* our-team module */
.our-team {
	padding-bottom: 120px;
}
.our-team .image-cover {
	padding-bottom: 149%;
}
.our-team .row {
	margin: 0;
}
.our-team .col-sm-4 {
	padding: 0;
}
.our-team .item {
	position: relative;
}
.our-team .item-txt {
	position: absolute;
	width: 100%;
	bottom: 0;
	left: 0;
}
.our-team .item-txt h3 {
	text-transform: uppercase;
	color: #fff;
	margin: 0;
	padding: 50px;
}

/* work-area module */
.work-area {
	padding-bottom: 150px;
}
.work-area .module-title {
	margin-bottom: 100px;
}
.work-area-content {
	padding: 0 13%;
}
.work-area-content ul {
	list-style: none;
	line-height: 1.4;
	margin: 0;
	padding: 0;
}

/* image-office module */
.image-office .image-cover {
	padding-bottom: 35%;
}

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

/* mod--school-pleasure */
.mod--school-pleasure {
	position: relative;
	color: #fff;
}
.mod--school-pleasure--content {
	background: #ed2328;
	padding: 8% 10% 5% 10%;
}
.mod--school-pleasure--content h3 {
	font-size: calc(1.4rem + 2vw);
	color: #d7c2aa;
}
@media (max-width: 767px) {
	.mod--school-pleasure--content p {
		margin-bottom: 0;
	}
}
@media (min-width: 992px) {
	.mod--school-pleasure {
		margin-bottom: 50px;
	}
	.mod--school-pleasure--img img {
		max-width: 73%;
	}
	.mod--school-pleasure--content {
		position: absolute;
		width: 57%;
		right: 0;
		top: 50%;
		-webkit-transform: translateY(-50%);
		-moz-transform: translateY(-50%);
		-o-transform: translateY(-50%);
		-ms-transform: translateY(-50%);
		transform: translateY(-50%);
	}
}

/* home-news-slider - opcija sa sliderom */
.mod--home-news.slider {
	position: relative;
	padding-left: 10%;
	overflow-x: hidden;
}
#news-slider:after {
	position: absolute;
	right: 0;
	top: 0;
	content: "";
	display: block;
	width: 10%;
	height: 100%;
	background: rgb(255,255,255);
	background: -moz-linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
	background: -webkit-linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
	background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff",endColorstr="#ffffff",GradientType=1);
}
#news-slider .slick-list {
	margin: 0 -5px !important;
	padding: 0 20% 0 0 !important;
}
.mod--home-news.slider .article-title {
	font-size: calc(1.4rem + 2vw);
}

/* 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: 14px;
	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: 16px;
	}
}

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

/* Category Blog */
.blog {
	margin-top: -30px;
}
.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;
}
.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: 16px;
	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: 14px;
	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: #ed2328;
}
.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-header .module-title-bg {
	margin-bottom: -50px;
}
.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,
.page.nas-tim .read-more {
	display: block;
}
.read-more:hover .btn-txt {
	opacity: 1;
	transform: translateX(0);
}
.read-more:hover .btn-plus {
	-webkit-transform: rotate(360deg);
	-moz-transform: rotate(360deg);
	-o-transform: rotate(360deg);
	-ms-transform: rotate(360deg);
	transform: rotate(360deg);
}

.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;
}
.btn-plus {
	position: relative;
	display: inline-block;
	vertical-align: middle;
	width: 40px;
	height: 40px;
	border: 1px solid rgba(255,255,255,0.3);
	border-radius: 50%;
	-webkit-transition: transform 0.35s ease;
	-moz-transition: transform 0.35s ease;
	-o-transition: transform 0.35s ease;
	transition: transform 0.35s ease;
}
.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.3);
}
.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.3);
}
.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: 768px) {
	.subcategory-items .article-item {
		width: 33%;
	}
}


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

/* 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;
}
.item-page .article-header:before {
	/*content: "";
	display: block;
	background: rgba(122,30,40,0.82);
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;*/
}
.item-page .article-header .container {
	position: relative;
	z-index: 1;
}
.item-page .article-header-inner {
	position: relative;
	padding: 100px 0 30px;
}
.item-page .article-header .title-container h2 {
	font-size: 36px;
	margin: 25px 0 45px;
	text-transform: uppercase;
}
.item-page .date-published {
	font-size: 16px;
	color: #fff;
}
.item-page .article-introtext {
	display: block;
	color: #fff;
	font-size: 16px;
	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: #000;
}
.item-page .image-intro .article-image {
	display: block;
}
.item-page .image-intro .article-image .image-cover {
	padding-bottom: 70%;
}
.item-page .article-header .image-intro {
	display: none;
}
@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%;
	}
}
@media (min-width: 768px) {
	.item-page .article-header {
		margin-bottom: 80px;
		padding: 0;
	}
	.item-page .article-header {
		background-size: cover;
		background-position: 100% 50%;
	}
	.item-page .article-header-inner {
		padding: 180px 0 30px;
	}
	.item-page .headerw50 {
		width: 55%;
		padding-right: 4%;
	}
	.item-page .article-header .image-intro {
		display: block;
		position: absolute;
		right: 0;
		bottom: -8%;
		width: 40%;
	}
}
@media (min-width: 992px) {
	.item-page .article-header-inner {
		padding: 230px 0 80px;
	}
	.item-page .headerw60 {
		width: 60%;
		font-size: 18px;
	}
}
@media (min-width: 1200px) {
	.item-page .article-header .title-container h2 {
		font-size: calc(1rem + 3vw);
	}
}

/* article body */
.item-page .article-body {
	position: relative;
	padding: 0 10px;
}
.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;
}
.item-page .article-body .image-intro {
	margin-bottom: 40px;
}
@media (min-width: 768px) {
	.item-page .article-body {
		padding: 0;
	}
	.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: #ed2328;
}
.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: #ed2328;
	position: absolute;
	left: 0;
	top: 5px;
}
.rightArticle .category-module .article-image {
	margin-bottom: 0px;
}
.rightArticle .image-cover {
	padding-bottom: 100%;
}
.rightArticle h4 {
	font-size: 14px;
	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: 14px;
		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;
}

/* 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;
	border-top: 50px solid #111;
	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: 14px;
	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 {
	margin-top: 50px;
	padding-top: 50px;
	padding-bottom: 50px;
	border-top: 1px solid #eee;
	overflow-x: hidden;
}
.article-bottom .moduletable > h3 {
	font-size: 38px;
	margin-bottom: 50px;
	text-transform: uppercase;
}
@media (min-width: 768px) {
	.article-bottom .article-data h3 {
		font-size: 14px;
		height: 64px;
		overflow: hidden;
	}
}
@media (min-width: 1200px) {
	.article-bottom .article-data h3 {
		font-size: 16px;
		height: 57.6px;
	}
}

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

/* O nama */
.text-1 {
	margin-left: 4%;
	padding: 15% 10%;
}
.page.o-nama .text-1 h3 {
	font-size: 7vw;
	color: #ababab;
}
.block-2 {
	position: relative;
	background: #efefef;
	margin-top: 5%;
}
.block-2-image-fluid.static {
	position: static;
}
.block-2-image-fluid .image-cover {
	padding-bottom: 90%;
}
.text-2 {
	padding: 40px 0 35px;
}
.block-3 {
	position: relative;
}
.block-3-image-fluid.static {
	position: static;
	margin-left: 55%;
}
.block-3-image-fluid .image-cover {
	padding-bottom: 90%;
}
.text-3 {
	padding: 40px 0 35px;
}
.block-4 {
	background: #efefef;
}
.text-4 {
	text-align: center;
	padding: 50px 0 0;
}
.text-4 h3 + p {
	margin-bottom: 50px;
}
.text-5 {
	padding-bottom: 25px;
}
.block-5 {
	margin-top: 5%;
}
.wide-text {
	padding-top: 25px;
}
.wide-slika {
	display: block;
	width: 100%;
}
.wide-slika a {
	position: relative;
	display: block;
	height: 300px;
	vertical-align: middle;
	text-align: center;
	overflow: hidden;
}
.wide-slika a:hover,
.wide-slika a:focus {
	color: #ed2328;
}
.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);
}
.btn-icon-plus {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	display: inline-block;
	width: 30vw;
	height: 30vw;
	background: 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;
}
.btn-icon-plus:after {
	content: "+";
	font-size: 22vw;
	font-weight: normal;
	line-height: 30vw;
}
.btn-icon-plus:hover,
.btn-icon-plus:focus {
	-webkit-transform: rotate(360deg);
	-moz-transform: rotate(360deg);
	-o-transform: rotate(360deg);
	-ms-transform: rotate(360deg);
	transform: rotate(360deg);
}
@media (min-width: 768px) {
	.page.o-nama .text-1 h3 {
		font-size: 36px;
	}
	.block-2-image-fluid {
		position: absolute;
		width: 45%;
		max-width: 1000px;
		right: 55%;
		top: 10%;
	}
	.text-2,
	.text-5 {
		margin-left: 4%;
		padding: 14% 0 12% 10%;
	}
	.block-3,
	.block-4 {
		margin-top: 5%;
	}
	.block-3-image-fluid {
		position: absolute;
		width: 45%;
		max-width: 1000px;
		left: 55%;
		top: 5%;
	}
	.text-3 {
		margin-right: 4%;
		padding: 0 10% 0 0;
	}
	.text-4 {
		padding: 15% 0;
	}
	.wide-slika a {
		height: 600px;
	}
	.btn-icon-plus {
		width: 20vw;
		height: 20vw;
	}
	.btn-icon-plus:after {
		font-size: 12vw;
		line-height: 20vw;
	}
}
@media (min-width: 1200px) {
	.block-2-image-fluid {
		top: -5%;
	}
	.btn-icon-plus {
		width: 15vw;
		height: 15vw;
	}
	.btn-icon-plus:after {
		font-size: 9vw;
		line-height: 15vw;
	}
}
@media (min-width: 1600px) {
	.btn-icon-plus {
		width: 10vw;
		height: 10vw;
	}
	.btn-icon-plus:after {
		font-size: 6vw;
		line-height: 10vw;
	}
}

/* mod--profesori */
.mod--profesori {
	background: #ed2328;
}
.mod--profesori .module-title {
	position: relative;
}
.mod--profesori .module-title h3 {
	position: relative;
	font-size: calc(1.4rem + 14vw);
	line-height: 0.8;
	padding: 0;
	color: rgba(255,255,255,0.1);
	margin: 50px 0 30px;
}
.mod--profesori .article-item {
	margin-left: 15px;
	margin-right: 15px;
	margin-bottom: 50px;
}
.mod--profesori .article-image {
	margin-bottom: 15px;
}
.mod--profesori .article-title {
	font-size: calc(1.4rem + 1vw);
	margin-bottom: 5px;
}
.mod--profesori .article-title a {
	color: #fff;
}
.mod--profesori .mod-articles-category-introtext {
	color: #e4d4b9;
}
@media (min-width: 480px) {
	.mod--profesori .module-title h3 {
		font-size: calc(1.4rem + 16vw);
	}
}
@media (min-width: 768px) {
	.mod--profesori .module-title h3 {
		font-size: 170px;
	}
	.mod--profesori .article-item {
		margin-bottom: 80px;
	}
	.mod--profesori .article-image {
		margin-bottom: 30px;
	}
}
@media (min-width: 992px) {
	.mod--profesori .module-title h3 {
		font-size: 210px;
		top: 60px;
		margin: 0;
	}
}
@media (min-width: 1200px) {
	.mod--profesori .module-title h3 {
		font-size: 274px;
	}
}

/* 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;
	}
}

/* Drugi o nama */
.page.drugi-o-nama .tab-content {
	border: 0 none;
	padding: 40px 0 0;
}
.mod--testimonials .article-item {
	margin-bottom: 50px;
}
.mod--testimonials .article-data {
	position: relative;
	padding-left: 70px;
}
.mod--testimonials .article-data:before {
    content: "\f10d";
    font-family: 'FontAwesome';
    font-size: 42px;
    color: #ccc;
    position: absolute;
    top: -16px;
    left: 0;
}
.mod--testimonials .article-title {
	font-size: 16px;
	color: #999;
	margin: 0;
}
.mod--testimonials .mod-articles-category-introtext {
	font-size: 18px;
	font-style: italic;
	color: #333;
	margin-bottom: 10px;
}
@media (min-width: 768px) {
	.page.drugi-o-nama .tab-content {
		padding: 80px 30px 30px;
	}
}

/* Nas tim - category page */
.page.nas-tim .blog .image-cover {
	padding-bottom: 149%;
}
.page.nas-tim .blog-list-thumb {
	display: none;
}
.page.nas-tim .blog-list-content {
	padding-left: 0;
}
.page.nas-tim .blog-list-content .article-image {
	display: block;
}
.page.nas-tim .items-leading {
	margin-bottom: 0;
}
.page.nas-tim .catitem {
	display: block;
	padding: 0;
}
.page.nas-tim .items-leading .title-container {
	position: absolute;
	width: 100%;
	bottom: 0;
	left: 0;
	z-index: 1;
}
.page.nas-tim .items-leading .title-container h2 {
	font-size: 19px;
	text-transform: uppercase;
	color: #fff;
	margin: 0;
}
.page.nas-tim .items-leading .title-container h2 a {
	display: block;
	color: #fff;
	padding: 50px;
}
.page.nas-tim.vjezbenici .items-leading .title-container {
	background: rgba(0,0,0,0.4);
}
.page.nas-tim.vjezbenici .read-more {
	display: none;
}
.page.nas-tim .catitem .readmore {
	display: none;
	position: absolute;
	right: -15px;
	top: 50%;
	margin: 0;
	margin-top: -15px;
}
.page.nas-tim .catitem .readmore .btn {
	padding: 0;
}
.page.nas-tim .catitem .readmore .btn:before {
	position: static;
	display: block;
}
.page.nas-tim .catitem .readmore a span {
	display: none;
}
@media (min-width: 768px) {
	.page.nas-tim .catitem {
		float: left;
		width: 50%;
	}
}
@media (min-width: 768px) {
	.page.nas-tim .catitem {
		width: 33%;
	}
}

/* Nas tim - article page */
.page.nas-tim .item-page .article-header {
	background-image: none;
}
.page.nas-tim .item-page .image-cover {
	padding-bottom: 149%;
}


@media (min-width: 768px) {
	.page.nas-tim .item-page .article-header .image-intro {
		bottom: auto;
		top: 100px;
	}
	.page.nas-tim .title-container h2 {
		width: 75%;
	}
}
@media (min-width: 992px) {
	
}


/* Proizvodi - article page - bottom slider */
.slick-slider-products {
	
}
.slick-list {
	overflow: visible;
}
.slick-slider-products .item {
	padding: 25px;
}
.slick-slider-products .item-container {
	-webkit-box-shadow: 10px 20px 40px rgba(0, 0, 0, 0.2);
	-moz-box-shadow: 10px 20px 40px rgba(0, 0, 0, 0.2);
	box-shadow: 10px 20px 40px rgba(0, 0, 0, 0.2);
}
.page.proizvodi .item-page .slick-slider-products .image-cover {
	padding-bottom: 100%;
}
.slick-slider-products .item-caption h3 {
	display: table;
    width: 100%;
    margin: 0;
	font-size: 20px;
}
.slick-slider-products .item-caption a {
	display: table-cell;
    vertical-align: middle;
    height: 132px;
    padding: 30px;
    border-left: 0px solid #ed2328;
	color: #000;
}

/* Page Kontakt */
.page.kontakt .kontakt-tekst {
}
.page.kontakt .kontakt-forma {
	padding-top: 25px;
}
@media (min-width: 768px) {
	.page.kontakt .item-page .article-header {
		margin-bottom: 40px;
	}
}


/* Contact page and Form */
/* Contact Us */
.contact h1 {
	margin-bottom: 8px;
}
.contact h2 {
	font-weight: bold;
	margin-top: 12px;
}
.contact .about-section a {
	color: #ed2328;
}
.contact .about-section a:hover,
.contact .about-section a:focus {
	color: #999;
}
form h2 {
	margin: 10px 0 25px;
}
.form-horizontal .formControlLabel {
	float: none;
	padding-top: 0;
	width: 100%;
	text-align: left;
	margin-bottom: 10px;
}
.form-horizontal .formControls {
	margin-left: 0;
	width: 100%;
}
.form-horizontal textarea,
.form-horizontal input[type="text"],
.form-horizontal input[type="password"] {
    background: #dde0e2;
    border: 1px solid #dde0e2;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    padding: 6px 10px;
}
.form-horizontal input[type="text"],
.form-horizontal input[type="email"],
.form-horizontal input[type="password"] {
	font-size: 16px;
    height: 46px;
    line-height: 46px;
    width: 100%;
    max-width: 100%;
}
.form-horizontal textarea {
	font-size: 16px;
	padding: 10px;
    width: 100%;
    max-width: 100%;
}
.form-control:focus {
	border-color: #dde0e2;
	-webkit-box-shadow: 0px 0px 10px #ff8080;
	-moz-box-shadow: 0px 0px 10px #ff8080;
	box-shadow: 0px 0px 10px #ff8080;
}
.rsform-block-submit .formControlLabel {
	margin-bottom: 5px;
}

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


/* --------------------------
--- 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: 18px;
	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: 18px;
}
#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: 18px;
    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: 14px;
}
.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: #ed2328;
}
.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: #ed2328;
    border-top-color: #ed2328;
    border-bottom-color: #ed2328;
}
.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: #ed2328;
    border-top-color: #ed2328;
    border-bottom-color: #ed2328;
    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}

/* person */
.scale-up-bottom{-webkit-animation:scale-up-bottom 1.4s cubic-bezier(.39,.575,.565,1.000) .6s both;animation:scale-up-bottom 1.4s cubic-bezier(.39,.575,.565,1.000) .6s both}
@-webkit-keyframes scale-up-bottom{0%{-webkit-transform:scale(.5);transform:scale(.5);-webkit-transform-origin:50% 100%;transform-origin:50% 100%}100%{-webkit-transform:scale(1);transform:scale(1);-webkit-transform-origin:50% 100%;transform-origin:50% 100%}}@keyframes scale-up-bottom{0%{-webkit-transform:scale(.5);transform:scale(.5);-webkit-transform-origin:50% 100%;transform-origin:50% 100%}100%{-webkit-transform:scale(1);transform:scale(1);-webkit-transform-origin:50% 100%;transform-origin:50% 100%}}

/* 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}}

/* intro text h3 big text */
.text-focus-in-1{-webkit-animation:text-focus-in .6s cubic-bezier(.55,.085,.68,.53) 1.5s both;animation:text-focus-in .6s cubic-bezier(.55,.085,.68,.53) 1.5s both}
.text-focus-in-2{-webkit-animation:text-focus-in .6s cubic-bezier(.55,.085,.68,.53) 2.1s both;animation:text-focus-in .6s cubic-bezier(.55,.085,.68,.53) 2.1s both}
.text-focus-in-3{-webkit-animation:text-focus-in .6s cubic-bezier(.55,.085,.68,.53) 2.7s both;animation:text-focus-in .6s cubic-bezier(.55,.085,.68,.53) 2.7s both}
@-webkit-keyframes text-focus-in{0%{-webkit-filter:blur(12px);filter:blur(12px);opacity:0}100%{-webkit-filter:blur(0);filter:blur(0);opacity:1}}@keyframes text-focus-in{0%{-webkit-filter:blur(12px);filter:blur(12px);opacity:0}100%{-webkit-filter:blur(0);filter:blur(0);opacity:1}}

/* intro text h1 small text */
.focus-in-expand-fwd{-webkit-animation:focus-in-expand-fwd .8s cubic-bezier(.25,.46,.45,.94) 3.3s both;animation:focus-in-expand-fwd .8s cubic-bezier(.25,.46,.45,.94) 3.3s both}
@-webkit-keyframes focus-in-expand-fwd{0%{letter-spacing:-.5em;-webkit-transform:translateZ(-800px);transform:translateZ(-800px);-webkit-filter:blur(12px);filter:blur(12px);opacity:0}100%{-webkit-transform:translateZ(0);transform:translateZ(0);-webkit-filter:blur(0);filter:blur(0);opacity:1}}@keyframes focus-in-expand-fwd{0%{letter-spacing:-.5em;-webkit-transform:translateZ(-800px);transform:translateZ(-800px);-webkit-filter:blur(12px);filter:blur(12px);opacity:0}100%{-webkit-transform:translateZ(0);transform:translateZ(0);-webkit-filter:blur(0);filter:blur(0);opacity:1}}


/* slide-in-right */
.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}}

/* mod intro - saznaj vise */
.slide-in-left{-webkit-animation:slide-in-left 1.5s cubic-bezier(.25,.46,.45,.94) 2.2s both;animation:slide-in-left 1.5s cubic-bezier(.25,.46,.45,.94) 2.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:1}}@keyframes slide-in-left{0%{-webkit-transform:translateX(-1000px);transform:translateX(-1000px);opacity:0}100%{-webkit-transform:translateX(0);transform:translateX(0);opacity:1}}

/* intro-bottom-layer */
.fade-in-bottom{-webkit-animation:fade-in-bottom 1s cubic-bezier(.39,.575,.565,1.000) 2s both;animation:fade-in-bottom 1s cubic-bezier(.39,.575,.565,1.000) 2s 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}}



/* Djelatnosti big image */
[data-aos="slide-in-left"]{-webkit-transform:translateX(-1000px);transform:translateX(-1000px);opacity:0}
[data-aos="slide-in-left"].aos-animate{-webkit-animation:slide-in-left 1s cubic-bezier(.25,.46,.45,.94) both;animation:slide-in-left 1s cubic-bezier(.25,.46,.45,.94) 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:1}}@keyframes slide-in-left{0%{-webkit-transform:translateX(-1000px);transform:translateX(-1000px);opacity:0}100%{-webkit-transform:translateX(0);transform:translateX(0);opacity:1}}

/* 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) {

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

}
