@charset "UTF-8";

:root {
	--green_main: rgba(1, 139, 69);
  --green_main_trans: rgba(1, 139, 69, 0.7);
  --green_dark_trans: rgba(1, 139, 69, 0.9);
  --green_main_trans_light: rgba(1, 139, 69, 0.4);
  --blue_main: rgba(14, 99, 178);
  --blue_main_trans: rgba(14, 99, 178, 0.9);
 	--grey: rgba(237, 237, 237);
	--grey_light: rgba(249, 249, 249);
	--grey_dark: rgba(218, 218, 218);
  --font_main: rgba(43, 43, 43);
}

* {
  margin: 0;
  padding: 0;
}

html {
/*   height: 100% */
}

BODY {
  margin: 0;
  background: #ffffff;
  color: var(--font_main);
  height: 100%;
  font-family: Tahoma, Arial, sans-serif;
}

::-moz-selection {
  color: var(--grey_light);
  background: var(--green_main);
}

::selection {
  color: var(--grey_light);
  background: var(--green_main);
}

/*********************** NOVI MENI   *************************/
nav ul,
nav li {
  list-style: none;
  padding: 0;
  margin: 0;
}
nav a {
  display: block;
  text-decoration: none;
}
nav a:hover,
nav a:visited {
  text-decoration: none;
}
.mega-menu--multi-level--container {
  background-color: var(--grey_light);
  padding: 10px 0 100px 0;
}

.menu-bar {
  background-color: var(--grey_light);
  display: flex;
}
.menu-link {
  padding: 14px 25px;
  background-color: var(--grey_light);
  color: var(--font_main);
  transition: background 0.2s, color 0.2s;
  position: relative;
  z-index: 1;
}
.menu-link[aria-haspopup="true"] {
  padding-right: 40px;
}
.menu-link[aria-haspopup="true"]:after {
  content: "";
  background-image: url('https://s3-us-west-2.amazonaws.com/s.cdpn.io/1397521/arrowRight.svg#accent');
  background-size: 14px;
  width: 14px;
  height: 14px;
  font-size: 12px;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}

.menu-list-link {
  padding: 10px 25px 10px 25px;
}

.menu-list-link:hover {
  background-color: var(--grey) !important;
}

.menu-two-columns-grid {
	width: 70% !important;
}

.menu-two-columns-grid-display {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr); /* Two columns with equal width */
  gap: 2px; /* Adjust the gap between columns */
  padding: 0; /* Remove default padding */;
}

.menu-two-columns-grid:hover {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr); /* Two columns with equal width */
  gap: 2px; /* Adjust the gap between columns */
  padding: 0; /* Remove default padding */
}

.mega-menu-header {
  font-size: 1.2em;
  text-transform: uppercase;
  font-weight: bold;
  color:  var(--green_main);
}
.mega-menu {
  background: var(--grey_light);
  z-index: 10;
}
.mega-menu--container {
  display: none;
}

.show-mega-menu--multi-level--container {
  display: flex;
  flex-direction: column;
  z-index: 1000;
  position: fixed;
  left: 0;
  top: 50px;
  width: 100%;
  background: transparent;
}

.mega-menu--multilevel--container {
  display: none;
}

.svg-container {
  left: 0;
  background: transparent;
  color: var(--grey_light);
  z-index: 1;
}
.mega-menu--multilevel--container {
  background: var(--grey_light);
}
.mega-menu--multiLevel {
z-index: 9999;
  flex-direction: column;
}
@media all and (min-width: 951px) {
  .nav {
    top: 0;
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    position: fixed;
    z-index: 99998;
    background-color: var(--grey_light);
    -webkit-box-shadow: 0px 0px 5px 0px var(--grey_dark);
    -moz-box-shadow: 0px 0px 5px 0px var(--grey_dark);
    box-shadow: 0px 0px 4px 0px var(--grey_dark);
  }
  .nav > nav {
    display: inline-flex;
    max-width: 100%;
    margin: 0 auto;
  }
  .menu [aria-haspopup="true"] ~ ul {
    display: none;
  }
  .menu-bar {
    position: relative;
  }
  .menu-bar > li > [aria-haspopup="true"]:after {
    background-image: url('https://s3-us-west-2.amazonaws.com/s.cdpn.io/1397521/arrowBottom.svg#accent');
  }
  .menu-bar > li > [aria-haspopup="true"]:hover:after {
    background-image: url('https://s3-us-west-2.amazonaws.com/s.cdpn.io/1397521/arrowBottom.svg#light');
  }
  .menu-bar > li > [aria-haspopup="true"]:focus ~ ul.mega-menu--multiLevel {
    display: flex;
    transform-origin: top;
    animation: dropdown 0.2s ease-out;
  }
  /* .menu-bar > li > [aria-haspopup="true"]:hover ~ div.mega-menu--container {
  	z-index: 1000;
    position: fixed;
    left: 0;
    top: 50px;
    width: 100%;
    background: transparent;
    display: flex;
    flex-direction: column;
  } */
  .menu-bar > li > [aria-haspopup="true"]:focus .svg-container {
    top: 142px;
    /* Adjust the top position as needed */
    left: 0;
    width: 100%;
    background: transparent;
    color: var(--grey_light);
    display: flex;
    z-index: 1;
  }
  .menu-bar > li > [aria-haspopup="true"]:focus ~ div.mega-menu--multilevel--container {
    background: var(--grey_light);
    width: 100%;
    max-width: 1200px;
    margin-left: 20%;
    display: flex;
  }
  .menu-bar > li > [aria-haspopup="true"] ~ ul:hover {
    display: flex;
  }
  .menu-bar > li > [aria-haspopup="true"] ~ ul ~ div.svg-container {
    display: flex;
  }
  .menu-bar > li:focus-within > [aria-haspopup="true"] ~ ul {
    display: flex;
  }
  .menu-bar > li > [aria-haspopup="true"]:focus,
  .menu-bar > li:focus-within > [aria-haspopup="true"],
  .menu-bar > li:hover > a {
    background:  var(--green_main);
    color: #ffffff;
  }
  .menu-bar > li > [aria-haspopup="true"]:focus:after,
  .menu-bar > li:focus-within > [aria-haspopup="true"]:after,
  .menu-bar > li:hover > a:after {
    background-image: url('https://s3-us-west-2.amazonaws.com/s.cdpn.io/1397521/arrowTop.svg#light');
  }
  .mega-menu {
    position: relative;
    left: 0;
    width: 100%;
  }
  .mega-menu:hover {
    display: flex;
  }
  .mega-menu a:hover {
    background: #dceced;
    color: #136a73;
  }
  .mega-menu--multiLevel {
    max-width: 80%;
    margin-left: 20%;
  }
  .mega-menu--multiLevel > li {
    width: 25%;
  }
  .mega-menu--multiLevel > li > [aria-haspopup="true"] ~ ul {
    left: 25%;
    width: 25%;
  }
  .mega-menu--multiLevel > li > [aria-haspopup="true"] ~ ul ul {
    width: 100%;
    left: 100%;
  }
  .mega-menu--multiLevel li:hover > [aria-haspopup="true"] ~ ul {
    display: block;
    transform-origin: left;
    animation: flyout 0.2s ease-out;
  }
  .mega-menu--multiLevel li:focus-within > [aria-haspopup="true"] ~ ul {
    display: block;
  }
  .mega-menu--multiLevel li:hover > [aria-haspopup="true"],
  .mega-menu--multiLevel li:focus-within > [aria-haspopup="true"],
  .mega-menu--multiLevel li:hover > a,
  .mega-menu--multiLevel li:focus-within > a {
    background: var(--grey_light);
    color: var(--green_main);
  }

  .mega-menu--multiLevel li:not(:hover) > [aria-haspopup="true"] ~ ul{
      display: none;
  }

  .mega-menu--multiLevel [aria-haspopup="true"] ~ ul,
  .mega-menu--multiLevel [aria-haspopup="true"] {
  
    border-left: 1px solid #f0f0f0;
  
  }
  .mega-menu--multiLevel [aria-haspopup="true"] ~ ul:hover,
  .mega-menu--multiLevel [aria-haspopup="true"]:hover {
    display: block;
  }
  .mega-menu--multiLevel [aria-haspopup="true"] ~ ul {
    position: absolute;
    top: 0;
    height: 100%;
  }
  .mega-menu--flat > * {
    flex: 1;
  }
  .mobile-menu-trigger,
  .mobile-menu-header,
  .mobile-menu-back-item {
    display: none;
  }
}
@media all and (max-width: 950px) {
  .nav {
    padding: 20px;
  }
  .mobile-menu-trigger,
  .mobile-menu-header,
  .mobile-menu-back-item {
    display: block;
  }
  .mobile-menu-trigger {
    background:  var(--green_main);
    color: #ffffff
    border: 0;
    padding: 10px;
    font-size: 1.2em;
    border-radius: 4px;
  }
  .mobile-menu-header {
    order: -1;
    background: grey;
  }
  .mobile-menu-header a {
    padding: 20px 25px;
    color: var(--grey_light);
    visibility: visible;
  }
  .menu-bar {
    flex-direction: column;
    position: fixed;
    top: 0;
    left: -100%;
    height: 100vh;
    width: 350px;
    max-width: 350px;
    max-width: 90%;
    overflow-x: hidden;
    transition: left 0.3s;
    box-shadow: 1px 0px 2px 0px rgba(0, 0, 0, 0.25);
  }
  .menu-bar > li > [aria-haspopup="true"] ~ ul {
    display: flex;
    flex-direction: column;
    background: var(--grey_light);
    position: absolute;
    left: 100%;
    top: 0;
    max-height: 100vh;
    width: 100%;
    transition: left 0.3s;
  }
  .menu-bar > li > [aria-haspopup="true"] ~ ul > li > [aria-haspopup="true"] {
    font-size: 1.2em;
  }
  .menu-bar > li > [aria-haspopup="true"] ~ ul > li > [aria-haspopup="true"] ~ ul a {
    padding-left: 40px;
  }
  .menu-bar > li > [aria-haspopup="true"] ~ ul > li > [aria-haspopup="true"] ~ ul > li > [aria-haspopup="true"] ~ ul a {
    padding-left: 80px;
  }
  .menu-bar > li > [aria-haspopup="true"] ~ ul [aria-haspopup="true"] {
    color: #2a2a2a;
  }
  .menu-bar > li > [aria-haspopup="true"] ~ ul [aria-haspopup="true"]:after {
    content: "+";
    background: none;
    font-size: 1em;
    font-weight: normal;
    height: 20px;
    line-height: 1;
  }
  .menu-bar > li > [aria-haspopup="true"] ~ ul [aria-haspopup="true"] ~ ul {
    max-height: 0px;
    transform-origin: top;
    transform: scaleY(0);
    transition: max-height 0.1s;
  }
  .mega-menu-content {
    padding: 20px 25px;
  }
  .mobile-menu-back-item {
    order: -1;
  }
  .mobile-menu-back-item a {
    background: #d9d9d9;
    color: #2a2a2a;
    max-height: calc(1.4em + 40px);
    margin-top: calc(0px - (1.4em + 40px));
    pointer-events: none;
  }
  .mobile-menu-back-item a:before {
    content: "";
    width: 14px;
    height: 12px;
    background-image: url('https://s3-us-west-2.amazonaws.com/s.cdpn.io/1397521/arrowLeft.svg#default');
    background-size: 14px;
    margin-right: 10px;
    display: inline-block;
  }
  .mobile-menu-trigger:focus ~ ul {
    left: 0;
  }
  .menu-bar:hover,
  .menu-bar:focus-within {
    left: 0;
  }
  .menu-bar > li > [aria-haspopup="true"]:focus ~ ul {
    left: 0;
  }
  .menu-bar > li > [aria-haspopup="true"] ~ ul {
    margin-top: calc(1.4em + 40px);
  }
  .menu-bar > li > [aria-haspopup="true"] ~ ul:hover,
  .menu-bar > li > [aria-haspopup="true"] ~ ul:focus-within {
    left: 0;
  }
  .menu-bar > li > [aria-haspopup="true"] ~ ul [aria-haspopup="true"]:focus ~ ul {
    max-height: 500px;
    animation: dropdown 0.3s forwards;
  }
  .menu-bar > li > [aria-haspopup="true"] ~ ul li:focus-within > [aria-haspopup="true"] ~ ul {
    transform: scaleY(1);
  }
  .menu-bar > li:focus-within ~ .mobile-menu-header a {
    visibility: hidden;
  }
}
@media all and (max-width: 950px) and (hover: none) {
  .mobile-menu-trigger:hover ~ ul {
    left: 0;
  }
  .menu-bar > li > [aria-haspopup="true"]:hover ~ ul {
    left: 0;
  }
  .menu-bar > li > [aria-haspopup="true"] ~ ul:hover {
    left: 0;
  }
  .menu-bar > li > [aria-haspopup="true"] ~ ul [aria-haspopup="true"]:hover ~ ul {
    animation: dropdown 0.3s forwards;
  }
  .menu-bar > li > [aria-haspopup="true"] ~ ul [aria-haspopup="true"] ~ ul:hover {
    transform: scaleY(1);
  }
  .menu-bar > li:hover ~ .mobile-menu-header a {
    visibility: hidden;
  }
}
@keyframes dropdown {
  0% {
    opacity: 0;
    transform: scaleY(0);
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: scaleY(1);
  }
}
@keyframes flyout {
  0% {
    opacity: 0;
    transform: scaleX(0);
  }
  100% {
    opacity: 1;
    transform: scaleX(1);
  }
}

@media all and (max-width: 1024px) {
  .nav {
    display: none;
  }
}

/*********************** NOVI MENI  KRAJ  *************************/

div.top_logo {
  overflow: hidden;
  position: absolute;
  z-index: 99999;
  top: 0;
  left: 3px;
  width: 280px;
  height: 300px;
  transition: linear 0.2s;
}

div.top_logo_fixed {
  overflow: hidden;
  position: fixed;
  z-index: 999999;
  top: 0;
  left: 3px;
  width: 280px;
  height: 300px;
  transition: linear 1s;
}

@media all and (max-width: 1536px) {
  div.top_logo {
    width: 260px;
    height: 300px;
  }
  div.top_logo_fixed {
    width: 260px;
    height: 300px;
  }
}

@media all and (max-width: 1440px) {
  div.top_logo {
    width: 260px;
    height: 280px;
  } 
  div.top_logo_fixed {
    width: 260px;
    height: 280px;
  }
}

@media all and (max-width: 1250px) {
  div.top_logo {
    z-index: 99997;
    top: 50px;
    left: 3px;
    width: 250px;
    height: 280px;
  } 
  div.top_logo_fixed {
    z-index: 99997;
    top: 50px;
    left: 3px;
    width: 250px;
    height: 280px;
  } 
}

