@font-face {
  font-family: 'Roboto';
  src: url('../fonts/Roboto-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Roboto';
  src: url('../fonts/Roboto-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'Roboto';
  src: url('../fonts/Roboto-Italic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
}
body {
  font-family: 'Roboto', sans-serif;
  overflow-x: hidden;
}
a{
  color: #496a9d;
  transition: 0.1s ease;
  text-decoration: none;
}
a:hover{
  color: #0c3054d9;
}
.space10{
  margin-top: 10px;
}
.space15{
  margin-top: 15px;
}
.space20{
  margin-top: 20px;
}
.space30{
  margin-top: 30px;
}
.space40{
  margin-top: 40px;
}
.space50{
  margin-top: 50px;
}
.space100{
  margin-top: 100px;
}

/* ========================================================================= Spinner ========================================================================= */
.loader_container{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(30px);
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
}
.loader {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  position: relative;
  animation: rotate 1s linear infinite
}
.loader::before {
  content: "";
  box-sizing: border-box;
  position: absolute;
  inset: 0px;
  border-radius: 50%;
  border: 5px solid #FFF;
  animation: prixClipFix 2s linear infinite ;
}

@keyframes rotate {
  100%   {transform: rotate(360deg)}
}

@keyframes prixClipFix {
    0%   {clip-path:polygon(50% 50%,0 0,0 0,0 0,0 0,0 0)}
    25%  {clip-path:polygon(50% 50%,0 0,100% 0,100% 0,100% 0,100% 0)}
    50%  {clip-path:polygon(50% 50%,0 0,100% 0,100% 100%,100% 100%,100% 100%)}
    75%  {clip-path:polygon(50% 50%,0 0,100% 0,100% 100%,0 100%,0 100%)}
    100% {clip-path:polygon(50% 50%,0 0,100% 0,100% 100%,0 100%,0 0)}
}
/* ========================================================================= Spinner end ========================================================================= */

/* ========================================================================= Header ========================================================================= */
#header { position: relative; z-index: 20; height: 65px; max-height: 65px; box-shadow: 0px 0px 5px 1px rgb(0 0 0 / 10%); transition: all ease-in-out 200ms; }
#header .container { display: flex; justify-content: space-between; height: 100%; }
#header .main-logo { width: 20%; height: 100%; display: flex; align-items: center; transition: all ease-in 200ms; }
#header .main-logo a { width: 100%; }
#header .main-logo img { width: 165px; height: auto; }
#header .main-menu { width: 75%; }
#header .main-menu ul { height: 100%; display: flex; justify-content: flex-end; align-items: stretch; }
#header .main-menu ul li { display: flex; align-items: stretch; padding: 0 10px; }
#header .main-menu ul li a { align-self: center; text-transform: uppercase; color: #0A3D64; }
#header .main-menu ul li.cancel-hover:hover { box-shadow: none; } 
#header .main-menu ul li .sub-menu-ul { box-shadow: 0px 0px 5px 5px rgb(0 0 0 / 15%);  display: none; height: unset; position: absolute; flex-direction: column; justify-content: flex-start; top: 100px; z-index: 100; background-color: #fff; transition: all ease-in 200ms;}
#header .main-menu ul li:hover > .sub-menu-ul { display: block; transition: all ease-in 300ms; }
#header .main-menu ul li .sub-menu-ul li { box-shadow: none; padding: 10px 10px 10px 0; justify-content: space-between; align-items: center; }
#header .main-menu ul li .sub-menu-ul li:nth-child(even){ background-color: rgba(10,62,101, 0.05); }
#header .main-menu ul li .sub-menu-ul li:hover { background-color: #0A3D64!important; color: #fff; transition: all ease-in 200ms; }
#header .main-menu ul li .sub-menu-ul li:hover a { color: #fff; transition: all ease-in 200ms; }
#header .main-menu ul li .sub-menu-ul li .sub-menu-ul.second-level { left: 100%; top: unset; transform: translateY(calc(50% - 22px)); }
#header .main-menu ul li .sub-menu-ul li .sub-menu-ul.second-level li a { color: #0A3D64; white-space: pre; }
#header .main-menu ul li .sub-menu-ul li .sub-menu-ul.second-level li:hover a { color: #fff; }
#header .main-menu ul li.query a { background: rgba(10,62,101,1); background: linear-gradient(90deg, rgba(25,193,238,1) 0%, rgba(10,62,101,1) 100%); padding: 5px 10px; border-radius: 5px; color: #fff;  }
#header .main-menu ul li.query a:hover { background: #0A3D64; color: #fff; transition: all ease-in 200ms; }
#header.sticky-element { max-height: 70px; position: sticky; top: 0; z-index: 999; background: #fff; filter: drop-shadow(0 0 2px rgba(0,0,0,0.3)); transition: all ease-in-out 200ms; transition: background 0ms; }
#header.sticky-element .main-logo { width: 17%; transition: all ease-in 200ms; }
#header.sticky-element .main-menu ul li .sub-menu-ul { top: 70px; }
/* ========================================================================= Header end ========================================================================= */

/* ========================================================================= Navigation ============================================================================ */
.navigationContainer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(4px);
  z-index: 1000;
  display: flex;
  justify-content: flex-end;
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
}
.navigationContainer.show {
  transform: translateX(0);
}
.navigation{
  width: 350px;
  height: 100vh;
  background: #fff;
  box-shadow: -5px 0px 5px -1px rgba(0, 0, 0, 0.1);
  padding: 20px 40px;
  overflow-y: auto;
}
.navigation .close{
  text-align: center;
  margin-bottom: 15px;
}
.navigation .close a{
  color: #496a9d;
  font-size: 18px;
}
.topBarText{
  text-align: center;
  margin-bottom: 15px;
}
.topBarText a{
  color: #496a9d !important;
  font-size: 14px;
  font-weight: bold;
}
.topBarText a:hover{
  color: #42424f !important;
}
.topBarIcons{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}
.topBarIcons img{
  transition: 0.3s ease;
}
.menu{
  padding-bottom: 15px;
  border-bottom: 1px solid #dee2e6;
}
.menu ul{
  list-style: none;
  padding: 0;
}
.menu ul li{
  margin-bottom: 5px;
}
.menu li a{
  text-decoration: none;
  color: #42424f;
  transition: 0.1s ease;
  font-weight: bold;
  font-size: 14px;
}
.menu li a:hover{
  color: #5B92E5 !important;
}
.socialIcons{
  display: flex;
  justify-content: center;
  gap: 15px;
}
.socialIcons i{
  font-size: 30px;
}
.socialIcons a:hover{
  color: #5B92E5;
}
.bv0{
  text-align: center;
}
.bv0 img{
  width: 200px;
  height: auto;
}
/* ========================================================================= Navigation end ========================================================================= */

/* ========================================================================= Search ============================================================================ */
.search-box .search-container svg { 
    width: 250px;
    height: auto; 
    margin-bottom: 30px; 
}
.search-box-mobile {
    display: none;
}
.search-box {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(4px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 30px;
    z-index: 99999;
    opacity: 0;
    -webkit-transition: all .3s;
    transition: all .3s;
    display: none;
  }

.search-box .search-container {
    position: relative;
    height: 100%;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

.search-box .search-container img {
    margin-bottom: 60px;
}

.search-box .search-container #closeButton {
    position: absolute;
    top: 0;
    right: 0;
    color: #191514;
    cursor: pointer;
    -webkit-transition: all .3s;
    transition: all .3s;
}

.search-box .search-container #closeButton:hover {
    color: var(--hover-color);
}

.search-box .search-container #closeButton i {
    font-size: 38px;
}

.search-box .search-container .z-search-form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
}

