/* CSS Document */

	

.slider, 
.slider > div {
    /* Images default to Center Center. Maybe try 'center top'? */
    background-position: center center;
    display: block;
    width: 100%;
    height: 500px;
    /* height: 100vh; *//* If you want fullscreen */
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: #FFF;
    overflow: hidden;
    -moz-transition: transform .4s;
    -o-transition: transform .4s;
    -webkit-transition: transform .4s;
    transition: transform .4s;
}

.slider > div {
    position: absolute;
}

.slider > i {
	color: rgba(75,96,255,1.00);
	position: absolute;
	font-size: 60px;
	margin: 20px;
	top: 40%;
	text-shadow: 0 10px 2px #4B60FF;
	transition: .3s;
	width: 30px;
	padding: 10px 13px;
	background: #fff;
	background: rgba(255, 255, 255, .3);
	cursor: pointer;
	line-height: 0;
	box-sizing: content-box;
	border-radius: 3px;
	z-index: 4;
}

.slider > i svg {
    margin-top: 3px;
}

.slider > .left {
    left: -100px;
}
.slider > .right {
    right: -100px;
}
.slider:hover > .left {
    left: 0;
}
.slider:hover > .right {
    right: 0;
}

.slider > i:hover {
	color: rgba(75,96,255,1.00);
    background: rgba(255, 255, 255, .8);
    transform: translateX(-2px);
}

.slider > i.right:hover {
    transform: translateX(2px);
}

.slider > i.right:active,
.slider > i.left:active {
    transform: translateY(1px);
}

.slider:hover > div {
    transform: scale(1.01);
}

.hoverZoomOff:hover > div {
    transform: scale(1);
}

.slider > ul {
    position: absolute;
    bottom: 10px;
    left: 50%;
    z-index: 4;
    padding: 0;
    margin: 0;
    transform: translateX(-50%);
}

.slider > ul > li {
	padding: 0;
	width: 80px;
	height: 6px;
	border-radius: 10%;
	list-style: none;
	float: left;
	margin: 10px 10px 0;
	cursor: pointer;
	/* [disabled]border-color: rgba(75,96,255,1.00); */
	/* [disabled]border-style: solid; */
	/* [disabled]border-width: 0.5px; */
	-moz-transition: .3s;
	-o-transition: .3s;
	-webkit-transition: .3s;
	transition: .3s;
	-ms-touch-action: pan-y;
	touch-action: pan-y;
	background-color: rgba(255,255,255,0.80);
}

.slider > ul > .showli {
	background-color: rgba(75,96,255,1.00);
	-moz-animation: boing .5s forwards;
	-o-animation: boing .5s forwards;
	-webkit-animation: boing .5s forwards;
	animation: boing .5s forwards;
}

.slider > ul > li:hover {
	background-color: rgba(75,95,253,1.00);
}

.slider > .show {
    z-index: 1;
}

.hideDots > ul {
    display: none;
}

.showArrows > .left {
    left: 0;
}

.showArrows > .right {
    right: 0;
}
/*
.titleBar {
    z-index: 2;
    display: inline-block;
    background: rgba(0,0,0,.5);
    position: absolute;
    width: 100%;
    bottom: 0;
    transform: translateY(100%);
    padding: 20px 30px;
    transition: .3s;
    color: #fff;
}

.titleBar * {
    transform: translate(-20px, 30px);
    transition: all 700ms cubic-bezier(0.37, 0.31, 0.2, 0.85) 200ms;
    opacity: 0;
}

.titleBarTop .titleBar * {
    transform: translate(-20px, -30px);
}

.slider:hover .titleBar,
.slider:hover .titleBar * {
    transform: translate(0);
    opacity: 1;
}

.titleBarTop .titleBar {
    top: 0;
    bottom: initial;
    transform: translateY(-100%);
}*/

.slider > div span {
    display: block;
    background: rgba(0,0,0,.5);
    position: absolute;
    bottom: 0;
    color: #fff;
    text-align: center;
    padding: 0;
    width: 100%;
}


/*Slider*/

.sliderimpressionen1 {
	width: 100%;
	height: 500px;
	background-image: url("../images/slider_impressionen_1.jpg");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	}


.sliderimpressionen2 {
	width: 100%;
	height: 500px;
	background-image: url("../images/slider_impressionen_2.jpg");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	}


.sliderimpressionen3 {
	width: 100%;
	height: 500px;
	background-image: url("../images/slider_impressionen_3.jpg");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	}


