@charset "UTF-8";

/*

  ------------------------------------------------------
  CSS DOKUMENT
  ------------------------------------------------------
  Autori:	Christian Medica
  Tvrtka:	e-Sustavi d.o.o., Zagreb
  Datum:	veljača, 2020.
  ------------------------------------------------------
  
*/






/* ############################# */
/* #####  VANJSKI SADRŽAJI  #### */
/* ############################# */

/*
  font OpenSans - glavni za cijeli web
  font-family: 'Open Sans', sans-serif;
*/
@import url(https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i,800,800i);

/*
  font PT Sans - za naslove i podnaslove
  font-family: "PT Sans", Trebuchet MS, Arial, Helvetica, sans-serif;
*/
@import url(https://fonts.googleapis.com/css?family=PT+Sans:400,400i,700,700i);
/*
  font Courgette - rukopis
  font-family: 'Courgette', cursive;
*/
@import url(https://fonts.googleapis.com/css?family=Courgette);






/* ############################ */
/* #####  TIJELO STRANICE  #### */
/* ############################ */

/* tijelo */
body {
	color:#333;
	font-family: 'Open Sans', sans-serif;
	font-size: 16px;
	line-height:1.6em;
	font-style:normal;
	font-variant:normal;
	font-weight:normal;
	margin-left: 0px;
	margin-top: 150px;
	margin-right: 0px;
	margin-bottom: 0px;
	background-color:#FFF;
}
@media screen and (min-width: 1024px) and (max-width: 1400px) {
	body {
		font-size: 15px;
	}
}
/*kraj @media screen od 1024px do 1400px*/
@media screen and (min-width: 601px) and (max-width: 1023px) {
	body {
		font-size: 14px;
	}
}
/*kraj @media screen od 601px do 1023px*/
@media screen and (max-width: 600px) {
	body {
		font-size: 13px;
		margin-top: 64px;
	}
}
/*kraj @media screen do 600px*/



/* slike */
img { border:0; vertical-align:top;}

/* linkovi za sve */
a:link		{ text-decoration: underline;	color: #3B722F;		}
a:visited	{ text-decoration: underline;	color: #3B722F;		}
a:hover		{ text-decoration: none;		  color: #333;		}
a:active	{ text-decoration: none;		  color: #000;		}



/* odjeljci */
header,
footer,
main,
section {
	width:100%;
	box-sizing:border-box;
	float:left;
	padding:0px;
	text-align: center;
}
div, 
button {
	box-sizing:border-box;
}
section {
  overflow: hidden;
}





/* kontejner */
div.kontejner {
	width:100%;
	max-width:1370px;
	margin:0 auto;
	box-sizing:border-box;
	display:inline-block;
	text-align:left;
	vertical-align:top;
	padding:0;
}
@media screen and (min-width: 1024px) and (max-width: 1400px) {
	div.kontejner {
		max-width:1200px;
		padding:0 20px;
	}
}
/*kraj @media screen od 1024px do 1400px*/
@media screen and (min-width: 601px) and (max-width: 1023px) {
	div.kontejner {
		padding:0 20px;
	}
}
/*kraj @media screen od 601px do 1023px*/
@media screen and (max-width: 600px) {
	div.kontejner {
		padding:0 30px;
	}
}
/*kraj @media screen do 600px*/










/* ################################# */
/* #####  NASLOVI I PODNASLOVI  #### */
/* ################################# */

h1, h2 { 
	font-family: 'Open Sans', sans-serif;
  font-size: 34px;
  font-weight: 700;
  line-height: 1.2em;
  color:#3B722F;
  margin:20px 0;
  padding:0;
	text-align: center;
	box-sizing:border-box;
}
h1 > small, h2 > small {
  font-size: 30px;
}
@media screen and (max-width: 1023px) {
h1, h2 { 
  font-size: calc((10 *(1em - 13px) - -2em - 1px));
  line-height: 1.2em;
}
}
/*kraj @media screen do 1023px*/
@media screen and (max-width: 600px) {
h1 > small, h2 > small {
  font-size: 20px;
}
}
/*kraj @media screen do 600px*/
h3 {
	font-family: "PT Sans", Trebuchet MS, Arial, Helvetica, sans-serif;
	font-size:22px; 
	font-weight: bold; 
	line-height:1.4em; 
	color:#3A3F4C;
	margin:0;
	padding:0;
	text-transform: none;
	text-align:left;
	box-sizing:border-box;
  display: block;
}
@media screen and (max-width: 600px) {
h3 {
	font-size:19px; 
	line-height:1.3em; 
}
}
/*kraj @media screen do 600px*/

h4 {
	font-family: 'Open Sans', sans-serif;
	font-weight:600; 
	line-height:1.3em; 
	color:#A3498B;
	text-transform: uppercase;
	margin:25px 0 10px;
	padding:0;
	text-align: left;
	font-size:18px;
}









/* ############################### */
/* #####  EFEKTI I ANIMACIJE  #### */
/* ############################### */
:hover { 
	-webkit-transition:all 100ms ease-in; 
	-o-transition:all 100ms ease-in; 
	-moz-transition:all 100ms ease-in; 
}

@-webkit-keyframes fade-out {
	0% { opacity: 1; -webkit-transform: scale(1);}
	50% {opacity: 0.5; -webkit-transform: scale(1.5);}
	100% {opacity: 0; -webkit-transform: scale(.1); }
}
	
@-moz-keyframes fade-out {
	0% { opacity: 1; -moz-transform: scale(1);}
	50% {opacity: 0.5; -moz-transform: scale(1.5);}
	100% {opacity: 0; -moz-transform: scale(.1); }
}
	
@keyframes fade-out {
	0% { opacity: 1; transform: scale(1);}
	50% {opacity: 0.5; transform: scale(1.5);}
	100% {opacity: 0; transform: scale(.1); }
}

@-webkit-keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(0,0,0, 0.4);
  }
  70% {
      -webkit-box-shadow: 0 0 0 10px rgba(0,0,0, 0);
  }
  100% {
      -webkit-box-shadow: 0 0 0 0 rgba(0,0,0, 0);
  }
}
@keyframes pulse {
  0% {
    -moz-box-shadow: 0 0 0 0 rgba(0,0,0, 0.4);
    box-shadow: 0 0 0 0 rgba(0,0,0, 0.4);
  }
  70% {
      -moz-box-shadow: 0 0 0 10px rgba(0,0,0, 0);
      box-shadow: 0 0 0 10px rgba(0,0,0, 0);
  }
  100% {
      -moz-box-shadow: 0 0 0 0 rgba(0,0,0, 0);
      box-shadow: 0 0 0 0 rgba(0,0,0, 0);
  }
}

@-moz-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -moz-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -moz-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  60% {
    -moz-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}
@-webkit-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  60% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -moz-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  60% {
    -moz-transform: translateY(-15px);
    -ms-transform: translateY(-15px);
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}
@-moz-keyframes move{
    25%{
        opacity:1
    }
    33%{
        opacity:1;
        transform:translateY(30px)
    }
    67%{
        opacity:1;
        transform:translateY(40px)
    }
    100%{
        opacity:0;
        transform:translateY(55px) scale3d(.5,.5,.5)
    }
}
@-webkit-keyframes move{
    25%{
        opacity:1
    }
    33%{
        opacity:1;
        transform:translateY(30px)
    }
    67%{
        opacity:1;
        transform:translateY(40px)
    }
    100%{
        opacity:0;
        transform:translateY(55px) scale3d(.5,.5,.5)
    }
}
@keyframes move{
    25%{
        opacity:1
    }
    33%{
        opacity:1;
        transform:translateY(30px)
    }
    67%{
        opacity:1;
        transform:translateY(40px)
    }
    100%{
        opacity:0;
        transform:translateY(55px) scale3d(.5,.5,.5)
    }
}
@keyframes okretanje{
  0%{
    transform:rotate(0deg)
  }to{
    transform:rotate(1turn)
  }
}














/* ###################### */
/* #####  ZAGLAVLJE  #### */
/* ###################### */
nav {
  background-color:rgba(255,255,255,.9);
  position: fixed;
	top: 0;
	width: 100%;
	z-index:50;
	
	-webkit-box-shadow:  0px 0px 10px 0px rgba(0,0,0,0.2);
  -moz-box-shadow:     0px 0px 10px 0px rgba(0,0,0,0.2);
  box-shadow:          0px 0px 10px 0px rgba(0,0,0,0.2);
}
nav a {
  color:#3B722F !important;
  text-decoration: none !important;
  text-transform: uppercase;
  display:inline-block;
  box-sizing: border-box;
  padding: 20px 10px;
}
nav a:hover {
  background-color: #3B722F;
  color: #FFF !important;
}
nav .vip{
    font-weight: bold;
    font-size: 1.5em;
}
nav > div.kontejner {
  text-align: right;
}
nav > div.kontejner > div {
  display: flex;
    justify-content: center;
    clear: both;
    align-items: center;
    text-align: center;
}
nav > div.kontejner > a:nth-of-type(1) { /* LOGO u zaglavlju */
  display: block;
  width: fit-content;
  margin: auto;
  background-image: url(/img/solarna-elektrana.png);
  background-size: auto 89%;
  background-repeat: no-repeat;
  background-position: left 10px center;
  padding: 14px 15px 14px 80px;
  text-align: left;
  font-size: 15px;
  line-height: 1.2em;
  background-color: rgba(0,0,0,.0);
  font-weight: 600;
}
nav > div.kontejner > a:nth-of-type(2) { /* mobilni izbornik*/
  display:none;
}
nav > div.kontejner > a:nth-of-type(1):hover {
  background-color: #3B722F;
  background-image: url(/img/solarna-elektrana-b.png);
}




/* sticky izbornik */
nav.sticky {	/* statični izbornik kod scrolanja */
	position: fixed;
	top: 0;
	width: 100%;
	z-index:50;
  background-color: #3B722F;
}
nav.sticky a {
  color:#FFF !important;
}
nav.sticky a:hover {
  background-color: #FFF;
  color: #3B722F !important;
}
nav.sticky > div.kontejner > a:nth-of-type(1) { /* LOGO u zaglavlju */
  background-image: url(/img/solarna-elektrana-b.png);
}
nav.sticky > div.kontejner > a:nth-of-type(1):hover {
  background-color: #FFF;
  background-image: url(/img/solarna-elektrana.png);
}


@media screen and (max-width: 600px) {
nav > div.kontejner > a:nth-of-type(2) { /* mobilni izbornik*/
  /*display:inline-block;
  padding: 22px 20px;*/
}
  nav > div.kontejner {
    text-align:center;
  }
  nav > div.kontejner > a:nth-of-type(1) { /* LOGO u zaglavlju */
    float:none;
  }
  nav > div.kontejner > div {
    display:block;
    float: left;
    width: 100%;
    align-items: stretch;
  }
  nav > div.kontejner > div > a {
    padding: 5px 10px;
    margin-bottom: 5px;
  }  
}
/*kraj @media screen do 600px*/






/* ##################### */
/* #####  PODNOŽJE  #### */
/* ##################### */
footer {
  position: relative;
  overflow: hidden;
}
footer > span { /* pozadinska slika */
  display:block;
  width: auto;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0,0,0,.0);
  z-index: -1;
}
footer > span > img {
  height:100%;
  margin-right: -10%
}
footer > div.kontejner h1, footer > div.kontejner h2 {
  text-align: left;
  margin-bottom: 40px;
}
footer > div.kontejner {
  padding-top: 100px;
  padding-bottom: 30px;
}
footer > div.kontejner > p:last-of-type {
  font-size: 11px;
  line-height: 1.4em;
  margin-top: 100px;
  color: #3B722F;
}
@media screen and (max-width: 600px) {
footer > div.kontejner {
  padding-top: 50px;
  padding-bottom: 30px;
}
footer > span > img {
  margin-right: -80%
}
}
/*kraj @media screen do 600px*/






/* #################### */
/* #####  SADRŽAJ  #### */
/* #################### */

/* STRANICA 404 */
section.error {
  padding: 100px 0 50px;
}
section.error > div.kontejner {
  line-height: 1.4em;
}
section.error > div.kontejner h1, section.error > div.kontejner h2 {
  margin: 0 0 40px;
}

/* Gumb "Na vrh" */
div.na_vrh {
	position: fixed;
	bottom:40px;
	right:40px;
	display: none;
	
	z-index:9999;
	
	box-sizing:border-box;
	text-decoration:none;
	color:#FFF;
	background-color:#3B722F;
	width:50px;
	height:50px;
	text-align:center;
	font-size:30px;
	padding-top:10px;
	cursor:pointer;
	
	border-radius:100%;
	-webkit-border-radius:100%;
	-moz-border-radius:100%;
}
div.na_vrh:hover {
	background-color:#333;
  color:#FFF;
}
div.na_vrh:active {
	background-color:#3A3F4C;
	color:#FFF;
}
@media screen and (max-width: 600px) {
div.na_vrh {
	bottom:10px;
	right:10px;
	
	width:40px;
	height:40px;
	
	font-size:30px;
	padding-top:3px;
}
}
/*kraj @media screen do 600px*/







/* animirani miš koji ukazuje na scroll prema dolje */
div.mis {
  position:absolute;
  bottom: 50px;
	left: 50%;
  width: 30px;
  height: 50px;
  margin-left: -15px;
  display: none;
}
div.mis > a {
  display: block;
  text-decoration: none;
}
div.mis > a > span {
  position: relative;
  display: block;
  box-sizing: border-box;
  width: 30px;
  height: 50px;
  border-radius: 15px;
  border: 2px solid rgba(255,255,255,.2);
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
div.mis > a > span > span {
  position: absolute;
  left: 50%;
  top: 10px;
  margin-left: -3px;
  width: 6px;
  height: 13px;
  background-color: rgba(255,255,255,.8);
  border-radius: .2rem;
  -webkit-transform-origin: 50% 0;
  -webkit-animation: mouse-wheel 1s infinite linear;
  animation: mouse-wheel 1s infinite linear;
  transform-origin: 50% 0;
}
div.mis > a:hover > span {
  border-color: rgba(255,255,255,.7);
}div.mis > a:hover > span > span {
  background-color: rgba(255,255,255,1);
}
@-webkit-keyframes mouse-wheel{
    0%{
        -webkit-transform:scaleY(.4) translateY(0);
        transform:scaleY(.4) translateY(0)
    }
    20%{
        -webkit-transform:scaleY(1) translateY(0);
        transform:scaleY(1) translateY(0)
    }
    60%{
        -webkit-transform:scaleY(.4) translateY(1.2rem);
        transform:scaleY(.4) translateY(1.2rem)
    }
    to{
        -webkit-transform:scaleY(.4) translateY(0);
        transform:scaleY(.4) translateY(0)
    }
}
@keyframes mouse-wheel{
    0%{
        -webkit-transform:scaleY(.4) translateY(0);
        transform:scaleY(.4) translateY(0)
    }
    20%{
        -webkit-transform:scaleY(1) translateY(0);
        transform:scaleY(1) translateY(0)
    }
    60%{
        -webkit-transform:scaleY(.4) translateY(1.2rem);
        transform:scaleY(.4) translateY(1.2rem)
    }
    to{
        -webkit-transform:scaleY(.4) translateY(0);
        transform:scaleY(.4) translateY(0)
    }
}





/* BANNER */
section#header_banner{
  position:relative;
}
section#header_banner div.mis {
  bottom: 120px;
}
@media screen and (max-width: 600px) {
section#header_banner div.mis {
  bottom: 75px;
}
}
/*kraj @media screen do 600px*/


.banner_naslovna {
	position: relative;
	width: 100%;
	overflow: auto;
	border:0px;
	
	text-align: center;
	
	/*color: rgba(255,255,255,1);*/
	/*text-shadow: 0px 0px 20px rgba(0, 0, 0, 1);*/
	
	background: #FFF;
}
.banner_naslovna ul {
	list-style: none;
	width: 300%;
	padding:0;
	margin:0;
}
.banner_naslovna ul li {
	display: block;
	float: left;
	width: 33%;
	padding: 0px 0 0px;
	box-sizing:border-box;
	
	height: 33vw; /* visina browser prozora */
	
	background-size: contain;
  background-repeat: no-repeat;
	background-position-x:center;
}
.banner_naslovna > ul > li > div {  /* div za pozadinu - ne koristi se */
	display:block;
	box-sizing:border-box;
	width:100%;
	height:100%;
}
.banner_naslovna > ul > li > div > div.kontejner > div {  /* dva diva u kojem je sadržaj - lijevi i desni */
  width: 50%;
  float: left;
  box-sizing: border-box;
  padding-top: 10%;
}
.banner_naslovna > ul > li > div > div.kontejner > div h1, .banner_naslovna > ul > li > div > div.kontejner > div h2 {  /* H1 naslov */
  font-size: calc((11 *(1em - 12px) - -2em - 1px));
  text-align: left;
  line-height: 1.3em;
  color: #FFF;
  text-shadow: 0px 0px 10px rgba(0,0,0,0.47);
  font-family: 'Courgette', cursive;
  font-weight: normal;
}
.banner_naslovna > ul > li > div > div.kontejner > div p > a {  /* LINK U BANNERU */
  color: #FFF;
  text-decoration: none;
  display: inline-block;
  padding: 10px 20px;
  border: 2px solid #FFF;
  text-transform: uppercase;
}
.banner_naslovna > ul > li > div > div.kontejner > div p > a:hover {
  background-color: #FFF;
  color: #333;
}

@media screen and (max-width: 600px) {
.banner_naslovna > ul > li > div > div.kontejner > div {  /* dva diva u kojem je sadržaj - lijevi i desni */
  width: 70%;
  padding-top: 180px;
}
}
/*kraj @media screen do 600px*/

.banner_naslovna p {
	line-height:1.7em;
	font-size:calc((1 *(1em - 13px) - -2em - 15px));
}
.banner_naslovna p:first-of-type,
.banner_naslovna p:last-of-type {
  margin-top: 40px;
}
@media screen and (max-width: 600px) {
.banner_naslovna p {
	line-height:1.5em;
	font-size:12px;
}
.banner_naslovna p:first-of-type,
.banner_naslovna p:last-of-type {
  margin-top: 15px;
}
}
/*kraj @media screen do 600px*/
	
.banner_naslovna .dots {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	padding:0;
}
@media screen and (max-width: 600px) {
.banner_naslovna .dots {
	right: 1rem;
	left: unset;
}
}
/*kraj @media screen do 600px*/
.banner_naslovna .dots li {
	display: inline-block;
	width: 18px;
	height: 18px;
	margin: 0 4px;
	
	text-indent: -999em;
	
	border: 0px solid #fff;
	border-radius: 100%;
	background: #FFF;
	
	cursor: pointer;
	opacity: 0.3;
	
	-webkit-transition: background .5s, opacity .5s;
	-moz-transition: background .5s, opacity .5s;
	transition: background .5s, opacity .5s;
}
.banner_naslovna .dots li.active {
	background: #FFF;
	opacity: 1;
}



/* Provjereni dobavljači */
.top-title {
  margin-bottom: 60px;
}
.top-title .title-inner, .top-title .text-inner {
  position: relative;
  width: 50%;
  float: left;
}
@media screen and (max-width: 600px) {
.top-title .title-inner, .top-title .text-inner {
  width: 100%;
}
}
/*kraj @media screen do 600px*/
.top-title .title-inner:nth-of-type(1) {
  padding-right: 50px;
}
.top-title .title-inner:nth-of-type(1):before {
  position: absolute;
  content: '';
  background: #3B722F;
  width: 2px;
  top: 4px;
  bottom: 4px;
  right: -2px;
}
@media screen and (max-width: 600px) {
.top-title .title-inner:nth-of-type(1) {
  padding-right: 0px;
}
.top-title .title-inner:nth-of-type(1):before {
  width: 0px;
}
}
/*kraj @media screen do 600px*/
.top-title .text-inner .text {
  position: relative;
  padding-left: 50px;
  padding-right: 120px;
  margin-top: 5px;
}
@media screen and (max-width: 600px) {
.top-title .text-inner .text {
  padding-left: 0px;
  padding-right: 0px;
  text-align: center;
}
.top-title .title-inner h1, .top-title .title-inner h2 {
  text-align: center !important;
}
}
/*kraj @media screen do 600px*/

div.reference_popis {
  display: grid;
  grid-gap: 0px;
  grid-template-columns: auto auto auto;
  padding: 0px;
}
div.reference_popis > div {
  border: 0px solid rgba(58,63,76,.2);
  padding: 0 20px;
  text-align: center;
  box-sizing: border-box;
  height: 120px;
  line-height: 120px;
}
@media screen and (max-width: 600px) {
div.reference_popis {
  grid-gap: 10px;
  grid-template-columns: 31% 31% 31%;
}
div.reference_popis > div {
  padding: 0 10px;
  height: 70px;
  line-height: 70px;
}
}
/*kraj @media screen do 600px*/
div.reference_popis > div > img {
  max-width: 100%;
  height: auto;
  max-height: 60px;
  vertical-align: middle;
}
@media screen and (max-width: 600px) {
div.reference_popis > div > img {
  max-height: 30px;
}
}
/*kraj @media screen do 600px*/
div.reference_popis > div:hover {
  /*-webkit-box-shadow: 0 0px 10px rgba(0,0,0,.1);
  -moz-box-shadow: 0 0px 10px rgba(0,0,0,.1);
  box-shadow: 0 0px 10px rgba(0,0,0,.1);*/
}
div.reference_popis > div:hover > img {
  -webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
  filter: grayscale(100%);
  opacity: .7;
}


/* UPITNIK */
section#ponuda {
  padding:50px 0;
  border-bottom: 5px solid rgba(59,114,47,.1);
  border-top: 5px solid rgba(59,114,47,.1);
  background-color: rgba(59,114,47,.05);
}