@media all and (max-width: 1024px) {
  div.top_logo {
    top: 10px;
    left: 3px;
  } 
  div.top_logo_fixed {
    display: none;
  } 
}

@media all and (max-width: 515px) {
  div.top_logo {
    left: calc(50% - 120px);
    width: 240px;
    height: 280px;
  } 
}

div.top_nav {
  overflow: hidden;
  background-color: var(--grey_light);
  position: fixed;
  z-index: 99998;
  top: 0;
  width: 100%;
  -webkit-box-shadow: 0px 0px 5px 0px var(--grey_dark);
  -moz-box-shadow: 0px 0px 5px 0px var(--grey_dark);
  box-shadow: 0px 0px 4px 0px var(--grey_dark);
  height: 50px;
}

div.top_nav_links {
  float: left;
  width: 100%;
  text-align: center;
}

@media all and (max-width: 1024px) {
  div.top_nav {
    display: none;
  }
  div.top_nav_links {
    display: none;
  }
}
div.top_nav_links ul {
  padding: 0px 0px 0px 0px;
  margin: 0;
}

div.top_nav_links li {
  list-style: none;
  margin: 0;
  padding: 0;
  display: inline-block;
}

div.top_nav_links p {
  text-decoration: none;
  display: block;
  padding: 0;
  margin: 0;
  font-size: 18px;
  line-height: 25px;
  font-weight: 400;
}

a.menu_init {
  color: #1f3138;
  text-decoration: none;
  display: block;
  padding: 12px 20px 13px 20px;
}

a.menu_init:hover {
  color: #ffffff;
  text-decoration: none;
  background-color: var(--green_main);
}

a.menu_hover {
  color: #ffffff;
  text-decoration: none;
  display: block;
  padding: 12px 20px 13px 20px;
  background-color: var(--green_main);
}

div.justify {
  text-align: justify;
  text-justify: inter-word;
}

div.top_nav_close {
  display: none;
}

div.home_intro {
  position: relative;
  width: 100%;
  height: 95vh;
  margin-top: 50px;
  background-image: url("../img/home3.jpg"); /* The image used */
  background-color: #cccccc; /* Used if the image is unavailable */
  background-position: center bottom; /* Center the image */
  background-repeat: no-repeat; /* Do not repeat the image */
  background-size: cover; /* Resize the background image to cover the entire container */
  -webkit-box-shadow: 0 0 80px 5px #333333 inset;
  -moz-box-shadow: 0 0 80px 5px #333333 inset;
  box-shadow: 0 0 80px 5px #333333 inset;
}

@media all and (max-width: 1024px) {
  div.home_intro {
    margin-top: 0px;
  }
}

div.home_intro_txt {
  position: absolute;
  bottom: 120px;
  right: 30px;
  background: var(--green_main_trans);
  border-radius: 25px;
}

.home_intro_txt h1 {
  text-decoration: none;
  font-size: 26px;
  line-height: 1.4;
  font-weight: 400;
  color: #ffffff;
  display: block;
  padding: 20px 30px 20px 30px;
}

div.home_intro_button {
  position: absolute;
  bottom: 90px;
  right: 55px;
  background: var(--blue_main_trans);
  border-radius: 10px;
}

div.home_intro_button:hover {
  background: rgba(59, 89, 120, 1);
}

.home_intro_button a {
  text-decoration: none;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 400;
  color: #ffffff;
  display: block;
  padding: 10px 20px 10px 20px;
}

@media all and (max-width: 767px) {

  div.home_intro_txt {
    position: absolute;
    bottom: 120px;
    right: 15px;
    background: rgba(60, 136, 76, 0.7);
    border-radius: 25px;
  }

  .home_intro_txt h1 {
    font-size: 21px;
    line-height: 1.5;
    padding: 20px 20px 20px 20px;
    text-align: center;
  }
}

@media all and (max-width: 515px) {

  div.home_intro_txt {
    position: absolute;
    bottom: 90px;
    right: 15px;
    left: 15px;
    background: rgba(60, 136, 76, 0.7);
    border-radius: 25px;
  }

  div.home_intro_button {
    position: absolute;
    bottom: 60px;
    right: calc(50% - 70px);
    width: 140px;
    background: rgba(25, 84, 126, 0.9);
    border-radius: 10px;
    text-align: center;
  }
}

div.home_intro_wave {
  position: absolute;
  bottom: -5px;
  right: 0px;
  width: 100%;
  margin-bottom: -1px;
}

.white_wave{
  fill:#ffffff;
}

.lightgrey_wave{
  fill: var(--grey);
}

.menu_wave{
  fill: var(--grey_light);
}

.green_wave {
  fill: var(--green_main);
}
.lightgreen_wave {
  fill:var(--grey);
}
.blue_wave {
  fill: var(--blue_main);
}

div.wave_lightgrey_cell {
  float: left;
  width: 100%;
  background-color: var(--grey);
  padding: 30px 0px 0px 0px;
  margin-bottom: -1px;
}

div.white_cacth {
  float: left;
  width: 100%;
  background-color: #ffffff;
  margin-top: -5px;
}

div.home_content_cell {
  float: left;
  width: 33%;
}


img.projects_img {
  width: 100%;
  height: auto;
  border: 0;
  border-radius: 3%;
}

div.home_projects {
  float: left;
  width: 100%;
  padding: 0px 0px 50px 0px;
}

@media all and (max-width: 767px) {
  div.home_projects {
    padding: 0px 0px 0px 0px;
  }
}

div.home_publicaitons {
  float: left;
  width: 100%;
  padding: 0px 0px 50px 0px;
}

@media all and (max-width: 767px) {
  div.home_publicaitons {
    padding: 0px 0px 20px 0px;
  }
}

div.footer {
  float: left;
  width: 100%;
  padding: 0px 0px 30px 0px;
  background-color: var(--grey);
  margin-top: -5px;
}

div.footer_content {
  margin: 15px;
  padding: 50px 40px 0px 40px;
}

@media all and (max-width: 1024px) { 

  div.footer_content {
    padding: 50px 20px 0px 20px;
  }

}

@media all and (max-width: 767px) {
  div.footer_content {
   text-align: center;
  }
}

div.footer_content h2 {
  font-size: 32px;
  font-weight: 600;
  padding: 15px 30px 15px 30px;
}

div.footer_content h3 {
  font-size: 21px;
  line-height: 1.4;
  font-weight: 500;
  padding: 5px 0px 5px 0px;
}

div.footer_content h4 {
  font-size: 16px;
  font-weight: 500;
  padding: 5px 0px 5px 0px;
}

div.footer_content h5 {
  font-size: 21px;
  font-weight: 400;
  padding: 5px 0px 5px 0px;
}

div.footer_content p {
  padding: 0px 0px 10px 0px;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 400;
}

div.footer_content_cell {
  float: left;
  width: 33%;
}

@media all and (max-width: 767px) {
  div.footer_content_cell {
    float: left;
    width: 100%;
  }
}

div.footer_content_cell_in {
  padding: 0px 0px 0px 70px;
}

div.footer_content_cell_in_middle {
  padding: 0px 0px 0px 28%;
}

@media all and (max-width: 1024px) {
  div.footer_content_cell_in {
    padding: 0px 30px 0px 30px;
  }
  div.footer_content_cell_in_middle {
    padding: 0px 30px 0px 30px;
  }
}
div.footer_content_cell_in_center {
  text-align: center;
}

div.footer_content_icons {
   width: 100%;
   float: left;
   background-color: var(--grey);
   text-align: center;
   padding: 0px 0px 20px 0px;
}

div.footer_content_bottom {
  width: 100%;
  float: left;
  background-color: var(--grey);
  text-align: center;
  padding: 0px 0px 20px 0px;
}

@media all and (max-width: 767px) {
  div.footer_content_bottom {
    padding: 0px 0px 60px 0px;
  }
}


div.footer_content_bottom p {
  padding: 0px 0px 0px 0px;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 400;
}

img.footermapa_img {
  width: 80%;
  height: auto;
  border: 7px solid var(--grey_dark);
  border-radius: 0px;
}

@media all and (max-width: 1024px) {
  img.footermapa_img {
    width: 100%;
  }
}

@media all and (max-width: 767px) {
  img.footermapa_img {
    width: 100%;
  }
}

img.footer_icons {
  width: 32px;
  height: auto;
}

a.footer_link {
  display: block;
  padding: 5px 0px 5px 0px;
}

a.footer_link:hover {
  color: var(--blue_main);
}

div.main_nav_close {
  overflow: hidden;
  background-color: var(--grey_light);
  position: fixed;
  z-index: 9999;
  top: -100vh;
  width: 100%;
  -webkit-box-shadow: 0px 0px 5px 0px var(--grey_dark);
  -moz-box-shadow: 0px 0px 5px 0px var(--grey_dark);
  box-shadow: 0px 0px 4px 0px var(--grey_dark);
  height: 80vh;
  transition: linear 0.3s;
}

div.main_nav_open {
  overflow: hidden;
  position: fixed;
  z-index: 9999;
  top: 50px;
  width: 100%;
  height: 85vh; 
  transition: linear 0.3s;
}

div.main_nav_open2 {
  overflow: hidden;
  position: fixed;
  z-index: 9999;
  top: 50px;
  width: 100%;
  height: 40vh; 
  transition: linear 0.3s;
}

div.main_nav_open3 {
  overflow: hidden;
  position: fixed;
  z-index: 9999;
  top: 50px;
  width: 100%;
  height: 45vh; 
  transition: linear 0.3s;
}

div.main_nav_open4 {
  overflow: hidden;
  position: fixed;
  z-index: 9999;
  top: 50px;
  width: 100%;
  height: 50vh; 
  transition: linear 0.3s;
}

div.main_nav_open5 {
  overflow: hidden;
  position: fixed;
  z-index: 9999;
  top: 50px;
  width: 100%;
  height: 88vh; 
  transition: linear 0.3s;
}

div.main_menu_color {
  height: calc(100% - 80px);
  background-color: var(--grey_light);
}

@media all and (max-width: 1024px) {
  div.main_nav_open {
    display: none;
  }
}
div.menu_content {
  position: absolute;
  top: 10px;
  left: 20%;
  width:80%;
}

div.menu_content a {
  text-decoration: none;
  display: block;
  color: #1f3138;
  padding: 15px 20px 15px 20px;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 400;
}

a.submenu_link {
  padding: 10px 20px 10px 20px !important;
}

a.submenu_link_s {
  padding: 6px 20px 6px 20px !important;
}

div.menu_content_mainlinks {
  width: 29%;
  height: 64vh;
  float: left;
  overflow-y: auto;
}

div.menu_content_mainlinks4 {
  width: 25%;
  height: 65vh;
  float: left;
  overflow-y: auto;
}

div.menu_content_mainlinks_cell {
  padding: 0px 0px 0px 0px;
  border-bottom: 1px solid var(--grey_light);
}

div.menu_content_mainlinks_cell:hover {
  padding: 0px 0px 0px 0px;
  background-color: var(--grey);
  border-bottom: 1px solid var(--green_main);
}

div.menu_content_mainlinks_cell_arrow {
  padding: 0px 0px 0px 0px;
  background-image: url("../img/arrow_green.svg");
  background-position: right;
  background-repeat: no-repeat;
  background-size: 18px 18px;
  border-bottom: 1px solid var(--grey_light);
}

div.menu_content_mainlinks_cell_arrow:hover {
  padding: 0px 0px 0px 0px;
  background-color: var(--grey);
  border-bottom: 1px solid var(--green_main);
}

div.menu_content_mainlinks_cell_arrow_roll {
  padding: 0px 0px 0px 0px;
  background-image: url("../img/arrow_green.svg");
  background-color: var(--grey);
  background-position: right;
  background-repeat: no-repeat;
  background-size: 18px 18px;
  border-bottom: 1px solid var(--green_main);
}

div.menu_content_sublinks_close {
  display: none;
  width: calc(50% - 2px);
  float: left;
  border-left: 0px solid var(--green_main);
  background-color: var(--grey);
}

div.menu_content_sublinks {
  width: 30%;
  height: 64vh;
  float: left;
  border-left: 1px solid var(--green_main);
  background-color: var(--grey_light);
  margin: 0px 0px 0px 20px;
  padding: 0px 0px 0px 0px;
  overflow-y: auto;
}

div.menu_content_sublinks2_1 {
  width: 25%;
  height: 35vh;
  float: left;
  border-left: 1px solid var(--green_main);
  background-color: var(--grey_light);
  margin: 0px 0px 0px 20px;
  padding: 0px 0px 0px 0px;
  overflow-y: auto;
}

div.menu_content_sublinks_projekti {
  width: 18%;
  height: 64vh;
  float: left;
  border-left: 1px solid var(--green_main);
  background-color: var(--grey_light);
  margin: 0px 0px 0px 20px;
  padding: 0px 0px 0px 0px;
  overflow-y: auto;
}

div.menu_content_sublinks4 {
  width: 22%;
  height: 64vh;
  float: left;
  border-left: 1px solid var(--green_main);
  background-color: var(--grey_light);
  margin: 0px 0px 0px 20px;
  padding: 0px 0px 0px 0px;
  overflow-y: auto;
}

div.menu_content_sublinks5 {
  width: 22%;
  height: 64vh;
  float: left;
  border-left: 1px solid var(--green_main);
  background-color: var(--grey_light);
  margin: 0px 0px 0px 20px;
  padding: 0px 0px 0px 0px;
  overflow-y: auto;
}

div.menu_content_sublinks6 {
  width: 30%;
  height: 40vh;
  float: left;
  border-left: 1px solid var(--green_main);
  background-color: var(--grey_light);
  margin: 0px 0px 0px 20px;
  padding: 0px 0px 0px 0px;
  overflow-y: auto;
}

div.menu_content_sublinks_s {
  width: 35%;
  height: 64vh;
  float: left;
  border-left: 1px solid var(--green_main);
  background-color: var(--grey_light);
  margin: 0px 0px 0px 20px;
  padding: 0px 0px 0px 0px;
  overflow-y: auto;
}

div.menu_content_sublinks_close {
  display: none;
}

div.menu_content_sublinks_cell {
  padding: 0px 0px 0px 0px;
  border-bottom: 1px solid var(--grey_light);
}

div.menu_content_sublinks_cell:hover {
  padding: 0px 0px 0px 0px;
  background-color: var(--grey);
  border-bottom: 1px solid var(--green_main);
}

div.menu_content_sublinks_cell_arrow {
  padding: 0px 0px 0px 0px;
  background-image: url("../img/arrow_green.svg");
  background-position: right;
  background-repeat: no-repeat;
  background-size: 18px 18px;
  border-bottom: 1px solid var(--grey_light);

}