.sliderimpressionen4{
	width: 100%;
	height: 500px;
	background-image: url("../images/slider_impressionen_4.jpg");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	}


.sliderimpressionen5 {
	width: 100%;
	height: 500px;
	background-image: url("../images/slider_impressionen_5.jpg");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	}


.sliderimpressionen6 {
	width: 100%;
	height: 500px;
	background-image: url("../images/slider_impressionen_6.jpg");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	}


.sliderimpressionen7 {
	width: 100%;
	height: 500px;
	background-image: url("../images/slider_impressionen_7.jpg");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	}

	
	
.sliderimpressionen8 {
	width: 100%;
	height: 500px;
	background-image: url("../images/slider_impressionen_8.jpg");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	}


@keyframes boing {
    0% {
        transform: scale(1.2);
    }
    40% {
        transform: scale(.6);
    }
    60% {
        transform: scale(1.2);
    }
    80% {
        transform: scale(.8);
    }
    100% {
        transform: scale(1);
    }
}






@media screen and (max-width: 850px) {
.slider, 
.slider > div {
    /* Images default to Center Center. Maybe try 'center top'? */
    background-position: center center;
    display: block;
    width: 100%;
    height: 400px;
    /* height: 100vh; *//* If you want fullscreen */
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: #FFF;
    overflow: hidden;
    -moz-transition: transform .4s;
    -o-transition: transform .4s;
    -webkit-transition: transform .4s;
    transition: transform .4s;
}	

.sliderimpressionen1 {
	width: 100%;
	height: 400px;
	background-image: url("../images/slider_impressionen_1.jpg");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	}


.sliderimpressionen2 {
	width: 100%;
	height: 400px;
	background-image: url("../images/slider_impressionen_2.jpg");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	}


.sliderimpressionen3 {
	width: 100%;
	height: 400px;
	background-image: url("../images/slider_impressionen_3.jpg");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	}


.sliderimpressionen4{
	width: 100%;
	height: 400px;
	background-image: url("../images/slider_impressionen_4.jpg");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	}


.sliderimpressionen5 {
	width: 100%;
	height: 400px;
	background-image: url("../images/slider_impressionen_5.jpg");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	}


.sliderimpressionen6 {
	width: 100%;
	height: 400px;
	background-image: url("../images/slider_impressionen_6.jpg");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	}


.sliderimpressionen7 {
	width: 100%;
	height: 400px;
	background-image: url("../images/slider_impressionen_7.jpg");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	}	


.sliderimpressionen8 {
	width: 100%;
	height: 400px;
	background-image: url("../images/slider_impressionen_8.jpg");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	}		
}	

	
@media screen and (max-width: 803px) {	

	
.slider, 
.slider > div {
    /* Images default to Center Center. Maybe try 'center top'? */
    background-position: center center;
    display: block;
    width: 100%;
    height: 400px;
    /* height: 100vh; *//* If you want fullscreen */
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: #FFF;
    overflow: hidden;
    -moz-transition: transform .4s;
    -o-transition: transform .4s;
    -webkit-transition: transform .4s;
    transition: transform .4s;
}	
	
	
.sliderimpressionen1 {
	width: 100%;
	height: 400px;
	background-image: url("../images/slider_impressionen_1.jpg");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	}


.sliderimpressionen2 {
	width: 100%;
	height: 400px;
	background-image: url("../images/slider_impressionen_2.jpg");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	}


.sliderimpressionen3 {
	width: 100%;
	height: 400px;
	background-image: url("../images/slider_impressionen_3.jpg");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	}


.sliderimpressionen4{
	width: 100%;
	height: 400px;
	background-image: url("../images/slider_impressionen_4.jpg");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	}


.sliderimpressionen5 {
	width: 100%;
	height: 400px;
	background-image: url("../images/slider_impressionen_5.jpg");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	}


.sliderimpressionen6 {
	width: 100%;
	height: 400px;
	background-image: url("../images/slider_impressionen_6.jpg");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	}


.sliderimpressionen7 {
	width: 100%;
	height: 400px;
	background-image: url("../images/slider_impressionen_7.jpg");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	}	
	
	
.sliderimpressionen8 {
	width: 100%;
	height: 400px;
	background-image: url("../images/slider_impressionen_8.jpg");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	}
		
}



