
/* Table of contents
––––––––––––––––––––––––––––––––––––––––––––––––––
- Grid
- Base Styles
- Typography
- Links
- Buttons
- Forms
- Lists
- Code
- Tables
- Spacing
- Utilities
- Clearing
- Media Queries
*/

/* Reset css
–––––––––––––––––––––––––––––––––––––––––––––––––– */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* Grid
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.container {
  position: relative;
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box; }
.column,
.columns {
  width: 100%;
  float: left;
  box-sizing: border-box; }

/* For devices larger than 400px */
@media (min-width: 400px) {
  .container {
    width: 85%;
    padding: 0; }
}

/* For devices larger than 550px */
@media (min-width: 550px) {
  .container {
    width: 80%; }
  .column,
  .columns {
    margin-left: 4%; }
  .column:first-child,
  .columns:first-child {
    margin-left: 0; }

  .one.column,
  .one.columns                    { width: 4.66666666667%; }
  .two.columns                    { width: 13.3333333333%; }
  .three.columns                  { width: 22%;            }
  .four.columns                   { width: 30.6666666667%; }
  .five.columns                   { width: 39.3333333333%; }
  .six.columns                    { width: 48%;            }
  .seven.columns                  { width: 56.6666666667%; }
  .eight.columns                  { width: 65.3333333333%; }
  .nine.columns                   { width: 74.0%;          }
  .ten.columns                    { width: 82.6666666667%; }
  .eleven.columns                 { width: 91.3333333333%; }
  .twelve.columns                 { width: 100%; margin-left: 0; }

  .one-third.column               { width: 30.6666666667%; }
  .two-thirds.column              { width: 65.3333333333%; }

  .one-half.column                { width: 48%; }

  /* Offsets */
  .offset-by-one.column,
  .offset-by-one.columns          { margin-left: 8.66666666667%; }
  .offset-by-two.column,
  .offset-by-two.columns          { margin-left: 17.3333333333%; }
  .offset-by-three.column,
  .offset-by-three.columns        { margin-left: 26%;            }
  .offset-by-four.column,
  .offset-by-four.columns         { margin-left: 34.6666666667%; }
  .offset-by-five.column,
  .offset-by-five.columns         { margin-left: 43.3333333333%; }
  .offset-by-six.column,
  .offset-by-six.columns          { margin-left: 52%;            }
  .offset-by-seven.column,
  .offset-by-seven.columns        { margin-left: 60.6666666667%; }
  .offset-by-eight.column,
  .offset-by-eight.columns        { margin-left: 69.3333333333%; }
  .offset-by-nine.column,
  .offset-by-nine.columns         { margin-left: 78.0%;          }
  .offset-by-ten.column,
  .offset-by-ten.columns          { margin-left: 86.6666666667%; }
  .offset-by-eleven.column,
  .offset-by-eleven.columns       { margin-left: 95.3333333333%; }

  .offset-by-one-third.column,
  .offset-by-one-third.columns    { margin-left: 34.6666666667%; }
  .offset-by-two-thirds.column,
  .offset-by-two-thirds.columns   { margin-left: 69.3333333333%; }

  .offset-by-one-half.column,
  .offset-by-one-half.columns     { margin-left: 52%; }

}


