@import url(http://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700&subset=latin,latin-ext);

html {
	height: 100%;
}
body {
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  color: #0a0909;
  min-height: 100%;
  position: relative;
  font-weight: 400;
}
/*@media (min-width: 992px) {
	body {
		padding-bottom: 90px;
	}
}
@media (min-width: 768px) and (max-width: 991px) {
	body {
		padding-bottom: 130px;
	}
}*/

.align-right {
  text-align: left;
}
.margintop {
	margin-top:15px;
}
.marginbottom {
	margin-bottom:15px;
}
.transition {
	transition: 500ms ease-in-out;
	-moz-transition: 500ms ease-in-out;
	-webkit-transition: 500ms ease-in-out;
}
@media (min-width: 992px) {
  .align-right {
    text-align: right;
  }
  .alpha {
		padding-left:0;
	}
	.omega {
		padding-right:0;
	}
}

.font-bold {
  font-weight: 700;
}
.font-light {
  font-weight: 300;
}
h1,.h1,h2,.h2,h3,.h3 {
  font-weight: 500;  
}
h1 {
  font-size: 30px;
}
h2 {
  font-size: 18px;
  color: #4b6cb3
}
h3 {
  font-size: 14px;
}
img {
	max-width: 100%;
	transition: 500ms ease-in-out;
	-moz-transition: 500ms ease-in-out;
	-webkit-transition: 500ms ease-in-out;
}
.uppercase {
	text-transform:uppercase;
}

a {
  color: #4b6cb3;
  transition: 500ms ease-in-out;
	-moz-transition: 500ms ease-in-out;
	-webkit-transition: 500ms ease-in-out;
}
a:hover {
	text-decoration:none;
	color: #34679a;
}
p {
  line-height: 1.5;
  font-weight: 400;
}
li {
  font-weight: 300;
}
.relative {
	position: relative;
	  background: #e7e7e7;
}
.bordered {
	border-left: 1px solid #c5c5c5;
	border-right: 1px solid #c5c5c5;
}
.content {
	/*position: absolute;
	top: 120px;
	left: 80px;
	padding-top: 0;
	padding-bottom: 20px;*/
	overflow: hidden;
	/*border-left: 1px solid #c5c5c5;
	border-right: 1px solid #c5c5c5;*/
}
.content p {
	text-align: justify;
}
.content-inner > img {
  width: 100%;
  margin-bottom: 20px;
}
.content-background {
	background-color: rgba(255,255,255,0.8);
	margin-top:10px;
}

.content .row {
	margin-bottom: 80px;
}

.container {
    z-index: 2;
	position: relative;
	/*position: absolute;
	top: 120px;
	left: 80px;*/
}

/*.content {
	position: absolute;
	top: 135px;
	left: a
}*/

/* COLORS */
.bg-grey {
	background:#f8f7f3;
}

/* BREADCRUMPS */
.breadcrumbs-box {
	border-bottom: 1px solid #c5c5c5;
	background:#f8f7f3;
}
.breadcrumb {
	background-color: transparent;
	border-radius: 0;
	padding: 0;
	margin: 5px 0px;
}

/* MAIN TITLE */
.main-title {
	font-size: 20px;
	color:#000;
	padding: 10px;
	margin-top:0;
	margin-bottom: 0;
	position: relative;
	background-color: rgba(255,255,255,0.8);
}
/*.main-title:before {
	content:'';
	display:block;
	position: absolute;
	bottom: 5px;
	height:1px;
	width:200px;
	background:#999;
	margin-top: 5px;
	transition: 500ms ease-in-out;
	-moz-transition: 500ms ease-in-out;
	-webkit-transition: 500ms ease-in-out;
}
.main-title:hover:before {
	width:50px;
}
.main-title:after {
	content:'';
	position: absolute;
	bottom: 5px;
	display:block;
	height:2px;
	width:30px;
	background:#363B85;
	margin-top: 5px;
	transition: 500ms ease-in-out;
	-moz-transition: 500ms ease-in-out;
	-webkit-transition: 500ms ease-in-out;
}
.main-title:hover:after {
	width:100px;
}
*/
/* BUTTONS */
.btn {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  text-transform: uppercase;
  transition: 500ms ease-in-out;
  -moz-transition: 500ms ease-in-out;
  -webkit-transition: 500ms ease-in-out;
  font-size:14px;
}
.btn-default {
  background: transparent;
  border: 2px solid #4b6cb3;
  color: #4b6cb3;
}
.btn-default:hover {
  color: #ffffff;
  background: #4b6cb3;
  border: 2px solid transparent;
  text-decoration:none;
}
.btn-mini {
  background: transparent;
  color: #4b6cb3;
}
.btn-mini:hover {
  color: #ffffff;
  text-decoration:none;
}
.btn-primary {
  color: #000;
  background: transparent;
  padding:10px 15px;
  font-size:14px;
  border: 1px solid #000;
  border-radius:0px;
  -webkit-border-radius:0px;
  -moz-border-radius:0px;
}
	.btn-primary:hover {
	  background: #4b6cb3;
	  color: #fff;
	}
.btn-primary-small {
  color: #ffffff;
  background: #4b6cb3;
  padding:5px 40px;
  font-size:14px;
  border: 1px solid transparent;
  border-radius:5px;
  -webkit-border-radius:5px;
  -moz-border-radius:5px;
}
	.btn-primary-small:hover {
	  background: transparent;
	  border: 1px solid #4b6cb3;
	  color: #4b6cb3;
	}
.btn-white {
  border: 1px solid #ffffff;
  padding: 5px 10px;
  color: #ffffff;
}
	.btn-white:hover {
	  background: #ffffff;
	  color: #4b6cb3;
	}
.btn-light {
  background: none;
  border: 2px solid #fff;
  height: auto !important;
}
.btn-light:hover {
  background: #fff;
  color:#4b6cb3;
  border: 2px solid #fff;
  height: auto !important;
}

/* INTRO */
.intro {
	background:#4b6cb3;
	color:#fff;
	transition: 200ms ease-in-out;
	-moz-transition: 200ms ease-in-out;
	-webkit-transition: 200ms ease-in-out;
}
.affix-top .intro {
	display:block;
}
.affix .intro {
	display:none;
}

/* NAVBAR */
.navbar {
	margin-bottom: 0px;
}

.navbar-brand {
    height: auto;
    padding: 0;
}

.navbar-fixed-top {
    top: 20px;
	position: relative;
}
.navbar-default {
    background-color: rgba(255,255,255,0.8);
}

.main-site .navbar-top {
	position: absolute;
    top: 0;
	right: 0;
    left: 0;
    z-index: 1030;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}
.navbar-top  {
	padding: 0;
}
.navbar .search-form {
	padding-right: 5px;
}
.navbar-top .navbar {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  min-height: 120px;
  z-index: 999;
  margin: 0;
  padding: 0;
  border: 0;
  transition: 200ms ease-in-out;
  -moz-transition: 200ms ease-in-out;
  -webkit-transition: 200ms ease-in-out;
}
.navbar-top .navbar .navbar-header {
	float: none;
	display: block;
	text-align: center;
	margin-top: 0;
}
.navbar-top .navbar .navbar-header .logo-box {
	padding: 5px 15px;
	border-top: 4px solid #4b6cb3;
	border-left: 1px solid #c5c5c5;
	border-right: 1px solid #c5c5c5;
	border-bottom: 1px solid #c5c5c5;
	background:#fff;
	transition: 500ms ease-in-out;
	-moz-transition: 500ms ease-in-out;
	-webkit-transition: 500ms ease-in-out;
}

.navbar-top .navbar .navbar-header .navbar-brand img {
	max-height: 100px;
	transition: 500ms ease-in-out;
	-moz-transition: 500ms ease-in-out;
	-webkit-transition: 500ms ease-in-out;
}
.navbar-top .navbar .navbar-header .navbar-brand:hover img {
	opacity:0.8;
}
.navbar-top .navbar-collapse {
	text-align:center;
	box-shadow: none;
}
.navbar-collapse.in {
	background: #fff;
	-webkit-box-shadow: 0px 2px 5px 0px rgba(50, 50, 50, 0.5);
	-moz-box-shadow: 0px 2px 5px 0px rgba(50, 50, 50, 0.5);
	box-shadow: 0px 2px 5px 0px rgba(50, 50, 50, 0.5);
}
.dropdown-menu {
	text-align:left;
	opacity: 0.8;
}
.navbar-top .navbar-center {
	float:none;
}
.navbar-nav>li {
	float:none;
	display: block;
	text-align: left;
	padding:0;
}
.nav>li>a, .main-title {
	display:inline-block;
	width:100%;
	color:#000;
	padding: 10px;
	font-size: 14px;
	font-weight:400;
	text-transform: uppercase;
}

.navbar-default .navbar-nav>li>a {
	color:#000;
}
.navbar-default .navbar-nav>li>a:hover {
	color:#4b6cb3;
}

.nav>li>a:focus {
	color:#4b6cb3;
	background:none;
}
.dropdown-arrow {
	width: auto !important;
	cursor:pointer;
}
@media (max-width: 767px) {
	.dropdown-arrow {
		position:absolute !important;
		right:0;
		top:0;
		background: #dadada;
		float: right;
		height: 42px;
		border: 1px solid;
		display: block !important;
		padding: 10px 20px !important;
		
	}
	.dropdown-arrow:hover {
		color:#fff !important;
		background: #4b6cb3 !important;
	}
}
@media (min-width: 768px) {
	.navbar {
		padding: 5px 80px; 
	}
	.navbar-nav {
		margin-top: 15px;
	}
	
	.navbar-nav>li {
		text-align: center;
	}
	.navbar-nav>li>a {
		border:none;
		width:auto;
		padding: 15px;
	}
	.nav>li:hover>a {
		color:#4b6cb3;
		background:none;
	}
	.navbar-top .navbar-collapse .navbar-content {
		border-left: 1px solid #c5c5c5;
		border-right: 1px solid #c5c5c5;
		border-bottom: 1px solid #c5c5c5;
		background:#fff;
	}
	.dropdown-name {
		width: auto;
	}
	.dropdown-menu {
		//text-align:center;
		border-left: 0;
		border-right: 0;
		border-bottom: 0;
		padding: 0;
	}
	.navbar-nav>li>.dropdown-menu {
		border-radius: 0;
		margin-top: 5px;
	}
	.dropdown-menu>li>a {
		padding: 10px 20px;
	}
	.dropdown-submenu {
		position: relative;
	}

	.dropdown-submenu .dropdown-submenu>.dropdown-menu {
		top: 0;
		left: 100%;
		margin-top: -6px;
		margin-left: -1px;
		-webkit-border-radius: 0;
		-moz-border-radius: 0;
		border-radius: 0;
	}

	.dropdown-submenu:hover>.dropdown-menu {
		display: block;
	}

	.dropdown-submenu .dropdown-submenu>a:after {
		display: block;
		content: " ";
		float: right;
		width: 0;
		height: 0;
		border-color: transparent;
		border-style: solid;
		border-width: 5px 0 5px 5px;
		border-left-color: #ccc;
		margin-top: 5px;
		margin-right: -10px;
	}

	.dropdown-submenu:hover>a:after {
		border-left-color: #fff;
	}

	.dropdown-submenu.pull-left {
		float: none;
	}

	.dropdown-submenu.pull-left>.dropdown-menu {
		left: -100%;
		margin-left: 10px;
		-webkit-border-radius: 0 0 5px 5px;
		-moz-border-radius: 0 0 5px 5px;
		border-radius: 0 0 5px 5px;
	}
	.navbar-nav>li {
		display: inline-block !important;
	}
	
	
}

.content {
		margin-top: 35px;
	}

/* NAVBAR-TOGGLE */
.navbar-toggle {
	border:1px solid #fff;
}
.navbar-toggle.collapsed {
	background: #fff;
}
.navbar-toggle .icon-bar {
	background: #4b6cb3;;
}

/* HEADER FUNCtions */
.header-func {
	margin-right:0;
}
.affix .header-func {
	margin-right:0;
	padding: 5px;
}
.social {
	display: inline-block;
	padding-top: 20px;
}
.social a:hover {
	opacity:0.7;
}

/* SLIDER */
.carousel-inner>.item {
	padding:0;
}

.carousel-caption a {
	padding-left: 20px;
	
}


.carousel-image {
	background-size:cover;
	background-position: center center;
	height:100vh !important;
}
.carousel-control span {
    opacity: 0.2;
    background: #636363;
    height: 50px !important;
    padding: 15px 0;
    font-size: 20px !important;
    width: 50px !important;
}
.carousel-control:hover span {
    opacity: 1;
    transition: 500ms ease-in-out;
    -moz-transition: 500ms ease-in-out;
    -webkit-transition: 500ms ease-in-out;
    color: #fff;
}
.carousel-control span:hover {
    background: #4b6cb3;
    color: #ffffff;
  }
  .carousel-control:hover span::before {
    text-shadow: none;
}
.carousel-control.right {
  background-image: none;
}
.carousel-control.left {
  background-image: none;
}

.page-thumbnail img {
	width: 100%;
}

/* ADDITIONAL BOXES */
.additional-boxes {
  padding-bottom: 15px;
}
.additional-boxes .additional-box {
  padding-top:40px;
  padding-bottom:40px;
  font-size:18px;
  transition: 500ms ease-in-out;
  -moz-transition: 500ms ease-in-out;
  -webkit-transition: 500ms ease-in-out;
  overflow: hidden;
  margin-bottom: 10px;
  position: relative;
}
.additional-boxes .additional-box:last-child {
	margin-bottom:0;
}
.additional-boxes .additional-box img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
}