div.menu_content_sublinks_cell_arrow:hover {
  padding: 0px 0px 0px 0px;
  background-color: var(--grey);
  border-bottom: 1px solid var(--green_main);
}

div.menu_content_sublinks_cell_arrow_roll {
  padding: 0px 0px 0px 0px;
  background-image: url("../img/arrow_green.svg");
  background-color: var(--grey);
  background-position: right;
  background-repeat: no-repeat;
  background-size: 18px 18px;
  border-bottom: 1px solid var(--green_main);
}

div.side_menu_cell_arrow {
  padding: 0px 0px 0px 0px;
  margin: 3px 0px 3px 0px;
  background-image: url("../img/arrow_down_green.svg");
  background-position: 98%;
  background-repeat: no-repeat;
  background-size: 18px 18px;
  border-bottom: 0px solid var(--grey_light);
  background-color: var(--grey);
  border-radius: 8px;

}

div.side_menu_cell_arrow:hover {
  background-color: var(--green_main);
  border-bottom: 0px solid var(--green_main);
  background-image: url("../img/arrow_down_white.svg");
}

a.side_link {
  font-size: 18px;
  line-height: 1.3;
  font-weight: 400;
  padding: 9px 40px 9px 20px !important;
  display: block;
  background: none !important;
}

div.side_menu_cell_arrow_roll {
  padding: 0px 0px 0px 0px;
  margin: 3px 0px 3px 0px;
  background-image: url("../img/arrow_down_white.svg");
  background-position: 98%;
  background-repeat: no-repeat;
  background-size: 18px 18px;
  border-bottom: 0px solid var(--green_main);
  background-color: var(--green_main);
  border-radius: 8px;
}

div.side_submenu_cell {
  padding: 0px 0px 0px 0px;
  border: 1px solid var(--grey_dark);
  border-radius: 5px;
  margin: 2px 2px 2px 2px;
}

div.side_submenu_cell:hover {
  padding: 0px 0px 0px 0px;
  background-color: var(--grey);
  border: 1px solid var(--green_main);
}

a.side_sublink {
  font-size: 18px;
  line-height: 1.3;
  font-weight: 400;
  padding: 6px 20px 6px 20px !important;
  display: block;
  background: none !important;
}

a.side_sublink:hover {
  color: var(--font_main) !important;
}

div.side_submenu_cell_roll {
  padding: 0px 0px 0px 0px;
  background-color: var(--grey);
  border: 1px solid var(--green_main);
  border-radius: 5px;
  margin: 2px 2px 2px 2px;
}

div.menu_content_sub2links_projekti {
  width: 24%;
  height: 71vh;
  float: left;
  border-left: 1px solid var(--green_main);
  background-color: var(--grey_light);
  margin: 0px 0px 0px 20px;
  padding: 0px 0px 0px 0px;
  overflow-y: auto;
}

div.menu_content_sub2links_projekti_l {
  width: 25%;
  height: 68vh;
  float: left;
  border-left: 1px solid var(--green_main);
  background-color: var(--grey_light);
  margin: 0px 0px 0px 20px;
  padding: 0px 0px 0px 0px;
  overflow-y: auto;
}

div.menu_content_sub2links_istorijat {
  width: 25%;
  height: 80vh;
  float: left;
  border-left: 1px solid var(--green_main);
  background-color: var(--grey_light);
  margin: 0px 0px 0px 20px;
  padding: 0px 0px 0px 0px;
  overflow-y: auto;
}

div.menu_content_sub2links_projekti_close {
  display: none;
}

div.menu_content_sub2links_projekti_s {
  width: 22%;
  height: 62vh;
  float: left;
  border-left: 1px solid var(--green_main);
  background-color: var(--grey_light);
  margin: 0px 0px 0px 20px;
  padding: 0px 0px 0px 0px;
  overflow-y: auto;
}

div.menu_content_sub2links_projekti_close {
  display: none;
}

div.menu_content_sub2links {
  width: 30%;
  height: 63vh;
  float: left;
  border-left: 1px solid var(--green_main);
  background-color: var(--grey_light);
  margin: 0px 0px 0px 20px;
  padding: 0px 0px 0px 0px;
  overflow-y: auto;
}

div.menu_content_sub2links_close {
  display: none;
}

div.main_nav_bottom_close {
  position: absolute;
  bottom: 0px;
  right: 0px;
  width: 100%;
  height: 80px;
}

div.mob_nav_close {
  overflow: hidden;
  background-color: var(--grey_light);
  position: fixed;
  z-index: 9999;
  bottom:0;
  right: -1100px;
  width: 990px;
  height: 100vh;
  transition: linear 0.3s;
}

div.mob_nav_open {
  overflow: hidden;
  background-color: var(--grey_light);
  position: fixed;
  z-index: 999998;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100vh; 
  transition: linear 0.3s;
  overflow-y: auto;
}

div.mobmenu_content a {
  text-decoration: none;
  display: block;
  color: #1f3138;
  padding: 0px 20px 0px 20px;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 400;
}

div.mobmenu_links {
  width: 100%;
  float: left;
  padding: 20px 0px 70px 0px;
}

div.mobmenu_links_cell {
  padding: 10px 10px 10px 0px;
  margin: 8px 10px 8px 10px;
  border-radius: 5px;
  border: 1px solid var(--grey_dark);
  background-origin: content-box;
  background-color: var(--grey);
}

div.mobmenu_sub_links_cell {
  padding: 10px 10px 10px 0px;
  margin: 8px 10px 8px 10px;
  background-image: url("../img/arrow_down_green.svg");
  background-position: right;
  background-repeat: no-repeat;
  background-size: 18px 18px;
  border-radius: 5px;
  border: 1px solid var(--grey_dark);
  background-origin: content-box;
  background-color: var(--grey);
}

div.mobmenu_content_sublinks_cell {
  padding: 10px 10px 10px 0px;
  margin: 8px 10px 8px 10px;
  border-radius: 5px;
  border: 1px solid var(--grey_dark);
  background-origin: content-box;
}

div.mobmenu_content_subsublinks_cell {
  padding: 10px 10px 10px 0px;
  margin: 8px 10px 8px 10px;
  background-image: url("../img/arrow_down_green.svg");
  background-position: right;
  background-repeat: no-repeat;
  background-size: 18px 18px;
  border-radius: 5px;
  border: 1px solid var(--grey_dark);
  background-origin: content-box;
}

div.mobmenu_content_subsublinks_link{
  padding: 10px 20px 10px 20px;
  margin: 8px 10px 8px 10px;
}

div.mobsubmenu_links_cell {
  padding: 0px 0px 0px 0px;
}
div.mobsubmenu_links_cell_close {
  padding: 0px 0px 0px 0px;
  display: none;
}

div.research_intro {
  position: relative;
  width: 100%;
  height: 66vh;
  margin-top: 50px;
  background-color: var(--grey_light);
  background-image: url("../img/odeljenje.jpg");
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: cover; 
  -webkit-box-shadow: 0 0 80px 5px #333333 inset;
  -moz-box-shadow: 0 0 80px 5px #333333 inset;
  box-shadow: 0 0 80px 5px #333333 inset;  
}

div.istrazivacka_tema_intro {
  position: relative;
  width: 100%;
  height: 84vh;
  margin-top: 50px;
  background-color: var(--grey_light);
  background-image: url("../img/home5.jpg");
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover; 
  -webkit-box-shadow: 0 0 80px 5px #333333 inset;
  -moz-box-shadow: 0 0 80px 5px #333333 inset;
  box-shadow: 0 0 80px 5px #333333 inset; 
}

div.projekti_intro {
  position: relative;
  width: 100%;
  height: 84vh;
  margin-top: 50px;
  background-color: var(--grey_light);
  background-image: url("../img/home5.jpg");
  background-position: right top;
  background-repeat: no-repeat;
  background-size: cover; 
  -webkit-box-shadow: 0 0 80px 5px #333333 inset;
  -moz-box-shadow: 0 0 80px 5px #333333 inset;
  box-shadow: 0 0 80px 5px #333333 inset; 
}

div.biblioteka_intro {
  position: relative;
  width: 100%;
  height: 84vh;
  margin-top: 50px;
  background-color: var(--grey_light);
  background-image: url("../img/home5.jpg");
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover; 
  -webkit-box-shadow: 0 0 80px 5px #333333 inset;
  -moz-box-shadow: 0 0 80px 5px #333333 inset;
  box-shadow: 0 0 80px 5px #333333 inset; 
}

div.panda_intro {
  position: relative;
  width: 100%;
  height: 84vh;
  margin-top: 50px;
  background-color: var(--grey_light);
  background-image: url("../img/home5.jpg");
  background-position: right top;
  background-repeat: no-repeat;
  background-size: cover; 
  -webkit-box-shadow: 0 0 80px 5px #333333 inset;
  -moz-box-shadow: 0 0 80px 5px #333333 inset;
  box-shadow: 0 0 80px 5px #333333 inset; 
}

div.bez_naslova_intro {
  position: relative;
  width: 100%;
  height: 64vh;
  margin-top: 50px;
  background-color: var(--grey_light);
  background-image: url("../img/odeljenje.jpg");
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover; 
  -webkit-box-shadow: 0 0 80px 5px #333333 inset;
  -moz-box-shadow: 0 0 80px 5px #333333 inset;
  box-shadow: 0 0 80px 5px #333333 inset; 
}

div.istrazivaci_intro {
  position: relative;
  width: 100%;
  height: 86vh;
  margin-top: 50px;
  background-color: var(--grey_light);
  background-image: url("../img/istrazivac2.jpg");
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover; 
  -webkit-box-shadow: 0 0 80px 5px #333333 inset;
  -moz-box-shadow: 0 0 80px 5px #333333 inset;
  box-shadow: 0 0 80px 5px #333333 inset; 
}

div.istrazivac_intro {
  position: relative;
  width: 100%;
  height: 90vh;
  margin-top: 50px;
  background-color: var(--grey_light);
  background-image: url("../img/istrazivac2.jpg");
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover; 
  -webkit-box-shadow: 0 0 80px 5px #333333 inset;
  -moz-box-shadow: 0 0 80px 5px #333333 inset;
  box-shadow: 0 0 80px 5px #333333 inset; 
}

div.istrazivacka_tema {
  position: relative;
  width: 100%;
  height: 66vh;
  margin-top: 50px;
  background-color: var(--grey_light);
  background-image: url("../img/it/cover/01.jpg");
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: cover; 
  -webkit-box-shadow: 0 0 80px 5px #333333 inset;
  -moz-box-shadow: 0 0 80px 5px #333333 inset;
  box-shadow: 0 0 80px 5px #333333 inset; 
}

@media all and (max-width: 1024px) {
  div.research_intro {
    margin-top: 0px;
  }

  div.istrazivacka_tema_intro {
    margin-top: 0px;
  }

  div.projekti_intro {
    margin-top: 0px;
  }

  div.biblioteka_intro {
    margin-top: 0px;
  }

  div.panda_intro {
    margin-top: 0px;
  }

  div.bez_naslova_intro {
    margin-top: 0px;
  }

  div.istrazivaci_intro {
    margin-top: 0px;
  }

  div.istrazivac_intro {
    margin-top: 0px;
  }

  div.istrazivacka_tema {
    margin-top: 0px;
  }
  
}

div.research_intro2 {
  position: relative;
  width: 100%;
  height: 80vh;
  margin-top: 50px;
  background-color: var(--grey_light);
  background-image: url("../img/istrazivac2.jpg");
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover; 
  -webkit-box-shadow: 0 0 80px 5px #333333 inset;
  -moz-box-shadow: 0 0 80px 5px #333333 inset;
  box-shadow: 0 0 80px 5px #333333 inset;  
}

@media all and (max-width: 1024px) {
  div.research_intro2 {
    margin-top: 0px;
  }
}

div.research_profile_photo {
  position: absolute;
  top: 60px;
  left: 120px;
  width: 30%;
}

img.profile_photo {
  width: 70%;
  height: auto;
  border: 5px solid var(--green_main);
  border-radius: 50%;
}

img.profile_photo70 {
  width: 70%;
  height: auto;
  border: 5px solid var(--green_main);
  border-radius: 50%;
}
  
div.research_profile_info_title {
  position: absolute;
  top: 30px;
  right: 30px;
  border-radius: 15px;
  background-color: var(--green_main_trans);
}

div.research_profile_info_backgorund {
  margin: 0px 0px 5px 0px;
  padding: 10px 0px 10px 0px;
  border-radius: 15px;
  background: rgba(237, 237, 237, 0.95);
}

div.research_profile_info_title3 {
  position: absolute;
  top: 30px;
  right: 30px;
  border-radius: 15px;
  background-color: var(--green_dark_trans);
  max-width: 75%;
}

div.research_profile_info {
  position: absolute;
  top: 90px;
  right: 120px;
  width: 360px;
  border-radius: 15px;
  background: rgba(237, 237, 237, 0.95);
}

@media all and (max-width: 1250px) {
  div.research_profile_photo {
    top: 60px;
    left: 160px;
    width: 30%;
  }

  div.research_profile_info_title {
    top: 60px;
    right: 30px;
    width: 360px;
  }

  div.research_profile_info_title3 {
    top: 60px;
    right: 30px;
    width: 360px;
  }
  
  div.research_profile_info {
    top: 60px;
    right: 30px;
    width: 360px;
  }
}

@media all and (max-width: 1024px) { 
  div.research_profile_photo {
    top: 80px;
    left: 160px;
    width: 35%;
  }

  div.research_profile_info_title {
    top: 90px;
    right: 30px;
    width: 360px;
  }

  div.research_profile_info_title3 {
    top: 90px;
    right: 30px;
    width: 360px;
  }
  
  div.research_profile_info {
    top: 90px;
    right: 30px;
    width: 360px;
  }
}

@media all and (max-width: 990px) { 
  div.research_profile_photo {
    top: 80px;
    left: 160px;
    width: 35%;
  }

  div.research_profile_info_title {
    top: 90px;
    right: 30px;
    width: 320px;
  }
  
  div.research_profile_info_title3 {
    top: 90px;
    right: 30px;
    width: 320px;
  }

  div.research_profile_info {
    top: 90px;
    right: 30px;
    width: 320px;
  }
}

@media all and (max-width: 810px) { 
  div.research_profile_photo {
    top: 80px;
    left: 160px;
    width: 31%;
  }

  div.research_profile_info_title {
    top: 90px;
    right: 20px;
    width: 320px;
  }

  div.research_profile_info_title {
    top: 90px;
    right: 20px;
    width: 320px;
  }
  
  div.research_profile_info {
    top: 90px;
    right: 20px;
    width: 320px;
  }
}