/* Base Styles
–––––––––––––––––––––––––––––––––––––––––––––––––– */
body {
  font-size: 1em; /* currently ems cause chrome bug misinterpreting rems on body element */
  line-height: 1.6;
  font-weight: 400;
  font-family: "Raleway", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #222; }

.redline {
	position: fixed;
	top: 0;
	left: 0;
	width: 40px;
	background: #EC1C24;
	height: 100vh;
    z-index: 9999;
}
.redline .logov {
	position: absolute;
	top: 50%;
	margin-top: -75px;
}

.bg-black {
	background: #000000;
}
.text-white {
	color: #ffffff;
}
.text-danger {
	color: #EC1C24;
}
.text-center {
	text-align: center;
}
.pt-3 {
	padding-top: 15px;
}
small {
	font-size: 0.8em;
}

/* Links
–––––––––––––––––––––––––––––––––––––––––––––––––– */
a {
  color: #222;
  outline: none;
  text-decoration: none;
}
a:hover {
  color: #EC1C24; 
}

/* Clearing
–––––––––––––––––––––––––––––––––––––––––––––––––– */

/* Self Clearing Goodness */
.container:after,
.row:after,
.u-cf {
  content: "";
  display: table;
  clear: both; }
.clear {
  clear: both;
}

  /* Custom
–––––––––––––––––––––––––––––––––––––––––––––––––– */
@font-face {
	font-family: "Flaticon";
	src: url("../fonts/Flaticon.eot");
	src: url("../fonts/Flaticon.eot?#iefix") format("embedded-opentype"),
	   url("../fonts/Flaticon.woff") format("woff"),
	   url("../fonts/Flaticon.ttf") format("truetype"),
	   url("../fonts/Flaticon.svg#Flaticon") format("svg");
	font-weight: normal;
	font-style: normal;
}

@media screen and (-webkit-min-device-pixel-ratio:0) {
  @font-face {
    font-family: "Flaticon";
    src: url("../fonts/Flaticon.svg#Flaticon") format("svg");
  }
}

[class^="flaticon-"]:before, [class*=" flaticon-"]:before,
[class^="flaticon-"]:after, [class*=" flaticon-"]:after {   
	font-family: Flaticon;
	font-size: 16px;
	font-style: normal;
	margin: 0 10px;
}

.flaticon-facebook-placeholder-for-locate-places-on-maps:before { content: "\f100"; }
.flaticon-phone-receiver:before { content: "\f101"; }
.flaticon-close-envelope:before { content: "\f102"; }
.flaticon-google-plus:before { content: "\f103"; }
.flaticon-facebook-logo:before { content: "\f104"; }
.flaticon-instagram-social-network-logo-of-photo-camera:before { content: "\f105"; }

.logo {
	max-width: 220px;
	margin: 0 auto;
	margin-top: 30px;
}
hr {
	border: 1px solid #d3d3d3;
	border-width: 1px 0 0;
	clear: both;
	margin: 20px 0 20px;
	height: 0;
}
.breadcrumbs {
}
.breadcrumbs li {	
	font-size: 11px; 
	float: left;
	border-left: 1px solid #d3d3d3;
	letter-spacing: 2px;
}
.breadcrumbs li a {
  padding: 5px 8px;
}
.breadcrumbs li:first-child {
  border-left: none;
}
.breadcrumbs li:first-child a {
  padding-left: 0;
}
.top {
  padding-top: 30px;
}
.img-responsive {
  width: 100%;
  display: block;
}
.image { 
  position: relative; 
  width: 100%; 
}
.image h1 {
	position: absolute;
	width: 100%;
	top: 47%;
}
.image h1 span { 
  font-size: 1.2em;
  color: #000; 
  letter-spacing: -1px;  
  background: rgba(255, 255, 255, 1);
  padding: 7px 0;
}
@media (min-width: 746px) {
	.image h1 span {
		font-size: 2em;
	}
}
.text-on-image {
	position: relative; 
	width: 100%; 
}
.text-on-image h2{
	position: absolute;
	width: 100%;
	top: 50%;
	left: 15%;
}
.text-on-image h2 span { 
  font-family: 'Dancing Script', cursive;
  font-size: 1.1em;
  color: #fff;   
  padding: 7px 0;
  letter-spacing: 2px;
  font-weight: 700;
}
@media (min-width: 746px) {
	.text-on-image h2 span{
		font-size: 1.8em;
	}
}
.title_t {
  background-image: url("../images/t.svg");
  background-position: center top;
  background-repeat: no-repeat;
  height: 100px;
  text-align: center;
  margin-top: 30px;
}
.title_k {
  background-image: url("../images/k.svg");
  background-position: center top;
  background-repeat: no-repeat;
  height: 100px;
  text-align: center;
  margin-top: 30px;
}
.title_p {
  background-image: url("../images/p.svg");
  background-position: center top;
  background-repeat: no-repeat;
  height: 100px;
  text-align: center;
  margin-top: 30px;
}
.title_g {
  background-image: url("../images/g.svg");
  background-position: center top;
  background-repeat: no-repeat;
  height: 100px;
  text-align: center;
  margin-top: 30px;
}
.title_d {
  background-image: url("../images/d.svg");
  background-position: center top;
  background-repeat: no-repeat;
  height: 100px;
  text-align: center;
  margin-top: 30px;
}
.title_m {
  background-image: url("../images/m.svg");
  background-position: center top;
  background-repeat: no-repeat;
  height: 100px;
  text-align: center;
  margin-top: 30px;
}
.title_s {
  background-image: url("../images/s.svg");
  background-position: center top;
  background-repeat: no-repeat;
  height: 100px;
  text-align: center;
  margin-top: 30px;
}
.prigode{
	font-size: 1.5em;
	padding: 20px 0 10px 0;
	text-align: left;
}
.materijali-naslovi {
	font-size: 1.5em;
	padding: 40px 0 40px 0;
	text-align: center;
}
.description-product {
	text-align: center;
	padding-top: 15px;
}
.prigode-podjele {
	font-size: 1.2em;
	font-family: 'Raleway', sans-serif;
	line-height: 50px !important;
}
h3 {
  line-height: 100px;
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  font-size: 1.9em;
  letter-spacing: 2px;
}
.space {
  margin-bottom: 40px;
}
.firstdiv {
  height: 250px;
  background-color: #ebebeb;
  position: relative; 
  width: 100%; 
}
.first {
  background: white;
  position: absolute; 
  top: 80px; 
  left: 300px; 
  width: 45%; 
  padding: 0 10px;
  font-size: 2.1em;
}
.first-line {
  width: 160px;
  position: absolute; 
  top: 150px; 
  left: 300px;
  height: 3px;
  background-color: #d3d3d3;
  clear: both;
}
.who {
  text-align: justify;
  padding: 20px 0;
}
.what {
  margin-right: 10%;
  margin-top: 80px;
}
.seconddiv {
  background-image: url("../images/cnc.jpg");
  background-repeat: no-repeat;
  height: 281px;
  position: relative; 
  width: 100%; 
}
.second {
  background: white;
  position: absolute; 
  top: 80px; 
  right: 300px; 
  width: 45%; 
  padding: 0 10px;
  font-size: 2.1em;
  text-align: right;
}
.second-line {
  width: 160px;
  position: absolute; 
  top: 150px; 
  right: 300px;
  height: 3px;
  background-color: #d3d3d3;
  clear: both;
}
.bottom-text {
  text-align: left;
  font-size: 14px;
}
.flaticon-facebook-logo, .flaticon-google-plus, .flaticon-instagram-social-network-logo-of-photo-camera{
  float: right;
}
.span-responsive {
   white-space: nowrap;
}
footer {
  width: 100%;
}
body {
  padding-left: 40px;
}
.text-about {
  text-align: justify;
  padding: 30px 0;
}
#map {
  width: 100%;
  height: 400px;
  margin-bottom: 30px;
}
.space-gallery {
	margin-bottom: 30px;
}
input[type=text], select {
	font-family: "Raleway", sans-serif;
	width: 100%;
	padding: 12px 5%;
	display: inline-block;
	border: 1px solid #e8e8e8;
	box-sizing: border-box;
}
input[type=submit] {
	font-family: "Raleway", sans-serif;
	padding: 12px 5%;
	width: 45%;
	color: black;
	border: none;
	cursor: pointer;
	font-size: 13.333px;
	margin-top: 18px;
	background-color: #e8e8e8;
}
input[type=submit]:hover {
	background-color: #fff;
	border: 1px solid #EC1C24;
}
textarea {
	font-family: "Raleway", sans-serif;
	font-size: 13px;
	resize: vertical;
	width: 96%;
	border: 1px solid #e8e8e8;
	margin-top: 20px;
	padding: 12px 2%;
}