/* SIDEBAR */
.sidebar ul {
  padding: 0;
}
.sidebar ul li {
  list-style: none;
  margin: 10px 0;
}
.sidebar ul li ul {
  border-left: 1px solid #4b6cb3;
  padding-left: 10px;
  margin-left: 10px;
}
.headline {
  background-color:#e9e9e9;
}
.headline h2 {
  padding: 10px 0px;
  margin:0;
  text-transform:uppercase;
}

/* INTRO TEXT */
.intro-text {
	background:#f8f7f3;
	border-bottom: 4px solid #ededed;
	padding: 20px;
}
.intro-text p {
	font-size:18px;
}
@media (min-width: 768px) {
	.intro-text p {
		margin-top:13px;
	}
}

/* SEARCH & LANGUAGES */
.languages {
	display:inline-block;
}
.languages a {
	padding: 4px 5px 2px;
	margin-right: 2px;
}
.search-form {
	display: none;
}
@media (min-width: 768px) {
	.search-form {
		display: inline-block;
	}
}
.search-form input[type="text"],
.search-form input[type="text"]:active,
.search-form input[type="text"]:focus {
	background:transparent;
	border:none;
	border-bottom: 1px solid black;
	padding: 5px 10px;
	color:#000;
	height: 20px;
	width: 120px;
	font-size: 14px;
    font-weight: 300;
}
.search-form.form-inline .form-group {
	margin-bottom: 0;
}
.form-inline .form-group {
	margin-bottom: 6px;
}
.search-form button[type="submit"] {
	border: none;
	color: #000;
	transition: 500ms ease-in-out;
	-moz-transition: 500ms ease-in-out;
	-webkit-transition: 500ms ease-in-out;
}
.search-form button[type="submit"]:hover {
	color: #c5c5c5;
}
.search-form button[type="submit"] .glyphicon {
	font-size: 24px;
}