@media all and (max-width: 767px) {

  div.research_intro {
    position: relative;
    width: 100%;
    height: 850px;
    margin-top: 0px; 
  }

  div.istrazivacka_tema_intro {
    position: relative;
    width: 100%;
    height: 450px;
    margin-top: 0px; 
  }

  div.projekti_intro {
    position: relative;
    width: 100%;
    height: 450px;
    margin-top: 0px; 
  }

  div.biblioteka_intro {
    position: relative;
    width: 100%;
    height: 450px;
    margin-top: 0px; 
  }
  
  div.panda_intro {
    position: relative;
    width: 100%;
    height: 450px;
    margin-top: 0px; 
  }

  div.bez_naslova_intro {
    position: relative;
    width: 100%;
    height: 450px;
    margin-top: 0px; 
  }

  div.istrazivaci_intro {
    position: relative;
    width: 100%;
    height: 450px;
    margin-top: 0px; 
  }

  div.istrazivac_intro {
    position: relative;
    width: 100%;
    height: 450px;
    margin-top: 0px; 
  }

  div.istrazivacka_tema {
    position: relative;
    width: 100%;
    height: 450px;
    margin-top: 0px; 
  }

  div.research_intro2 {
    position: relative;
    width: 100%;
    height: 850px;
    margin-top: 0px; 
  }

  div.research_profile_photo {
    position: absolute;
    top: 45px;
    left: calc(50% - 165px);
    width: 50%;
  }
  
  img.profile_photo {
    width: 310px;
    height: auto;
    border: 5px solid var(--green_main);
    border-radius: 50%;
  }

  img.profile_photo70 {
    width: 310px;
    height: auto;
    border: 5px solid var(--green_main);
    border-radius: 50%;
  }
  
  div.research_profile_info_title {
    position: absolute;
    top: 390px;
    right: calc(50% - 160px);
    width: 320px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 1);
  }

  div.research_profile_info_backgorund {
    background: rgba(255, 255, 255, 1);
  }
  
  div.research_profile_info_title3 {
    position: absolute;
    top: 280px;
    right: calc(50% - 160px);
    width: 320px;
    border-radius: 15px;
  }

  div.research_profile_info {
    position: absolute;
    top: 390px;
    right: calc(50% - 160px);
    width: 320px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 1);
  }

}

@media all and (max-width: 630px) {

  div.research_intro {
    height: 1030px;
  }

  div.istrazivacka_tema_intro {
    height: 390px;
  }

  div.projekti_intro {
    height: 390px;
  }

  div.biblioteka_intro {
    height: 390px;
  }

  div.panda_intro {
    height: 390px;
  }

  div.bez_naslova_intro {
    height: 390px;
  }

  div.istrazivaci_intro {
    height: 390px;
  }

  div.istrazivac_intro {
    height: 390px;
  }

  div.istrazivacka_tema {
    height: 390px;
  }

  div.research_intro2 {
    height: 1030px;
  }

  div.research_profile_photo {
    top: 265px;
    left: calc(50% - 165px);
    width: 50%;
  }
    
  div.research_profile_info_title {
    top: 610px;
  }
  
  div.research_profile_info {
    top: 610px;
  }

}

div.research_profile_info a {
  text-decoration: none;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 400;
  padding: 5px 0px 0px 0px;
  color: var(--blue_main);
}

div.research_profile_name {
  padding: 10px 20px 15px 20px;
}

div.research_profile_name h1 {
  text-decoration: none;
  font-size: 28px;
  line-height: 1.4;
  font-weight: 600;
  padding: 0px 10px 0px 10px;
  margin: 0;
  color: #ffffff;
  text-align: center;
}

div.research_profile_name p {
  text-decoration: none;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 400;
  padding: 5px 0px 0px 0px;
  margin: 0;
}

div.research_profile_name1 {
  padding: 5px 40px 5px 40px;
}

div.research_profile_name1 h1 {
  text-decoration: none;
  font-size: 24px;
  line-height: 1.4;
  font-weight: 600;
  padding: 0px 0px 0px 0px;
  margin: 0;
}

div.research_profile_name1 p {
  text-decoration: none;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 400;
  padding: 5px 0px 0px 0px;
  margin: 0;
}

div.research_profile_place {
  padding: 5px 25px 15px 25px;
}

div.research_profile_place p {
  text-decoration: none;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 400;
  padding: 0px 0px 5px 15px;
  margin: 0;
}

div.research_profile_status {
  padding: 0px 25px 0px 25px;
}

div.research_profile_status p {
  text-decoration: none;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 400;
  padding: 10px 5px 0px 16px;
  margin: 0;
}

@media all and (max-width: 990px) { 
  div.research_profile_name h1 {
    font-size: 24px;
  }

  div.research_profile_name1 h1 {
    font-size: 24px;
  }
}

div.content_right {
  float: left;
  width: 30%;
}

div.content_right h3 {
  text-decoration: none;
  font-size: 24px;
  line-height: 1.4;
  font-weight: 600;
  padding: 20px 8px 10px 8px;
  margin: 0;
}

div.content_right a {
  text-decoration: none;
  color: var(--green_main);
  background-color: var(--grey);
  padding: 7px 12px 7px 12px;
  margin: 7px 5px 7px 5px;
  display: inline-block;
  border-radius: 5px;
  font-size: 18px;
  font-weight: 400;
}

div.content_right a:hover {
  color: #ffffff;
  background-color: var(--blue_main);
}

div.content_right1 {
  float: left;
  width: 30%;
}

div.content_right1 h3 {
  text-decoration: none;
  font-size: 24px;
  line-height: 1.4;
  font-weight: 600;
  padding: 20px 8px 10px 8px;
  margin: 0;
}

div.content_right1 a:hover {
  color: #ffffff;
  background-color: var(--blue_main);
}

@media all and (max-width: 980px) {
  div.content_right {
    width: 100%;
    padding: 0px 0px 50px 0px;
  }
  div.content_right1 {
    width: 100%;
    padding: 0px 0px 50px 0px;
  }
}

a.it_link {
  display: block;
  height: 100%;
  width: 100%;
  text-decoration: none;
  padding: 0;
  margin: 0;
  color: var(--font_main);
}

img.it_slika {
  width: 100%;
  height: auto;
}

div.istrazivacka_tema_head {
  margin: 0;
  padding: 0;
}

div.istrazivacka_tema_head p {
  font-size: 21px;
  line-height: 1.4;
  font-weight: 400;
  padding: 20px 20px 10px 20px;
  margin: 0;
  text-align: justify;
  text-justify: inter-word;
}

div.istrazivacka_tema_head h2 {
  font-size: 36px;
  line-height: 1.4;
  font-weight: 600;
  padding: 20px 20px 10px 20px;
  margin: 0;
  text-align: center;
}

img.it_head_pic {
  width: 100%;
  height: auto;
  border-radius: 25px;
}

div.istrazivacka_tema_head_pic {
  margin: 0;
  padding: 20px 10px 10px 10px;
}

img.istrazivac_photo_lista {
  width: 80px;
  height: auto;
  border: 3px solid var(--green_main);
  border-radius: 50%;
}

img.istrazivac_photo_detalj {
  width: 90px;
  height: auto;
  border: 3px solid var(--green_main);
  border-radius: 50%;
}

div.istrazivaci_detalj h3 {
  text-decoration: none;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 600;
  padding: 5px 10px 0px 10px;
  margin: 0;
}



/* popup brisemo */

div.popup_open {
	overflow: auto;
	background: rgba(1, 139, 69, 0.4);
	position: fixed;
	z-index: 9998;
	top: 0;
	width: 100%;
	height: 100vh;
	left: 0;
	margin: 0px;
	transition: 0.7s;
}

@media all and (max-width: 1024px) {
  div.popup_open {
    z-index: 9999999;
  } 
}

div.popup {
	background: rgba(1, 139, 69, 0.7);
	position: fixed;
	z-index: 9998;
	top: 0;
	width: 100%;
	height: 100vh;
	left: 0;
	margin: 0px;
	transition: 0.7s;
	display: none;
}

div.popup_content {
	overflow-y: auto;
  background-color: var(--grey_light);
	position: fixed;
	z-index: 9999;
	top: 10vh;
	width: 740px;
  height: 80vh;
	left: calc(50% - 370px);
  margin: 0;
  padding: 0px 0px 30px 0px;
	transition: 0.3s;
  border-bottom-left-radius: 25px;
  border-bottom-right-radius: 25px;
  background-repeat: no-repeat;
  background-size: 740px 247px;
  text-align: right;
}

@media all and (max-width: 1024px) {
  div.popup_content {
    top: 5vh;
    height: 85vh;
  }
}

@media all and (max-width: 990px) {
  div.popup_content {
    top: 2vh;
    width: 640px;
    height: 92vh;
    left: calc(50% - 320px);
    background-size: 640px 213px;
  }
}

@media all and (max-width: 767px) {
  div.popup_content {
    top: 2vh;
    width: 640px;
    height: 92vh;
    left: calc(50% - 320px);
    background-size: 640px 213px;
  }
}

@media all and (max-width: 670px) {
  div.popup_content {
    width: 540px;
    left: calc(50% - 270px);
    background-size: 540px 180px;
  }
}

@media all and (max-width: 560px) {
  div.popup_content {
    width: 440px;
    left: calc(50% - 220px);
    background-size: 440px 147px;
  }
}

@media all and (max-width: 460px) {
  div.popup_content {
    width: 340px;
    left: calc(50% - 170px);
    background-size: 340px 113px;
  }
}

@media all and (max-width: 360px) {
  div.popup_content {
    width: 320px;
    left: calc(50% - 160px);
    background-size: 320px 107px;
  }
}

div.popup_content h3 {
  text-decoration: none;
  font-size: 24px;
  line-height: 1.4;
  font-weight: 600;
  padding: 10px 20px 5px 20px;
  margin: -35px 0px 0px 0px;
  color: #ffffff;
  text-align: left;
}

span.popup_title {
  background: rgba(1, 139, 69, 0.8);
  padding: 10px 20px 10px 20px;
}

div.popup_content p {
  text-decoration: none;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 400;
  padding: 5px 40px 5px 40px;
  margin: 205px 0px 30px 0px;
  text-align: justify;
  text-justify: inter-word;
  background-color: var(--grey_light);
}

@media all and (max-width: 990px) {
  div.popup_content h3 {
    line-height: 1.2;
    padding: 10px 40px 10px 40px;
    margin: 113px 0px 0px 0px;
    background-color: rgba(1, 139, 69, 0.4);
  }
  span.popup_title {
    background-color: transparent;
    padding: 0;
  }
  div.popup_content p {
    margin: 10px 0px 30px 0px;
  }
}

@media all and (max-width: 670px) {
  div.popup_content h3 {
    padding: 10px 20px 10px 20px;
    margin: 128px 0px 0px 0px;
    background-color: rgba(1, 139, 69, 1);
  }
  div.popup_content p {
    padding: 5px 20px 5px 20px;
    margin: 10px 0px 30px 0px;
    text-align: left;
    text-justify: none;
  }
}

@media all and (max-width: 560px) {
  div.popup_content h3 {
    margin: 96px 0px 0px 0px;
  }
}

@media all and (max-width: 460px) {
  div.popup_content h3 {
    margin: 62px 0px 0px 0px;
  }
}

@media all and (max-width: 360px) {
  div.popup_content h3 {
    margin: 55px 0px 0px 0px;
  }
}

div.popup_content h4 {
  text-decoration: none;
  font-size: 24px;
  line-height: 1.4;
  font-weight: 600;
  padding: 0px 0px 0px 0px;
  margin: 0;
  text-align: center;
}

div.popup_content a {
  font-size: 18px;
  font-weight: 400;
  border: 0px solid var(--green_main);
  color: white;
  display: inline-block;
  padding: 10px 40px 12px 40px;
  border-radius: 5px;
  margin: 0px 0px 0px 0px;
  text-decoration: none;
  background-color: var(--green_main);
  text-align: center;
}

div.popup_content a:hover {
  background-color: var(--blue_main);
}

img.it_close_img {
  width: 32px;
  height: auto;
  border: 0;
}

a.it_close {
  display: inline-block !important;
  margin: 0 !important;
  padding: 15px 15px 0px 0px !important;
  text-decoration: none !important;
  background-color: transparent !important;
}

div.top_logo {
  overflow: hidden;
  position: absolute;
  z-index: 99999;
  top: 0;
  left: 3px;
  width: 280px;
  height: 300px;
  transition: linear 0.2s;
}

div.top_logo_fixed {
  overflow: hidden;
  position: fixed;
  z-index: 999999;
  top: 0;
  left: 3px;
  width: 280px;
  height: 300px;
  transition: linear 1s;
}

@media all and (max-width: 1536px) {
  div.top_logo {
    width: 260px;
    height: 300px;
  }
  div.top_logo_fixed {
    width: 260px;
    height: 300px;
  }
}

@media all and (max-width: 1440px) {
  div.top_logo {
    width: 260px;
    height: 280px;
  } 
  div.top_logo_fixed {
    width: 260px;
    height: 280px;
  }
}

@media all and (max-width: 1250px) {
  div.top_logo {
    z-index: 99997;
    top: 50px;
    left: 3px;
    width: 250px;
    height: 280px;
  } 
  div.top_logo_fixed {
    z-index: 99997;
    top: 50px;
    left: 3px;
    width: 250px;
    height: 280px;
  } 
}

@media all and (max-width: 1024px) {
  div.top_logo {
    top: 10px;
    left: 3px;
  } 
  div.top_logo_fixed {
    display: none;
  } 
}

@media all and (max-width: 515px) {
  div.top_logo {
    left: 20px;
    width: 240px;
    height: 280px;
  } 
}

img.top_logo {
  width: 90%;
  height: auto;
  border: 0;
}

@media all and (max-width: 515px) {
  img.top_logo {
    width: 75%;
    height: auto;
    border: 0;
  }
}

img.bottom_logo {
  width: 55%;
  height: auto;
}

img.bottom_excellent {
  width: 88px;
  height: auto;
}

img.top_search {
  width: 16px;
  height: auto;
  border: 0;
}

img.top_search_icn {
  width: 18px;
  height: auto;
  border: 0;
}

img.top_search_mobile {
  width: 21px;
  height: auto;
  border: 0;
}

img.search_close {
  width: 18px;
  height: auto;
  border: 0;
}

a.top_search_link {
  text-decoration: none;
  padding: 15px 15px 15px 15px;
}

.closed {
  display: none;
}

.opened {
  display: block;
}

div.search_field_open {
  overflow: hidden;
  background-color: var(--green_main_trans);
  position: fixed;
  z-index: 99997;
  top: 50px;
  width: 100%;
  -webkit-box-shadow: 0px 0px 5px 0px var(--grey_dark);
  -moz-box-shadow: 0px 0px 5px 0px var(--grey_dark);
  box-shadow: 0px 0px 4px 0px var(--grey_dark);
  height: 90px;
  text-align: center;
  transition: linear 0.3s;
}