.search-box .search-container .z-search-form .z-input {
    height: 48px;
    max-width: 600px;
    width: 100%;
    -webkit-box-shadow: 0px 6px 27px 0px rgba(0, 0, 0, 0.35);
    box-shadow: 0px 6px 27px 0px rgba(0, 0, 0, 0.35);
    border: 0;
    padding: 0 20px;
    border: 1px solid #0d4671;
}

.search-box .search-container .z-search-form .SearchSubmitButton {
    margin-top: 40px;
    background: #0d4671;
    padding: 10px 40px;
    color: #ffffff;
    font-size: 18px;
    border:0;
    transition: background 0.3s;
}

.SearchSubmitButton:hover {
    background:#2f75de !important;
}

.search-box.visible {
    opacity: 1;
}

.search-box.show {
    display: block;
}
/* ========================================================================= Search END ========================================================================= */

/* ========================================================================= Main ========================================================================= */
.owl-carousel{
  position: relative;
}
.owl-item, .owl-carousel{
  max-height: 90vh;
}
.cover-slider.owl-carousel .owl-item img{
  width: 100%;
  height: 90vh;
  object-fit: cover;
}
.owl-nav{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
}
.owl-prev{
  float: left;
  margin-left: 50px !important;
}
.owl-next{
  float: right;
  margin-right: 50px !important;
}
.owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-prev{
  font-size: 15px !important;
  background: #fff !important;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px !important;
  padding: 10px 14px !important;
  line-height: normal;
  border-radius: 0 !important;
  transition: 0.3s ease;
}
.owl-carousel .owl-nav button.owl-next:hover, .owl-carousel .owl-nav button.owl-prev:hover{
  color: #000 !important;
  opacity: 0.7;
}
.owl-dots{
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
}
.owl-item > a::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  pointer-events: none;
}
.product-slider .owl-item > a::before {
  content: none;
}
.product-slider .owl-dots{
  bottom: -30px;
}
.owl-text-container{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.owl-text-container h2{
  text-align: center;
  line-height: 38px;
  margin: 0px;
  padding: 0px;
  letter-spacing: 0px;
  font-weight: 900;
  font-size: 22px;
  white-space: nowrap;
  color: rgb(222, 222, 222);
}
.owl-text-container h1{
  color: #fff;
  font-size: 45px;
  font-weight: bold;
}
.owl-text-container h1 a{
  text-decoration: none;
  color: #fff !important;
  font-weight: bold;
}
.owl-text-container p{
  z-index: 4;
  line-height: 24px;
  border-width: 0px;
  margin: 0px;
  padding: 0px;
  letter-spacing: 0px;
  font-weight: 400;
  font-size: 18px;
  color: rgb(235, 235, 235);
  margin-bottom: 20px;
}
.more_btn{
  background: #324d71;
  color: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  font-size: 14px;
  font-weight: 700;
  padding: 0 18px;
  position: relative;
  display: inline-block;
  line-height: 38px;
  z-index: 1;
  letter-spacing: 0.5px;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  text-transform: uppercase;
  -webkit-box-shadow: 0 5px 0 0 #2f75de;
  box-shadow: 0 5px 0 0 #2f75de;
  border: none;
  text-decoration: none;
}
.more_btn:hover{
    color: #fff;
    background: #2f75de;
    -webkit-box-shadow: none;
    box-shadow: none;
}
/* ========================================================================= Main END ========================================================================= */

/* ========================================================================= News ========================================================================= */
.news_parent_container{
  padding: 40px 0;
  background: #243355;
}
.news_image_main_container{
  display: inline-block;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  margin-top: 10px;
}
.news_parent_container h2 a{
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 25px;
}
.news_parent_container h2 a:hover{
  color: #00b8e2;
}
.news_parent_container h2{
  position: relative;
  padding-bottom: 10px;
}
.news_parent_container h2:after {
    content: '';
    position: absolute;
    width: 30px;
    height: 2px;
    background: #00b8e2;
    left: 0;
    bottom: 0;
    z-index: 1;
}
.news_image_main_container img{
  width: 100%;
  height: auto;
  object-fit: contain;
}
.createdAt{
  font-size: 18px;
  color: #87a0b3;
  margin-top: 10px;
}
.news_main_container a{
  font-size: 18px;
  color: #fff;
  font-weight: 700;
}
.news_main_container a:hover{
  opacity: 0.8;
}
.news_container{
  padding: 15px 0;
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: nowrap;
  border-bottom: 1px solid rgb(23 137 184 / 45%);
}
.news_image_container{
  display: inline-block;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  flex: 0 0 165px;
}
.news_image_container img{
  width: 100%;
  height: auto;
  object-fit: contain;
}
.news_text_container .createdAt{
  font-size: 14px;
}
.news_text_container a{
  color: #fff;
  font-weight: bold;
  font-size: 14px;
  text-decoration: none;
}
.news_text_container a:hover{
  opacity: 0.8;
}
.more_container{
  text-align: center;
}
.more_btn2{
  background: #324d71;
  color: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  font-size: 14px;
  font-weight: 700;
  padding: 0 18px;
  position: relative;
  display: inline-block;
  line-height: 40px;
  z-index: 1;
  letter-spacing: 0.5px;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  text-transform: uppercase;
  border: none;
  text-decoration: none;
}
.more_btn2:hover{
    color: #fff;
    background: #2f75de;
    -webkit-box-shadow: none;
    box-shadow: none;
}
.news_secondary_container a:hover{
  opacity: 0.9;
}
/* ========================================================================= News END ========================================================================= */

/* ========================================================================= Media ========================================================================= */
.media_parent_container{
  background: #f5f7fa;
  padding: 40px 0;
}
.media_parent_container h2 a, .review_parent_container h2 a, .izdvojeno_parent_container h2 a{
  color: #304f6d !important;
  text-decoration: none;
  font-weight: 700;
  font-size: 25px;
}
.media_parent_container h2 a:hover, .review_parent_container h2 a:hover, .izdvojeno_parent_container h2 a:hover{
  color: #00b8e2 !important;
}
.media_parent_container h2, .review_parent_container h2, .izdvojeno_parent_container h2{
  position: relative;
  padding-bottom: 10px;
}
.media_parent_container h2:after, .review_parent_container h2::after, .izdvojeno_parent_container h2::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 2px;
    background: #00b8e2;
    left: 0;
    bottom: 0;
    z-index: 1;
}
.media_container{
  border-radius: 10px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  overflow: hidden;
  margin-bottom: 12px;
}
.media_img_container{
  display: inline-block;
  aspect-ratio: 1 / 1;
  width: 100%;
  overflow: hidden;
}
.media_img_container img{
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.media_text_container{
  padding: 20px;
  min-height: 110px;
  display: flex;
  align-items: center;
}
.media_text_container a{
  color: #757575;
  text-align: left;
}
/* ========================================================================= Media END ========================================================================= */

/* ========================================================================= Review ========================================================================= */
.review_parent_container{
  padding: 80px 0;
  background: #ffffff;
}
.review-container{
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: nowrap;
}
.quote{
  font-size: 18px;
  line-height: 30px;
  position: relative;
  padding-top: 10px;
  color: #838383;
  font-family: "Georgia";
  font-style: italic;
  flex: 1 1 0;
}
.user_review_profile_container{
  flex: 0 0 auto; 
}
.user_img_container img{
  width: 100px !important;
  height: 100px !important;
  border-radius: 100%;
  overflow: hidden;
  object-fit: cover;
}
.user_name{
  font-weight: bold;
}
.user_name p{
  margin-top: 5px;
  margin-bottom: 0;
}
.review_slider .owl-dot.active span{
  background: #5B92E5 !important;
}
/* ========================================================================= Review END ========================================================================= */

/* ========================================================================= Info ========================================================================= */
.info_parent_container{
  padding: 50px 0;
  background: #f5f7fa;
}
.info_img_container{
  text-align: center;
  margin-bottom: 40px;
}
.info_img_container i{
  font-size: 70px;
  color: #0c3054d9;
}
.info_text_container{
  text-align: center;
}
.info_text_container h2{
  font-size: 40px;
  line-height: 30px;
  font-weight: 700;
  color: #00b8e2;
}
.info_text_container p{
  font-size: 14px;
  padding: 10px 0;
  color: #000;
}
/* ========================================================================= Info END ========================================================================= */

/* ========================================================================= Izdvojeno ========================================================================= */
.izdvojeno_parent_container{
  padding: 50px 0;
  background: #fff;
}
.izdvojeno_img_container{
  overflow: hidden;
  display: inline-block;
}
.izdvojeno_img_container img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.izdvojeno_text_container h4 a{
  color: #0c3054;
  font-size: 20px;
  font-weight: bold;
}
.izdvojeno_text_container p{
  color: #757575;
  font-size: 16px;
}
.btn_izdvojeno_container{
  display: flex;
  justify-content: flex-start;
  gap: 30px;
}
.white_button{
  background: #fff;
  color: #324d71;
  overflow: hidden;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0 24px;
  position: relative;
  display: inline-block;
  line-height: 40px;
  z-index: 1;
  letter-spacing: 1px;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  -webkit-box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.15);
  box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.15);
  border: 1px solid #324d71;
}
.white_button:hover{
  background: #2168d2;
  color: #fff;
}
/* ========================================================================= Izdvojeno END ========================================================================= */