/* PORTFOLIO*/
.site-portfolio .gallery-item {
  max-height: none;
}
@media (min-width: 768px) {
  .site-portfolio .gallery-item {
    max-height: 160px;
  }
}
.site-portfolio .gallery-item a {
  max-height: none;
}
@media (min-width: 768px) {
  .site-portfolio .gallery-item a {
    max-height: 160px;
  }
}
.portfolio, .portfolio-group {
  padding: 0;
  margin-bottom: 0;
}
.portfolio:after, .portfolio-group:after, {
  clear: both;
}
.portfolio li, .portfolio-group li {
  list-style: none;
  transition: 500ms ease-in-out;
  -moz-transition: 500ms ease-in-out;
  -webkit-transition: 500ms ease-in-out;
  overflow: hidden;
  position: relative;
  height: 210px;
  margin-top: 15px;
}

.portfolio li a img, .portfolio-group li a img{
  width: 100%;
  display: block;
  max-width: 20%;
  height: auto;
  padding-right: 10px;
  float: left; 
  padding-right: 10px;
}

.portfolio .portfolio-thumb, .portfolio-group .portfolio-thumb, {
	height: 210px !important;
}
.portfolio li:hover .portfolio-thumb {
	opacity:0.9;
}
.portfolio .portfolio-thumb .portfolio-desc p, .portfolio .portfolio-group .portfolio-desc p {
	text-indent: 0;
	text-align:center;
	font-weight:100;
	font-size:14px;
}
.portfolio-header {
	position: absolute;
	text-align: center;
	width: 100%;
	padding:10px 20px;
	z-index: 999;
	left:0;
	bottom: 20px;
	background: #4b6cb3;
	transition: 500ms ease-in-out;
	-moz-transition: 500ms ease-in-out;
	-webkit-transition: 500ms ease-in-out;
}

