#banner .banners{
	background-color: white;
	display: flex;
	width: 100%;
	vertical-align: top;
	box-shadow: 0px 0px 10px #666666;
}
.banner{
	animation-name: fade;
    animation-duration: 2s;
	display: none;
}
#bannerMaster{
	position: relative;
	background-color: black;
	width: 70%;
	align-self: center;
}
#bannerContacts{
	width: 30%;
	align-self: center;
}
#bannerPevious,
#bannerNext{
	cursor: pointer;
	position: absolute;
	top: 50%;
	padding: 20px;
	margin-top: -30px;
	font-weight: bold;
    font-size: 20px;
	color: white;
	transition: 0.6s ease;
	border-radius: 0 3px 3px 0;
	z-index: 1000;
}
#bannerNext{
	right: 0;
	border-radius: 3px 0 0 3px;
}
#bannerPevious:hover,
#bannerNext:hover{
	background-color: rgba(255, 255, 255, 0.5);
	color: #73231c;
}
.bannerImg {
	width: 100%;
}
.banneriframe{
	height: 400px;
}
.bannerLozung1,
.bannerLozung2{
	color: #660000;
	text-align: center;
	font-weight: bold;
	width: 100%;
	margin: 2% 0%;
}

.bannerCompanyQC{
	text-align: center;
}
.bannerCompanyQC img{
	display: inline-block;
	width: 40%;
	padding: 2%;


}
.bannerLozung1{
	margin: 2% 0%;
	font-size: 1.7vw;
}

.bannerLozung2{
	margin: 3% 0% 5% 0%;
	font-size: 1.22vw;
}

@keyframes fade {
    from {
        opacity: 0
    }
    to {
        opacity: 1
    }
}


@media (max-width: 500px) {
	#banner{
		display: none
	}
}