section#provjereni_dobavljaci {
  padding:100px 0 50px;
  border-bottom: 5px solid rgba(59,114,47,.1);
}


section#novosti {
  padding:50px 0;
  border-bottom: 5px solid rgba(59,114,47,.1);
}
section#novosti > div.kontejner > div.row > div > a {
  display: block;
  background-color: rgba(59,114,47,.1);
  padding: 20px;
  box-sizing: border-box;
  text-align: center;
}

section#novosti_clanak {
  padding:100px 0 50px;
  border-bottom: 5px solid rgba(59,114,47,.1);
}
section#novosti_clanak h1, section#novosti_clanak h2 {
  text-align: left;
}
section#novosti_clanak h3 {
  text-align: left;
  margin: 20px 0 40px;
}
@media screen and (max-width: 600px) {
section#novosti_clanak {
  padding:150px 0 25px;
}
}
/*kraj @media screen do 600px*/



section#o-nama {
  padding:50px 0;
  border-bottom: 5px solid rgba(59,114,47,.1);
}

section#solarni-sistemi {
  padding:50px 0;
  border-bottom: 5px solid rgba(59,114,47,.1);
}


section#reference {
  padding:50px 0;
}


@media screen and (max-width: 600px) {
section#ponuda {
  padding:25px 0;
}