.portfolio-group-header {
	position: absolute;
    text-align: center;
    width: 100%;
    padding: 10px 20px;
    z-index: 999;
    left: 0;
    bottom: 20px;
    background: #4b6cb3;
    transition: 500ms ease-in-out;
    -moz-transition: 500ms ease-in-out;
    -webkit-transition: 500ms ease-in-out;
}

.portfolio-group li:hover .portfolio-group-header {	
	background: rgba(75, 108, 179, 0.7);
}


.portfolio-header h2 {
	margin: 0;
	color: #fff;
	font-size: 16px;
}

.portfolio-group-header h2 {
	margin: 0;
	color: #fff;
}

.portfolio-thumb {
	background-repeat:no-repeat;
	background-position:center center;
	background-size:cover;
	width: 100%;
	height: 200px;
	overflow: hidden;
	position: relative;
	display: block;
	border: 0 solid transparent;
	transition: 500ms ease-in-out;
	-moz-transition: 500ms ease-in-out;
	-webkit-transition: 500ms ease-in-out;
}
.portfolio-thumb .portfolio-desc {
	position: absolute;
	background: #4b6cb3;
	color: #fff;
	top: 100%;
	width: 100%;
	height: 100%;
	padding: 10px;
	text-align: center;
	transition: 500ms ease-in-out;
	-moz-transition: 500ms ease-in-out;
	-webkit-transition: 500ms ease-in-out;
}
@media (min-width: 768px) {
  .portfolio-thumb .portfolio-desc {
    padding: 15px;
  }
}
.portfolio-thumb .portfolio-desc span {
	color: #fff;
	font-size: 44px;
	display:none;
}
.portfolio li:hover .portfolio-header {
	bottom:120%;
	opacity: 0;
}
.portfolio-thumb:hover .portfolio-desc {
	top:0;
}
.portfolio-thumb:hover .portfolio-desc span {
  display:block;
}
.portfolio li .portfolio-details {
  background: #e9e9e9;
  padding: 10px;
}
.portfolio li .portfolio-details h2 {
  margin: 0 0 10px 0;
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  font-size: 22px;
}
.portfolio li .portfolio-hover {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background: #e1261c;
  opacity: 0;
  transition: 500ms ease-in-out;
  -moz-transition: 500ms ease-in-out;
  -webkit-transition: 500ms ease-in-out;
}
.portfolio li .portfolio-hover span {
  color: #e1261c;
  position: absolute;
  top: -80px;
  left: 0;
  font-size: 24px;
  margin: -12px 0 0 -12px;
  padding: 20px 10px 10px 20px;
  background: #ffffff;
  transition: 500ms ease-in-out;
  -moz-transition: 500ms ease-in-out;
  -webkit-transition: 500ms ease-in-out;
}