.gallery-image{
	/*cursor: pointer;*/
	position: relative;
	width: 100%;
	height: 100%;
}
.gallery-opacity {
	position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
	background-color: rgba(0,0,0,0.8);
	opacity: 0;
	-webkit-transition: opacity 0.6s;
	-moz-transition: opacity 0.6s;
	transition: opacity 0.6s;

}
.gallery-image:hover .gallery-opacity  {
	opacity: 0.6;
}

.gallery-image h4 {
	position: absolute;
	top: 50%;
	width: 100%;
	margin-top: -25.6px;
	font-size: 2em;
	font-weight: 400;
	color: white;
	display: inline;
  text-align: center;
	opacity: 1;
}
.gallery-image:hover h4 {
	opacity: 1;
	-webkit-transition: opacity 0.6s;
	-moz-transition: opacity 0.6s;
	transition: opacity 0.6s;
}
.materijal-opis {
  text-align: justify;
  padding-top: 20px;
}
.cromade-opis {
  text-align: center;
  padding: 30px 0;
}
a.left-button:hover, a.left-button:active  {
	color: #ccc;
}
.left-button {
	  font-family: "Roboto", sans-serif;
	  font-weight: 400;
	  padding: 10px 5%;
	  width: 50%;
	  color: #FFF;
	  border: none;
	  cursor: pointer;
	  font-size: 12px;
	  background-color: #ec1c24;
	  margin-bottom: 20px;
}
.upit {
	font-family: "Roboto", sans-serif;
	text-align: center;
	display: block;
	font-weight: 400;
	padding: 10px 5%;
	width: 50%;
	color: #FFF;
	border: none;
	cursor: pointer;
	font-size: 13px;
	background-color: #ec1c24;
	margin: 0 auto;
	margin-top: 20px;
}
a.upit:hover, a.upit:active  {
	color: #ccc;
}
.right-button {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  padding: 10px 5%;
  width: 100%;
  color: #222;
  border: none;
  cursor: pointer;
  font-size: 14px;
  background-color: #d3d3d3;
}
.under-line {
  width: 20px;
  height: 2px;
  background-color: #d3d3d3;
  text-align: center;
  margin: 0 auto;
  margin-top: 20px;
}
.updown {
  margin: 50px 0;
}
.boldtitle {
  font-weight: 900;
  font-size: 1.3em;
}
.up {
  background-color: #ec1c24;
  height: 200px;
  margin-bottom: 30px;
  position: relative;
}
.down {
  background-color: #ec1c24;
  height: 200px;
  position: relative;
  margin-bottom: 30px;
}
.up-right {
  background-color: #ec1c24;
  height: 200px;
  margin-bottom: 30px;
  position: relative;
}
.down-right {
  background-color: #ec1c24;
  height: 200px;
  position: relative;
  margin-bottom: 30px;
}
.grid a {
  display: inline-block;
  width: 100%;
  text-align: center;
}
.grid img {
  position: absolute;
  top: 25%;
  width: 100%;
  max-width: 40px;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
}
.grid h3 {
  position: absolute;
  top: 55%;
  width: 100%;
  margin-top: -45px;
  font-size: 0.9em;
  font-weight: 400;
  color: white;
  text-align: center;
  opacity: 1;
}
.small-text {
  text-align: center;
  letter-spacing: 2px;
  width: 100%;
  color: #fff;
  font-size: 0.5em;
  position: absolute;
  font-weight: 300;
  top: 68%;

}
.zagreb {
  position: relative;
}
.zagreb img {
  width: 100%;
  height: 100%;
  position: relative;
}
.zagreb h4 {
  position: absolute;
  width: 100%;
  top: 40%;
  font-weight: 400;
  color: white;
  text-align: center;
  opacity: 1;
  color: #fff;
  font-size: 1em;
}

