body {
	font-family: 'Oswald', sans-serif;
	font-size: 18px;
	color: #333333;
	font-weight: lighter;
}
/********************************************
				COLORS AND BACKGROUNDS
********************************************/

.primary-color {
	color: #4b9b4e;
}

.white {
	background: rgba(255, 255, 255, 0.7);
	width: 100%;
	height: 100%;
	display: block;
	padding-bottom: 40px;
	text-align: center;
}

.gray {
	background: rgba(250, 250, 250, 0.7);
	width: 100%;
	height: 100%;
	display: block;
	padding-bottom: 40px;
	text-align: center;
}

.green {
	background: rgba(127, 178, 60, 0.7);
	width: 100%;
	height: 100%;
	display: block;
	padding-bottom: 40px;
	text-align: center;
	color: #fff;
}
/********************************************
	LOADER
********************************************/
.loading{
	visibility: hidden;
}

.project {
	margin-bottom: 40px;
}
.project-loader {
	text-align: center;
	margin: 0 auto;
	width: 80px;
	margin-bottom: 40px;
}

.bubblingG {
	text-align: center;
	width: 80px;
	height: 50px;
}
.bubblingG span {
	display: inline-block;
	vertical-align: middle;
	width: 10px;
	height: 10px;
	margin: 25px auto;
	background: #000000;
	-moz-border-radius: 50px;
	-moz-animation: bubblingG 1.3s infinite alternate;
	-webkit-border-radius: 50px;
	-webkit-animation: bubblingG 1.3s infinite alternate;
	-ms-border-radius: 50px;
	-ms-animation: bubblingG 1.3s infinite alternate;
	-o-border-radius: 50px;
	-o-animation: bubblingG 1.3s infinite alternate;
	border-radius: 50px;
	animation: bubblingG 1.3s infinite alternate;
}
#bubblingG_1 {
	-moz-animation-delay: 0s;
	-webkit-animation-delay: 0s;
	-ms-animation-delay: 0s;
	-o-animation-delay: 0s;
	animation-delay: 0s;
}
#bubblingG_2 {
	-moz-animation-delay: 0.39s;
	-webkit-animation-delay: 0.39s;
	-ms-animation-delay: 0.39s;
	-o-animation-delay: 0.39s;
	animation-delay: 0.39s;
}
#bubblingG_3 {
	-moz-animation-delay: 0.78s;
	-webkit-animation-delay: 0.78s;
	-ms-animation-delay: 0.78s;
	-o-animation-delay: 0.78s;
	animation-delay: 0.78s;
}
@-moz-keyframes bubblingG {
	0% {
		width: 10px;
		height: 10px;
		background-color: #000000;
		-moz-transform: translateY(0);
	}
	100% {
		width: 24px;
		height: 24px;
		background-color: #FFFFFF;
		-moz-transform: translateY(-21px);
	}
}
@-webkit-keyframes bubblingG {
	0% {
		width: 10px;
		height: 10px;
		background-color: #000000;
		-webkit-transform: translateY(0);
	}
	100% {
		width: 24px;
		height: 24px;
		background-color: #FFFFFF;
		-webkit-transform: translateY(-21px);
	}
}
@-ms-keyframes bubblingG {
	0% {
		width: 10px;
		height: 10px;
		background-color: #000000;
		-ms-transform: translateY(0);
	}
	100% {
		width: 24px;
		height: 24px;
		background-color: #FFFFFF;
		-ms-transform: translateY(-21px);
	}
}
@-o-keyframes bubblingG {
	0% {
		width: 10px;
		height: 10px;
		background-color: #000000;
		-o-transform: translateY(0);
	}
	100% {
		width: 24px;
		height: 24px;
		background-color: #FFFFFF;
		-o-transform: translateY(-21px);
	}
}
@keyframes bubblingG {
	0% {
		width: 10px;
		height: 10px;
		background-color: #000000;
		transform: translateY(0);
	}
	100% {
		width: 24px;
		height: 24px;
		background-color: #FFFFFF;
		transform: translateY(-21px);
	}
}
.loader{
	display: block;
	background: #4b9b4e;
	position:fixed; 
	top:0; left:0; right:0; bottom:0;
	width:100%; 
	height:100%;
	clear:both;
	-moz-transition: all 2s ease;
	-webkit-transition: all 2s ease;
	-o-transition: all 2s ease;
	transition: all 2s ease;
	z-index: 2000;
}

.loader .bubblingG{
	position:absolute;
	top:50%;
	left:50%;
	margin-top:-20px;
	margin-left:-40px;
}

.removing{
	-moz-transform: scale(2) rotate(70deg) translate(1200px) rotateX(120deg);
	-webkit-transform: scale(2) rotate(70deg) translate(1200px) rotateX(120deg);
	-o-transform: scale(2) rotate(70deg) translate(1200px) rotateX(120deg);
	transform: scale(2) rotate(70deg) translate(1200px) rotateX(120deg);
}