/* additional fields */
.additional-fields {
	padding: 0;
    margin-bottom: 0;
}
.additional-fields li {
    list-style: none;
    transition: 500ms ease-in-out;
    -moz-transition: 500ms ease-in-out;
    -webkit-transition: 500ms ease-in-out;
    overflow: hidden;
    position: relative;
    height: 210px;
}
.additional-fields li:nth-child(odd) {
    background: #4b6cb3;
}
.additional-fields li:nth-child(even) {
    background: #eba2c5;
}
.additional-fields li a {
	color: #fff;
}
.additional-header {
    padding: 15px 0;
    z-index: 999;
    left: -10px;
    bottom: 20px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
}
.additional-header h2 {
    margin: 0;
    color: #fff;
	display: inline;
	padding: 15px;
}
.additional-fields li a img {
    width: 100%;
    display: block;
    max-width: 20%;
    height: auto;
    padding-right: 10px;
    float: left;
    padding-right: 10px;
}

/* header - telefon, mail */
.info-box {
	padding: 20px;
}
.info-box div {
	padding: 10px 0;
}
.info-box .fa {
	color: #4b6cb3;
}

/* SLIDER */

.slider {
	position: fixed;
	top: 0;
    width: 100%;
    //z-index: -1;
}

#carousel-main .carousel-caption {
	bottom: 100px;
	top: auto;
	left: 0px;
	right: auto;
	text-align: left;
	text-shadow: none;
	background-color: rgba(255,255,255,0.8);
	color: #000;
}

@media screen and (min-width: 768px) {
	#carousel-main .carousel-caption {
		left: 80px;
	}
}


#carousel-main .carousel-caption span {
	padding:5px 20px;
}
#carousel-main p .first-line {
	font-weight: 600;
	font-size: 28px
}
#carousel-main p .second-line {
	font-weight: 300;
	font-size: 20px
}