div.search_field_close {
  overflow: hidden;
  background-color: var(--green_main_trans);
  position: fixed;
  z-index: 99997;
  top: -150px;
  width: 100%;
  -webkit-box-shadow: 0px 0px 5px 0px var(--grey_dark);
  -moz-box-shadow: 0px 0px 5px 0px var(--grey_dark);
  box-shadow: 0px 0px 4px 0px var(--grey_dark);
  height: 90px;
  text-align: center;
  transition: linear 0.3s;
}

div.search_field_in {
  padding: 25px 50px 0px 0px;
  text-align: right;
}

@media all and (max-width: 1154px) {
  div.search_field_open {
    display: none;
  }
  
  div.search_field_close {
    display: none;
  }

  a.top_search_link {
  display: none;
  }
}

div.search_mob_field_open {
  overflow: hidden;
  background-color: var(--green_main_trans);
  position: fixed;
  z-index: 99997;
  bottom: 0px;
  width: 100%;
  height: 40%;
  text-align: center;
  transition: linear 0.3s;
}

div.search_mob_field_close {
  overflow: hidden;
  background-color: var(--grey_light);
  position: fixed;
  z-index: 99997;
  bottom: -100%;
  width: 100%;
  height: 100px;
  text-align: center;
  transition: linear 0.3s;
}

div.search_mob_field_in {
 padding: 30px 0px 0px 0px;
}

.inputbox {
  width: 260px;
  padding: 6px 10px 6px 10px;
  margin: 0;
  font-size: 16px;
  line-height: 24px;
  color: #1E2847;
  font-weight: 400;
  border: 1px solid #d3d5d8;
  border-radius: 3px;
  transition: border-color .15s ease-in-out;
  background-color: #fff;
}

.input_search {
  width: 260px;
  padding: 6px 10px 6px 10px;
  margin: 0;
  font-size: 16px;
  line-height: 24px;
  color: #1E2847;
  font-weight: 400;
  border: 1px solid #d3d5d8;
  border-radius: 3px;
  transition: border-color .15s ease-in-out;
  background-color: #fff;
}

.input_search_mob {
  width: 220px;
  padding: 6px 10px 6px 10px;
  margin: 0;
  font-size: 16px;
  line-height: 24px;
  color: #1E2847;
  font-weight: 400;
  border: 1px solid #d3d5d8;
  border-radius: 3px;
  transition: border-color .15s ease-in-out;
  background-color: #fff;
}

div.top_nav {
  overflow: hidden;
  background-color: var(--grey_light);
  position: fixed;
  z-index: 99998;
  top: 0;
  width: 100%;
  -webkit-box-shadow: 0px 0px 5px 0px var(--grey_dark);
  -moz-box-shadow: 0px 0px 5px 0px var(--grey_dark);
  box-shadow: 0px 0px 4px 0px var(--grey_dark);
  height: 50px;
}

div.top_nav_links {
  float: left;
  width: 100%;
  text-align: center;
}

@media all and (max-width: 1024px) {
  
  div.top_nav {
    display: none;
  }
  div.top_nav_links {
    display: none;
  }
}

div.top_nav_links ul {
  padding: 0px 0px 0px 0px;
  margin: 0;
}

div.top_nav_links li {
  list-style: none;
  margin: 0;
  padding: 0;
  display: inline-block;
}

div.top_nav_links p {
  text-decoration: none;
  display: block;
  padding: 0;
  margin: 0;
  font-size: 18px;
  line-height: 25px;
  font-weight: 400;
}

a.menu_init {
  color: #1f3138;
  text-decoration: none;
  display: block;
  padding: 12px 20px 13px 20px;
}

a.menu_init:hover {
  color: #ffffff;
  text-decoration: none;
  background-color: var(--green_main);
}

a.menu_hover {
  color: #ffffff;
  text-decoration: none;
  display: block;
  padding: 12px 20px 13px 20px;
  background-color: var(--green_main);
}

div.justify {
  text-align: justify;
  text-justify: inter-word;
}

div.top_nav_hamburger {
  overflow: hidden;
  position: fixed;
  z-index: 999999;
  bottom: 5px;
  right: 12px;
  text-align: center;
  display: none;
  background-color: var(--green_main);
  padding: 12px 15px 12px 15px;
}

@media all and (max-width: 1024px) {
  div.top_nav_hamburger {
    display: inline-block;
  }
}

div.top_nav_close {
  display: none;
}

div.top_nav_search_mobile {
  overflow: hidden;
  position: fixed;
  z-index: 999999;
  bottom: 5px;
  right: 70px;
  display: none;
  background-color: var(--green_main);
  padding: 12px 15px 12px 15px;
}

@media all and (max-width: 1024px) {
  div.top_nav_search_mobile {
    display: inline-block;
  }
}


div.top_lang {
  overflow: hidden;
  position: fixed;
  z-index: 999999;
  top: 12px;
  right: 15px;
}

div.top_lang a {
  font-size: 14px;
  text-decoration: none;
  color: var(--font_main);
  padding: 5px 5px 5px 5px;
  background-color: var(--grey_light);
  display: inline-block;
}

div.mod-languages ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

div.mod-languages ul.lang-inline li {
  display: inline;
}

div.mod-languages li {
  margin-left: 0;
  margin-right: 0;
}

@media all and (max-width: 1024px) {
  div.top_lang {
    right: 20px;
  }
  div.top_lang a {
    opacity: 0.7;
  }
}

div.home_intro {
  position: relative;
  width: 100%;
  height: 95vh;
  margin-top: 50px;
  background-image: url("../../../images/cover/home-page.jpg"); /* The image used */
  background-color: #cccccc; /* Used if the image is unavailable */
  background-position: center bottom; /* Center the image */
  background-repeat: no-repeat; /* Do not repeat the image */
  background-size: cover; /* Resize the background image to cover the entire container */
  -webkit-box-shadow: 0 0 80px 5px #333333 inset;
  -moz-box-shadow: 0 0 80px 5px #333333 inset;
  box-shadow: 0 0 80px 5px #333333 inset;
}

@media all and (max-width: 1024px) {
  div.home_intro {
    margin-top: 0px;
  }
}

div.home_intro_txt {
  position: absolute;
  bottom: 120px;
  right: 30px;
  background: var(--green_main_trans);
  border-radius: 25px;
}


div.home_intro_button {
  position: absolute;
  bottom: 90px;
  right: 55px;
  background: var(--blue_main_trans);
  border-radius: 10px;
}

div.home_intro_button:hover {
  background: rgba(59, 89, 120, 1);
}

.home_intro_button a {
  text-decoration: none;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 400;
  color: #ffffff;
  display: block;
  padding: 10px 20px 10px 20px;
}

@media all and (max-width: 767px) {

  div.home_intro_txt {
    position: absolute;
    bottom: 120px;
    right: 15px;
    background: rgba(60, 136, 76, 0.7);
    border-radius: 25px;
  }

}

@media all and (max-width: 515px) {

  div.home_intro_txt {
    position: absolute;
    bottom: 90px;
    right: 15px;
    left: 15px;
    background: rgba(60, 136, 76, 0.7);
    border-radius: 25px;
  }

  div.home_intro_button {
    position: absolute;
    bottom: 60px;
    right: calc(50% - 70px);
    width: 140px;
    background: rgba(25, 84, 126, 0.9);
    border-radius: 10px;
    text-align: center;
  }
}

div.home_intro_wave {
  position: absolute;
  bottom: -5px;
  right: 0px;
  width: 100%;
  margin-bottom: -1px;
}

.white_wave{
  fill:#ffffff;
}

.lightgrey_wave{
  fill: var(--grey);
}

.menu_wave{
  fill: var(--grey_light);
}

.green_wave {
  fill: var(--green_main);
}
.lightgreen_wave {
  fill:var(--grey);
}
.blue_wave {
  fill: var(--blue_main);
}

div.wave_cell {
  float: left;
  width: 100%;
  padding: 50px 0px 5px 0px;
}

@media all and (max-width: 767px) {
  div.wave_cell {
    padding: 5px 0px 5px 0px;
  }
}
div.wave_lightgrey_cell {
  float: left;
  width: 100%;
  background-color: var(--grey);
  padding: 30px 0px 0px 0px;
  margin-bottom: -1px;
}

div.lightgrey_cacth {
  float: left;
  width: 100%;
  background-color: var(--grey);
  margin-top: -5px;
}

@media all and (max-width: 767px) {
  div.lightgrey_cacth {
    margin-top: -10px;
  }
}
div.white_cacth {
  float: left;
  width: 100%;
  background-color: #ffffff;
  margin-top: -5px;
}


div.home_content {
  margin: -5px 15px 15px 15px;
  padding: 0px 40px 0px 40px;
}

@media all and (max-width: 1024px) {

  div.home_content {
    padding: 0px 20px 0px 20px;
  }

}

div.home_content h2 {
  font-size: 32px;
  font-weight: 600;
  padding: 20px 30px 20px 30px;
}

@media all and (max-width: 767px) {
  div.home_content h2 {
    font-size: 32px;
    font-weight: 600;
    padding: 35px 10px 30px 10px;
  }
}

@media all and (max-width: 410px) {
  div.home_content h2 {
    font-size: 28px;
  }
}

div.home_content h3 {
  font-size: 21px;
  line-height: 1.4;
  font-weight: 600;
  padding: 5px 0px 5px 0px;
}

div.home_content h4 {
  font-size: 16px;
  font-weight: 400;
  padding: 5px 0px 5px 0px;
}

div.home_content h5 {
  font-size: 18px;
  font-weight: 400;
  padding: 15px 0px 5px 0px;
}

div.home_content h6 {
  font-size: 21px;
  line-height: 1.4;
  font-weight: 600;
  padding: 25px 0px 10px 0px;
}

div.home_content p {
  padding: 5px 0px 5px 0px;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 400;
}

div.home_content ul {
  padding: 0px 40px 0px 40px;
  margin: 0;
}

div.home_content li {
  margin: 0;
  padding: 5px 0px 5px 0px;
  font-size: 18px;
  line-height: 1.4;
  /*
  list-style:square;
  */
  text-align: left;
}

div.home_content a {
  text-decoration: none;
  color: var(--font_main);
}

div.home_content a:hover {
  color: var(--blue_main);
}

a.content_link {
  color: var(--green_main) !important;
}

a.content_link:hover {
  color: var(--blue_main) !important;
  text-decoration: underline !important;
}

a.content_title {
  color: var(--font_main) !important;
  font-weight: 600;
}

a.content_title:hover {
  color: var(--blue_main) !important;
  text-decoration: underline !important;
}

a.more {
  color: var(--green_main) !important;
}

a.more:hover {
  color: var(--blue_main) !important;
}



div.research_content {
  margin: -5px 15px 15px 15px;
  padding: 0px 40px 0px 40px;
}

@media all and (max-width: 1024px) {

  div.research_content {
    padding: 0px 20px 0px 20px;
  }

}

div.research_content h2 {
  font-size: 32px;
  font-weight: 600;
  padding: 20px 30px 20px 30px;
}

@media all and (max-width: 767px) {
  div.research_content h2 {
    font-size: 32px;
    font-weight: 600;
    padding: 35px 10px 30px 10px;
  }
}

@media all and (max-width: 410px) {
  div.research_content h2 {
    font-size: 28px;
  }
}

div.research_content h3 {
  font-size: 21px;
  line-height: 1.4;
  font-weight: 600;
  padding: 5px 0px 5px 0px;
}

div.research_content h4 {
  font-size: 16px;
  font-weight: 400;
  padding: 5px 0px 5px 0px;
}

div.research_content h5 {
  font-size: 18px;
  font-weight: 400;
  padding: 15px 0px 5px 0px;
}

div.research_content h6 {
  font-size: 21px;
  line-height: 1.4;
  font-weight: 600;
  padding: 25px 0px 10px 0px;
}

div.research_content p {
  padding: 5px 0px 5px 0px;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 400;
}

div.research_content ul {
  padding: 0px 40px 0px 40px;
  margin: 0;
}

div.research_content li {
  margin: 0;
  padding: 5px 0px 5px 0px;
  font-size: 18px;
  line-height: 1.4;
  /*
  list-style:square;
  */
  text-align: left;
  font-weight: 400 !important;
}

div.research_content a {
  text-decoration: none;
  color: var(--green_main);
}

div.research_content a:hover {
  color: var(--blue_main);
}


div.ibiss_breadcrumbs {
  padding: 5px 0 0 0;
  margin: 0;
}

div.ibiss_breadcrumbs a {
  color: var(--green_main) !important;
} 

ul.breadcrumb {
  padding: 5px 0 0 30px !important;
}

ul.breadcrumb li {
  margin: 0;
  padding: 2px 2px 2px 2px;
  font-size: 18px;
  line-height: 24px;
  text-align: left;
  list-style-type: none;
  display: inline-block;
}

#bread li.active {
  display: none !important;
}

span.divider {
  color: #919395; 
}

@media all and (max-width: 980px) {
  
  ul.breadcrumb {
    padding: 15px 0 0 0px !important;
  }
  
  ul.breadcrumb li {
    padding: 4px 9px 6px 9px;
    font-size: 16px;
    line-height: 22px;
    background-color: var(--grey);
    margin: 5px 0px 5px 0px;
    border-radius: 6px;
  }

  span.divider {
    display: none;
  }
}

div.projekti_full {
  padding: 0;
}

div.projekti_full p {
  padding: 5px 0px 5px 0px;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 400;
}

div.projekti_full a {
  color: var(--font_main);
}

div.projekti {
  padding: 0;
}

div.projekti p {
  padding: 5px 0px 5px 0px;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 400;
}

div.projekti a {
  color: var(--font_main);
}

div.projekti a:hover {
  color: var(--blue_main);
}

div.projekti1 {
  padding: 0;
}

div.projekti1 p {
  padding: 5px 0px 5px 0px;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 400;
}

div.projekti1 a {
  color: var(--green_main);
}

div.projekti1 a:hover {
  color: var(--blue_main);
}

div.search {
  padding: 0;
}

div.search p {
  padding: 5px 0px 5px 0px;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 400;
}

div.search a {
  font-size: 18px;
  color: var(--green_main);
}

div.search a:hover {
  color: var(--blue_main);
}

.result-text {
 font-size: 16px;
 font-weight: 400;
 line-height: 1.4;  
}

.small {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;  
}

input[type="radio"] {
  margin: 0 5px 0 0;
}

.radio {
  font-size: 16px;
  margin: 0 10px 0 0;
}