/* ========================================================================= Footer ========================================================================= */
.footer{
  background-image: url(../images/footer_background.png);
  background-position: top right;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 50px 0 0 0;
}
.footer a{
  color: #d5d7d8;
  font-size: 14px;
}
.footer a:hover{
  color: #38afda;
}
.footer_first_row_container, .footer_second_row_container{
  border-bottom: 1px solid #145392;
}
.footer_first_row_container h6 a, .footer_second_row_container h6 a{
  color: #38afda;
  text-shadow: 2px 2px 3px #0d121b;
  font-weight: 600;
  font-size: 16px;
}
.footer_first_row_container h6 a:hover, .footer_second_row_container h6 a:hover{
  color: #d5d7d8;
}
.footer_first_row_container ul, .footer_second_row_container ul{
  list-style-type: none;
  padding: 0;
}
.footer_second_row_container{
  padding-top: 20px;
}
.footer_bottom{
  background: #252a2e;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  padding: 20px 100px;
}
.footer_bottom p{
  color: #d5d7d8;
  font-size: 14px;
  margin-bottom: 0;
}
/* ========================================================================= Footer END ========================================================================= */

/* ========================================================================= Breadcrumb ========================================================================= */
.breadcrumb_container{
  background: #243355;
  padding: 10px 0;
}
.breadcrumb_main h2{
  text-align: center;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 0;
}
.breadcrumb_main ul{
  list-style-type: none;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 0;
  flex-wrap: wrap;
}
.breadcrumb_main ul li:last-child::after {
  content: none;
}
.breadcrumb_main ul li a, .breadcrumb_main ul li i.fa-long-arrow-right{
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}
.breadcrumb_main ul li i.fa-long-arrow-right{
  margin-right: 10px;
}
.breadcrumb_main ul li a:hover{
  color: #00b8e2;
}
/* ========================================================================= Breadcrumb END ========================================================================= */