.carousel-portfolio .carousel-control {
	width: auto;
	height: auto;
	bottom: 5px;
	top: auto;
	opacity: 1;
	margin: 0;
}
.carousel-portfolio .right {
	left: 65px;
}
.carousel-portfolio .left {
	left: 5px;
}
.carousel-portfolio .carousel-control span {
	margin: 0;
	top: auto;
	left: 0;
	bottom: 0;
}
.portfolio-slider-thumb {
	background-size:cover;
	background-repeat: no-repeat;
	background-position: center center;
	height:400px;
}

.portfolio-fullwidth .item {
	margin: 0;
}
.portfolio-fullwidth .gallery-item,
.portfolio-fullwidth .gallery-item a {
	max-height: 600px;
	height: 600px;
	margin: 0;
}
.portfolio-fullwidth  .portfolio-slider-thumb {
	height: 600px !important;
	margin: 0;
}

.portfolio-sidebar .item {
	margin: 0;
}
.portfolio-sidebar .gallery-item,
.portfolio-sidebar .gallery-item a {
	max-height: 400px;
	height: 400px;
	margin: 0;
}
.portfolio-sidebar  .portfolio-slider-thumb {
	height: 400px !important;
	margin: 0;
}

/* GALLERY */
.gallery ul {
  padding-left: 0;
  padding-top: 30px;
}

. gallery .row {
	padding: 5px;
}
.gallery-item {
	list-style: none;
	transition: 500ms ease-in-out;
	-moz-transition: 500ms ease-in-out;
	-webkit-transition: 500ms ease-in-out;
	overflow: hidden;
	position: relative;
	height: auto;
	margin-bottom: 20px;
}
.gallery-item a {
  display: block;
  position: relative;
  height: 100% !important;
}
.gallery-item .portfolio-zoom {
	position: absolute;
	top: 0;
	opacity: 0;
	width: 100%;
	height: 0%;
	//padding: 10px;
	text-align: center;
	background-color: #4b6cb3;
	opacity: 0.8;
	transition: 500ms ease-in-out;
	-moz-transition: 500ms ease-in-out;
	-webkit-transition: 500ms ease-in-out;
}
.gallery-item .portfolio-zoom h3 {
	color: #ffffff;
	text-transform:uppercase;
	font-size: 18px;
	font-weight: 600;
	top: 50%;
	position: absolute;
	width: 100%;
	left: 0;
	padding: 0 10px;
	margin-top: -9px;
	display: none;
}
.gallery-item .portfolio-zoom span {
  color: #ffffff;
  font-size: 36px;
  top: 50%;
  margin-top: -18px;
  display: none;
}
.gallery-item a:hover .portfolio-zoom {
  opacity: 1;
  height: 100%;
}
.gallery-item a:hover .portfolio-zoom span,
.gallery-item a:hover .portfolio-zoom h3 {
	display:block;
}
.gallery-item img {
  width: 100%;
  padding: 0;
}

/* BLOG */
.blog-list-container {
	padding:0;
	border-top: 1px solid #dadada;
	padding-top: 15px;
}
.blog-item {
  list-style: none;
  overflow:hidden;
  padding-bottom: 15px;
  margin-bottom: 20px;
  border-bottom: 1px solid #dadada;
}
.blog-item .blog-thumb {
	padding-right:0;
	padding-left:0;
	margin-bottom: 10px;
}
.blog-item .blog-thumb img {
	width:100%;
	padding:0 !important;
	border: 2px solid #dadada;
	transition: 500ms ease-in-out;
	-moz-transition: 500ms ease-in-out;
	-webkit-transition: 500ms ease-in-out;
}
.blog-item .blog-thumb:hover img {
	border: 2px solid #4b6cb3;
}
.blog-text h3 {
	margin-top:0;
}
.blog-text .blog-thumb:hover img {
  opacity:0.7;
}
.blog-content h2 {
	margin-top:0;
}
.blog-img {
  width: 200px;
  height: 116px;
  float:left;
  margin: 0 40px 10px 0;
  background-position: 0 center;
  background-repeat: no-repeat;
  background-color: #98c469;
}
.blog-plus {
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:0%;
	text-align: center;
	background: rgba(75, 108, 179, 0.8);
	opacity:0;
	transition: 500ms ease-in-out;
	-moz-transition: 500ms ease-in-out;
	-webkit-transition: 500ms ease-in-out;
}
.blog-thumb:hover .blog-plus {
	opacity:1;
	height:100%;

}
.blog-plus span {
	color: #fff;
	font-size: 36px;
	top: 50%;
	margin-top: -18px;
	opacity:0;
	display:none;

}
.blog-thumb:hover .blog-plus span {
	opacity:1;
	display:block;

}