.removing1{
	-moz-transform: scale(0) rotate(70deg) rotateX(80deg);
	-webkit-transform: scale(0) rotate(70deg) rotateX(80deg);
	-o-transform: scale(0) rotate(70deg) rotateX(80deg);
	transform: scale(0) rotate(70deg) rotateX(80deg);
}

.removing2{
	opacity:0;
}
/********************************************
	NAV MENU BAR 
********************************************/
.navbar {
  position: relative;
  min-height: 50px;
  margin-bottom: 20px;
  border: 1px solid transparent;
}

.navbar-nav > li > a:hover {
	background-color: transparent;
	color: #4b9b4e;
}
.nav > li > a{
	font-weight: normal;
	padding: 0;
}
.nav .open > a, .nav .open > a:hover, .nav .open > a:focus,
.navbar-nav > li.active > a {
	color: #4b9b4e;
	background: transparent;
}
.navbar:before,
.navbar:after {
  content: " ";
  display: table;
}
.navbar:after {
  clear: both;
}
.navbar:before,
.navbar:after {
  content: " ";
  display: table;
}
.navbar:after {
  clear: both;
}

.navbar-nav > li > a {
	color: #000;
}
.navbar-nav > li > a:before,
.nav-pills > li > a:before {
	content: "\f0c8";
	margin: 0 15px;
	font-family: "FontAwesome";
	font-size: 6px;
	line-height: 62px;
	text-align: center;
	vertical-align: middle;
	color: #4b9b4e;
}
.navbar-nav > li:first-child > a:before,
.nav-pills > li:first-child > a:before {
	content: " ";
	padding: 0;
}
.navbar-nav > li > .dropdown-menu {
	margin-top: -5px;;
	border-top-right-radius: 4px;
	border-top-left-radius: 4px;
}
.nav-pills > li.active > a,
.nav-pills > li.active > a:hover,
.nav-pills > li.active > a:focus,
.nav-pills > li > a:hover,
.nav-pills > li > a:focus {
	color: #4b9b4e;
	background: transparent;
}
.centered-pills {
	text-align: center;
}
.centered-pills ul.nav-pills {
	display: inline-block;
	margin-bottom: 50px;
}
.centered-pills li {
	display: inline;
}
.centered-pills a {
	float: left;
}
.nav-pills {
	list-style: square;
}
.nav-pills > li > a {
	text-transform: uppercase;
	font-size: 20px;
	color: #707070;
	padding: 10px 0;
}

.navbar-smak {
	background: rgba(255, 255, 255, 0.7);
	transition: all 0.5s;
}
.navbar-smak .nav {
	padding: 25px 0;
}

.navbar-brand > img {
	height: 80px;
}

.navbar-small {
	background: rgb(255, 255, 255);
}
.navbar-small .nav {
	padding: 5px 0 !important;
}
.navbar-small .navbar-brand > img {
	height: 50px;
}
.navbar-small .navbar-brand {
	padding: 5px 15px 0 0;
}

.navbar-toggle {
  position: relative;
  float: right;
  margin-right: 15px;
  padding: 9px 10px;
  margin-top: 8px;
  margin-bottom: 8px;
  background-color: transparent;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 4px;
}
.navbar-toggle .icon-bar {
  display: block;
  width: 33px;  /* 22 */
  height: 2px;
  border-radius: 1px;
}
.navbar-toggle .icon-bar + .icon-bar {
  margin-top: 4px;
}

.navbar-fixed-top,
.navbar-fixed-bottom {
  position: fixed;
  right: 0;
  left: 0;
  z-index: 1030;
}

.fixed-navbar { 
	position: fixed; 
	z-index: -99; 
	width: 100%; 
	height: 100%;
}
/********************************************
	BAANER SLIDER
********************************************/
.banner {
	position: relative;
	width: 100%;
	background-size: auto !100%;
/* background-size: contain; /*celu vysku*//**/
/* background-size: cover; /*celu sirku*//**/		
}
.slide {
	position: absolute;
	top: 50%;
	margin-top: -135px;
	width: 100%;
	text-align: center;
	background-image: url(../images/patern.png);
	display: inline-block;
	padding: 40px;
}

.text-slider-wrapper .bx-wrapper .bx-prev {
	left: 10px;
}
.text-slider-wrapper .bx-wrapper .bx-next {
	right: 10px;
}
.text-slider-wrapper .bx-wrapper .bx-prev:hover {} .text-slider-wrapper .bx-wrapper .bx-next:hover {} .text-slider-wrapper .bx-wrapper .bx-controls-direction a {
	position: absolute;
	opacity: 0;
	top: 50%;
	margin-top: -16px;
	outline: 0;
	width: 32px;
	height: 32px;
	z-index: 9999;
}
.text-slider-wrapper .bx-wrapper:hover .bx-controls-direction a {
	opacity: 1;
}
.text-slider-wrapper .bx-wrapper .bx-controls-direction a.disabled {
	display: none;
}