/* ========================================================================= Category ========================================================================= */
.category-text {
  max-width: 900px; 
  margin: 32px auto; 
  padding: 0 16px;   
  font-size: 18px; 
  line-height: 1.6;  
  color: #304f6d;      
  text-align: center;
}
.category-text p {
  margin: 0;        
}
.category-text iframe{
  width: 570px;
  max-width: 100%;
  height: 320px;
}
.categoryContainer{
  background-color: #fff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 10px 14px 0 rgba(37,44,65,0.1);
  margin-top: 12px;
  margin-bottom: 12px;
}
.categoryImgContainer{
  display: flex;
  justify-content: center;
  align-items: center;
  height: 250px;
}
.categoryImgContainer img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.categoryTextContainer{
  padding: 20px;
}
.categoryTextContainer h2 a{
  font-size: 20px;
  font-weight: 700;
  color: #304f6d;
  text-decoration: none;
}
.categoryTextContainer h2 a:hover{
  color: #00b8e2;
}
.paging{
  display: flex;
  justify-content: center;
}
.paging .active span{
  background: #2f75de;
  color: #fff;
}
/* ========================================================================= Category END ========================================================================= */

/* ========================================================================= Product card ========================================================================= */
.productContainer, .izdanjeContainer{
  background-color: #fff;
  border-radius: 6px;
  overflow: hidden;
  -webkit-box-shadow: 0 10px 14px 0 rgba(37,44,65,0.1);
  box-shadow: 0 10px 14px 0 rgba(37,44,65,0.1);
  margin-top: 12px;
  margin-bottom: 12px;
  position: relative;
}
.productImgContainer{
  display: flex;
  justify-content: center;
  align-items: center;
  height: 250px;
}
.productImgContainer img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.productTextContainer{
  padding: 20px;
  height: 250px;
}
.productTextContainer h2{
  line-height: 1;
}
.productTextContainer h2 a{
  font-size: 20px;
  font-weight: 700;
  color: #304f6d;
  text-decoration: none;
}
.productTextContainer h2 a:hover{
  color: #00b8e2;
}

