/* body {
  transform: scale(3);
  transform-origin: 0 0;
}
 ----- oder

body { 
    zoom: 3; 
    -moz-transform: scale(3); 
    -moz-transform-origin: 0 0;
} 


@media only screen and (min-width: 2000px) {
body {
  transform: scale(2);
  transform-origin: 0 0;
}
}


*/






.animate__animated {
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-duration: var(--animate-duration);
	animation-duration: var(--animate-duration);
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both
}


@-webkit-keyframes fadeIn {
	0% {
		opacity: 0
	}
	to {
		opacity: 1
	}
}

@keyframes fadeIn {
	0% {
		opacity: 0
	}
	to {
		opacity: 1
	}
}

.animate__fadeIn {
	-webkit-animation-name: fadeIn;
	animation-name: fadeIn
}

@-webkit-keyframes fadeOut {
	0% {
		opacity: 1
	}
	to {
		opacity: 0
	}
}

@keyframes fadeOut {
	0% {
		opacity: 1
	}
	to {
		opacity: 0
	}
}

.animate__fadeOut {
	-webkit-animation-name: fadeOut;
	animation-name: fadeOut
}

.bs_items{
  max-width: 100vw;
  max-height: 20vw;
	padding:1vw;
}

.bs_main{
	height:100vh;
	width: 100vw;
	overflow-x: hidden;
}

.bs_image{
  width: 33%;
	max-width: 46vh;
  float:left;
  object-fit: cover;
  background-size: 240% !important;
	overflow: hidden;
}
.bs_image:after {
    content: "";
    display: block;
    padding-bottom: 100%;
}
.bs_text{
  width: 67%;
  float:left;
  padding-left:15px;
  height: 20%;
}

.bs_title{
  color:#ac3509;
  font-size: 4.2vw;
  margin-bottom: 30px;
  font-weight: bold;
  line-height: 1.2;
}

.bs_excerpt{
  line-height: 1.4;
  color:#000;
  padding-bottom: 25px;
  border-bottom: 1px solid #000;
  margin-bottom: 25px;
  font-size: 2.3vw;
  font-weight: bold;
}

.bs_content{
	font-size:1.9vw;
		height:100vh;    /* hellid 20240416   orig = height:5vh;  */
		font-weight: bold;
}

.bs_weather{
  margin-top:15px;
  width:100%;
  float:left;
	height:13vh;
}

.owl-nav, .owl-dots, .avada-page-titlebar-wrapper{
	display:none;
}

.bs_header{
	background:#ac3509;
	padding:20px;
	justify-content: space-between;
	display:flex;
	align-items: center;
	 max-height: 260px; 
	height: 24vh;

}




/* hellid 20240416 das ist nur für den Monitor in der Backstube */
@media only screen and (min-width: 2000px) { 
	
.bs_image_head img { 
	width: 1300px !important;
}

.bs_header{
	min-height: 400px;  /* hellid 20240416*/
	padding-top: 300px !important;  /* hellid 20240416*/
	padding-bottom: 230px !important;  /* hellid 20240416*/
}

}
	
	


.owl-carousel{
	height:63vh;
	
}

.time{
	color:#fff;
	font-weight: bold;
	font-size:5.1vw;
}
.right_side{
	text-align: right;
}

.clock{
	margin-left: -15px;
}

.mini_heading{
	font-size:1.6vw;
	color:#fff;
}
#boxed-wrapper #main{
	padding:0 !important;
}

@media screen and (max-width: 1030px){
  .bs_image, .bs_text {
    margin-bottom:10%;
    width:100%;
  }
}
