
/* Start Banner Sonderloesung von Keno 21.03.2023*/
#slider_sonderloesung {
  position: relative;
  width: calc (1/12);
  height: auto; 
  overflow: hidden;

}
#slider_sonderloesung ul {
  position: relative;
  list-style: none;
  height: auto;
  width: 12000%;
  padding: 0;
  margin: 0;
  transition: all 750ms ease;
  left: 0;
}
#slider_sonderloesung ul li {
  position: relative;
  height: auto;
  width: calc (1/12); /*835px*/
  float: left;
}
#slider_sonderloesung ul li img{
  width: 100%;
  height: auto;
}
 
#slider_sonderloesung #prev, #slider_sonderloesung #next {
  width: 50px;
  line-height: 50px;
  border-radius: 50%;
  font-size: 2rem;
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.6); 
  text-align: center;
  color: white;
  text-decoration: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: all 150ms ease;
}
#slider_sonderloesung #prev:hover, #slider_sonderloesung #next:hover {
  background-color: rgba(0, 0, 0, 0.5);
  text-shadow: 0;
}
#slider_sonderloesung #prev {
  left: 10px;
}
#slider_sonderloesung #next {
  right: 10px;
}

/* Foto Hover Effekt Slider Sonderloesung */
.Foto7{
	position: relative;
	float:left;
	width:100%;
	height:auto;
	
}

.Foto7_Foto{
	display: block;
	width: 50%;
}

.Foto7_Overlay{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.6);
	color: #ffffff;
	font-family: Arial;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content:  center;
	opacity: 0;
	transition: opacity 0.25s;
	
}

.Foto7_Overlay > * {
	transform: translateY(20px);
	transition: transform 0.25s;
}

.Foto7_Overlay:hover{
	opacity: 1;
}

.Foto7_Overlay:hover > * {
	transform: translateY(0);
}

.Foto7_Titel{
	font-size: 3.5em;
	font-weight: bold;
}

.Foto7_Text{
	font-size: 1.5em;
	margin-top:1.5em;
	text-align: center;
}

@media and (max-width: 1150px){
	#slider_sonderloesung {
		height: 400px;
	}
}
/* END Banner Sonderloesung*/
