.bg-slider {
	background-size: cover;
	position: absolute;
	bottom: 0px;
	z-index: 9;
	width: 100%;
	height: 100%;
	/*background-image: url("../images/logo-slider.svg");*/
}
.bg-slider img {
	position: absolute;
	bottom: 0;
	top: 0;
	right: 0;
	left: 0;
	margin: auto;
	max-width: 750px;
	width: 1200px;
	
	-webkit-animation-delay: .4s;
	animation-delay: .4s;
	-webkit-animation-duration: .6s;
	animation-duration: .6s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-name: fadeInLeft;
	animation-name: fadeInLeft;
}

/* -------------------- Flexslider Logo  -------------------- */

.logo-slider {
  position: absolute;
  width: 25%;
  height: 100%;
  z-index: 9;
  justify-content: center;
  align-items: center;
  background: rgba(255,255,255,.5);
  clip-path: polygon(0 0, 100% 0, 10% 100%, 0% 100%);
}
.logo-slider img {
  width: 220px;
  height: 160px;
  position: absolute;
  left: 40px;
  top: 40px;
}

#main-flexslider.flexslider .slides li::after {
	position: absolute;
	height: 100%;
	width: 100%;
	background: rgb(255,255,255);
background: linear-gradient(180deg, rgba(255,255,255,0.55) 50%, rgba(255,255,255,0.00) 100%);
	/*content: '';*/
	top: 0;
	z-index: 9;
}

#main-flexslider {
  min-width:400px;
  min-height: 144px;
  aspect-ratio: 1280/461;
  width: 100%;
}

#main-flexslider ul li {
  min-width:400px;
  min-height: 144px;
  aspect-ratio: 1280/461;
  width: 100%;
}

.flex-control-nav {
	z-index: 9;
	top: 5px;
	bottom: auto;
	text-align: center;
}
.flex-control-paging li a {
	width: 25px;
	height: 5px;
	border-radius: 0px;
	background-color: rgba(255,255,255,0.5);
	box-shadow: none;
}
.flex-control-paging li a:hover {
	background-color: #F9AE28;
}
.flex-control-paging li a.flex-active {
	background-color: #fff;
}
.flex-direction-nav {
	  /* top: 80px; */
    /* bottom: auto; */
    
    bottom: 10px;
    text-align: center;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 100px;
}
.flex-direction-nav .flex-prev {
	left: auto;
}
.flex-direction-nav .flex-next {
	
}

.flex-direction-nav a {
	width: 50px;
	height: 50px;
	font-size: 1.7rem;
	padding: 5px;
	background-color: transparent;
	color: #fff;
}	

/* Bestehende IcoFont Styles zurücksetzen */
.flex-direction-nav a:before {
    content: '' !important;
    font-family: "Font Awesome 6 Pro"!important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
}

/* Font Awesome für "Vorheriger" Pfeil */
.flex-direction-nav .flex-prev:before {
    font-family: "Font Awesome 6 Pro"!important;
    content: "\f191"!important; /* FontAwesome FA-Chevron-Left */
    font-weight: 900;
}

/* Font Awesome für "Nächster" Pfeil */
.flex-direction-nav .flex-next:before {
    font-family: "Font Awesome 6 Pro"!important;
    content: "\f152"!important; /* FontAwesome FA-Chevron-Right */
    font-weight: 900;
}

/* Styling der Pfeil-Box (optional) */
.flex-direction-nav a {
    font-size: 20px; /* Größe anpassen */
    color: #333; /* Farbe anpassen */
    /* background: rgba(255,255,255,0.5); /* Hintergrund */
}

.flexslider li .meta {
		position: absolute;
		bottom: 20px;
		left: 100px;
		color: white;
		display: flex;
		flex-direction: column;
		justify-content: flex-start;
		align-items: flex-start;
	
	z-index: 10;
}

.flexslider li h2 {
		background: rgba(53,53,53,0.75);
		padding: 12px 18px 12px;
		margin-bottom: 0;
		font-size: 1.8em;
		font-weight: 300;
		display: inline-block;
}

.flexslider li .category {
		display: flex;
		flex-direction: row;
	margin-top: 5px;
}

.flexslider li .category p {
		background-color: rgba(255,255,255,0.80);
	color: #333;
		margin-right: 7px;
		padding: 12px 18px 10px;
		font-weight: 300;
}


.flexslider li h2,
.flexslider li .category p {
		-webkit-animation-duration: .6s;
		animation-duration: .6s;
		-webkit-animation-fill-mode: both;
		animation-fill-mode: both;
		-webkit-animation-name: fadeOutLeft;
		animation-name: fadeOutLeft;
}

.flexslider li.flex-active-slide .meta h2,
.flexslider li.flex-active-slide .meta .category p {
		-webkit-animation-delay: .4s;
		animation-delay: .4s;
		-webkit-animation-duration: .6s;
		animation-duration: .6s;
		-webkit-animation-fill-mode: both;
		animation-fill-mode: both;
		-webkit-animation-name: fadeInLeft;
		animation-name: fadeInLeft;
}

.flexslider li.flex-active-slide .meta h2 {
		-webkit-animation-delay: .5s;
		animation-delay: .5s;
}

.flexslider li.flex-active-slide .meta .category p {
		-webkit-animation-delay: .6s;
		animation-delay: .6s;
}

@-webkit-keyframes fadeInLeft {
		0% {
				opacity: 0;
				-webkit-transform: translate3d(-100%, 0, 0);
				transform: translate3d(-100%, 0, 0);
		}
		100% {
				opacity: 1;
				-webkit-transform: none;
				transform: none;
		}
}

@keyframes fadeInLeft {
		0% {
				opacity: 0;
				-webkit-transform: translate3d(-100%, 0, 0);
				transform: translate3d(-100%, 0, 0);
		}
		100% {
				opacity: 1;
				-webkit-transform: none;
				transform: none;
		}
}

@-webkit-keyframes fadeOutLeft {
		0% {
				opacity: 1;
		}
		100% {
				opacity: 0;
				-webkit-transform: translate3d(-100%, 0, 0);
				transform: translate3d(-100%, 0, 0);
		}
}

@keyframes fadeOutLeft {
		0% {
				opacity: 1;
		}
		100% {
				opacity: 0;
				-webkit-transform: translate3d(-100%, 0, 0);
				transform: translate3d(-100%, 0, 0);
		}
}


@media (max-width: 991px) {
	.flexslider li .meta {
		display: none;
	}
}


/*Nur bei Fullscreen*/
/*.flexslider, .flexslider li {
    height: 100vh;
    background-position: center;
    background-size: cover;
    background-repaet: none;
    display: block;
}*/