.site-aktualnosci .content-background,
.site-portfolio .content-background,
.site-cennik .content-background {
	padding-top: 15px; 
	padding-bottom: 15px;
}

/* NEWSLETTER */
.newsletter {
  background: #4b6cb3;
  color: #ffffff;
  padding: 10px 20px;
}
.newsletter h3 {
  margin: 10px 0;
  text-transform: uppercase;
  border-bottom: 1px solid;
  padding-bottom: 10px;
  color: #ffffff;
}
@media screen and (min-width: 768px) {
  .newsletter h3 {
    text-align: center;
  }
}
.newsletter p {
  margin: 5px 0;
}
.newsletter .input-group .input-group-addon {
  background: none;
  border-left: 2px solid;
  color: #fff;
  border-right: 0;
  border-top: 2px solid;
  border-bottom: 2px solid;
  padding: 5px 8px;
}
.newsletter .input-group input {
  background: none;
  border: 2px solid #ffffff;
  color: #ffffff;
}
.newsletter .input-group input:-moz-placeholder {
  color: #f5f5f5;
}
.newsletter .input-group input:-ms-input-placeholder {
  color: #f5f5f5;
}
.newsletter .input-group input::-webkit-input-placeholder {
  color: #f5f5f5;
}

/* CENNIK */
.price-row {
  margin: 3px 0;
  border-bottom: 1px solid #e9e9e9;
  padding: 10px 0;
}
.price-row .price-product {
  padding: 0;
  padding: 10px;
}
@media screen and (min-width: 992px) {
  .price-row .price-product {
    padding: 0;
  }
  .price-row .price-product h3 {
    margin-top: 0;
  }
}
.price-row .price-photo {
  text-align: center;
}

/* MENU BOCZNE */
.menu-left {
	list-style:none;
	padding: 0 0 3px 0;
	overflow:hidden;
	margin-bottom: 0;
}
.menu-left li {
	float:left;
	padding-right:0;
	margin-top:5px;
}
.menu-left li:last-child {
	padding-right:0;
}
.menu-left a {
	padding: 5px 10px;
	text-transform:uppercase;
	transition: 500ms ease-in-out;
	-moz-transition: 500ms ease-in-out;
	-webkit-transition: 500ms ease-in-out;
}
.menu-left a.active,
.menu-left a:hover {
	color:#fff;
	background:#4b6cb3;
	text-decoration:none;
}

/* LEFT Panel */
#left-panel {
  position: fixed;
  top: 150px;
  left: 0px;
  z-index: 500;
}
@media (max-width: 767px) {
  #left-panel {
    display: none;
  }
}
#left-panel .panel {
  position: absolute;
  top: 0px;
  left: -307px;
  width: 307px;
  border-radius: 0px 5px 5px 0px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 500;
  padding: 5px 5px 5px 0px;
}
#left-panel .panel:hover {
  left: 0px;
  z-index: 550;
}
#left-panel .panel.hover {
  left: 0px;
  z-index: 550;
}
#left-panel .panel .content {
  border-radius: 0px 5px 5px 0px;
  background-color: #ffffff;
  height: 100%;
  width: 100%;
  padding: 0 !important;
}
#left-panel .panel .btn {
  position: absolute;
  width: 35px;
  height: 36px;
  right: -35px;
  z-index: 450;
}
#left-panel .fb {
  background-color: #3b5998;
  height: 372px;
}
#left-panel .fb .btn {
  background-image: url(../../../images/grafika/fb-f.png);
  top: 10px;
}
#left-panel .gp {
  background-color: #a8291b;
  height: 118px;
}
#left-panel .gp .btn {
  background-image: url(../../../images/grafika/gp-gp.png);
  top: 56px;
}
.contact {
  margin-top: 30px;
  padding: 0;
}
.contact .contact-box {
  min-height: 80px;
  text-align: center;
  position: relative;
  transition: 500ms ease-in-out;
  -moz-transition: 500ms ease-in-out;
  -webkit-transition: 500ms ease-in-out;
}
.contact .contact-box a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: #4b6cb3;
  padding-top: 20px;
}
.contact .contact-box a:hover {
  text-decoration: none;
  color: #ffffff;
}

