body, html {
    background-color: #f9f9f9;
    font-size: 18px;
    color:#333;
    font-family: Roboto, Arial, sans-serif;
}
h1, h2, h3, h4, h5 {
    font-family: 'Montserrat-sajt', Roboto, Verdana, Arial, sans-serif;
    font-weight: normal;
}
h1 {
    font-size: 36px;
}
h2 {
    font-size: 30px;
}
h3 {
    font-size: 28px;
}
h4 {
    font-size: 24px;
}
h5 {
    font-size: 22px;
}
p {
    margin-bottom: 0.5em;
}
.site {
    overflow: hidden;
}
/*--------------------------------------------------------------
## Links
--------------------------------------------------------------*/
a, a:visited {
    color:#317ade;
    text-decoration: none;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
a:hover, a:focus, a:active {
    color:#20292f;
    text-decoration: none;
}
a.no-style, a.no-style:hover, a.no-style:active, a.no-style:visited, a.no-style:focus {
    color:inherit;
    text-decoration: none;
}
a.blue-button, a.blue-button:visited, a.blue-button:focus {
    display:inline-block;
    padding:12px 20px;
    font-size:18px;
    font-family:Roboto, Arial, sans-serif;
    color:#26303e;
    text-decoration: none;
    background-color:transparent;
    margin:20px auto 50px auto;
    border:2px solid #26303e;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    text-align: center;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
a.blue-button:hover {
    text-decoration: none;
    border:2px solid #26303e;
    background-color:#26303e;
    color:#fff !important;
    padding:12px 20px;
}
.blue-button-2, .blue-button-2:visited, .blue-button-2:focus {
    display:inline-block;
    padding:12px 20px;
    font-size:18px;
    font-weight:normal;
    color:#26303e;
    text-decoration: none;
    background-color:transparent;
    margin:20px 10px 20px 0;
    border:1px solid #26303e;
    text-align: center;
    -webkit-border-radius: 26px;
    -moz-border-radius: 26px;
    border-radius: 26px;
}
.blue-button-2:hover {
    background-color:#26303e;
    color:#fff !important;
}
/*--------------------------------------------------------------
# Alignments
--------------------------------------------------------------*/
.alignleft {
    display: inline;
    float: left;
    margin-right: 1.5em;
}

.alignright {
    display: inline;
    float: right;
    margin-left: 1.5em;
}

.aligncenter {
    clear: both;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/*--------------------------------------------------------------
# Clearings
--------------------------------------------------------------*/
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
    content: "";
    display: table;
    table-layout: fixed;
}

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
    clear: both;
}
/* header */
.second-menu {
    background-color: #24303e;
    color: #d8d8d8;
    font-size:14px;
    line-height: 30px;
    padding-top:5px;
    padding-bottom:5px;
}
.second-menu a {
    color: #d8d8d8;
}
.second-menu a:hover {
    color: #fff;
    text-decoration: underline;
}
.secondary-navigation {
    position: relative;
}
.menu-search.search-open {
    background-color: #FFF !important;
    -webkit-border-radius: 5px 5px 0 0 !important;
    -moz-border-radius: 5px 5px 0 0 !important;
    border-radius: 5px 5px 0 0 !important;
    -webkit-transition: background-color 0.3s;
    -moz-transition: background-color 0.3s;
    -ms-transition: background-color 0.3s;
    -o-transition: background-color 0.3s;
    transition: background-color 0.3s;
}
.search-open a {
    color:#fff !important;
    position: relative;
}
.search-open a::before {
    position: absolute;
    font-family: FontAwesome !important;
    margin:0 1px !important;
    content: '\f00d';
    color:#24303e !important;
    font-size: 16px;
}
.search-open a > i {
    font-size: 0;
}
.search-popup {
    position: absolute;
    bottom: 0;
    right: 5px;
    max-width:320px;
    background: #fff;
    visibility: hidden;
    opacity: 0;
    padding: 10px 5px 8px;
    -webkit-border-radius: 5px 0 5px 5px;
    -moz-border-radius: 5px 0 5px 5px;
    border-radius: 5px 0 5px 5px;
    -webkit-transform: translateY(50%);
    -moz-transform: translateY(50%);
    -ms-transform: translateY(50%);
    -o-transform: translateY(50%);
    transform: translateY(80%);
    -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
.search-popup-open {
    visibility: visible;
    opacity: 1;
    z-index: 1999;
    -webkit-transform: translateY(100%);
    -moz-transform: translateY(100%);
    -ms-transform: translateY(100%);
    -o-transform: translateY(100%);
    transform: translateY(99%);
}
.search-popup .widget {
    margin:0;
}
.site-header {
    position: relative;
}
.header-social img {
    width:100%;
    height:auto;
}
header .widget-area {
    float: right;
    width: 40%;
}
header .search-field {
    font-size:14px;
    padding:5px 10px !important;
}
header .search-submit {
    width:30px;
    -webkit-background-size: 100% !important;
    background-size: 100% !important;
}
.header-address p {
    font-size:14px;
    margin:0;
}
.site-branding {
    text-align: center;
    width:240px;
    display: inline-block;
    position: absolute;
    top:50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}
a.custom-logo-link, a.custom-logo-link:hover {
    border-bottom: none !important;
}
.main-navigation {
    width:80%;
    float:right;
    clear:both;
    padding-top:40px;
    padding-bottom:20px;
    font-family:'Montserrat-sajt', Roboto, Arial, sans-serif;
}
.top-bar {
    background-color: #24303e;
    width:100%;
    font-family:'Montserrat-sajt', Roboto, Arial, sans-serif;
}
.main-menu {
    position: relative;
    background-color: #fff;
    padding-bottom:5px;
    -webkit-box-shadow: 0 2px 15px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 0 2px 15px rgba(0, 0, 0, 0.25);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.25);
    z-index: 100;
}
.main-menu.sticky-menu {
    position: fixed;
    left: 0;
    right: 0;
    -webkit-animation: menuFlyIn;
    -o-animation: menuFlyIn;
    animation: menuFlyIn;
    -webkit-animation-duration: 0.3s;
    -moz-animation-duration: 0.3s;
    -o-animation-duration: 0.3s;
    animation-duration: 0.3s;
    -webkit-animation-fill-mode: forwards;
    -moz-animation-fill-mode: forwards;
    -o-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-backface-visibility: hidden;
    -webkit-transform: translate3D(0, 0, 0);
    -moz-transform: translate3D(0, 0, 0);
    -ms-transform: translate3D(0, 0, 0);
    -o-transform: translate3D(0, 0, 0);
    transform: translate3D(0, 0, 0);
}
@-ms-keyframes menuFlyIn {
    0% {top:-60px;}
    100% {top:0;}
}
@-o-keyframes menuFlyIn {
    0% {top:-60px;}
    100% {top:0;}
}
@-moz-keyframes menuFlyIn {
    0% {top:-60px;}
    100% {top:0;}
}
@-webkit-keyframes menuFlyIn {
    0% {top:-60px;}
    100% {top:0;}
}
@keyframes menuFlyIn {
    0% {top:-60px;}
    100% {top:0;}
}
.dashicons {
    margin:0;
    vertical-align: middle;
}
.disableScroll {
    margin: 0; height: 100%; overflow: hidden;
}
.outside-link > a {
    position: relative !important;
}
.outside-link > a::before {
    content: "\f504";
    font-family:dashicons;
    position: absolute !important;
    display:inline-block;
    right:15px;
    top:6px;
    color:inherit;
    font-size: 1.2em !important;
}
.scrollToTop {
    width:50px;
    height:50px;
    border:1px solid #495f73 !important;
    background-color: #25313f;
    text-align: center;
    vertical-align: middle;
    color:#fff !important;
    font-size:24px;
    opacity:0.5;
    position: fixed;
    bottom:20px;
    right:20px;
    outline:none;
    z-index: 9990;
    display:none;
}
.scrollToTop:hover,
.scrollToTop:active,
.scrollToTop:focus {
    opacity:1;
    color:#fff;
    text-decoration: none;
}
.scrollToTop > span {
    line-height:inherit;
}
/* header end */
/* footer start */
.blog-footer {
    padding: 0;
    color: #cccccc;
    text-align: left;
    background:#24303e;
}
.blog-footer p:last-child {
    margin-bottom: 0;
}
.footer-copyright {
    background-color:rgba(38,38,38,0.6);
    padding-bottom:16px;
    text-align: center;
    width:100%;
}
.footer-copyright p,
.footer-copyright a,
.footer-copyright a:hover,
.footer-copyright a:visited {
    color:#676767;
}
.footer-main {
    padding-top:10px;
}
.blog-footer h3 {
    font-family:Montserrat-sajt, Arial, sans-serif;
    font-size:18px;
    font-weight:300;
    color:#cccccc;
    border-bottom:1px solid #cccccc;
    padding:10px 0;
    margin-bottom:30px;
    text-transform: uppercase;
}
.blog-footer p,
.blog-footer a {
    font-family:Roboto, sans-serif;
    font-size:16px;
    line-height:1.5;
}
.blog-footer a {
    font-style: italic;
    color:#317ade;
}
.footer-social-link {
    opacity:0.4;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
.footer-social-link:hover {
    opacity:0.8;
}
a.footer-social {
    display:inline-block !important;
    width:100%;
    padding:0 !important;
    margin:0 5px 0 0 !important;
    max-width:40px;
    opacity:0.6;
    -webkit-transition: opacity 0.3s;
    -moz-transition: opacity 0.3s;
    -ms-transition: opacity 0.3s;
    -o-transition: opacity 0.3s;
    transition: opacity 0.3s;
}
a.footer-social:hover {
    opacity:1;
}
/* footer end */
/* search field mod */
.search-form {
    position: relative;
}
.search-form label {
    width:100%;
    margin:0;
}
.search-field {
    width:100%;
    font-size:16px;
    font-weight:normal;
    padding:10px !important;
    -webkit-border-radius:0 !important;
    -moz-border-radius:0 !important;
    border-radius:0 !important;
}
.search-submit {
    position: absolute;
    right:0;
    top:0;
    width:50px;
    height:100%;
    -webkit-border-radius:0;
    -moz-border-radius:0;
    border-radius:0;
    background: #e6e6e6 url('../images/ico_search.png') center center no-repeat !important;
}
/* search field mod end */
/*** google search mods ***/
/*.gsc-input {
    padding:10px !important;
}*/
table.gstl_50 {
    margin:0 !important;
}
.gsc-input-box {
    height:auto !important;
}
td.gsc-search-button {
    padding-left:0 !important;
}
button.gsc-search-button {
    padding: 9px 10px !important;
    top: 2px !important;
    position: relative !important;
}
a.gsst_a:hover {
    background-color:transparent !important;
}
.gsc-input, .gsib_a, .gsib_b, form.gsc-search-box tr, div.gsc-input-box  {
    background-color:transparent !important;
}
.wgs_wrapper .gsc-input-box .gsib_a input {
    background-color:#fff !important;
}
input.gsc-input {
    border:1px solid #ccc !important;
    padding: 8px 5px !important;
}
.cse .gsc-search-button input.gsc-search-button-v2, input.gsc-search-button-v2 {
    margin-top:18px !important;
    border:1px solid #fff !important;
}
.gsc-input-box-hover, .gsc-input-box-focus {
    -webkit-box-shadow: none !important;
    -moz-box-shadow: none !important;
    box-shadow: none !important;
}
.cse input.gsc-input, input.gsc-input {
    width:95% !important;
}
.gsc-search-box-tools .gsc-search-box .gsc-input {
    padding-right: 0 !important;
}
form.gsc-search-box {
    padding:0 !important;
}
.cse .gsc-search-button input.gsc-search-button-v2, input.gsc-search-button-v2 {
    padding:9px !important;
}
.wgs_wrapper td.gsib_a {
    padding-right:0 !important;
}
table.gstl_51 {
    margin-bottom:0 !important;
}
    /*** google search mods end ***/
/* mega menu overrides */
.cta-item {
    background-color:#fff !important;
    padding:0 8px !important;
    -webkit-border-radius: 20px !important;
    -moz-border-radius: 20px !important;
    border-radius: 20px !important;
}
.cta-item a {
    color:#24303e !important;
    font-weight:bold !important;
}

#mega-menu-wrap-menu-1 #mega-menu-menu-1 li.mega-menu-flyout.mega-menu-item-has-children > a.mega-menu-link:after, #mega-menu-wrap-menu-1 #mega-menu-menu-1 li.mega-menu-flyout li.mega-menu-item-has-children > a.mega-menu-link:after, #mega-menu-wrap-menu-1 #mega-menu-menu-1 > li.mega-menu-item-has-children > a.mega-menu-link:after {
    -webkit-transition: transform 0.3s;
    -moz-transition: transform 0.3s;
    -ms-transition: transform 0.3s;
    -o-transition: transform 0.3s;
    transition: transform 0.3s;
}
#mega-menu-wrap-menu-1 #mega-menu-menu-1 > li.mega-menu-item.mega-toggle-on > a.mega-menu-link::after, #mega-menu-wrap-menu-1 #mega-menu-menu-1 > li.mega-menu-item > a.mega-menu-link:hover::after, #mega-menu-wrap-menu-1 #mega-menu-menu-1 > li.mega-menu-item > a.mega-menu-link:focus::after {
    -webkit-transform: rotate(-180deg);
    -moz-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    -o-transform: rotate(-180deg);
    transform: rotate(-180deg);
}
/* mega menu overrides end */
/* front page slider departments */
.front-slider {
    position: relative;
}
.departman-slider-row {
    width:95%;
    margin: 0 auto;
    position:absolute;
    bottom:0;
    z-index: 20;
}
.departman-slider {
    padding:0;
    width:15%;
    height: 160px;
    display:inline-block;
    float: right;
    overflow: hidden;
    position: relative;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
.departman-slider-0,
.departman-slider-2,
.departman-slider-3,
.departman-slider-5 {
    background-color:rgba(255,255,255,0.7);
}
.departman-slider-1,
.departman-slider-4 {
    background-color:rgba(255,255,255,0.5);
}
.departman-slider-image {
    position: absolute;
    top:35%;
    left:50%;
    width:50px;
    height:50px;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
.departman-slider a.departman-slider-link {
    position: absolute;
    color:#333;
    text-align: center;
    top:70%;
    left:50%;
    font-size: 18px;
    font-weight: bold;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.departman-slider:hover {
    background-color: #fff;
}
.departman-slider:hover .departman-slider-image {
    top:50%;
    width:50%;
    height:auto;
    opacity:0.2;
}
.departman-slider:hover .departman-slider-link {
    top:50%;
    font-size: 1.5em;
}
.promo-links-floater {
    position: absolute;
    z-index: 10;
    bottom:20%;
    left: 50%;
    padding-bottom: 20px;
    background-color: rgba(255, 255, 255,0.6);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}
.promo-links-container h2 {
    color:#24303e;
    margin-bottom:30px;
    font-weight: bold;
    position: relative;
}
.promo-links-container h2::after {
    position: absolute;
    content: '';
    width:100%;
    height:1px;
    background-color: #24303e;
    bottom: -10px;
    left:0;
}
.promo-link {
    background-color:#24303e;
    text-align: center;
    position: relative;
    -webkit-background-size: cover !important;
    background-size: cover !important;
    overflow: hidden;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    padding:12px 18px 16px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}
.promo-link::before {
    position: absolute;
    content: '';
    top:0;
    left:0;
    width:100%;
    height:100%;
    background-color: rgba(36, 48, 62, 1);
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
.promo-link:hover::before {
    background-color: rgba(36, 48, 62, 0.6);
}
.promo-link a {
    opacity:1;
    position: relative;
    z-index: 1210;
}
.promo-link:hover a {
    opacity:1;
}
.promo-link h3 {
    font-weight: bold;
    font-size: 18px;
    opacity: inherit;
    color:#fff;
}
/* front design horizontal */
/*departmant menu*/
.submenu-departmants {
    background-color: #ffffff;
    -webkit-border-radius:10px;
    -moz-border-radius:10px;
    border-radius:10px;
    -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    overflow:hidden;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    position:relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding:25px 0;
    text-transform: uppercase;
    margin-bottom:-122px;
    z-index: 99;
}
.list-dep {
    list-style: none;
}
#Departmani {
    margin: 0 auto;
    width: 100%;
    padding:0;
}
/*#departmants-menu li{
	display: table;
}*/
#Departmani li::before {
    position: absolute;
    content: '';
    margin:15% auto 0 auto;
    z-index: -1;
    width:100%;
    height:0;
    left:0;
    right:0;
    top:0;
    bottom:0;
    background-color: #24303e;
    opacity:0.2;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
#Departmani li:hover::before {
    margin:-25px auto 0 auto;
    height:200%;
    background-color: #24303e;
}
#Departmani a{
    display: table-cell;
    vertical-align: middle;
    font-family:Roboto, Arial, sans-serif;
    font-size:16px;
    color:#20292f;
    text-decoration: none;
    font-weight:bold;
    border:none;
    outline:none;
    padding:0;
    margin-left: 56px;
    padding-left: 56px;
    height: 60px;
}

.dep_1
{
    background: url('../images/icons/ico-matematika.svg') no-repeat 10% center;
    background-size: 48px 48px;
    border-right:1px solid #ccc;
}.dep_2
 {
     background: url('../images/icons/ico-informatika.svg') no-repeat 10% center;
     background-size: 48px 48px;
     border-right:1px solid #ccc;
 }

.dep_3 {
    background: url('../images/icons/ico-fizika.svg') no-repeat 20% center;
    background-size: 48px 48px;
    border-right:1px solid #ccc;
}
.dep_3 a {
    padding-left: 80px !important;
}
.dep_4 {
    background: url('../images/icons/ico-hemija.svg') no-repeat 20% center;
    background-size: 48px 48px;

}
.dep_4 a {
    padding-left: 80px !important;
}
.dep_6 {
    background: url('../images/icons/ico-geografija.svg') no-repeat 10% center;
    background-size: 48px 48px;
    border-right:1px solid #ccc;
}
.dep_5
{
    background: url('../images/icons/ico-biologija.svg') no-repeat 10% center;
    background-size: 48px 48px;
    border-right:1px solid #ccc;
}
/* front design horizontal end */
/* front page slider departments end */
/*** page styles ***/
.text-dark {
    color:#24303e;
}
.text-grey {
    color:#777;
}
.text-blue {
    color:#317ade;
}
.text-red {
    color:#ba1e1e;
}
.text-bold {
    font-weight: bold;
}
.separator {
    width: 115px;
    border-bottom: 2px solid #24303e;
    margin: 0 auto;
}
.main-content {
    padding-top:50px;
    padding-bottom:50px;
}
.main-content h1,
.main-content h2 {
    padding: 0 20%;
}
.main-content h2 {
    font-size: 48px;
    margin-bottom:60px;
}
.white-section {
    background-color: #fff;
    padding-top:50px;
    padding-bottom:50px;
}
.post-content {
    padding-top:30px;
    padding-bottom:30px;
}
.post-content h2 {
    font-size: 30px;
    font-weight: bold;
    color: #50565a;
}
.post-full-image {
    padding:150px 0 150px;
}
.post-full-header {
    position:relative;
}
.post-full-header .color-cover {
    position: absolute;
    content: '';
    top:0;
    left:0;
    width:100%;
    height:100%;
    opacity:0.75;
}
.post-full-image h1 {
    margin:0 auto;
    text-align: center;
    color:#fff;
    position: relative;
    z-index: 10;
    text-shadow: 0 5px 50px rgba(0, 0, 0, 0.5);
    font-weight: bold;
}
.post-full-color {
    padding:10px 0;
    background-color: #eaeaea;
}
.post-full-color h1 {
    font-size: 36px;
}
.post-image {
    width:100%;
    -webkit-border-radius: 4px 4px 0 0;
    -moz-border-radius: 4px 4px 0 0;
    border-radius: 4px;
    min-height:400px;
    position: relative;
    overflow: hidden;
}
.prof-section h4 {
    margin-left:15px;
}
.prof-section h4::before {
    position: absolute;
    content: '';
    width:4px;
    top:10%;
    bottom:40%;
    left:15px;
    background: #317ade;
}
.prof-section h5 {
    font-size: 1.5em;
}
.prof-section p {
    margin-bottom:5px;
}
.prof-section p > i {
    min-width:24px;
    color:#777;
    font-size: 1.2em;
    text-align: center;
}
.prof-funkcija {
    text-transform: uppercase;
    letter-spacing: 2px;
    margin:0;
    padding: 0;
    font-family: Montserrat-sajt, Verdana, sans-serif;
    font-size: 0.9em;
    color:#777;
}
.prof-separator {
    height: 5px;
    width:100%;
    max-width:240px;
    background: #dedede;
    margin:10px 0 20px;
}
.centar-ni-prof+.centar-ni-prof::before {
    content: '';
    position: absolute;
    width: 2px;
    top:100px;
    bottom:100px;
    left:0;
    background-color: #dedede;
}
hr {
	clear:both;
	float:none;
}
/*page styles end */
/* TABLES STYLES */
table {
    width:100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    border:1px solid #ccc;
    font-family:Roboto, Arial, sans-serif;
}

table tr {
    border-bottom:1px solid #ccc;
    background-color: #f2f2f2;
}
table tr:nth-child(odd) {
    background-color: #f5f5f5;
}
table th {
    padding:10px 5px 10px 15px;
    border-right:1px solid #ccc;
    text-align: center;
}
table th:first-child {
    text-align: left;
}
table tbody tr td {
    padding:10px 5px 10px 15px;
    border-right:1px solid #ccc;
}
table tbody tr td:last-child {
    border-right:1px solid #ccc;
}
.tablepress {
    border:1px solid #ccc !important;
}
.tablepress tr:first-child > td {
    font-weight:bold;
    background:#24303e;
    color:#fff;
}
.tablepress tbody td {
    vertical-align: middle !important;
    border-right:1px solid #ccc !important;
}
.tablepress tbody td:last-child {
    border-right:none;
}

/* TABLES STYLES END */
/* NINJA FORMS MOD */
.nf-form-cont {
    width:100% !important;
    max-width:600px;
}
.nf-field-element input, .nf-field-element select, .nf-field-element textarea {
    padding:10px 12px;
    width:50%;
    font-size:16px;
}
button.sidebar-expand,
button.opcije-expand {
    display:none;
}
.pmfRed {
    font-size:inherit;
    font-weight:inherit;
    font-family:inherit;
    color:#bc1d1d;
}
/* NINJA FORMS MOD END */
/* SIDEBAR */
.dep-sidebar,
.nastavnik-sidebar {
    -webkit-border-radius:5px;
    -moz-border-radius:5px;
    border-radius:5px;
    border:1px solid #ededed;
    -webkit-box-shadow: 0 2px 15px #ededed;
    -moz-box-shadow: 0 2px 15px #ededed;
    box-shadow: 0 2px 15px #ededed;
    background-color: #fff;
    padding:20px;
}
.nastavnik-sidebar p {
    font-size: 16px;
    word-break: break-all;
}
.nastavnik-sidebar img {
    width: 100%;
    max-width: 100%;
    height: auto;
}
.nastavnik-sidebar h3,
.nastavnik-sidebar h4 {
    font-size: 18px;
    font-weight: bold;
    color:#24303e;
    text-align: center;
}
.dep-sidebar .elementor-widget-container section {
    margin:0 0 1em;
}
.dep-sidebar .elementor-widget-container h3 {
    font-size: 24px;
}
.dep-sidebar .elementor-widget-container p {
    margin:0;
}
.dep-sidebar .elementor-widget-container .widget_media_image {
    text-align: center;
}
.dep-sidebar .elementor-widget-container h3 {
    margin-bottom:15px;
    padding-bottom:10px;
    border-bottom:1px solid #999;
}
.dep-sidebar .elementor-widget-container a {
    display:block;
    margin:0 -20px;
    padding:5px 20px;
    border:none !important;
}
.dep-sidebar .elementor-widget-container a:hover {
    color:#fff;
    border:none !important;
    background-color: #24303e;
}
.footer-main .widget-area a {
    display:block;
    margin:0 -20px;
    width:100%;
    -ms-word-break: normal;
    word-break: normal;
    padding:5px 20px;
    border:none !important;
}
.footer-main .widget-area a:hover {
    color:#fff;
    border:none !important;
}
.widget-area span.dashicons {
    margin-top:-3px;
    color:inherit;
    font-size:20px;
}
i.dashicons {
    margin-top:-1px;
    margin-right:5px;
}
/* SIDEBAR END */
/*** custom MCE Styles ***/
.link-box {
    display:block;
    padding:10px 15px 5px 30px;
    border-bottom:1px dotted #ccc;
    margin-left:15px;
    position: relative;
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -ms-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
    font-family:Roboto, Arial, sans-serif;
}
.link-box::before{
    position: absolute;
    content: '';
    width:2px;
    height:2px;
    background-color: #317ade;
    left:0;
    top:50%;
    -webkit-border-radius: 1px;
    -moz-border-radius: 1px;
    border-radius: 1px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    opacity:0;
}
.link-box::after {
    position: absolute;
    content: '';
    width:2px;
    height:2px;
    background-color: #317ade;
    left:0;
    top:50%;
    -webkit-border-radius: 1px;
    -moz-border-radius: 1px;
    border-radius: 1px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    opacity:0;
}
.link-box:hover::before {
    width:10px;
    top:calc(50% - 4px);
    opacity:1;
}
.link-box:hover::after {
    width:10px;
    top:calc(50% + 2px);
    opacity:1;
}
.link-box a {
    display:inline-block;
    text-decoration: none;
}
.section-box {
    display:block;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    border:1px solid #ededed;
    background-color: #fcfcfc;
    padding:10px 20px 15px;
    margin-bottom:20px;
    font-family:Roboto, Arial, sans-serif;
    -webkit-box-shadow: 0 2px 15px #ededed;
    -moz-box-shadow: 0 2px 15px #ededed;
    box-shadow: 0 2px 15px #ededed;
}
.section-box h5 {
    margin:20px 0;
    font-weight: 400;
    color: #24303e;
}
.external-link {
    width:100%;
    display:block;
    margin:20px 0;
    padding:10px 10px 10px 50px;
    background-color:#f1f1f1;
    position: relative;
}
.external-link::after {
    position: absolute;
    content: '';
    background: transparent url(images/ext_link.png) center center no-repeat;
    -webkit-background-size: 100%;
    background-size: 100%;
    width:16px;
    height:100%;
    top:0;
    left:20px;
}
.info-box {
    width:100%;
    max-width:800px;
    padding:10px 20px 10px 100px;
    margin:20px auto;
    border:1px solid #24303e;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    position:relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    font-family:Roboto, Arial, sans-serif;
}
.info-box::after {
    position: absolute;
    content: '';
    height:100%;
    width:80px;
    background: #24303e url(images/ico_info.png) center center no-repeat;
    -webkit-background-size: 60px;
    background-size: 60px;
    top:0;
    left:0;
}
/*** custom MCE Styles end ***/
/*** departmani page styles ***/
.dep-box {
    margin: 20px 0;
}
.dep-box span {
    margin:10px 0;
}
.dep-box-inner {
    padding:0 0 20px 0;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    text-align: center;
    background-color: #fff;
}
.dep-box-inner p {
    padding:0 20px 0;
    margin-bottom:10px;
    text-align: left;
}
.dep-box-inner h2 {
    text-align: left;
    padding:0 20px 0;
    margin:20px 0 0;
    font-size: 1.5em;
}
.dep-box-inner .btn {
    padding:10px 10px 10px 20px;
    border:none !important;
    text-align:left;
    background:transparent;
    color:#205eb3;
    -webkit-border-radius:0 !important;
    -moz-border-radius:0 !important;
    border-radius:0 !important;
    margin:0;
}
.dep-box-inner .btn:hover {
    background:#26303e;
    color:#ffffff;
}
.dep-box-inner .btn:focus,
.dep-box-inner .btn:active {
    margin:0;
    border:none;
    outline:none;
}
.dep-box-inner hr {
    width:90%;
}
/* departments animations */
.department-circle {
    margin-top:20px;
    position: relative;
    width: 120px;
    height:120px;
    -webkit-border-radius:50%;
    -moz-border-radius:50%;
    border-radius:50%;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    background-color: #24303e;
    display:inline-block;
    -webkit-animation:dep_appear;
    -o-animation:dep_appear;
    animation:dep_appear;
    -webkit-animation-duration: 0.8s;
    -moz-animation-duration: 0.8s;
    -o-animation-duration: 0.8s;
    animation-duration: 0.8s;
    -webkit-animation-iteration-count: 1;
    -moz-animation-iteration-count: 1;
    -o-animation-iteration-count: 1;
    animation-iteration-count: 1;
    -webkit-animation-fill-mode: forwards;
    -moz-animation-fill-mode: forwards;
    -o-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}
.department-circle > span {
    position: absolute;
    top: -7px;
    left:3px;
    width:114px;
    height:114px;
    -webkit-border-radius:50%;
    -moz-border-radius:50%;
    border-radius:50%;
    background-color: #f5f5f5;
    -webkit-animation:dep_inner_appear;
    -o-animation:dep_inner_appear;
    animation:dep_inner_appear;
    animation-duration: 1s;
    -webkit-animation-delay: 0.2s;
    -moz-animation-delay: 0.2s;
    -o-animation-delay: 0.2s;
    animation-delay: 0.2s;
    -webkit-animation-iteration-count: 1;
    -moz-animation-iteration-count: 1;
    -o-animation-iteration-count: 1;
    animation-iteration-count: 1;
    -webkit-animation-fill-mode: forwards;
    -moz-animation-fill-mode: forwards;
    -o-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    opacity:0;
    overflow:hidden;
}
.department-circle > span > img {
    position: absolute;
    top:120px;
    left:50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    width:0;
    height:0;
    -webkit-animation:dep_img_appear;
    -o-animation:dep_img_appear;
    animation:dep_img_appear;
    -webkit-animation-duration: 0.5s;
    -moz-animation-duration: 0.5s;
    -o-animation-duration: 0.5s;
    animation-duration: 0.5s;
    -webkit-animation-delay: 0.4s;
    -moz-animation-delay: 0.4s;
    -o-animation-delay: 0.4s;
    animation-delay: 0.4s;
    -webkit-animation-iteration-count: 1;
    -moz-animation-iteration-count: 1;
    -o-animation-iteration-count: 1;
    animation-iteration-count: 1;
    -webkit-animation-fill-mode: forwards;
    -moz-animation-fill-mode: forwards;
    -o-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}
@keyframes dep_appear {
    0% {-webkit-transform: scale(0);-moz-transform: scale(0);-ms-transform: scale(0);-o-transform: scale(0);transform: scale(0);}
    60% {-webkit-transform: scale(1.2);-moz-transform: scale(1.2);-ms-transform: scale(1.2);-o-transform: scale(1.2);transform: scale(1.2);}
    100% {-webkit-transform: scale(1);-moz-transform: scale(1);-ms-transform: scale(1);-o-transform: scale(1);transform: scale(1);}
}
@keyframes dep_inner_appear {
    0% {-webkit-transform: scale(0);-moz-transform: scale(0);-ms-transform: scale(0);-o-transform: scale(0);transform: scale(0);}
    100% {-webkit-transform: scale(1);-moz-transform: scale(1);-ms-transform: scale(1);-o-transform: scale(1);transform: scale(1);opacity:1;}
}
@keyframes dep_img_appear {
    0% {top:120px;width:0;height:0;}
    50% {top:10px;width:90px;height:90px;}
    100% {top:20px;width:70px;height:70px;}
}
.ani-circle-2 {-webkit-animation-delay: 0.3s;-moz-animation-delay: 0.3s;-o-animation-delay: 0.3s;animation-delay: 0.3s;}
.ani-circle-2 > span {-webkit-animation-delay: 0.5s;-moz-animation-delay: 0.5s;-o-animation-delay: 0.5s;animation-delay: 0.5s;}
.ani-circle-2 > span > img {-webkit-animation-delay: 0.7s;-moz-animation-delay: 0.7s;-o-animation-delay: 0.7s;animation-delay: 0.7s;}

.ani-circle-3 {-webkit-animation-delay: 0.5s;-moz-animation-delay: 0.5s;-o-animation-delay: 0.5s;animation-delay: 0.5s;}
.ani-circle-3 > span {-webkit-animation-delay: 0.7s;-moz-animation-delay: 0.7s;-o-animation-delay: 0.7s;animation-delay: 0.7s;}
.ani-circle-3 > span > img {-webkit-animation-delay: 0.9s;-moz-animation-delay: 0.9s;-o-animation-delay: 0.9s;animation-delay: 0.9s;}
/* dep animations end */
.link-move,
.link-move:visited,
.link-move:active,
.link-move:focus {
    display:block;
    color:inherit !important;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    position:relative;
    left:0;
    text-decoration: none;
    border:none;
}
.link-move:hover {
    left:10px;
    text-decoration: none !important;
    color:#205eb3 !important;
    border:none;
}
/*** departmani pages style end ***/
.vest {
    border: 1px solid #eaeaea;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    padding:20px 30px;
    overflow: hidden;
    background-color: #fff;
    margin:0 0 20px 0;
    -webkit-box-shadow:0 2px 15px -5px #ccc;
    -moz-box-shadow:0 2px 15px -5px #ccc;
    box-shadow:0 2px 15px -5px #ccc;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
.vest.vazno {
    border: 1px solid #4481eb;
    background-color:#ecf1f6;
}
.vest:hover {
    -webkit-box-shadow: 0 15px 15px -10px #ccc;
    -moz-box-shadow: 0 15px 15px -10px #ccc;
    box-shadow: 0 15px 15px -10px #ccc;
    -webkit-transform: translateY(-8px);
    -moz-transform: translateY(-8px);
    -ms-transform: translateY(-8px);
    -o-transform: translateY(-8px);
    transform: translateY(-8px);
}
.vest h2 {
    font-weight:bold;
    font-size:26px;
    margin:0;
}
.vest p {
    margin:10px 0 20px;
}
.vest a {
    color: #333;
}
.vest .datum {
    float:right;
    font-size:16px;
    color:#111;
    padding:8px 20px 8px 15px;
    margin-right:-32px;
    margin-top:-22px;
    background-color:#e0e0e0;
    position:relative;
}
.vest .datum::before {
    content:'';
    position:absolute;
    z-index:-1;
    left:-20px;
    top:0;
    bottom:0;
    width:60px;
    background-color:#e0e0e0;
    -webkit-transform: skew(45deg);
    -moz-transform: skew(45deg);
    -ms-transform: skew(45deg);
    -o-transform: skew(45deg);
    transform: skew(45deg);
}
.vest.vazno .datum {
    background-image: linear-gradient(270deg, #205eb3 0%, #4481eb 100%);
    color:#fff;
}
.vest.vazno .datum::before {
    background-color:#4481eb;
}
.vest .kategorija,
.vest-vreme {
    font-family:'Montserrat-sajt', Verdana, sans-serif;
    text-transform:uppercase;
    letter-spacing:5px;
    font-size: 14px;
    color:#a0a0a0;
    margin-bottom:10px;
    display:inline-block;
}
.vest a.vest-link {
    text-decoration:none;
    color:#205eb3;
}
.vest a.vest-link::after {
    content:'\2192';
    margin-left:5px;
    display:inline-block;
    -webkit-transition: margin-left 0.3s;
    -moz-transition: margin-left 0.3s;
    -ms-transition: margin-left 0.3s;
    -o-transition: margin-left 0.3s;
    transition: margin-left 0.3s;
}
.vest a:hover::after {
    margin-left:12px;
}
.nema-vesti,
.nema-vesti h2 {
    text-align: center;
    color:#576D7E;
    font-size: 24px;
    font-weight: bold;
}
.vesti-potpis h4 {
    font-size: 22px;
    font-weight: bold;
    color:#555;
}
.vesti-potpis p {
    margin:15px 0 0;
    font-style: italic;
    color:#777;
    font-size: 16px;
    text-transform: uppercase;
    padding-left:30px;
    position: relative;
}
.vesti-potpis p::before {
    position: absolute;
    content: '';
    left:0;
    top:45%;
    width:24px;
    height:1px;
    background-color: #777;
}
.naslovna-vest {
    padding:5px 0;
    margin:5px 0;
    vertical-align:top;
    position:relative;
}
.naslovna-vest::after {
    content:'';
    position:relative;
    display:block;
    clear:both;
    float:none;
}
.naslovna-vest h3 {
    font-weight:bold;
    color:#777;
    font-size:18px;
    margin-top:5px;    
    margin-bottom:5px; 
}
.naslovna-vest p {
    margin:0 0 10px 0;
}
.naslovna-vest span.datum {
    font-family:'Montserrat-sajt', Verdana, sans-serif;
    text-transform:uppercase;
    float:left;
    font-size: 18px;
    line-height:1.2;
    padding:5px 0;
    font-weight:bold;
    min-width:80px;
    background-color: #dee1e4;
    color:#808080;
    margin:0 0 5px 0;
    display:inline-block;
    text-align:center;
}
.naslovna-content {
    text-decoration:none;
    display:inline-block;
    color:#777;
    margin:0 0 0 -1px;
    padding-left:20px;
    width:90%;
}
.naslovna-vest a.link {
    text-decoration:none;
    color:#205eb3;
    position: absolute;
    top:5px;
    right:10px;
}
.naslovna-vest a.link::after {
    /*content:'\2192';*/
    content: '\00BB';
    margin-left:5px;
    display:inline-block;
    transition:margin-left 0.3s;
}
/*.naslovna-vest a.link:hover::after {
    margin-left:12px;
}*/
.naslovna-vest a.link:hover {
    color: #2c83f9;
}
.naslovna-vest::before {
    content:'';
    position:absolute;
    width:20px;
    height:20px;
    border:1px solid #dee1e4;
    -webkit-border-radius: 0 0 0 5px;
    -moz-border-radius: 0 0 0 5px;
    border-radius: 0 0 0 5px;
    border-right:none;
    border-top:none;
    bottom:0;
    left:79px;
}
.naslovna-content::after {
    position:absolute;
    content:'';
    width:20px;
    height:20px;
    border:1px solid #dee1e4;
    border-left:none;
    border-bottom:none;
    right:0;
    top:0;
    -webkit-border-radius: 0 5px 0 0;
    -moz-border-radius: 0 5px 0 0;
    border-radius: 0 5px 0 0;
}
.osoblje-image-container {
    width:130px;
    height:130px;
    display: inline-block;
    margin:0 auto;
    -webkit-background-size: cover !important;
    background-size: cover !important;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    border: 1px solid #aeaeae;
    background-position: center center !important;
    position:relative;
}

.osoblje-image-container-j {
    width:120px;
    height:150px;
    display: inline-block;
    margin:0 auto;
    -webkit-background-size: cover !important;
    background-size: cover !important;
    -webkit-border-radius: 5%;
    -moz-border-radius: 5%;
    border-radius: 5%;
    border: 1px solid #aeaeae;
    background-position: center center !important;
    position:relative;
}


.osoblje-inicijali {
    position: absolute;
    top:50%;
    left:50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    font-family: Roboto, Arial, sans-serif;
    font-size: 48px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
}
.position-bottom {
    position: absolute;
    bottom:0;
    left:50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
}
.scroll-down-cta {
    position: fixed;
    bottom:20px;
    width:60px;
    height:60px;
    padding-top:5px;
    left:50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: 2000;
    background-color: #fff;
    -webkit-box-shadow:  0 3px 10px rgba(0,0,0,0.3);
    -moz-box-shadow:  0 3px 10px rgba(0,0,0,0.3);
    box-shadow:  0 3px 10px rgba(0,0,0,0.3);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
.scroll-down-arrow {
    width:16px;
    height:16px;
    border: 3px solid #205eb3;
    border-top:none;
    border-left:none;
    margin:2px auto -5px auto;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-animation: scrollBlink;
    -o-animation: scrollBlink;
    animation: scrollBlink;
    -webkit-animation-duration: 1s;
    -moz-animation-duration: 1s;
    -o-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-iteration-count: infinite;
    -moz-animation-iteration-count: infinite;
    -o-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}
.scroll-down-arrow:nth-child(2) {
    -webkit-animation-delay: 0.3s;
    -moz-animation-delay: 0.3s;
    -o-animation-delay: 0.3s;
    animation-delay: 0.3s;
}
.scroll-down-arrow:nth-child(3) {
    -webkit-animation-delay: 0.6s;
    -moz-animation-delay: 0.6s;
    -o-animation-delay: 0.6s;
    animation-delay: 0.6s;
}
.scroll-cta-hidden {
    opacity:0;
    visibility: hidden;
}
@keyframes scrollBlink {
    0% {
        opacity:0.3;
    }
    50% {
        opacity:1;
    }
    100% {
        opacity:0.3;
    }
}
.vesti-link {
    margin-bottom: 10px;
    border-bottom: 1px dashed #dedede;
    padding-bottom: 10px;
}
#mega-menu-wrap-menu-1 #mega-menu-menu-1 > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item > a.mega-menu-link {
    white-space: normal !important;
}
.kratka-biografija {
    position: relative;
}
.kratka-biografija::after {
    position: absolute;
    content: '';
    width:100%;
    bottom:0;
    left:0;
    height:30%;
    background: -moz-linear-gradient(top, rgba(249,249,249,0) 0%, rgba(249,249,249,1) 100%);
    background: -webkit-linear-gradient(top, rgba(249,249,249,0) 0%, rgba(249,249,249,1) 100%);
    background: linear-gradient(to bottom, rgba(249,249,249,0) 0%, rgba(249,249,249,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00f9f9f9', endColorstr='#f9f9f9',GradientType=0 );
}
.greska {
    text-align: center;
    padding:30px;
    border: 1px solid #616161;
    color:#404040;
    background: #f5d2cf;
    font-weight: bold;
    margin:15px auto;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}
.spacer30 {
    height:30px;
    display:block;
}
.slider_filter {
    opacity: 0.8;
}
.front-image {
	width:100%;
	height:auto;
}
.developer-button {
    position:absolute;
    left:-30px;
    bottom: -10px;
    background: transparent;
    outline: none;
    border:none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    color:#676767;
    font-size:20px;
    font-weight: bold;
}
.developer-popup {
    position: absolute;
    bottom:0;
    left:-10px;
    text-align: left;
    padding:5px 10px;
    overflow: hidden;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    background-color:#eaeaea;
    border: 1px solid #ccc;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
button.developer-button:focus~.developer-popup {
    bottom: 20px;
    opacity:1;
    visibility: visible;
}

.header-phone {
	font-size: 12px;
	padding: 2px 0 0 0 !important;
}
.secondary-navigation{
	font-size: 12px !important;
}