.checkbox {
  font-size: 16px;
  margin: 0 10px 0 0;
}

.controls {
  margin: 0 0 15px 0;
}
div.search_catch {
  padding: 0 30px 0 30px;
}

.result-title {
  padding: 10px 0 0 0 !important;
}

.btn {
  background-color: var(--green_main);
  border: none;
  color: white;
  padding: 11px 22px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 0;
  cursor: pointer;
}

.btn-toolbar .btn-group {
  float: left;
  padding: 0 10px 0 0;
}

div.searchintro {
  width: 100%;
  float: left;
}

fieldset {
  border: 0px solid var(--grey_dark) !important;
  margin: 0px 0 20px 0 !important;
  padding: 20px 10px 20px 0px !important;
  border-radius: 8px !important;
}

dd {
  margin: 0 0 0 0 !important;
}

.result-created {
  font-size: 14px;
  padding: 5px 0 0 0;
}

@media all and (max-width: 767px) {
  div.search_catch {
    padding: 0 0 0 0;
  }
  .btn-toolbar .btn-group {
    padding: 0 0 10px 0;
  }
  .radio {
    font-size: 14px;
    margin: 0 0 0 0;
  }

  .checkbox {
    font-size: 14px;
    margin: 0 0 0 0;
  }
  input[type="checkbox"] {
    margin: 7px 0 7px 0;
  }
}

div.home_content_cell {
  float: left;
  width: 33%;
}

div.home_content_cell_in {
  padding: 0px 30px 0px 30px;
}

@media all and (max-width: 767px) {
  div.home_content_cell {
    width: 100%;
    padding: 0px 0px 50px 0px;
  }
  div.home_content_cell_in {
    padding: 0px 10px 0px 10px;
  }
}

div.home_news {
  float: left;
  width: 100%;
  padding: 0px 0px 50px 0px;
}

div.title_arrow_push {
  padding: 0px 50px 0px 0px;
}

div.home_news_more {
  float: left;
  width: 100%;
  padding: 20px 0px 0px 0px;
  text-align: center;
}

div.home_news_more a {
  font-size: 18px;
  border: 0px solid var(--green_main);
  color: white;
  display: inline-block;
  padding: 10px 20px 12px 20px;
  border-radius: 5px;
  margin: 0px 0px 0px 0px;
  text-decoration: none;
  background-color: var(--green_main);
}

div.home_news_more a:hover {
  background-color: var(--blue_main);
  color: white !important; 
}

img.projects_img {
  width: 100%;
  height: auto;
  border: 0;
  border-radius: 3%;
}

div.home_projects {
  float: left;
  width: 100%;
  padding: 0px 0px 50px 0px;
}

@media all and (max-width: 767px) {
  div.home_news {
    float: left;
    width: 100%;
    padding: 0px 0px 10px 0px;
  }
  div.home_news_more {
    padding: 10px 0px 40px 0px;
  }
  
  div.home_projects {
    padding: 0px 0px 0px 0px;
  }
}

div.home_publicaitons {
  float: left;
  width: 100%;
  padding: 0px 0px 50px 0px;
}

@media all and (max-width: 767px) {
  div.home_publicaitons {
    padding: 0px 0px 20px 0px;
  }
}

div.footer {
  float: left;
  width: 100%;
  padding: 0px 0px 30px 0px;
  background-color: var(--grey);
  margin-top: -5px;
}

div.footer_content {
  margin: 15px;
  padding: 50px 40px 0px 40px;
}

@media all and (max-width: 1024px) { 

  div.footer_content {
    padding: 50px 20px 0px 20px;
  }

}

@media all and (max-width: 767px) {
  div.footer_content {
   text-align: center;
  }
}

div.footer_content h2 {
  font-size: 32px;
  font-weight: 600;
  padding: 15px 30px 15px 30px;
}

div.footer_content h3 {
  font-size: 21px;
  line-height: 1.4;
  font-weight: 500;
  padding: 5px 0px 5px 0px;
}

div.footer_content h4 {
  font-size: 16px;
  font-weight: 500;
  padding: 5px 0px 5px 0px;
}

div.footer_content h5 {
  font-size: 21px;
  font-weight: 400;
  padding: 5px 0px 5px 0px;
}

div.footer_content p {
  padding: 0px 0px 10px 0px;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 400;
}

div.footer_content a {
  text-decoration: none;
  color: var(--font_main);
}

div.footer_content a:hover {
  text-decoration: none;
  color: var(--blue_main);
}

div.footer_content_cell {
  float: left;
  width: 33%;
}

@media all and (max-width: 767px) {
  div.footer_content_cell {
    float: left;
    width: 100%;
  }
}

div.footer_content_cell_in {
  padding: 0px 0px 0px 70px;
}

div.footer_content_cell_in_middle {
  padding: 0px 0px 0px 28%;
}

@media all and (max-width: 1024px) {
  div.footer_content_cell_in {
    padding: 0px 30px 0px 30px;
  }
  div.footer_content_cell_in_middle {
    padding: 0px 30px 0px 30px;
  }
}
div.footer_content_cell_in_center {
  text-align: center;
}

div.footer_content_icons {
   width: 100%;
   float: left;
   background-color: var(--grey);
   text-align: center;
   padding: 0px 0px 20px 0px;
}

div.footer_content_bottom {
  width: 100%;
  float: left;
  background-color: var(--grey);
  text-align: center;
  padding: 0px 0px 20px 0px;
}

@media all and (max-width: 767px) {
  div.footer_content_bottom {
    padding: 0px 0px 60px 0px;
  }
}


div.footer_content_bottom p {
  padding: 0px 0px 0px 0px;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 400;
}

img.footermapa_img {
  width: 80%;
  height: auto;
  border: 7px solid var(--grey_dark);
  border-radius: 0px;
}

@media all and (max-width: 1024px) {
  img.footermapa_img {
    width: 100%;
  }
}

@media all and (max-width: 767px) {
  img.footermapa_img {
    width: 100%;
  }
}

img.footer_icons {
  width: 32px;
  height: auto;
}

a.footer_link {
  display: block;
  padding: 5px 0px 5px 0px;
}

a.footer_link:hover {
  color: var(--blue_main);
}

div.main_nav_close {
  overflow: hidden;
  background-color: var(--grey_light);
  position: fixed;
  z-index: 9999;
  top: -100vh;
  width: 100%;
  -webkit-box-shadow: 0px 0px 5px 0px var(--grey_dark);
  -moz-box-shadow: 0px 0px 5px 0px var(--grey_dark);
  box-shadow: 0px 0px 4px 0px var(--grey_dark);
  height: 80vh;
  transition: linear 0.3s;
}

div.main_nav_open {
  overflow: hidden;
  position: fixed;
  z-index: 9999;
  top: 50px;
  width: 100%;
  height: 85vh; 
  transition: linear 0.3s;
}

div.main_nav_open2 {
  overflow: hidden;
  position: fixed;
  z-index: 9999;
  top: 50px;
  width: 100%;
  height: 40vh; 
  transition: linear 0.3s;
}

div.main_nav_open3 {
  overflow: hidden;
  position: fixed;
  z-index: 9999;
  top: 50px;
  width: 100%;
  height: 45vh; 
  transition: linear 0.3s;
}

div.main_nav_open4 {
  overflow: hidden;
  position: fixed;
  z-index: 9999;
  top: 50px;
  width: 100%;
  height: 50vh; 
  transition: linear 0.3s;
}

div.main_nav_open5 {
  overflow: hidden;
  position: fixed;
  z-index: 9999;
  top: 50px;
  width: 100%;
  height: 88vh; 
  transition: linear 0.3s;
}

div.main_menu_color {
  height: calc(100% - 80px);
  background-color: var(--grey_light);
}

@media all and (max-width: 1024px) {
  div.main_nav_open {
    display: none;
  }
}
div.menu_content {
  position: absolute;
  top: 10px;
  left: 20%;
  width:80%;
}

div.menu_content a {
  text-decoration: none;
  display: block;
  color: #1f3138;
  padding: 15px 20px 15px 20px;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 400;
}

a.submenu_link {
  padding: 10px 20px 10px 20px !important;
}

a.submenu_link_s {
  padding: 6px 20px 6px 20px !important;
}

div.menu_content_mainlinks {
  width: 29%;
  height: 64vh;
  float: left;
  overflow-y: auto;
}

div.menu_content_mainlinks4 {
  width: 25%;
  height: 65vh;
  float: left;
  overflow-y: auto;
}

div.menu_content_mainlinks_cell {
  padding: 0px 0px 0px 0px;
  border-bottom: 1px solid var(--grey_light);
}

div.menu_content_mainlinks_cell:hover {
  padding: 0px 0px 0px 0px;
  background-color: var(--grey);
  border-bottom: 1px solid var(--green_main);
}

div.menu_content_mainlinks_cell_arrow {
  padding: 0px 0px 0px 0px;
  background-image: url("../img/arrow_green.svg");
  background-position: right;
  background-repeat: no-repeat;
  background-size: 18px 18px;
  border-bottom: 1px solid var(--grey_light);
}

div.menu_content_mainlinks_cell_arrow:hover {
  padding: 0px 0px 0px 0px;
  background-color: var(--grey);
  border-bottom: 1px solid var(--green_main);
}

div.menu_content_mainlinks_cell_arrow_roll {
  padding: 0px 0px 0px 0px;
  background-image: url("../img/arrow_green.svg");
  background-color: var(--grey);
  background-position: right;
  background-repeat: no-repeat;
  background-size: 18px 18px;
  border-bottom: 1px solid var(--green_main);
}

div.menu_content_sublinks_close {
  display: none;
  width: calc(50% - 2px);
  float: left;
  border-left: 0px solid var(--green_main);
  background-color: var(--grey);
}

div.menu_content_sublinks {
  width: 30%;
  height: 64vh;
  float: left;
  border-left: 1px solid var(--green_main);
  background-color: var(--grey_light);
  margin: 0px 0px 0px 20px;
  padding: 0px 0px 0px 0px;
  overflow-y: auto;
}

div.menu_content_sublinks2_1 {
  width: 25%;
  height: 35vh;
  float: left;
  border-left: 1px solid var(--green_main);
  background-color: var(--grey_light);
  margin: 0px 0px 0px 20px;
  padding: 0px 0px 0px 0px;
  overflow-y: auto;
}

div.menu_content_sublinks_projekti {
  width: 18%;
  height: 64vh;
  float: left;
  border-left: 1px solid var(--green_main);
  background-color: var(--grey_light);
  margin: 0px 0px 0px 20px;
  padding: 0px 0px 0px 0px;
  overflow-y: auto;
}

div.menu_content_sublinks4 {
  width: 22%;
  height: 64vh;
  float: left;
  border-left: 1px solid var(--green_main);
  background-color: var(--grey_light);
  margin: 0px 0px 0px 20px;
  padding: 0px 0px 0px 0px;
  overflow-y: auto;
}

div.menu_content_sublinks5 {
  width: 22%;
  height: 64vh;
  float: left;
  border-left: 1px solid var(--green_main);
  background-color: var(--grey_light);
  margin: 0px 0px 0px 20px;
  padding: 0px 0px 0px 0px;
  overflow-y: auto;
}

div.menu_content_sublinks6 {
  width: 30%;
  height: 40vh;
  float: left;
  border-left: 1px solid var(--green_main);
  background-color: var(--grey_light);
  margin: 0px 0px 0px 20px;
  padding: 0px 0px 0px 0px;
  overflow-y: auto;
}

div.menu_content_sublinks_s {
  width: 35%;
  height: 64vh;
  float: left;
  border-left: 1px solid var(--green_main);
  background-color: var(--grey_light);
  margin: 0px 0px 0px 20px;
  padding: 0px 0px 0px 0px;
  overflow-y: auto;
}

div.menu_content_sublinks_close {
  display: none;
}

div.menu_content_sublinks_cell {
  padding: 0px 0px 0px 0px;
  border-bottom: 1px solid var(--grey_light);
}

div.menu_content_sublinks_cell:hover {
  padding: 0px 0px 0px 0px;
  background-color: var(--grey);
  border-bottom: 1px solid var(--green_main);
}

div.menu_content_sublinks_cell_arrow {
  padding: 0px 0px 0px 0px;
  background-image: url("../img/arrow_green.svg");
  background-position: right;
  background-repeat: no-repeat;
  background-size: 18px 18px;
  border-bottom: 1px solid var(--grey_light);

}

div.menu_content_sublinks_cell_arrow:hover {
  padding: 0px 0px 0px 0px;
  background-color: var(--grey);
  border-bottom: 1px solid var(--green_main);
}

div.menu_content_sublinks_cell_arrow_roll {
  padding: 0px 0px 0px 0px;
  background-image: url("../img/arrow_green.svg");
  background-color: var(--grey);
  background-position: right;
  background-repeat: no-repeat;
  background-size: 18px 18px;
  border-bottom: 1px solid var(--green_main);
}

div.side_menu_cell_arrow {
  padding: 0px 0px 0px 0px;
  margin: 3px 0px 3px 0px;
  background-image: url("../img/arrow_down_green.svg");
  background-position: 98%;
  background-repeat: no-repeat;
  background-size: 18px 18px;
  border-bottom: 0px solid var(--grey_light);
  background-color: var(--grey);
  border-radius: 8px;

}

div.side_menu_cell_arrow:hover {
  background-color: var(--green_main);
  border-bottom: 0px solid var(--green_main);
  background-image: url("../img/arrow_down_white.svg");
}

a.side_link {
  font-size: 18px;
  line-height: 1.3;
  font-weight: 400;
  padding: 9px 40px 9px 20px !important;
  display: block;
  background: none !important;
}

div.side_menu_cell_arrow_roll {
  padding: 0px 0px 0px 0px;
  margin: 3px 0px 3px 0px;
  background-image: url("../img/arrow_down_white.svg");
  background-position: 98%;
  background-repeat: no-repeat;
  background-size: 18px 18px;
  border-bottom: 0px solid var(--green_main);
  background-color: var(--green_main);
  border-radius: 8px;
}

div.side_submenu_cell {
  padding: 0px 0px 0px 0px;
  border: 1px solid var(--grey_dark);
  border-radius: 5px;
  margin: 2px 2px 2px 2px;
}

div.side_submenu_cell:hover {
  padding: 0px 0px 0px 0px;
  background-color: var(--grey);
  border: 1px solid var(--green_main);
}

a.side_sublink {
  font-size: 18px;
  line-height: 1.3;
  font-weight: 400;
  padding: 6px 20px 6px 20px !important;
  display: block;
  background: none !important;
}

a.side_sublink:hover {
  color: var(--font_main) !important;
}

div.side_submenu_cell_roll {
  padding: 0px 0px 0px 0px;
  background-color: var(--grey);
  border: 1px solid var(--green_main);
  border-radius: 5px;
  margin: 2px 2px 2px 2px;
}