@media screen and (max-width: 768px) {

.slider, 
.slider > div {
    /* Images default to Center Center. Maybe try 'center top'? */
    background-position: center center;
    display: block;
    width: 100%;
    height: 400px;
    /* height: 100vh; *//* If you want fullscreen */
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: #FFF;
    overflow: hidden;
    -moz-transition: transform .4s;
    -o-transition: transform .4s;
    -webkit-transition: transform .4s;
    transition: transform .4s;
}	
	
.slider > ul > li {
	padding: 0;
	width: 60px;
	height: 6px;
	border-radius: 10%;
	list-style: none;
	float: left;
	margin: 10px 10px 0;
	cursor: pointer;
	/* [disabled]border-color: rgba(75,96,255,1.00); */
	/* [disabled]border-style: solid; */
	/* [disabled]border-width: 0.5px; */
	-moz-transition: .3s;
	-o-transition: .3s;
	-webkit-transition: .3s;
	transition: .3s;
	-ms-touch-action: pan-y;
	touch-action: pan-y;
	background-color: rgba(255,255,255,0.80);
}
	
.sliderimpressionen1 {
	width: 100%;
	height: 400px;
	background-image: url("../images/slider_impressionen_1.jpg");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	}


.sliderimpressionen2 {
	width: 100%;
	height: 400px;
	background-image: url("../images/slider_impressionen_2.jpg");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	}


.sliderimpressionen3 {
	width: 100%;
	height: 400px;
	background-image: url("../images/slider_impressionen_3.jpg");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	}


.sliderimpressionen4{
	width: 100%;
	height: 400px;
	background-image: url("../images/slider_impressionen_4.jpg");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	}


.sliderimpressionen5 {
	width: 100%;
	height: 400px;
	background-image: url("../images/slider_impressionen_5.jpg");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	}


.sliderimpressionen6 {
	width: 100%;
	height: 400px;
	background-image: url("../images/slider_impressionen_6.jpg");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	}


.sliderimpressionen7 {
	width: 100%;
	height: 400px;
	background-image: url("../images/slider_impressionen_7.jpg");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	}
	
	
.sliderimpressionen8 {
	width: 100%;
	height: 400px;
	background-image: url("../images/slider_impressionen_8.jpg");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	}	
	
}	


	
@media screen and (max-width : 678px ){
.slider, 
.slider > div {
    /* Images default to Center Center. Maybe try 'center top'? */
    background-position: center center;
    display: block;
    width: 100%;
    height: 330px;
    /* height: 100vh; *//* If you want fullscreen */
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: #FFF;
    overflow: hidden;
    -moz-transition: transform .4s;
    -o-transition: transform .4s;
    -webkit-transition: transform .4s;
    transition: transform .4s;
}
	

.slider > ul > li {
	padding: 0;
	width: 55px;
	height: 6px;
	border-radius: 10%;
	list-style: none;
	float: left;
	margin: 10px 10px 0;
	cursor: pointer;
	/* [disabled]border-color: rgba(75,96,255,1.00); */
	/* [disabled]border-style: solid; */
	/* [disabled]border-width: 0.5px; */
	-moz-transition: .3s;
	-o-transition: .3s;
	-webkit-transition: .3s;
	transition: .3s;
	-ms-touch-action: pan-y;
	touch-action: pan-y;
	background-color: rgba(255,255,255,0.80);
}	
	
.sliderimpressionen1 {
	width: 100%;
	height: 330px;
	background-image: url("../images/slider_impressionen_1.jpg");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	}


.sliderimpressionen2 {
	width: 100%;
	height: 330px;
	background-image: url("../images/slider_impressionen_2.jpg");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	}


.sliderimpressionen3 {
	width: 100%;
	height: 330px;
	background-image: url("../images/slider_impressionen_3.jpg");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	}


.sliderimpressionen4{
	width: 100%;
	height: 330px;
	background-image: url("../images/slider_impressionen_4.jpg");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	}


.sliderimpressionen5 {
	width: 100%;
	height: 330px;
	background-image: url("../images/slider_impressionen_5.jpg");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	}


.sliderimpressionen6 {
	width: 100%;
	height: 330px;
	background-image: url("../images/slider_impressionen_6.jpg");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	}


.sliderimpressionen7 {
	width: 100%;
	height: 330px;
	background-image: url("../images/slider_impressionen_7.jpg");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	}
	
	
.sliderimpressionen8 {
	width: 100%;
	height: 330px;
	background-image: url("../images/slider_impressionen_8.jpg");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	}
}


