@charset "UTF-8";
/* CSS Document */

/* erster container */
#project-cont {
  display: -webkit-flex;
  display: flex;
  /* margin-top: 60px; für eine fixe nav-bar */
  flex-direction: column;
  justify-content: center;
  height: auto;
  background-size: cover; /* for IE9+, Safari 4.1+, Chrome 3.0+, Firefox 3.6+ */
  -webkit-background-size: cover; /* for Safari 3.0 - 4.0 , Chrome 1.0 - 3.0 */
  -moz-background-size: cover; /* optional for Firefox 3.6 */
  -o-background-size: cover; /* for Opera 9.5 */
}
@media (max-width:992px) {
  #project-cont {
    display: -webkit-flex;
    display: flex;
    margin-top: 60px;
    -webkit-background-size: cover; /* for Safari 3.0 - 4.0 , Chrome 1.0 - 3.0 */
    -moz-background-size: cover; /* optional for Firefox 3.6 */
    -o-background-size: cover; /* for Opera 9.5 */
  }
}
.vidHolder {
  margin: auto;
  width: 100%;
  height: auto;
  overflow: hidden;
}
.vidHolder video {
	
}
.box {
  display: block;
  margin-top: 2px;
  margin-left: -12px;
  margin-right: -12px;
}
/* scroll icon over video */
.scroll {
  position: absolute;
  top: 86%;
  left: 50%;
  width: 10%;
  margin: auto;
  color: #f8f8f8;
  text-align: center;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

/* mobile devices: scroll icon under title-cont */
@media (max-width:992px) {
  .scroll {
  position: absolute;
  top: 75%;
  left: 50%;
  width: 10%;
  margin: auto;
  color: #f8f8f8;
  text-align: center;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  }
}

.scroll:hover {
  cursor: pointer;
  transition: color 0.6s ease-in;
  color: #5bcaff;
}

.scroll-icon {
  z-index: 1000;
  animation-name: bounce;
  animation-duration: 1s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}

@keyframes bounce {
  from {
    transform: translateY(0px);
  }
  to {
    transform: translateY(10px);
  }
}

.back {
  position: fixed;
  display: none;
  right: 18px;
  top: 88px;
  width: 3.8em;
  height: 3.8em;
  text-align: center;
  color: #f8f8f8;
  background: #0E1018;
  line-height: 3.6em;
  z-index: 400;
}
.back:hover {
  border-bottom: solid 4px;
  color: #5bcaff;
  opacity: 0.8;
}
.back i {
  font-weight: 700;
}

/* zweiter container */
#title-cont {
  display: -webkit-flex;
  display: flex;
  padding: 4vh 0;
  min-height: 300px;
  align-content: center;
  width: 100%;
  flex-direction: column;
  justify-content: center;
  background-color: #0E1018;
  color: #f8f8f8;
}

.segment-1 {
  background-color: #020208;
}
.segment-2 {
  background-color: #020208;
}
.segment-3 {
  background-color: #020208;
}

.galerie {
  margin: 6px auto;
  align-items: center;
  width: 100%;
}
/* Removes the default 20px margin and creates some padding space for the indicators and controls */
.carousel {
    margin-bottom: 0;
	padding: 0 40px 30px 40px;
}
/* Reposition the controls slightly */
.carousel-control {
	left: -12px;
}
.carousel-control.right {
	right: -12px;
}
/* Changes the position of the indicators */
.carousel-indicators {
	right: 50%;
	top: auto;
	bottom: 0px;
	margin-right: -19px;
}
/* Changes the colour of the indicators */
.carousel-indicators li {
	background: #c0c0c0;
}
.carousel-indicators .active {
background: yellow;
}

#info-cont {
  display: -webkit-flex;
  display: flex;
  padding-bottom: 4vh;
  min-height: 40vh;
  align-content: center;
  width: 100%;
  flex-direction: column;
  justify-content: center;
  background-color: #0E1018;
  color: #fff;
}
.info-item img {
  margin-bottom: 2vh;
  margin-left: auto;
  margin-right: auto;
  height: 80px;
  display: flex;
  display: -webkit-flex;
}

#continue-cont {
	margin: 0 6px;
}

#continue-cont .portfolio-item {
  display: block;
  position: relative;
}
#continue-cont .portfolio-box {
  display: block;
  /*box-shadow: 0 1px 1px rgba(0,0,0,0.10), 0 1px 1px rgba(100,100,100,0.23);*/
  transition: all 0.2s ease-in-out;
}

#continue-cont .container-fluid .portfolio-box:hover .portfolio-box-caption {
  opacity: 2;
}

#continue-cont .portfolio-box-caption {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  bottom: 0; /*wichtig, damit Hover-Element darüber liegt*/
  margin: 0 auto;
  max-width: 100%;
  height: 100%;
  text-align: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: inherit;
  -ms-flex-direction: column;
  flex-direction: column;
  position: absolute;
  opacity: 0;
  	border-bottom: solid 3px;
	border-bottom-color: #5bcaff;
  -webkit-transition: opacity 0.25s ease;
  transition: opacity 0.25s ease;
   z-index: 1;
}

#continue-cont .project-category {
  font-family: "Muli", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
}
#continue-cont .project-name {
  color: #f8f8f8;
  font-size: 1.6rem;
  letter-spacing: 0.2em;
}

@media (min-width:992px) {
  #continue-cont .portfolio-item {
    margin: 0;
  }
  #continue-cont .portfolio-box-caption {
	width: 100%;
}

/* Override bootstrap column paddings */
.tz-gallery .row > div {
    padding: 2px;
}

.tz-gallery .lightbox img {
    width: 100%;
    border-radius: 0;
    position: relative;
}

.tz-gallery .lightbox:before {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -13px;
    margin-left: -13px;
    opacity: 0;
    color: #fff;
    font-size: 26px;
    font-family: 'Glyphicons Halflings';
    content: '\e003';
    pointer-events: none;
    z-index: 9000;
    transition: 0.4s;
}


.tz-gallery .lightbox:after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    background-color: rgba(46, 132, 206, 0.7);
    content: '';
    transition: 0.4s;
}

.tz-gallery .lightbox:hover:after,
.tz-gallery .lightbox:hover:before {
    opacity: 1;
}

.baguetteBox-button {
    background-color: transparent !important;
}