div.menu_content_sub2links_projekti {
  width: 24%;
  height: 71vh;
  float: left;
  border-left: 1px solid var(--green_main);
  background-color: var(--grey_light);
  margin: 0px 0px 0px 20px;
  padding: 0px 0px 0px 0px;
  overflow-y: auto;
}

div.menu_content_sub2links_projekti_l {
  width: 25%;
  height: 68vh;
  float: left;
  border-left: 1px solid var(--green_main);
  background-color: var(--grey_light);
  margin: 0px 0px 0px 20px;
  padding: 0px 0px 0px 0px;
  overflow-y: auto;
}

div.menu_content_sub2links_istorijat {
  width: 25%;
  height: 80vh;
  float: left;
  border-left: 1px solid var(--green_main);
  background-color: var(--grey_light);
  margin: 0px 0px 0px 20px;
  padding: 0px 0px 0px 0px;
  overflow-y: auto;
}

div.menu_content_sub2links_projekti_close {
  display: none;
}

div.menu_content_sub2links_projekti_s {
  width: 22%;
  height: 62vh;
  float: left;
  border-left: 1px solid var(--green_main);
  background-color: var(--grey_light);
  margin: 0px 0px 0px 20px;
  padding: 0px 0px 0px 0px;
  overflow-y: auto;
}

div.menu_content_sub2links_projekti_close {
  display: none;
}

div.menu_content_sub2links {
  width: 30%;
  height: 63vh;
  float: left;
  border-left: 1px solid var(--green_main);
  background-color: var(--grey_light);
  margin: 0px 0px 0px 20px;
  padding: 0px 0px 0px 0px;
  overflow-y: auto;
}

div.menu_content_sub2links_close {
  display: none;
}

div.main_nav_bottom_close {
  position: absolute;
  bottom: 0px;
  right: 0px;
  width: 100%;
  height: 80px;
}

div.mob_nav_close {
  overflow: hidden;
  background-color: var(--grey_light);
  position: fixed;
  z-index: 9999;
  bottom:0;
  right: -1100px;
  width: 990px;
  height: 100vh;
  transition: linear 0.3s;
}

div.mob_nav_open {
  overflow: hidden;
  background-color: var(--grey_light);
  position: fixed;
  z-index: 999998;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100vh; 
  transition: linear 0.3s;
  overflow-y: auto;
}

div.mobmenu_content {
  padding: 90px 20px 30px 10px;
}

div.mobmenu_content a {
  text-decoration: none;
  display: block;
  color: #1f3138;
  padding: 0px 20px 0px 20px;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 400;
}

div.mobmenu_links {
  width: 100%;
  float: left;
  padding: 20px 0px 70px 0px;
}

div.mobmenu_links ul {
  padding: 0 0 0 10px !important;
}

div.mobmenu_links li {
  list-style: none;
}

div.mobmenu_links_cell {
  padding: 10px 10px 10px 0px;
  margin: 8px 10px 8px 10px;
  border-radius: 5px;
  border: 1px solid var(--grey_dark);
  background-origin: content-box;
  background-color: var(--grey);
}

div.mobmenu_sub_links_cell {
  padding: 10px 10px 10px 0px;
  margin: 8px 10px 8px 10px;
  background-image: url("../img/arrow_down_green.svg");
  background-position: right;
  background-repeat: no-repeat;
  background-size: 18px 18px;
  border-radius: 5px;
  border: 1px solid var(--grey_dark);
  background-origin: content-box;
  background-color: var(--grey);
}

div.mobmenu_content_sublinks_cell {
  padding: 10px 10px 10px 0px;
  margin: 8px 10px 8px 10px;
  border-radius: 5px;
  border: 1px solid var(--grey_dark);
  background-origin: content-box;
}

div.mobmenu_content_subsublinks_cell {
  padding: 10px 10px 10px 0px;
  margin: 8px 10px 8px 10px;
  background-image: url("../img/arrow_down_green.svg");
  background-position: right;
  background-repeat: no-repeat;
  background-size: 18px 18px;
  border-radius: 5px;
  border: 1px solid var(--grey_dark);
  background-origin: content-box;
}

div.mobmenu_content_subsublinks_link{
  padding: 10px 20px 10px 20px;
  margin: 8px 10px 8px 10px;
}

div.mobsubmenu_links_cell {
  padding: 0px 0px 0px 0px;
}
div.mobsubmenu_links_cell_close {
  padding: 0px 0px 0px 0px;
  display: none;
}

div.research_profile_photo {
  position: absolute;
  top: 60px;
  left: 120px;
  width: 30%;
}

img.profile_photo {
  width: 70%;
  height: auto;
  border: 5px solid var(--green_main);
  border-radius: 50%;
}

img.profile_photo70 {
  width: 70%;
  height: auto;
  border: 5px solid var(--green_main);
  border-radius: 50%;
}
  
div.research_profile_info_title {
  position: absolute;
  top: 30px;
  right: 30px;
  border-radius: 15px;
  background-color: var(--green_main_trans);
}

div.research_profile_info_title2 {
  position: absolute;
  top: 90px;
  right: 120px;
  min-width: 300px;
  max-width: 720px;
}

span.right_push { 
  padding: 0px 30px 0px 0px;
}

div.research_profile_info_backgorund {
  margin: 0px 0px 5px 0px;
  padding: 10px 0px 10px 0px;
  border-radius: 15px;
  background: rgba(237, 237, 237, 0.95);
}

div.research_profile_info_title3 {
  position: absolute;
  top: 30px;
  right: 30px;
  border-radius: 15px;
  background-color: var(--green_dark_trans);
  max-width: 75%;
}

div.research_profile_info {
  position: absolute;
  top: 90px;
  right: 120px;
  width: 360px;
  border-radius: 15px;
  background: rgba(237, 237, 237, 0.95);
}

@media all and (max-width: 1250px) {
  div.research_profile_photo {
    top: 60px;
    left: 160px;
    width: 30%;
  }

  div.research_profile_info_title {
    top: 60px;
    right: 30px;
    width: 360px;
  }
  div.research_profile_info_title2 {
    top: 60px;
    right: 30px;
    width: 360px;
  }

  div.research_profile_info_title3 {
    top: 60px;
    right: 30px;
    width: 360px;
  }
  
  div.research_profile_info {
    top: 60px;
    right: 30px;
    width: 360px;
  }
}

@media all and (max-width: 1024px) { 
  div.research_profile_photo {
    top: 80px;
    left: 160px;
    width: 35%;
  }

  div.research_profile_info_title {
    top: 90px;
    right: 30px;
    width: 360px;
  }

  div.research_profile_info_title2 {
    top: 90px;
    right: 30px;
    width: 360px;
  }

  div.research_profile_info_title3 {
    top: 90px;
    right: 30px;
    width: 360px;
  }
  
  div.research_profile_info {
    top: 90px;
    right: 30px;
    width: 360px;
  }
}

@media all and (max-width: 990px) { 
  div.research_profile_photo {
    top: 80px;
    left: 160px;
    width: 35%;
  }

  div.research_profile_info_title {
    top: 90px;
    right: 30px;
    width: 320px;
  }

  div.research_profile_info_title2 {
    top: 90px;
    right: 30px;
    width: 320px;
  }
  
  div.research_profile_info_title3 {
    top: 90px;
    right: 30px;
    width: 320px;
  }

  div.research_profile_info {
    top: 90px;
    right: 30px;
    width: 320px;
  }
}

@media all and (max-width: 810px) { 
  div.research_profile_photo {
    top: 80px;
    left: 160px;
    width: 31%;
  }

  div.research_profile_info_title {
    top: 90px;
    right: 20px;
    width: 320px;
  }

  div.research_profile_info_title2 {
    top: 90px;
    right: 20px;
    width: 320px;
  }

  div.research_profile_info_title {
    top: 90px;
    right: 20px;
    width: 320px;
  }
  
  div.research_profile_info {
    top: 90px;
    right: 20px;
    width: 320px;
  }
}

@media all and (max-width: 767px) {

  div.research_intro {
    position: relative;
    width: 100%;
    height: 850px;
    margin-top: 0px; 
  }

  div.istrazivacka_tema_intro {
    position: relative;
    width: 100%;
    height: 450px;
    margin-top: 0px; 
  }

  div.projekti_intro {
    position: relative;
    width: 100%;
    height: 450px;
    margin-top: 0px; 
  }

  div.biblioteka_intro {
    position: relative;
    width: 100%;
    height: 450px;
    margin-top: 0px; 
  }

  div.panda_intro {
    position: relative;
    width: 100%;
    height: 450px;
    margin-top: 0px; 
  }

  div.istrazivaci_intro {
    position: relative;
    width: 100%;
    height: 450px;
    margin-top: 0px; 
  }

  div.istrazivac_intro {
    position: relative;
    width: 100%;
    height: 450px;
    margin-top: 0px; 
  }

  div.istrazivacka_tema {
    position: relative;
    width: 100%;
    height: 450px;
    margin-top: 0px; 
  }

  div.research_intro2 {
    position: relative;
    width: 100%;
    height: 850px;
    margin-top: 0px; 
  }

  div.research_profile_photo {
    position: absolute;
    top: 45px;
    left: calc(50% - 165px);
    width: 50%;
  }
  
  img.profile_photo {
    width: 310px;
    height: auto;
    border: 5px solid var(--green_main);
    border-radius: 50%;
  }

  img.profile_photo70 {
    width: 310px;
    height: auto;
    border: 5px solid var(--green_main);
    border-radius: 50%;
  }
  
  div.research_profile_info_title {
    position: absolute;
    top: 390px;
    right: calc(50% - 160px);
    width: 320px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 1);
  }

  div.research_profile_info_title2 {
    position: absolute;
    top: 390px;
    right: 5%;
    width: 90%;
  }

  div.research_profile_info_backgorund {
    background: rgba(255, 255, 255, 1);
  }
  
  div.research_profile_info_title3 {
    position: absolute;
    top: 280px;
    right: calc(50% - 160px);
    width: 320px;
    border-radius: 15px;
  }

  div.research_profile_info {
    position: absolute;
    top: 390px;
    right: calc(50% - 160px);
    width: 320px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 1);
  }

}

@media all and (max-width: 630px) {

  div.research_intro {
    height: 1030px;
  }

  div.istrazivacka_tema_intro {
    height: 390px;
  }

  div.projekti_intro {
    height: 390px;
  }

  div.biblioteka_intro {
    height: 390px;
  }

  div.panda_intro {
    height: 390px;
  }

  div.istrazivaci_intro {
    height: 390px;
  }

  div.istrazivac_intro {
    height: 390px;
  }

  div.istrazivacka_tema {
    height: 390px;
  }

  div.research_intro2 {
    height: 1030px;
  }

  div.research_profile_photo {
    top: 265px;
    left: calc(50% - 165px);
    width: 50%;
  }
    
  div.research_profile_info_title {
    top: 610px;
  }

  div.research_profile_info_title2 {
    top: 610px;
  }
  
  div.research_profile_info {
    top: 610px;
  }

}

div.research_profile_info a {
  text-decoration: none;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 400;
  padding: 5px 0px 0px 0px;
  color: var(--blue_main);
}

div.research_profile_name {
  padding: 10px 20px 15px 20px;
}

div.research_profile_name h1 {
  text-decoration: none;
  font-size: 28px;
  line-height: 1.4;
  font-weight: 600;
  padding: 0px 10px 0px 10px;
  margin: 0;
  color: #ffffff;
  text-align: center;
}

div.research_profile_name p {
  text-decoration: none;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 400;
  padding: 5px 0px 0px 0px;
  margin: 0;
}

div.research_profile_name1 {
  padding: 5px 40px 5px 40px;
}

div.research_profile_name1 h1 {
  text-decoration: none;
  font-size: 24px;
  line-height: 1.4;
  font-weight: 600;
  padding: 0px 0px 0px 0px;
  margin: 0;
}

div.research_profile_name1 p {
  text-decoration: none;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 400;
  padding: 5px 0px 0px 0px;
  margin: 0;
}

div.research_profile_place {
  padding: 5px 25px 15px 25px;
}

div.research_profile_place p {
  text-decoration: none;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 400;
  padding: 0px 0px 5px 15px;
  margin: 0;
}

div.research_profile_place a {
  text-decoration: none;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 400;
  padding: 5px 5px 7px 16px;
  margin: 0;
  background-color: var(--green_main);
  color: #ffffff;
  border-radius: 5px;
  display: block;
  text-align: left;
  background-image: url("../img/arrow.svg");
  background-position: right;
  background-repeat: no-repeat;
  background-size: 24px 24px;
  background-origin: content-box;
}

span.left_push {
 padding: 0px 25px 0px 0px;
}

div.research_profile_status {
  padding: 0px 25px 0px 25px;
}

div.research_profile_status p {
  text-decoration: none;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 400;
  padding: 10px 5px 0px 16px;
  margin: 0;
}


div.research_profile_email {
  background-image: url("../img/email.svg");
  background-position: left;
  background-repeat: no-repeat;
  background-size: 24px 24px;
  padding: 10px 0px 10px 30px;
  margin: 0px 40px 0px 40px;
}

div.research_profile_email a {
  color: var(--blue_main);
}

div.research_profile_phone {
  background-image: url("../img/phone.svg");
  background-position: left;
  background-repeat: no-repeat;
  background-size: 24px 24px;
  padding: 10px 0px 15px 30px;
  margin: 0px 40px 0px 40px;
}

div.research_profile_phone a {
  color: var(--blue_main); 
}

div.research_profile_radar_orcid {
  text-align: right;
  padding: 5px 30px 10px 0px;
}

div.research_profile_orcid {
  text-align: right;
  padding: 5px 30px 10px 0px;
}

@media all and (max-width: 990px) { 
  div.research_profile_name h1 {
    font-size: 24px;
  }

  div.research_profile_name1 h1 {
    font-size: 24px;
  }
}
img.orcid_photo {
  width: auto;
  height: 40px;
  border: 0;
}

img.radar_photo {
  width: auto;
  height: 40px;
  border: 0;
}

a.radar_btn {
  text-decoration: none;
  font-size: 18px;
  line-height: 40px;
  font-weight: 400;
  padding: 5px 12px 7px 12px;
  margin: 0;
  background-color: var(--green_main);
  color: #ffffff;
  border-radius: 5px;
  text-align: center;
}

div.content_full {
  float: left;
  width: 100%;
}

div.content_search {
  margin: 0;
  padding: 0;
  min-width: 300px;
  max-width: 990px;
  margin: 0 auto;
  /*center hack*/
  text-align: left;
  /*center hack*/
}