/* MAP */
#mapa-dojazdu {
	color:#000;
}

/* GO TOP */
#go-top {
  transition: 500ms ease-in-out;
  -moz-transition: 500ms ease-in-out;
  -webkit-transition: 500ms ease-in-out;
  text-align: center;
  width: 45px;
  height: 45px;
  background-color: #666666;
  font-size: 24px;
  padding-top: 7px;
  opacity: 0.6;
  color: #ffffff;
  cursor: pointer;
}
#go-top:hover {
  background-color: #4b6cb3;
  opacity: 1;
  color: #ffffff;
}
#go-top.affix-top {
  position: fixed;
  right: -80px;
  bottom: 20px;
  text-align: center;
}
#go-top.affix {
  position: fixed;
  bottom: 20px;
  right: 20px;
}

/* FORM */
.input-group .form-control,
.input-group-addon:last-child,
.input-group-btn:last-child > .btn,
.input-group-btn:last-child > .btn-group > .btn,
.input-group-btn:last-child > .dropdown-toggle,
.input-group-btn:first-child > .btn:not(:first-child),
.input-group-btn:first-child > .btn-group:not(:first-child) > .btn,
.input-group-addon,
.form-control {
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
}
.form-control {
  border: 1px solid #000;
  color: #000;
  box-shadow: none;
  background: none;
}
.form-control:focus {
  border: 2px solid #4b6cb3;
  box-shadow: none;
  color: #000;
}
form .btn {
	width:130px;
	height: 50px;
}

.main-form .form-control {
  margin-bottom: 10px;
 }
 
.nav-tabs {
  border-bottom: 1px solid #e9e9e9;
  margin-bottom: 10px;
}
.tab-content {
  margin-bottom: 20px;
}
.nav-tabs > li.active > a,
.nav-tabs > li.active > a:hover,
.nav-tabs > li.active > a:focus {
  color: #888888;
  border: 1px solid #e9e9e9;
  border-bottom-color: transparent;
  font-weight: 600;
}
.nav-tabs > li > a:hover,
.nav-tabs > li > a:focus {
  color: #ffffff;
  background: #4b6cb3;
}
.panel-group .panel {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
.panel-default > .panel-heading {
  color: #ffffff;
  background-color: #4b6cb3;
  border: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
.panel-title > a {
  color: #ffffff;
}
.panel-title > a:hover {
  color: #ffffff;
}
@media (min-width: 768px) {
  .navbar-right .dropdown-menu {
    left: 0;
    right: auto;
  }
}
@media (min-width: 768px) {
  .navbar-nav > li:hover > .dropdown-menu {
    display: block;
  }
}

/* PAGINATION */
.num, .next, .back {
	padding: 5px 10px;
	margin-right: 10px;
	transition: 500ms ease-in-out;
  -moz-transition: 500ms ease-in-out;
  -webkit-transition: 500ms ease-in-out;
}
.num:hover, .next:hover, .back:hover {
	text-decoration:none;
	background: #4b6cb3;
	color: #fff;
}
.num.active {
	background: #dadada;
	color: #fff;

}
.num.active:hover {
	background: #4b6cb3;
}

/* FOOTER */
footer {
	background-color: rgba(255,255,255,0.8);
	width: 100%;
	bottom:0;
	font-size: 12px;
	position: absolute;
	bottom: 20px;
	padding: 5px;
	z-index: 3;
}

.footer-text{
	padding-top: 5px;
}
@media (min-width: 768px) {
	footer {
		padding: 5px 80px;
	}	
}

@media screen and (min-width: 992px) {
  footer .container .content #copyright {
    text-align: right;
  }
}
footer .container .content #copyright a {
  color: #fff;
}
footer .container .content #copyright a:hover {
  color: #4b6cb3;
}
@media screen and (max-width: 991px) {
	footer .text-left,
	footer .text-right {
		text-align:center;
	}
}

/*CONTACT*/
.contact-form1 {
  min-height: 430px;
}

article.content-inner {
	padding-top: 15px;
}

/* COOKIES */
#cookies {
	position:fixed;
	z-index : 9999;
	bottom:0;
	font-size:12px;
	overflow: hidden;
	width:100%;
	color: #000;
	background: rgba(255,255,255,0.9);
}
	#cookies .row {
		padding:10px;
	}
#cookies a {color: #333;background:none;font-weight:700;}
#cookies a:hover {text-decoration:none;text-decoration:underline;}