
/* responsive iframes */

.embed-container {
	position: relative; 
	padding-bottom: 56.25%; /* ratio 16x9 */
	height: 0; 
	overflow: hidden; 
	width: 100%;
	height: auto;
	}
	
	.embed-container iframe {
	position: absolute; 
	top: 0; 
	left: 0; 
	width: 100%; 
	height: 100%; 
	}
	
	/* ratio 4x3 */
	.embed-container.ratio4x3 {
	  padding-bottom: 75%;
	}
	
/* Scroll to Top Button */

#myBtn {
	display: none;
	position: fixed;
	bottom: 20px;
	right: 30px;
	z-index: 99;
	font-size: 18px;
	border: none;
	outline: none;
	background-color: red;
	color: white;
	cursor: pointer;
	padding: 15px;
	border-radius: 4px;
  }
  
  #myBtn:hover {
	background-color: #555;
  }

  .h5, h5 {
    font-size: 0.85rem;
}
  
/** Kleine Monitore: Inhalte sequentiell **/

top-header{
    display: block;
    height: 40px;
    font-size: 17px;
}

header{
    height: 80px;
    width: 100vw;
    background: rgb(255,255,255);
    background: linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 43%, rgba(50,50,122,1) 100%);
}

.navbar-brand{
    max-width: 70px;
}
header img{
	height: auto;
	max-width: 100%;
}

.wetter{
	height: auto;

}

.bg-body-tertiary{
    --bs-bg-opacity: 0!important;
    background-color: rgba(var(--bs-tertiary-bg-rgb),var(--bs-bg-opacity))!important;}

.Ueberschrift{
	font-size: 16px;
    font-weight: bold;
    margin-left: 20px;
}

.blocked {
	text-align: justify;
	text-align-last: none;
}

footer .nav-item a{
	font-size: small;
}

footer .nav-item svg{
	width: 12px;
	height: 12px;
}

footer .text-body-secondary{
	font-size: 12px;
}

.flex { 
    display: flex; 
    justify-content: center; 
    align-items: center;
}

.colorblue{
    color: #6ec1e4;
}

.b-example-divider {
    height: 1rem;
}

.button{
	border: none;
	background-color: #6ec1e4;
	color: white;
	font-size: 15px;
	padding: 10px 20px;
	border-radius: 5px;
	width: 150px;
}

.airtaxi{
	width: 250px;
}

.airbook{
	background-color: #97178A;
}
.buchen{
	border: none;
	background-color: #61ce70;
	color: white;
	font-size: 15px;
	padding: 10px 20px;
	border-radius: 5px;
	width: 150px;
}

.buchen:hover{
	background-color: #2b6cb0;
}

.parent{
	width: 100%;
	display: grid;
	grid-template-columns: repeat(auto-fit, 300px);
	gap: 20px;
	justify-content: center;
}

.child{
	width: 300px;
}

.parent1{
	width: 100%;
	display: grid;
	grid-template-columns: repeat(auto-fit, 150px);
	gap: 20px;
	justify-content: center;
}

.child1{
	width: 120px;
}

/*Hier kommt der Code für die Lightbox rein*/

