
/* -----------------------------------------------------------------------------
# osnovne postavke stranice
----------------------------------------------------------------------------- */
html {
  font-size: 14px;
  font-weight: 400;
  line-height: 28px;

  scroll-behavior: smooth;
}

body {
  font-family: "Public Sans", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 0.1px;
  line-height: 1.8;
  color: #051922;
  overflow-x: hidden;
  height:100vh;
  height: 100%; 
}

body img {
  max-width: 100%;
}

a {
  cursor: pointer;
  text-decoration: none;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5,
h6, .h6 {
  
  font-weight: 700;
  margin: 0 0 1.25rem 0;
  color: #051922;
}

/* -----------------------------------------------------------------------------
# loader stranice
----------------------------------------------------------------------------- */

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#loader {
  display: block;
  position: relative;
  left: 50%;
  top: 50%;
  width: 150px;
  height: 150px;
  margin: -75px 0 0 -75px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #9370DB;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
}
#loader:before {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #BA55D3;
  -webkit-animation: spin 3s linear infinite;
  animation: spin 3s linear infinite;
}
#loader:after {
  content: "";
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #FF00FF;
  -webkit-animation: spin 1.5s linear infinite;
  animation: spin 1.5s linear infinite;
}
@-webkit-keyframes spin {
  0%   {
      -webkit-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
      transform: rotate(0deg);
  }
  100% {
      -webkit-transform: rotate(360deg);
      -ms-transform: rotate(360deg);
      transform: rotate(360deg);
  }
}
@keyframes spin {
  0%   {
      -webkit-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
      transform: rotate(0deg);
  }
  100% {
      -webkit-transform: rotate(360deg);
      -ms-transform: rotate(360deg);
      transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
  width: 100%;
  height: 30px;
  background: white;
  font-style: normal;
  transition: all ease 0.2s;
}

#topbar .container {
  text-align: center;
  font-size: 14px;
}

#topbar .kontakt{
  padding-top: 13px;
  color: #47555e; 
  font-size: 14px;
  text-decoration: none;
}

#topbar .kontakt a:hover {
  color: black;
  text-decoration: none;
  transition: all ease 0.2s;
}

@media (max-width: 768px) {

  #topbar .container {
    font-size: 14px;
  }

  #topbar a:link {
    display:none;
  }

}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#headerx {
  padding: 0px;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footerx {
  padding: 0;
}

/*--------------------------------------------------------------
# strsanica
--------------------------------------------------------------*/
#stranica {
  padding: 0px;
}



/*--------------------------------------------------------------
# bottom Bar
--------------------------------------------------------------*/
#bottombar {
  width: 100%;
  height: 40px;
  background-color: #EBF5FB;
  font-style: normal;
  transition: all ease 0.2s;
}


#bottombar .copyright {
  background-color:  #EBF5FB;
  text-align: center;
  padding: 6px;
}

/*--------------------------------------------------------------
# tn-back-to-top
--------------------------------------------------------------*/
#btn-back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: none;
  box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px;
  z-index: 3;
}

html {
  scroll-behavior: smooth;
}


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

#hero {
  width: 100%;
  min-height: 85vh;
  height: auto !important;  /* for other browsers */
  background: url("/foto/hero1.png") top left;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  
  /* TRANSITION */
  transition: .7s, background-position 0s;
  transition-duration: 2s;
}

#hero:hover {
  background: url("/foto/hero2.png") top left;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  /* TRANSITION */
  transition: .7s, background-position 0s;
  transition-duration: 2s;
}

#hero .container {
  position: relative;
}

#hero h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: #222222;

}

#hero h1 span {
  color: #106eea;
}

#hero h2 {
  color: #555555;
  margin: 5px 0 30px 0;
  font-size: 24px;
  font-weight: 400;
}

/*---------------------------------------------------------------*/
/* hero mobitel */
/*---------------------------------------------------------------*/

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-width: 768px) {
  #hero {
    background-attachment: fixed;
  }

  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
  
}

@media (max-height: 500px) {
  #hero {
    background-attachment: fixed;
  }
}


/*---------------------------------------------------------------*/
/* big picture section
/*---------------------------------------------------------------*/
#vslika .container-fluid {
  width: 100%;
  height: 100%;
  min-height: 300px;
  text-align: center;
  padding: 10px 10px;

}

#vslika .pozadina-vslika{
   background-color: white; 
}

#vslika .card{
  margin-top: 20px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
}

@media (max-width: 768px) {

  #vslika .container-fluid{
    display:none;
  }

}
/*--------------------------------------------------------------
# Counts brojač
--------------------------------------------------------------*/

#counts .container-fluid {
  text-align: center;
  background-color:   #EBF5FB;
  border-style: solid;
  border-color: white;
  border-width: 12px;
  padding: 0;
  margin-top: 10px;
}

#counts .counter{
  color: #fff;
  text-align: center;
  width: 210px;
  min-height: 250px;
  padding: 25px 0 0;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