section#provjereni_dobavljaci {
  padding:0;
}

section#o-nama {
  padding:25px 0;
}

section#solarni-sistemi {
  padding:25px 0;
}

section#reference {
  padding:25px 0;
}
}
/*kraj @media screen do 600px*/




/* TRAŽIMO ZAPOSLENIKE */
section#posao {
  padding:50px 0;
  border-bottom: 5px solid rgba(59,114,47,.1);
}





/* REFERENCE POPIS */
div.reference_popis2 > div > div {
  width: 100%;
  float: left;
  border: 1px solid rgba(59,114,47,.1);
  margin-bottom: 30px;
}
div.reference_popis2 > div > div > div:nth-of-type(1) { /* slika */
  background-position: center;
  background-size: cover;
  width: 100%;
  height: auto;
  padding-top: 100%;
  float: left;
}
div.reference_popis2 > div > div > div:nth-of-type(2) { /* tekst */
  width: 100%;
  height: auto;
  float: left;
  padding: 10px;
}
div.reference_popis2 > div > div > div:nth-of-type(2) > p:nth-of-type(1) {
  font-weight:bold;
  margin-bottom: 0;
  text-align: center;
}
/*div.reference_popis2 > div > div > div:nth-of-type(2) > p:not(:first-of-type) {
  font-size:13px;
  line-height: 1.4em;
  margin-bottom: 0;
}*/