/* Style the Image Used to Trigger the Modal */
#myImg {
	border-radius: 5px;
	cursor: pointer;
	transition: 0.3s;
  }
  
  #myImg:hover {opacity: 0.7;}
  
  /* The Modal (background) */
  .modal {
	display: none; /* Hidden by default */
	position: fixed; /* Stay in place */
	z-index: 1; /* Sit on top */
	padding-top: 100px; /* Location of the box */
	left: 0;
	top: 0;
	width: 100%; /* Full width */
	height: 100%; /* Full height */
	overflow: auto; /* Enable scroll if needed */
	background-color: rgb(0,0,0); /* Fallback color */
	background-color: rgba(0,0,0,0.9); /* Black w/ opacity */
  }
  
  /* Modal Content (Image) */
  .modal-content {
	margin: auto;
	display: block;
	width: 80%;
	max-width: 700px;
  }
  
  /* Caption of Modal Image (Image Text) - Same Width as the Image */
  #caption {
	margin: auto;
	display: block;
	width: 80%;
	max-width: 700px;
	text-align: center;
	color: #ccc;
	padding: 10px 0;
   /* height: 150px;*/
  }
  
  /* Add Animation - Zoom in the Modal */
  .modal-content, #caption {
	animation-name: zoom;
	animation-duration: 0.6s;
  }
  
  @keyframes zoom {
	from {transform:scale(0)}
	to {transform:scale(1)}
  }
  
  /* The Close Button */
  .close {
	position: absolute;
	top: 15px;
	right: 35px;
	color: #f1f1f1;
	font-size: 40px;
	font-weight: bold;
	transition: 0.3s;
  }
  
  .close:hover,
  .close:focus {
	color: #bbb;
	text-decoration: none;
	cursor: pointer;
  }
  
  /*  Next & previous buttons */
  
    .prev, .next {
	cursor: pointer;
	position: absolute;
	top: 50%;
	width: auto;
	padding: 16px;
	margin-top: -50px;
	color: white;
	font-weight: bold;
	font-size: 20px;
	transition: 0.6s ease;
	border-radius: 0 3px 3px 0;
	user-select: none;
	-webkit-user-select: none;
  }
  
    /* Position the "next button" to the right */
  .next {
	right: 0;
	border-radius: 3px 0 0 3px;
  }
  
  .prev {
   left:0
  }
  
  /* On hover, add a black background color with a little bit see-through */
  .prev:hover, .next:hover {
	background-color: rgba(0,0,0,0.8);
  }
  
  /* Number text (1/3 etc) */
  .numbertext {
	color: #f2f2f2;
	font-size: 12px;
	padding: 8px 12px;
	position: absolute;
	top: 0;
  }
  
  /* Container for image text */
  .caption-container {
	text-align: center;
	background-color: black;
	padding: 2px 16px;
	color: white;
  }
  
  .row:after {
	content: "";
	display: table;
	clear: both;
  }
  
  /* Six columns side by side */
  .column {
	float: left;
	margin-right:10px;
	max-width: 16.66%;
	overflow:hidden;
  }
  
  /* Add a transparency effect for thumnbail images */
  .demo {
	opacity: 0.6;
  }
  
  .active,
  .demo:hover {
	opacity: 1;
  }

/*Lightbox Ende*/

/** Mittelgroße Monitore: Inhalte in zwei Spalten **/
@media (min-width: 720px) {

	header{
		height: 100px;
	}
	
	.navbar-brand{
		max-width: 100px;
	}

	.Ueberschrift{
		font-size: 21px;
	}

	footer .nav-item a{
		font-size: larger;
	}
	
	footer .nav-item svg{
		width: 24px;
		height: 24px;
	}
	
	footer .text-body-secondary{
		font-size: 15px;
	}
}

/** Mittelgroße Monitore: Inhalte in drei Spalten **/
@media (min-width: 992px) {

	header{
		height: 150px;
	}
	
	.navbar-brand{
		max-width: 170px;
	}

	.Ueberschrift{
		font-size: 40px;
	}

	.navbar-expand-lg {
        flex-direction: column;
    }

}

/** Große Monitore: Inhalte in drei Spalten **/
@media (min-width: 1400px) {

	header{
		height: 150px;
	}

	.wetter{
		height: auto;
		width: 80%;
	}
	
	.navbar-brand{
		max-width: 170px;
	}

	.Ueberschrift{
		font-size: 36px;
		line-height: 115px;
	}

	.navbar-nav{
		font-size: 20px;
	}

	.nav-item{
		padding-right: 25px;
	}

	.nav-item:hover{
		box-shadow: 0px 2px 8px #6ec1e4;
	}

	footer{
		margin-top: 45px;
	}

	footer .nav-item svg{
		width: 48px;
		height: 48px;
	}

	footer .nav-item a{
		font-size: 25px;
	}

}

/*   Ab hier beginnen die Einstellungen für den Slider*/
/* Container DIV - automatically generated */
.simply-scroll-container { 
	position: relative;
}

/* Clip DIV - automatically generated */
.simply-scroll-clip { 
	position: relative;
	overflow: hidden;
}

/* UL/OL/DIV - the element that simplyScroll is inited on
Class name automatically added to element */
.simply-scroll-list { 
	overflow: hidden;
	margin: 0;
	padding: 0;
	list-style: none;
}
	
.simply-scroll-list li {
	padding: 0;
	margin: 0;
	list-style: none;
}
	
.simply-scroll-list li img {
	border: none;
	display: block;
}

/* Custom class modifications - adds to / overrides above

.simply-scroll is default base class */

/* Container DIV */
.simply-scroll { 
	width: 100%;
	height: 200px;
	margin-bottom: 1em;
}

/* Clip DIV */
.simply-scroll .simply-scroll-clip {
	width:100%;
	height: 200px;
}
	
/* Explicitly set height/width of each list item */	
.simply-scroll .simply-scroll-list li {
	float: left; /* Horizontal scroll only */
	width: 290px;
	height: 200px;
}