.izdanjeImgContainer{
  display: flex;
  justify-content: flex-start;
  align-items: center;
  height: 215px;
}
.izdanjeImgContainer img{
  width: 50%;
  height: auto;
  object-fit: contain;
}
.izdanjeImgContainer div{
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.izdanjeTextContainer{
  text-align: center;
  padding: 20px;
}
.izdanjeTextContainer h2{
  line-height: 0.7;
  margin-bottom: 20px;
}
.izdanjeTextContainer h2 a{
  font-size: 14px;
  font-weight: 700;
  color: #304f6d;
  text-decoration: none;
}
.izdanjeTextContainer h2 a:hover{
  color: #00b8e2;
}
.izdanjeTextContainer table td{
  font-size: 14px;
  color: #757575;
}
.izdanje_view_img_container img{
  width: auto;
  height: 300px;
  object-fit: contain;
}
.izdanje_view_container td{
  color: #757575;
  font-size: 15px;
}
.smallizdanje_container{
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  flex-wrap: wrap;
}
.small_izdanje_img_container{
  width: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.small_izdanje_img_container img{
  height: 150px;
  width: auto;
  object-fit: contain;
}
.small_izdanje_img_container a{
  transition: 0.3s ease;
}
.small_izdanje_img_container a:hover{
  color: #00b8e2;
}
/* ========================================================================= Product card END ========================================================================= */

/* ========================================================================= Poruka ========================================================================= */
.message h2{
  text-align: center;
  color: #304f6d;
  font-weight: 700;
  font-size: 25px;
}
/* ========================================================================= Poruka END ========================================================================= */

/* ========================================================================= ISVU ========================================================================= */
.isvu{
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 350px;
  text-align: center;
  margin: 0 auto;
  background: #1b2e5a;
  border-radius: 3px;
  padding: 8px 0;
  color: #fff !important;
}
.isvu:hover{
  background: #2f75de;
}
/* ========================================================================= ISVU END ========================================================================= */

/* ========================================================================= Login ========================================================================= */
.login{
  background: #152c49;
}
.login_container{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15);
  width: 550px;
}
.login_container img{
  width: 165px;
}
.form-group label{
  font-weight: 700;
}
/* ========================================================================= Login END ========================================================================= */

/* ========================================================================= Galerija END ========================================================================= */
.gallery-item {
    max-width: 320px;
    width: 100%;
    height: 400px;
    margin: 10px 10px;
    position: relative;
    opacity: 0;
    transform: scale(0);
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover {
    transform: scale(1.05) !important;
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.47);
    z-index: 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.album {
    padding: 8px 30px;
    border: 1px solid #324d71;
    margin: 10px;
    cursor: pointer;
    border-radius: 5px;
    color: #324d71;
    transition: background-color 0.5s, color 0.5s;
}

.album:hover {
    color: #fff;
    background-color: #2f75de;
}

.gallery-active {
    color: #fff;
    background-color: #2f75de;
}

.my-container {
    overflow: hidden;
}
/* ========================================================================= Galerija END ========================================================================= */

/* ========================================================================= View ========================================================================= */
.view_container h1{
  text-align: center;
  color: #304f6d;
  font-weight: 700;
}
.view_nastavnik_container h1{
  text-align: left;
  color: #304f6d;
  font-weight: 700;
  font-size: 1.6rem;
  position: relative;
  padding-bottom: 10px;
}
.view_nastavnik_container h1 small{
  font-size: 1.3rem;
}
.view_nastavnik_container h1:after{
  content: '';
  position: absolute;
  width: 30px;
  height: 2px;
  background: #00b8e2;
  left: 0;
  bottom: 0;
  z-index: 1;
}
.view_img_container a{
  display: inline-block;
  float: left;
  position: relative;
  z-index: 10;
}
.view_img_container img{
  max-width: 550px;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  margin-right: 15px;
  margin-bottom: 15px;
  float: left;
}
.view_text_container{
  color: #304f6d;
}
.view_text_container p, .view_text_container span, .view_text_container a, .view_text_container, .view_text_container td{
    color: rgb(117, 117, 117);
    font-family: Roboto, sans-serif;
    font-size: 15px !important;
}
.view_text_container a{
  white-space: normal;
  word-break: break-word;
  overflow-wrap: anywhere;
}
.view_text_container h1, .view_text_container h2, 
.view_text_container h3, .view_text_container h4, 
.view_text_container h5, .view_text_container h6{
  font-weight: bold;
  color: #304f6d;
  font-family: Roboto, sans-serif;
}
.view_text_container a, .view_text_container a > span{
  color: #304f6d;
  text-decoration: none !important;
  transition: 0.3s ease;
}
.view_text_container a:hover, .view_text_container a > span:hover{
  color: #00b8e2 !important;
}
.view_text_container ul{
  overflow: hidden;
  margin: 0;       
  padding-left: 40px;
}
.view_text_container img, .view_text_container video, .view_text_container table, .view_text_container iframe{
  max-width: 100% !important;
}
.product-slider a{
  display: inline-block;
  height: 200px;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  overflow: hidden;
}
.product-slider img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.faq-content-area{
  position: relative;
  display: block;
}
.faq-content-area h1{
  text-align: center;
  color: #304f6d;
  font-weight: 700;
}
.faq-content-box {
    position: relative;
    display: block;
}
.accordion-box {
    position: relative;
    display: block;
}
.accordion-box .accordion {
    position: relative;
    display: block;
    margin-bottom: 10px;
}
.accordion-box.team-page .accordion .accord-btn {
    background: #ffffff;
    border: 1px solid #dddddd;
    padding-left: 30px;
    padding-right: 50px;
    padding-top: 16px;
    padding-bottom: 16px;
}
.accordion-box .accordion .accord-btn {
    position: relative;
    display: block;
    background: #ffffff;
    border: 1px solid #cccccc;
    cursor: pointer;
    padding-left: 75px;
    padding-right: 30px;
    padding-top: 16px;
    padding-bottom: 16px;
    transition: all 500ms ease;
}
.accordion-box.team-page .accordion .accord-btn.active {
    background: #f5f5f5;
    border-bottom-color: #f5f5f5;
    padding-top: 23px;
    padding-bottom: 14px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}
.accordion-box .accordion .accord-btn h4 {
    color: #304f6d;
    font-size: 18px;
    line-height: 26px;
    font-weight: 600;
    margin-bottom: 0;
    transition: all 500ms ease;
}
.accordion-box.team-page .accordion .accord-btn::after {
    top: 50%;
    left: auto;
    right: 30px;
    width: auto;
    height: auto;
    color: #304f6d;
}
.accordion-box .accordion .accord-btn::after {
    font-family: "Font Awesome 5 Pro";
    font-weight: 900;
    content: "\f067";
    position: absolute;
    top: 50%;
    left: 30px;
    width: auto;
    height: auto;
    background: transparent;
    color: #222222;
    font-size: 16px;
    transform: translateY(-50%);
    transition: all 500ms ease 0s;
}
.accordion-box .accordion .accord-btn.active:after {
    content: "\f068";
}
.accordion-box.team-page .accordion .accord-content {
    background: #f5f5f5;
    padding-top: 0px;
    padding-bottom: 21px;
    padding-left: 30px;
    padding-right: 50px;
    display: none;
    border: 1px solid #dddddd;
    border-top: none;
}
.accordion-box .accordion .accord-content {
    position: relative;
    display: block;
    background: #ffffff;
    padding-top: 1px;
    padding-bottom: 22px;
    padding-left: 75px;
    padding-right: 50px;
    display: none;
    border: 1px solid #cccccc;
    border-top: none;
}
.accordion-box.team-page .accordion .accord-content p {
    color: #777777;
    font-size: 16px;
    line-height: 28px;
    font-weight: 400;
    margin: 0;
}
.accordion-box .accordion .accord-content p {
    color: #777777;
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
    margin: 0;
}
.nastavnik_img_container{
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.nastavnik_img_container img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.nastavnik_basic_info .nastavnik_text_container p{
  padding: 15px;
  color: #fff;
  font-size: 17px;
  background: #304f6d;
  border-bottom: 1px solid #fff;
  margin-bottom: 0;
}
.nastavnik_basic_info .nastavnik_text_container a, .nastavnik_basic_info .nastavnik_text_container i{
  font-size: 17px;
  color: #fff;
  transition: 0.3s ease;
}
.nastavnik_basic_info .nastavnik_text_container i{
  margin-right: 5px;
}
.nastavnik_basic_info .nastavnik_text_container a:hover{
  opacity: 0.7;
}
.nastavnik_description_container td{
  padding: 10px;
  color: #757575;
}
.nastavnik_description_container i{
  color: #0c3054d9;
}
.nastavnik_description_container .btn-danger i{
  color: #fff;
}
.knjiznica_container{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}
.studij_main_img_container img{
  max-width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}
.studij_main_text_container h5{
  color: #496a9d;
  font-weight: bold;
}
.studij_main_text_container p{
  color: #757575;
}
.studij_detail_container{
  border-radius: 10px;
  overflow: hidden;
}
.studij_detail{
  text-align: justify;
  padding: 20px;
  margin: 0;
  color: #fff;
  background: #7dd2e6;
  font-size: 14px;
}
.studij_detail_container td{
  color: #757575;
  padding: 10px;
}
.studij_ishodi_container{
  background: #eef4f7;
  padding: 20px;
}
.studij_ishodi_container h6{
  color: #304f6d;
  font-weight: bold;
  font-size: 20px;
}
.studij_ishodi_container p{
  font-size: 17px;
  color: #313437;
}
.procelnik_container > p{
  font-weight: bold;
}
.procelnik_card{
  border: 1px solid #dee2e6;
  display: flex;
  justify-content: flex-start;
  gap: 15px;
  align-items: center;
}
.procelnik_img_container img{
  height: 130px;
  width: auto;
}
.procelnik_text_container{
  padding: 5px;
}
.procelnik_text_container h6{
  color: #304f6d;
  font-weight: bold;
  font-size: 18px;
}
.procelnik_text_container p{
  color: #757575;
  font-size: 15px;
}
.galerija_container > p{
  font-weight: bold;
}
.galerija_slike_container{
  display: flex;
  justify-content: flex-start;
  gap: 15px;
  flex-wrap: wrap;
}
.galerija_slike_container img{
  max-width: 100px;
  height: auto;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}
.semestar_legend_container{
  padding: 15px;
  border: 1px solid #dee2e6;
}
.semestar_legend_container p{
  margin: 0;
  color: #757575;
}
.yellow_box{
  display: inline-block;
  height: 10px;
  width: 10px;
  background-color: #ffc107;
}
.semestar_card{
  border-radius: 10px;
  padding: 20px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  overflow-x: auto;
  max-width: 100%;
}
.semestar_card h6{
  margin: 0;
  font-weight: bold;
}
.semestar_card thead th{
  background: #2b4b6a;
  color: #fff;
}
.semestar_napomena{
  color: #757575;
  font-weight: bold;
}

.nositelj_container > p{
  font-weight: bold;
  color: #0c3054;
  margin-bottom: 5px;
}
.asistent_container > p{
  font-weight: bold;
  color: #0c3054;
  margin-bottom: 5px;
}
.predmet_info_container{
  max-width: 100%;
  overflow-x: auto;
}
.predmet_info_container td{
  color: #757575;
}
.more_btn3{
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  font-size: 14px;
  font-weight: 700;
  position: relative;
  display: inline-block;
  z-index: 1;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  border: none;
  text-decoration: none;
  background: #2f75de;
  color: #fff;
  padding: 5px 10px;
}
.more_btn3:hover{
  background: #324d71;
  color: #fff;
}
/* ========================================================================= View END ========================================================================= */

/* ========================================================================= Form ========================================================================= */
form input, form textarea, form select{
  -webkit-box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.02) inset;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.02) inset;
  border: 1px solid #dee2e6;
  padding: 10px !important;
}
.captchaContainer{
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.captchaContainer > div{
  flex: 1;
  position: relative;
}
.form-group > div{
  position: relative;
}
.submitButton{
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  font-size: 14px;
  font-weight: 700;
  padding: 0 35px;
  position: relative;
  display: inline-block;
  line-height: 38px;
  z-index: 1;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
  background: #5B92E5;
  color: #fff;
  letter-spacing: 1px;
  border: none;
}
.submitButton:hover{
  background: #324d71;
}
.covidTitle{
  text-align: center;
  color: #304f6d;
  font-weight: 700;
  position: relative;
  padding-bottom: 20px;
}
.covidTitle::after{
  content: '';
  position: absolute;
  width: 30px;
  height: 2px;
  background: #00b8e2;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  z-index: 1;
}

.input-box {
  position: relative;
  display: flex;
  align-items: center;
}
.input-box input[type="file"] {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.custom-file-label {
  display: inline-block;
  padding: 10px 16px;
  background-color: #007bff;
  color: #fff;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.3s ease;
}
.custom-file-label:hover {
  background-color: #0056b3;
}
.file-chosen {
  margin-left: 12px;
  font-size: 14px;
  color: #555;
  font-style: italic;
}
.alumni_container{
  padding: 15px;
  background: #d5dce1;
  border: 1px solid #1E1E1E;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
/* ========================================================================= Form END ========================================================================= */

/* ========================================================================= Journal ========================================================================= */
.journal_header{
  color: #304f6d;
  font-weight: 700;
}
.volume_card{
  padding: 24px;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.volume_card h3{
  font-weight: bold;
  color: #0c3054;
  font-size: 1.4rem;
  margin-bottom: 20px;
}
.clanak_card{
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 15px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  margin-bottom: 24px;
  position: relative;
}
.clanak_card h5{
  font-size: 1rem;
  font-weight: 600;
  color: #005c83;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 2px solid #005c83;
}
.clanak_container > div:nth-child(odd) .clanak_card {
  background-color: #cde9f1;
}
.clanak_card p{
  color: #757575;
  font-size: 14px;
}
.clanak_card p b{
  color: #000;
}
.article_download{
  padding: 6px;
  border: 1px solid #777;
  border-radius: 4px;
  margin: 15px 0 0 0;
  width: fit-content;
  background: white;
  transition: 0.5s ease;
  position: absolute;
  bottom: 15px;
}
.article_download:hover{
  background: #496a9d;
  color: #fff;
}
.article_download i{
  color: red;
}
.journal_filed_container{
  display: flex;
  justify-content: flex-start;
  gap: 15px;
  flex-wrap: wrap;
}
.volumecheck{
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  text-align: center;
}
.form_check{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 15px;
  max-width: 90px;
  padding: 10px;
}
.volumecheck > :nth-child(odd){
  background: #e9ecef;
}
.journal_filter_submit_container{
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}
/* ========================================================================= Journal END ========================================================================= */

.news_date{
  font-size: 14px;   
  color: #666;
  font-weight: bold;
  opacity: 0.8;
}

.back-to-top {
  position: fixed;
  bottom: 45px;
  right: 20px;
  text-decoration: none;
  color: #fff;
  background-color: #324d71;
  font-size: 1.1em;
  width: 50px;
  height: 50px;
  -webkit-box-shadow: 0px 10px 27px -13px rgba(0, 0, 0, 0.75);
  box-shadow: 0px 10px 27px -13px rgba(0, 0, 0, 0.75);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
          z-index: 103;
}

.back-to-top:hover {
  background-color: #2f75de;
  text-decoration: none;
  color: #FFF;
}

.custom-tooltip{
  --bs-tooltip-bg: #00b8e2;
  --bs-tooltip-color: #fff;
}

@media(max-width: 1200px){
  .owl-text-container{
    width: 65%;
  }
  .owl-text-container h1{
    font-size: 45px;
  }
  .news_image_container{
    flex: 0 0 250px;
  }
}

@media(max-width: 992px){
  .owl-text-container h2{
    font-size: 18px;
  }
  .owl-text-container h1{
    font-size: 30px;
  }
  .owl-text-container p{
    font-size: 16px;
  }
}

@media(max-width: 768px){
  #header{
    height: 50px;
  }
  #header .main-logo img{
    width: 120px;
  }
  .main{
    overflow: hidden;
  }
  .cover-slider{
    height: 400px;
  }
  .cover-slider .owl-item > a{
    display: inline-block;
    height: 400px;
  }
  .cover-slider .owl-item > a img{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .owl-prev{
    display: none !important;
  }
  .owl-next{
    display: none !important;
  }
  .owl-text-container{
    width: 80%;
  }
  .owl-text-container h2{
    font-size: 14px;
  }
  .owl-text-container h1{
    font-size: 22px;
  }
  .owl-text-container p{
    font-size: 14px;
  }
  .review-container{
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .btn_izdvojeno_container{
    flex-direction: column;
    align-items: center;
  }
  .footer_bottom{
    padding: 20px;
  }
  .footer_first_row_container, .footer_second_row_container{
    text-align: center;
  }
  .login_container{
    width: 90%;
  }
  .productTextContainer{
    height: auto;
  }
  .view_img_container img{
    max-width: none;
    width: 100%;
    float: none;
  }
  .news_container{
    flex-direction: column;
  }
}

@media(max-width: 400px){
  .isvu{
    width: 90%;
  }
  .product-slider .owl-item{
    text-align: center;
  }
  .captchaContainer{
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }
  .captchaContainer > div{
    width: 100%;
  }
}

@media(min-width: 992px){
  .topBarIcons img:hover{
    transform: scale(1.1);
  }
}