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


/*############ Header Image #############*/

.header_image{margin-bottom: 30px;}

.img-top-container {
  position: relative;
  width: 100%;
  margin-left:auto;
  margin-right:auto;
}

.img-top-image {
  display: block;
  width: 100%;
  height: auto;
}

.img-top-overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;  
}

.img-top-text {
  color: white;
  font-size: 20px;
  position: relative;
  top: 40%;
  padding: 0 10% 0 10%;
  transform: translate(0%, -50%);
  -ms-transform: translate(0%, -50%);
  text-align:center;
  text-shadow: 3px 3px 4px #000000 ;
}

/*###################### Bild + Text + Ausrichtung ################*/

/* mobil */
@media (min-width: 300px) {
	
/* Bild Ausrichtung */
    
.img_none {display: none}
	
.img_left {display: block; width:100%; float: left; margin: 0 0 2% 0;}
	
.img_right {display: block; width:100%; float: right; margin: 0 0 2% 0;}
	
.img_top {display: block; width:100%; clear: both; margin: 0 0 2% 0;}
	
}

/* 1024 */
@media (min-width: 960px) {
	
/* Bild Ausrichtung */
	
.img_left {width:54.33%; float: left; margin: 0 4% 2% 0;}
	
.img_right {width:40%; float: right; margin: 30px 0 4% 2%;}
	
.img_top {width:100%; clear: both; margin: 0 0 2% 0;}
	
.img_none {display: none}

}

/*----------------- Back to top -----------------------*/

.cd-top {
  display: inline-block;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  position: fixed;
  bottom: 40px;
  right: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  /* image replacement properties */
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  background: rgba(255, 255, 255, 0.8) url(../../media/cd-top-arrow.svg) no-repeat center 50%;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity .3s 0s, visibility 0s .3s;
  -moz-transition: opacity .3s 0s, visibility 0s .3s;
  transition: opacity .3s 0s, visibility 0s .3s;
}
.cd-top.cd-is-visible, .cd-top.cd-fade-out, .no-touch .cd-top:hover {
  -webkit-transition: opacity .3s 0s, visibility 0s 0s;
  -moz-transition: opacity .3s 0s, visibility 0s 0s;
  transition: opacity .3s 0s, visibility 0s 0s;
}
.cd-top.cd-is-visible {
  /* the button becomes visible */
  visibility: visible;
  opacity: 1;
}
.cd-top.cd-fade-out {
  /* if the user keeps scrolling down, the button is out of focus and becomes less visible */
  opacity: .5;
}
.no-touch .cd-top:hover {
  background-color: #e86256;
  opacity: 1;
}
@media only screen and (min-width: 768px) {
  .cd-top {
    right: 20px;
    bottom: 20px;
  }
}
@media only screen and (min-width: 1024px) {
  .cd-top {
    height: 60px;
    width: 60px;
    right: 30px;
    bottom: 30px;
  }
}

/*######################### img-work ######################*/

.img-work-container {
  position: relative;
  width: 90%;
  margin-left:auto;
  margin-right:auto;
}

.img-container {
  position: relative;
  width: 100%;
  margin-left:auto;
  margin-right:auto;
}

.img-work-image {
  display: block;
  width: 100%;
  height: auto;
}

.img-work-overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: .5s ease;
  background-color: #000000;
}

.img-work-container:hover .img-work-overlay, .img-container:hover .img-work-overlay {
  opacity: 0.8; cursor: pointer; 
}

.img-work-text {
  color: white;
  font-size: 20px;
  position: relative;
  top: 50%;
  padding: 0 10% 0 10%;
  transform: translate(0%, -50%);
  -ms-transform: translate(0%, -50%);
  text-align:center;
  opacity: 1;
}

/* mobil */
@media (min-width: 300px) {

.img-work-container {
  position: relative;
  width: 90%;
  margin-left:auto;
  margin-right:auto;
  margin-bottom:20px;
}

.img-work-text h2{
font-family: 'Oxygen', sans-serif;
font-size:18px;
font-weight:400;
color:#FFFFFF;
 opacity: 1;
}

.img-work-text p{

font-size:14px;
font-weight:400;
color:#FFFFFF;
 opacity: 1;
}

}