div.reference_popis3 > div > div {
  background-position: center;
  background-size: cover;
  width: 100%;
  height: auto;
  padding-top: 100%;
  margin-bottom: 30px;
}













/* ################### */
/* #####  OSTALO  #### */
/* ################### */

/* JS TOOLTIP */
.tooltip {
	position:absolute;
	z-index:200000;
	display:block;
	font-size:15px;
	font-style:normal;
	font-weight: normal;
	line-height:1.42857143;
	text-align:left;
	text-align:start;
	text-decoration:none;
	text-shadow:none;
	text-transform:none;
	letter-spacing:normal;
	word-break:normal;
	word-spacing:normal;
	word-wrap:normal;
	white-space:normal;
	filter:alpha(opacity=0);
	opacity:0;
	line-break:auto;
}
.tooltip.in{filter:alpha(opacity=90);opacity:.9}
.tooltip.top{padding:5px 0;margin-top:-3px}
.tooltip.right{padding:0 5px;margin-left:3px}
.tooltip.bottom{padding:5px 0;margin-top:3px}
.tooltip.left{padding:0 5px;margin-left:-3px}
.tooltip-inner{max-width:250px;padding:10px 10px;color:#fff;text-align:center;background-color:#000;border-radius:4px}
.tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid}
.tooltip.top .tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-width:5px 5px 0;border-top-color:#000}
.tooltip.top-left .tooltip-arrow{right:5px;bottom:0;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}
.tooltip.top-right .tooltip-arrow{bottom:0;left:5px;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}
.tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#000}
.tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-width:5px 0 5px 5px;border-left-color:#000}
.tooltip.bottom .tooltip-arrow{top:0;left:50%;margin-left:-5px;border-width:0 5px 5px;border-bottom-color:#000}
.tooltip.bottom-left .tooltip-arrow{top:0;right:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}
.tooltip.bottom-right .tooltip-arrow{top:0;left:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}



/* PRIKAZ PLACEHOLDER-A U POLJIMA ZA TEKST */
::-webkit-input-placeholder { /* WebKit browsers */
    color:rgba(0,0,0,.5);
}
:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
   color:rgba(0,0,0,.5);
   opacity: 1;
}
::-moz-placeholder { /* Mozilla Firefox 19+ */
   color:rgba(0,0,0,.5);
   opacity:  1;
}
:-ms-input-placeholder { /* Internet Explorer 10+ */
   color:rgba(0,0,0,.5);
}