@media screen and (max-width: 576px) {


.slider > ul > li {
	padding: 0;
	width: 50px;
	height: 6px;
	border-radius: 10%;
	list-style: none;
	float: left;
	margin: 10px 10px 0;
	cursor: pointer;
	/* [disabled]border-color: rgba(75,96,255,1.00); */
	/* [disabled]border-style: solid; */
	/* [disabled]border-width: 0.5px; */
	-moz-transition: .3s;
	-o-transition: .3s;
	-webkit-transition: .3s;
	transition: .3s;
	-ms-touch-action: pan-y;
	touch-action: pan-y;
	background-color: rgba(255,255,255,0.80);
}	
	
.slider, 
.slider > div {
    /* Images default to Center Center. Maybe try 'center top'? */
    background-position: center center;
    display: block;
    width: 100%;
    height: 300px;
    /* height: 100vh; *//* If you want fullscreen */
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: #FFF;
    overflow: hidden;
    -moz-transition: transform .4s;
    -o-transition: transform .4s;
    -webkit-transition: transform .4s;
    transition: transform .4s;
}
	
	
.sliderimpressionen1 {
	width: 100%;
	height: 300px;
	background-image: url("../images/slider_impressionen_1.jpg");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	}


.sliderimpressionen2 {
	width: 100%;
	height: 300px;
	background-image: url("../images/slider_impressionen_2.jpg");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	}


.sliderimpressionen3 {
	width: 100%;
	height: 300px;
	background-image: url("../images/slider_impressionen_3.jpg");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	}


.sliderimpressionen4{
	width: 100%;
	height: 300px;
	background-image: url("../images/slider_impressionen_4.jpg");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	}


.sliderimpressionen5 {
	width: 100%;
	height: 300px;
	background-image: url("../images/slider_impressionen_5.jpg");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	}


.sliderimpressionen6 {
	width: 100%;
	height: 300px;
	background-image: url("../images/slider_impressionen_6.jpg");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	}


.sliderimpressionen7 {
	width: 100%;
	height: 300px;
	background-image: url("../images/slider_impressionen_7.jpg");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	}	
	
	
.sliderimpressionen8 {
	width: 100%;
	height: 300px;
	background-image: url("../images/slider_impressionen_8.jpg");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	}	
	
	
}


@media screen and (max-width: 415px) {

	
.slider, 
.slider > div {
    /* Images default to Center Center. Maybe try 'center top'? */
    background-position: center center;
    display: block;
    width: 100%;
    height: 280px;
    /* height: 100vh; *//* If you want fullscreen */
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: #FFF;
    overflow: hidden;
    -moz-transition: transform .4s;
    -o-transition: transform .4s;
    -webkit-transition: transform .4s;
    transition: transform .4s;
}	

.slider > ul > li {
	padding: 0;
	width: 35px;
	height: 5px;
	border-radius: 10%;
	list-style: none;
	float: left;
	margin: 6px 6px 0;
	cursor: pointer;
	/* [disabled]border-color: rgba(75,96,255,1.00); */
	/* [disabled]border-style: solid; */
	/* [disabled]border-width: 0.5px; */
	-moz-transition: .3s;
	-o-transition: .3s;
	-webkit-transition: .3s;
	transition: .3s;
	-ms-touch-action: pan-y;
	touch-action: pan-y;
	background-color: rgba(255,255,255,0.80);
}	
	
	
.sliderimpressionen1 {
	width: 100%;
	height: 280px;
	background-image: url("../images/slider_impressionen_1.jpg");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	}


.sliderimpressionen2 {
	width: 100%;
	height: 280px;
	background-image: url("../images/slider_impressionen_2.jpg");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	}


.sliderimpressionen3 {
	width: 100%;
	height: 280px;
	background-image: url("../images/slider_impressionen_3.jpg");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	}


.sliderimpressionen4{
	width: 100%;
	height: 280px;
	background-image: url("../images/slider_impressionen_4.jpg");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	}


.sliderimpressionen5 {
	width: 100%;
	height: 280px;
	background-image: url("../images/slider_impressionen_5.jpg");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	}


.sliderimpressionen6 {
	width: 100%;
	height: 280px;
	background-image: url("../images/slider_impressionen_6.jpg");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	}


.sliderimpressionen7 {
	width: 100%;
	height: 280px;
	background-image: url("../images/slider_impressionen_7.jpg");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	}	
	
	
.sliderimpressionen8 {
	width: 100%;
	height: 280px;
	background-image: url("../images/slider_impressionen_8.jpg");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	}	
	
	
}