.lead {
	display: block;
	color: #fff;
	font-weight: bold;
	font-size: 55px;
	text-transform: uppercase;
	width: 80%;
	margin: 0 auto;
}
/********************************************/
.small-slider {
	margin-bottom: 70px;
}
.small-nav {
	list-style: none;
	text-align: center;
	margin-bottom: 70px;
}
.small-nav > li {
	display: inline-block;
	margin-left: 10px;
	text-align: center;
	vertical-align: middle;
	padding: 0;
}
.small-nav > li > a {
	color: #fff;
	background: #4b9b4e;
	color: #fff;
	vertical-align: middle;
	width: 30px;
	height: 30px;
	display: block;
}
.small-nav > li > a .fa {
	line-height: 30px;
}
/*****************************************************************/
/* OBSAHY 																		  */
/* vedenie spolocnosti *******************************************/
.item {
	list-style: none;
}
.item .col-md-3{
	position: static;
	margin-bottom: 15px;
}
.item-member {
	border-bottom: 2px solid #4b9b4e;
	background: #fff;
	text-align: center;
	position: relative;
	display: block;
}
.item-member:hover{
	text-decoration: none;
}

.item-member .title {
	display: block;
	margin-top: 6px;
	margin-bottom: 4px;
	font-size: 18px;
}
.item-member .name {
	display: block;
	margin-top: 6px;
	margin-bottom: 4px;
	color: #4b9b4e;
	font-size: 21px;
	font-weight: bolder;
	text-transform: uppercase;
}
.item-member .email {
	display: block;
	margin: 0 1em 0 1em;
	text-align: left;
	font-size: 16px;
}
.item-member .phone {
	display: block;
	margin: 0 1em 0 1em;
	text-align: left;
	font-size: 16px;
}
.item-member img {
	margin-bottom: 10px;
}
/*
.item-extended{
	background: none repeat scroll 0 0 #131313;
    left: 0;
    margin-top: 25px;
    padding: 20px;
    overflow: hidden;
    position: absolute;
    text-align: left;
    top: auto;
    width: 100%;
}
.item-extended h3{
	color: #4b9b4e;
}
.item-extended p{
	color: #fff;
}
.item-extended .social{
	border: 1px solid #fff;
	width: 25px;
	margin-right: 7px;
	color: #fff;
	display: inline-block;
	text-align: center;
}
.item-extended .social:hover{
	color: #4b9b4e;
	border-color: #4b9b4e;
}
.item-extended .row{
	margin-bottom: 0;
}
.og-expanded .item-member:after{
	-moz-border-bottom-colors: none;
    -moz-border-left-colors: none;
    -moz-border-right-colors: none;
    -moz-border-top-colors: none;
    border-color: transparent transparent #131313;
    border-image: none;
    border-style: solid;
    border-width: 15px;
    content: " ";
    height: 0;
    left: 50%;
    margin: 0 0 0 -15px;
    pointer-events: none;
    position: absolute;
    top: auto;
    width: 0;
} */
/* obchodne zastupenia *******************************************/
.table-item1  {
	margin-bottom: 40px;
}
.table-item1 i {
	font-size: 25px;
	line-height: 50px;
	color: #fff;
}
.table-item1 h2,
.table-item1 h3,
.table-item1 h4,
.table-item1 p {
	margin-left: 70px;
}
.table-item1 h2 {
	font-size: 26px;
}
.table-item1 h2,
.table-item1 h3,
.table-item1 h4 {
	font-weight: normal;
}
/* maloobchodne predajne *****************************************/
.table-item2  {
	margin-bottom: 40px;
}
.table-item2 .fa {
	color: #4b9b4e;
}
/* sluzby ********************************************************/
.frame-item {
	padding: 20px;
	border: 1px solid #4b9b4e;
}
.frame-item h2 {
	display: block;
	font-size: 26px;
	font-weight: bolder;
	color: #4b9b4e;
}

.frame-item .text {
	font-weight: normal;
	font-size: 18px;
}

/********************************************
				FOOTER
********************************************/

footer {
	padding-top: 20px;
	background: #4b9b4e;
	text-align: center;
}

footer .container p {
	color: #fff;
	text-align: left;
}

footer .container a,
footer .container a:hover {
	color: #d0ebc6;
}

footer .to-top {
	background: #d0ebc6;
	width: 30px;
	height: 30px;
	display: block;
	margin: 0 auto;
}

.down {
	display: inline-block;
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
	-webkit-transition-property: -webkit-transform;
	transition-property: transform;
	-webkit-transform: translateZ(0);
	-ms-transform: translateZ(0);
	transform: translateZ(0);
	box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
.down:hover {
	-webkit-transform: translateY(5px);
	-ms-transform: translateY(5px);
	transform: translateY(5px);
}
/********************************************
				404 page
********************************************/

.page404{
	text-align: center;
	margin:150px auto;
}

.error-code{
	font-size: 150px;
	color: #4b9b4e;
	margin: 0;

}

.error-desc{
	font-size: 30px;
	text-transform: uppercase;
	font-weight: bold;
	max-width: 500px;
	display: block;
	margin: 0 auto;
}

.page404 p{
	padding: 50px;
}

.page404 .form-control{
	max-width: 500px;
	margin: 0 auto;
}