#counts .counter:after{
  content: '';
  background: linear-gradient(to right, #eff0f2, #fefefe);
  height: 152px;
  width: 152px;
  border-radius: 15px;
  border: 3px solid #fff;
  box-shadow: 5px 0 8px rgba(0, 0, 0, 0.2);
  transform: translateX(-50%) rotate(45deg);
  position: absolute;
  top: 25px;
  left: 50%;
  z-index: -1;
}

#counts .counter .counter-value{
  background:#fe8c00;
  font-size: 25px;
  font-weight: 600;
  letter-spacing: 2px;
  width: 100%;
  padding: 10px 0 6px;
  border-radius: 10px;
  box-shadow: inset 0 0 6px rgba(0,0,0,0.6),0 0 0 2px #fff;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}

#counts .counter .counter-icon{
  background: linear-gradient(to right,#fe8c00,#f83600);
  font-size: 30px;
  line-height: 60px;
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 4px 4px 4px rgba(0,0,0,0.4);
}

#counts .counter h3{
  color: #f83600;
  font-size: 17px;
  font-weight: 500;
  text-transform: capitalize;
  line-height: 22px;
  padding: 0 30px;
  margin: 0 0 15px;
}

#counts .counter.green .counter-value{ background: #01c700; }
#counts .counter.green .counter-icon{ background: linear-gradient(to right,#01c700,#019b01); }
#counts .counter.green h3{ color: #019b01; }
#counts .counter.blue .counter-value{ background: #28a9e2; }
#counts .counter.blue .counter-icon{ background: linear-gradient(to right,#28a9e2,#0057c5); }
#counts .counter.blue h3{ color: #0057c5; }
#counts .counter.gray .counter-value{ background: #36474f; }
#counts .counter.gray .counter-icon{ background: linear-gradient(to right,#36474f,#0d0e10); }
#counts .counter.gray h3{ color: #0d0e10; }

@media screen and (max-width:990px){
  #counts .counter{ margin-bottom: 40px; }
}  



/*---------------------------------------------------------------*/
/* breadcrumb-section
/*---------------------------------------------------------------*/
.breadcrumb-text p {
  color: yellow;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 7px;
  margin-top: 140px;
}

.breadcrumb-section .p1 {
  font-family: Acme, sans-serif;
  color: yellow;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 2px;
  margin-top: 150px;
}

.breadcrumb-section .p2 {
  font-family: Acme, sans-serif;
  color: white;
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 2px;
  margin-top: -10px;
}

.breadcrumb-section .p3 {
  font-family: Acme, sans-serif;
  color: yellow;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 2px;
  margin-top: 10px;
}

.breadcrumb-text h1 {
  font-size: 50px;
  font-weight: 900;
  color: #fff;
  margin: 0;
  margin-top: 15px;
}

.breadcrumb-text img {
  margin-top: 15px;
  margin-bottom: 15px;
}

.breadcrumb-section {
  width: 100%;
  min-height: 23vh;
  height: auto !important;  /* for other browsers */
  background-color: DarkSlateGray;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

@media (min-width: 1024px) {
  .breadcrumb-section {
    width: 100%;
    min-height: 30vh !important;
    height: auto !important;  /* for other browsers */
    background-color: DarkSlateGray;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
  }
}

@media (min-width: 1280px) {
  .breadcrumb-section {
    width: 100%;
    min-height: 30vh !important;
    height: auto !important;  /* for other browsers */
    background-color: DarkSlateGray;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
  }
}


@media (min-width: 1536px) {
  .breadcrumb-section {
    width: 100%;
    min-height: 30vh !important;
    height: auto !important;  /* for other browsers */
    background-color: DarkSlateGray;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
  }
}

/* Tablet Layout: 768px. */
@media only screen and (min-width: 768px) and (max-width: 991px) { 
  /* IZBORNIK */	
  .breadcrumb-section {
    width: 100%;
    min-height: 30vh !important;
    height: auto !important;  /* for other browsers */
    background-color: DarkSlateGray;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
  }
}
  
  /* Mobile Layout: 320px. */
  @media only screen and (max-width: 767px) {
    .breadcrumb-section {
      width: 100%;
      min-height: 30vh !important;
      height: auto !important;  /* for other browsers */
      background-color: DarkSlateGray;
      background-position: center;
      background-repeat: no-repeat;
      background-size: cover;
      position: relative;
    }
  }  
  /* Wide Mobile Layout: 480px. */
  @media only screen and (min-width: 480px) and (max-width: 767px) { 
    .breadcrumb-section {
      width: 100%;
      min-height: 30vh !important;
      height: auto !important;  /* for other browsers */
      background-color: DarkSlateGray;
      background-position: center;
      background-repeat: no-repeat;
      background-size: cover;
      position: relative;
    }

  }
/* -----------------------------------------------------------------------------
# traka kraj
----------------------------------------------------------------------------- */
.jumbotron
{   
padding-top: 0px;
padding-bottom:0px;
height:40px;
 }

/*--------------------------------------------------------------
# potraži link na stranici
--------------------------------------------------------------*/
.offset:before { 
	display: block; 
 	content: " "; 
  height: 160px;      /* Give height of your fixed element */
  margin-top:  -150px;
  visibility: hidden; 
}

/*--------------------------------------------------------------
# 
--------------------------------------------------------------*/