@media screen and (max-width: 375px) {

	
.slider, 
.slider > div {
    /* Images default to Center Center. Maybe try 'center top'? */
    background-position: center center;
    display: block;
    width: 100%;
    height: 230px;
    /* height: 100vh; *//* If you want fullscreen */
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: #FFF;
    overflow: hidden;
    -moz-transition: transform .4s;
    -o-transition: transform .4s;
    -webkit-transition: transform .4s;
    transition: transform .4s;
}	
	
.slider > ul > li {
	padding: 0;
	width: 30px;
	height: 5px;
	border-radius: 10%;
	list-style: none;
	float: left;
	margin: 6px 6px 0;
	cursor: pointer;
	/* [disabled]border-color: rgba(75,96,255,1.00); */
	/* [disabled]border-style: solid; */
	/* [disabled]border-width: 0.5px; */
	-moz-transition: .3s;
	-o-transition: .3s;
	-webkit-transition: .3s;
	transition: .3s;
	-ms-touch-action: pan-y;
	touch-action: pan-y;
	background-color: rgba(255,255,255,0.80);
}	
	
	
.sliderimpressionen1 {
	width: 100%;
	height: 230px;
	background-image: url("../images/slider_impressionen_1.jpg");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	}


.sliderimpressionen2 {
	width: 100%;
	height: 230px;
	background-image: url("../images/slider_impressionen_2.jpg");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	}


.sliderimpressionen3 {
	width: 100%;
	height: 230px;
	background-image: url("../images/slider_impressionen_3.jpg");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	}


.sliderimpressionen4{
	width: 100%;
	height: 230px;
	background-image: url("../images/slider_impressionen_4.jpg");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	}


.sliderimpressionen5 {
	width: 100%;
	height: 230px;
	background-image: url("../images/slider_impressionen_5.jpg");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	}


.sliderimpressionen6 {
	width: 100%;
	height: 230px;
	background-image: url("../images/slider_impressionen_6.jpg");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	}


.sliderimpressionen7 {
	width: 100%;
	height: 230px;
	background-image: url("../images/slider_impressionen_7.jpg");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	}	
	
	
.sliderimpressionen8 {
	width: 100%;
	height: 230px;
	background-image: url("../images/slider_impressionen_8.jpg");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	}		
	
	
}


@media screen and (max-width: 320px) {
	
	
.slider, 
.slider > div {
    /* Images default to Center Center. Maybe try 'center top'? */
    background-position: center center;
    display: block;
    width: 100%;
    height: 230px;
    /* height: 100vh; *//* If you want fullscreen */
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: #FFF;
    overflow: hidden;
    -moz-transition: transform .4s;
    -o-transition: transform .4s;
    -webkit-transition: transform .4s;
    transition: transform .4s;
}	

	
.slider > ul > li {
	padding: 0;
	width: 30px;
	height: 5px;
	border-radius: 10%;
	list-style: none;
	float: left;
	margin: 4px 4px 0;
	cursor: pointer;
	/* [disabled]border-color: rgba(75,96,255,1.00); */
	/* [disabled]border-style: solid; */
	/* [disabled]border-width: 0.5px; */
	-moz-transition: .3s;
	-o-transition: .3s;
	-webkit-transition: .3s;
	transition: .3s;
	-ms-touch-action: pan-y;
	touch-action: pan-y;
	background-color: rgba(255,255,255,0.80);
}	

	
.sliderimpressionen1 {
	width: 100%;
	height: 230px;
	background-image: url("../images/slider_impressionen_1.jpg");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	}


.sliderimpressionen2 {
	width: 100%;
	height: 230px;
	background-image: url("../images/slider_impressionen_2.jpg");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	}


.sliderimpressionen3 {
	width: 100%;
	height: 230px;
	background-image: url("../images/slider_impressionen_3.jpg");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	}


.sliderimpressionen4{
	width: 100%;
	height: 230px;
	background-image: url("../images/slider_impressionen_4.jpg");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	}


.sliderimpressionen5 {
	width: 100%;
	height: 230px;
	background-image: url("../images/slider_impressionen_5.jpg");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	}


.sliderimpressionen6 {
	width: 100%;
	height: 230px;
	background-image: url("../images/slider_impressionen_6.jpg");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	}


.sliderimpressionen7 {
	width: 100%;
	height: 230px;
	background-image: url("../images/slider_impressionen_7.jpg");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	}
	

.sliderimpressionen8 {
	width: 100%;
	height: 230px;
	background-image: url("../images/slider_impressionen_8.jpg");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	}		
	
	
}