/*accordion*/
.accordion {
    max-width: 800px;
    margin: 50px auto;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.accordion-item {
    border-bottom: 1px solid #ddd;
}

.accordion-header {
    width: 100%;
    padding: 15px;
    text-align: left;
    background: rgb(59, 114, 47);
    color: white;
    border: none;
    cursor: pointer;
    outline: none;
    transition: background 0.3s ease;
}

.accordion-header:hover {
    background: white;
    color: rgb(59, 114, 47);
}

.accordion-content {
    padding: 0 15px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: #f9f9f9;
}

.accordion-content p {
    padding: 15px 0;
    margin: 0;
}

/*chatbot*/
.chat-icon {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: #3B722F;
    color: white;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    font-size: 30px;
}

.chat-container {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 350px;
    max-width: 90%;
    background: white;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    z-index: 1000;
}

.hidden {
    display: none;
}

.chat-header {
    background-color: #3B722F;
    color: white;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.close-btn {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
}

.chat-box {
    flex: 1;
    padding: 10px;
    height: 300px;
    overflow-y: auto;
    border-top: 1px solid #ccc;
    max-height: 300px;
}

.input-box {
    border: none;
    border-top: 1px solid #ddd;
    padding: 10px;
    font-size: 16px;
    width: calc(100% - 20px);
    margin: 10px;
    border-radius: 5px;
    outline: none;
}

.message {
    margin: 10px 0;
    display: flex;
    align-items: center;
}

.bot-message-okvir{
    background: #3B722F;
    border-radius: 20px;
    padding: 20px;
}

.bot-message-okvir a{
    color: white;
}

.user-message-okvir{
    background: white;
    border-radius: 20px;
    padding: 20px;
    border: 1px solid;
}

.user-message {
    text-align: right;
    color: #3B722F;
    flex-direction: row-reverse;
}

.bot-message {
    text-align: left;
    color: white;
}

.message-icon {
    width: 24px;
    height: 24px;
    margin-right: 8px;
    margin-left: 8px;
}

.loading {
    display: flex;
    justify-content: center;
    padding: 10px;
}

.spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #3B722F;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/*call to action button*/
.cta-button{
    display: inline-block; 
    padding: 10px 20px; 
    background-color: #3B722F; 
    color: white; 
    text-decoration: none; 
    border-radius: 5px; 
    font-size: 18px; 
    margin: 10px 0;
}

.cta-button:visited{
   background-color: #3B722F; 
    color: white; 
}

/*dizalice topline*/
.dizalice-flex{
        display: flex;
        gap: 20px;
    }
.dizalice-flex:nth-of-type(2){
    flex-direction: row-reverse;
}
    
@media screen and (max-width: 1023px) {
    .dizalice-flex, .dizalice-flex:nth-of-type(2){
        flex-direction: column;
    }
}

/*menu icon*/
#menuIcon {
    cursor: pointer;
    display: none;
    flex-direction: column;
    width: 30px;
    justify-content: space-between;
    height: 24px;
    position: absolute;
    top: 20px;
    right: 20px;
}

nav .menu-icon .bar {
    height: 4px;
    background-color: #3B722F;
    width: 100%;
    transition: all 0.3s ease;
}

nav.sticky .menu-icon .bar{
    background-color: white;
}

.menu-icon.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.menu-icon.active .bar:nth-child(2) {
    opacity: 0;
}

.menu-icon.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

@media (max-width: 600px) {
    nav > div.kontejner > div.navigacija {
        display: none;
        flex-direction: column;
    }
    nav > div.kontejner > div.navigacija.active{
    display: flex;
}
#menuIcon{
    display: flex;
}
}