h4.text-shaddow {
	text-shadow: 0px 0px 1px #000;
}
.zagreb span {
  font-size: 0.6em;
  font-weight: 300;
}
.bottom {
	margin-bottom: 40px;
}
ul.usluge {
	margin-top: 25px;
	list-style-type: circle;
}

/* Top nav
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.topnav {
  overflow: hidden;
}
.topnav a {
	float: left;
	display: block;
	text-align: center;
	padding: 14px 16px;
	text-decoration: none;
	font-size: 17px;
	outline: none;
	text-transform: uppercase;
	color: #222;
}
.topnav a:hover {
  color: #EC1C24; 
}
.topnav .icon {
  display: none;
}
.border-right {
	border-right: 1px solid #d3d3d3;
}
.menu {
	text-align: center;
}
ul {
	list-style-type: none;
}
ul li {
	display: inline-block;
}
@media screen and (max-width: 593px) {
  .topnav a {
	display: none;
  }
  .topnav a.icon {
    float: right;
    display: block;
  }
  hr {
	  border: none;
  }
  .border-right {
	border-right: none;
}
	ul li {
		display: block;
	}
}

@media screen and (max-width: 593px) {
  .topnav.responsive {position: relative;}
  .topnav.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: center;
  }

}
.personalized {
	text-align: justify;
	padding: 30px 0;
}

.text-center {
	text-align: center;
}
.below-footer {
	padding-bottom: 30px;
}
a.email-link:link, a.email-link:visited {
	color: #fff;
}
a.email-link:hover, a.email-link:active {
	color: #ec1c24;
}
/* Media Queries
–––––––––––––––––––––––––––––––––––––––––––––––––– */
/*
Note: The best way to structure the use of media queries is to create the queries
near the relevant code. For example, if you wanted to change the styles for buttons
on small devices, paste the mobile query code up in the buttons section and style it
there.
*/


/* Larger than mobile */
@media (min-width: 400px) {}

/* Larger than phablet (also point when grid becomes active) */
@media (min-width: 550px) {
	body {
		padding-left: 0;
	}
	.gallery-image h4 {
		opacity: 0;
	}
}

/* Larger than tablet */
@media (min-width: 750px) {}

@media (min-width: 885px) {
  .zagreb h4 {
    font-size: 1.6em;
  }
}
/* Larger than desktop */
@media (min-width: 1000px) {}

/* Larger than Desktop HD */
@media (min-width: 1200px) {}