div.content_contact {
  margin: 0;
  padding: 0;
  min-width: 300px;
  max-width: 930px;
  margin: 0 auto; 
  text-align: center;
}

div.content_contact h2 {
  padding: 20px 0px 20px 0px !important;
}

div.content_contact a {
  color: var(--green_main) !important;
}

div.content_contact a:hover {
  color: var(--green_main) !important;
}

div.content_contact p {
 margin: 0;
 padding: 2px !important;  
}

.dl-horizontal {

}
div.content_left {
  float: left;
  width: 70%;
}

div.content_left h2 {
  font-size: 32px;
  font-weight: 600;
  padding: 20px 0px 20px 0px;
}
@media all and (max-width: 515px) {
  div.content_left h2 {
    font-size: 26px;
    font-weight: 600;
    padding: 15px 0px 5px 0px;
  }
}
div.content_left_in {
  padding: 0px 30px 0px 30px;
}

div.content_right {
  float: left;
  width: 30%;
}

div.content_right h3 {
  text-decoration: none;
  font-size: 24px;
  line-height: 1.4;
  font-weight: 600;
  padding: 20px 8px 10px 8px;
  margin: 0;
}

div.content_right a {
  text-decoration: none;
  color: var(--green_main);
  background-color: var(--grey);
  padding: 7px 12px 7px 12px;
  margin: 7px 5px 7px 5px;
  display: inline-block;
  border-radius: 5px;
  font-size: 18px;
  font-weight: 400;
}

div.content_right a:hover {
  color: #ffffff;
  background-color: var(--blue_main);
}

div.content_right1 {
  float: left;
  width: 30%;
}

div.content_right1 h3 {
  text-decoration: none;
  font-size: 24px;
  line-height: 1.4;
  font-weight: 600;
  padding: 20px 8px 10px 8px;
  margin: 0;
}

div.content_right1 a:hover {
  color: #ffffff;
  background-color: var(--blue_main);
}

div.content_right_in {
  padding: 10px 30px 0px 30px;
}

div.content_right_in_istrazivaci {
  padding: 10px 30px 0px 30px;
}

h2.item-istrazivacke-teme-title {
  /*
  padding: 20px 0px 0px 0px !important;
  */
}

@media all and (max-width: 980px) {
  div.content_left {
    width: 100%;
    padding: 0px 0px 50px 0px;
  }
  div.content_left_in {
    padding: 0px 10px 0px 10px;
  }
  div.content_right {
    width: 100%;
    padding: 0px 0px 50px 0px;
  }
  div.content_right1 {
    width: 100%;
    padding: 0px 0px 50px 0px;
  }
  div.content_right_in {
    padding: 0px 10px 0px 10px;
  }
  div.content_right_in_istrazivaci {
    padding: 0px 10px 0px 10px;
  }
}

@media all and (max-width: 515px) {
  div.content_left_in {
    padding: 0px 0px 0px 0px;
  }
  div.content_right_in {
    padding: 0px 0px 0px 0px;
  }
  div.content_right_in_istrazivaci {
    padding: 0px 0px 0px 0px;
  }
}

div.istrazivacke_teme {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 30px 20px;
  padding: 10px 0px 50px 0px;
  text-align: center;

}

div.istrazivacke_teme h3 {
  text-decoration: none;
  font-size: 21px;
  line-height: 1.4;
  font-weight: 600;
  padding: 8px 10px 20px 10px;
  margin: 0;
}

a.it_link {
  display: block;
  height: 100%;
  width: 100%;
  text-decoration: none;
  padding: 0;
  margin: 0;
  color: var(--font_main);
}

div.istrazivacke_tema {
  flex-basis: calc(25% - 20px);
  background-color: var(--grey);
  padding: 0px 0px 0px 0px;
  border-bottom-left-radius: 25px;
  border-bottom-right-radius: 25px;
}

@media all and (max-width: 1024px) {
  div.istrazivacke_tema {
    flex-basis: calc(33% - 20px);
  }
}

@media all and (max-width: 767px) {
  div.istrazivacke_tema {
    flex-basis: calc(50% - 10px);
  }
}

@media all and (max-width: 440px) {
  div.istrazivacke_tema {
    flex-basis: calc(100%);
  }
}

img.it_slika {
  width: 100%;
  height: auto;
}

div.istrazivacka_tema_head {
  margin: 0;
  padding: 0;
}

div.istrazivacka_tema_head p {
  font-size: 21px;
  line-height: 1.4;
  font-weight: 400;
  padding: 20px 20px 10px 20px;
  margin: 0;
  text-align: justify;
  text-justify: inter-word;
}

div.istrazivacka_tema_head h2 {
  font-size: 36px;
  line-height: 1.4;
  font-weight: 600;
  padding: 20px 20px 10px 20px;
  margin: 0;
  text-align: center;
}

img.it_head_pic {
  width: 100%;
  height: auto;
  border-radius: 25px;
}

div.istrazivacka_tema_head_pic {
  margin: 0;
  padding: 20px 10px 10px 10px;
}

img.istrazivac_photo_lista {
  width: 80px;
  height: auto;
  border: 3px solid var(--green_main);
  border-radius: 50%;
}

div.istrazivaci_lista {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 5px 5px;
  padding: 0px 0px 50px 0px;
  text-align: center;

}

div.istrazivaci_lista a{
  display: block;
}

img.istrazivac_photo_detalj {
  width: 90px;
  height: auto;
  border: 3px solid var(--green_main);
  border-radius: 50%;
}

div.istrazivaci_detalj {
  flex-basis: calc(25% - 5px);
  background-color: var(--grey);
  padding: 15px 0px 15px 0px;
  border-radius: 25px;
}

@media all and (max-width: 690px) {
  div.istrazivaci_detalj {
    flex-basis: calc(33% - 5px);
  }
}

@media all and (max-width: 550px) {
  div.istrazivaci_detalj {
    flex-basis: calc(50% - 5px);
  }
}

@media all and (max-width: 380px) {
  div.istrazivaci_detalj {
    flex-basis: calc(100%);
  }
}

div.istrazivaci_detalj h3 {
  text-decoration: none;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 600;
  padding: 5px 10px 0px 10px;
  margin: 0;
}

div.odeljenja_catch {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 30px 20px;
  padding: 10px 0px 50px 0px;
  text-align: center;

}

div.odeljenja_catch h3 {
  text-decoration: none;
  font-size: 21px;
  line-height: 1.4;
  font-weight: 600;
  padding: 8px 10px 20px 10px;
  margin: 0;
}

div.odeljenje_cell {
  flex-basis: calc(25% - 20px);
  background-color: var(--grey);
  padding: 0px 0px 0px 0px;
  border-bottom-left-radius: 25px;
  border-bottom-right-radius: 25px;
}

@media all and (max-width: 1024px) {
  div.odeljenje_cell {
    flex-basis: calc(33% - 20px);
  }
}

@media all and (max-width: 767px) {
  div.odeljenje_cell {
    flex-basis: calc(50% - 10px);
  }
}

@media all and (max-width: 440px) {
  div.odeljenje_cell {
    flex-basis: calc(100%);
  }
}

img.odeljenje_lista {
  width: 100%;
  height: auto;
  border: 0;
}

/* popup brisemo */

div.popup_open {
	overflow: auto;
	background: rgba(1, 139, 69, 0.4);
	position: fixed;
	z-index: 9998;
	top: 0;
	width: 100%;
	height: 100vh;
	left: 0;
	margin: 0px;
	transition: 0.7s;
}

@media all and (max-width: 1024px) {
  div.popup_open {
    z-index: 9999999;
  } 
}

div.popup {
	background: rgba(1, 139, 69, 0.7);
	position: fixed;
	z-index: 9998;
	top: 0;
	width: 100%;
	height: 100vh;
	left: 0;
	margin: 0px;
	transition: 0.7s;
	display: none;
}

div.popup_content {
	overflow-y: auto;
  background-color: var(--grey_light);
	position: fixed;
	z-index: 9999;
	top: 10vh;
	width: 740px;
  height: 80vh;
	left: calc(50% - 370px);
  margin: 0;
  padding: 0px 0px 30px 0px;
	transition: 0.3s;
  border-bottom-left-radius: 25px;
  border-bottom-right-radius: 25px;
  background-repeat: no-repeat;
  background-size: 740px 247px;
  text-align: right;
}

@media all and (max-width: 1024px) {
  div.popup_content {
    top: 5vh;
    height: 85vh;
  }
}

@media all and (max-width: 990px) {
  div.popup_content {
    top: 2vh;
    width: 640px;
    height: 92vh;
    left: calc(50% - 320px);
    background-size: 640px 213px;
  }
}

@media all and (max-width: 767px) {
  div.popup_content {
    top: 2vh;
    width: 640px;
    height: 92vh;
    left: calc(50% - 320px);
    background-size: 640px 213px;
  }
}

@media all and (max-width: 670px) {
  div.popup_content {
    width: 540px;
    left: calc(50% - 270px);
    background-size: 540px 180px;
  }
}

@media all and (max-width: 560px) {
  div.popup_content {
    width: 440px;
    left: calc(50% - 220px);
    background-size: 440px 147px;
  }
}

@media all and (max-width: 460px) {
  div.popup_content {
    width: 340px;
    left: calc(50% - 170px);
    background-size: 340px 113px;
  }
}

@media all and (max-width: 360px) {
  div.popup_content {
    width: 320px;
    left: calc(50% - 160px);
    background-size: 320px 107px;
  }
}

div.popup_content h3 {
  text-decoration: none;
  font-size: 24px;
  line-height: 1.4;
  font-weight: 600;
  padding: 10px 20px 5px 20px;
  margin: -35px 0px 0px 0px;
  color: #ffffff;
  text-align: left;
}

span.popup_title {
  background: rgba(1, 139, 69, 0.8);
  padding: 10px 20px 10px 20px;
}

div.popup_content p {
  text-decoration: none;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 400;
  padding: 5px 40px 5px 40px;
  margin: 205px 0px 30px 0px;
  text-align: justify;
  text-justify: inter-word;
  background-color: var(--grey_light);
}

@media all and (max-width: 990px) {
  div.popup_content h3 {
    line-height: 1.2;
    padding: 10px 40px 10px 40px;
    margin: 113px 0px 0px 0px;
    background-color: rgba(1, 139, 69, 0.4);
  }
  span.popup_title {
    background-color: transparent;
    padding: 0;
  }
  div.popup_content p {
    margin: 10px 0px 30px 0px;
  }
}

@media all and (max-width: 670px) {
  div.popup_content h3 {
    padding: 10px 20px 10px 20px;
    margin: 128px 0px 0px 0px;
    background-color: rgba(1, 139, 69, 1);
  }
  div.popup_content p {
    padding: 5px 20px 5px 20px;
    margin: 10px 0px 30px 0px;
    text-align: left;
    text-justify: none;
  }
}

@media all and (max-width: 560px) {
  div.popup_content h3 {
    margin: 96px 0px 0px 0px;
  }
}

@media all and (max-width: 460px) {
  div.popup_content h3 {
    margin: 62px 0px 0px 0px;
  }
}

@media all and (max-width: 360px) {
  div.popup_content h3 {
    margin: 55px 0px 0px 0px;
  }
}

div.popup_content h4 {
  text-decoration: none;
  font-size: 24px;
  line-height: 1.4;
  font-weight: 600;
  padding: 0px 0px 0px 0px;
  margin: 0;
  text-align: center;
}

div.popup_content a {
  font-size: 18px;
  font-weight: 400;
  border: 0px solid var(--green_main);
  color: white;
  display: inline-block;
  padding: 10px 40px 12px 40px;
  border-radius: 5px;
  margin: 0px 0px 0px 0px;
  text-decoration: none;
  background-color: var(--green_main);
  text-align: center;
}

div.popup_content a:hover {
  background-color: var(--blue_main);
}

img.it_close_img {
  width: 32px;
  height: auto;
  border: 0;
}

a.it_close {
  display: inline-block !important;
  margin: 0 !important;
  padding: 15px 15px 0px 0px !important;
  text-decoration: none !important;
  background-color: transparent !important;
}

div.link_wrap a {
  color: var(--green_main);
  white-space: pre-wrap; /* CSS3 */    
  white-space: -moz-pre-wrap; /* Mozilla, since 1999 */
  white-space: -pre-wrap; /* Opera 4-6 */    
  white-space: -o-pre-wrap; /* Opera 7 */    
  word-wrap: break-word; /* Internet Explorer 5.5+ */
}

/*********************** K2 korekcije   *************************/
div.tagItemHeader span.tagItemDateCreated {
  color: var(--font_main);
  font-size: 14px !important;
}

div.k2PaginationLinks {
  padding-bottom: 20px !important;
}

a.k2ReadMore {
  font-size: 18px;
  color: var(--green_main) !important;
}

a.k2ReadMore:hover {
  color: var(--blue_main) !important;
}

div.k2Pagination ul li a {
  margin: 8px 8px !important;
}

div.catItemHeader span.catItemDateCreated {
  color: var(--font_main);
  font-size: 14px;
}

div.owl-dots {
  display: none !important;
}

#scrollToTop {
  bottom: 0 !important;
  background: transparent;
}

#scrollToTop:hover {
  background: transparent !important;
}

@media all and (max-width: 1024px) {
  #scrollToTop {
    right: 7px !important;
    bottom: 45px !important;
  }
  #scrollToTop > img {
    width: 50px !important;
    height: auto;
  }
}

._access-icon {
  width: 50px;
  height: 50px;
  font-size: 40px;
  line-height: 45px;
  text-indent: 5px;
  background-color: var(--blue_main) !important;
  color: #ffffff !important;
  bottom: 15px !important;
  right: calc(100% - 60px) !important;
  
  box-shadow: 1px 1px 5px rgba(0,0,0,.5);
  box-shadow: 0px 0px 0px rgba(0,0,0,.5) !important;
  transform: scale(1);
}

@media all and (max-width: 1024px) { 
  ._access-icon {
    bottom: 5px !important;
    right: calc(100% - 60px) !important;
  }
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.button_cookie {
  text-align: center !important;
  width: 120px !important;
  padding: 12px 0px 12px 0px;
}

.eb_privacypolicy {
  text-align: left !important;
}

div.pagination {
  padding: 8px !important;
  margin: 24px 0 4px 0 !important;
  text-align: center !important;
}

div.pagination ul {
  padding: 0px 40px 0px 40px !important;
  margin: 0 !important;
}

div.pagination li {
  display: inline-block !important;
}

.pagenav {
  
}
div.pagination a {
  display: inline-block !important;
  padding: 4px 8px !important;
  margin: 0 8px !important;
  border: 1px solid #ddd !important;
  border-radius: 4px !important;
  vertical-align: middle !important;
  background: #fff !important;
  text-decoration: none !important;
}