/*kalkulator*/
.form-kk {
            display: flex;
            flex-direction: column;
            width: 600px;
            margin: auto;
            gap: 10px;
            font-size: 16px;
        }

        .component-kk {
            display: flex;
            justify-content: space-between;
        }

        .component-kk label,
        .component-kk select, .component-kk input, .component-kk textarea {
            padding: 10px;
            width: 50%;
        }
        
        .component-kk select{
            border-bottom: 1px solid;
            cursor: pointer;
        }
        

        .zbrajanje-rezultat-kk {
            display: flex;
            justify-content: flex-end;
        }
        
        .zbrajanje-rezultat-kk{
            margin-top: 0;
        }
        
        #konstrukcija-kk{
            width: 30%;
        }
        
        #crijep-kk, #lim-kk{
            width: 70%;
        }
        
        .konstrukcija-div{
            display: flex;
            width: 50%;
        }
        
        @media screen and (max-width: 600px){
            .component-kk label,
        .component-kk select, .component-kk input, .component-kk textarea {
            padding: 10px;
            width: 100%;
        }
        .konstrukcija-div{
            width: 100%;
        }
        .component-kk {
            flex-direction: column;
        }
        .form-kk {
            width: auto;
        }
        .zbrajanje-rezultat-kk {
            justify-content: flex-start;
        }
        }

/*consent*/
#consent-banner {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: #f2f2f2;
	padding: 20px;
	text-align: center;
	box-shadow: 0 -2px 5px rgba(0,0,0,0.1);
	z-index: 10000;
	font-family: Arial, Helvetica, sans-serif;
	color: black;
	display: none;
}
#consent-banner button {
	padding: 10px 20px;
	border: none;
	background-color: #3B722F;
	color: white;
	cursor: pointer;
	border-radius: 5px;
}

#consent-banner button:hover{
	background-color: #3b722fdb;
}

.kolacici{
	display: flex;
	margin: auto;
	column-gap: 15px;
	margin-bottom: 15px;
	justify-content: center;
}

.kolacici label, .kolacici input{
	cursor: pointer;
	color: #3B722F;
}

.kolacici input{
	margin: 0;
}

.kolacici > div{
	display: flex;
	flex-direction: column;
	align-items: center;
}

/*hibridi*/
.hibridi-slike{
    display: flex;
    justify-content: space-between;
}

/*Hero*/
.absolute-cta{
    display: flex;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    justify-content: center;
    align-items: center;
}
.absolute-cta .cta-button{
    z-index: 1;
    text-transform: uppercase;
}
.cta-button{
    color: white !important;
}