@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400;500;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');

*
{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html, body
{
	line-height: 1.5;
	font-family: 'Raleway', sans-serif;
	font-weight: 400;
	height: 100%;

}

body 
{
	background-color: #323232;
	color: var (--text-color);
}

body.hidden-scrolling
{
	overflow-y: hidden;
}

.wrapper
{
	min-height: 100%;
}

.main
{
	padding-bottom: 60px;
}

.oben
{
	margin-bottom: 80px;
}

.oben1
{
	margin-bottom: -200px;
}

.oben h2
{
	color: white;
	text-align: center;
	font-size: 50px;
	padding-top: 10px;
	margin-top: 150px;
	margin-bottom: 80px;
}

.oben1 h2
{
	color: white;
	text-align: center;
	font-size: 50px;
	padding-top: 10px;
	margin-top: 150px;
	margin-bottom: 80px;
}

.oben h3
{
	color: white;
	text-align: center;
	font-size: 50px;
	margin-top: -50px;
}

.oben p
{
	text-align: center;
	font-size: 20px;
	margin: 0 30px;
}

.oben a
{
	font-weight: bold;
}

.container
{
	max-width: 1170px;
	margin:auto;
}

ul
{
	list-style: none;
	margin:0;
	padding:0;
}

a
{
	text-decoration: none;
}

/*header*/
.header
{
	position: absolute;
	width: 100%;
	left:0;
	top:0;
	z-index: 99;
	padding: 15px;
}

.header-main
{
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 0;
	border-radius: 4px;
}

.logo
{
	width: 50px;
	height: 50px;
	background: url("../img/51.png");
	background-repeat: no-repeat;
	background-size: cover;
	float: left;
	margin-right: 10px;
}

.header .name
{
	padding: 0 15px;
}

.header .name a
{
	color: white;
	font-size: 30px;
	text-transform: capitalize;
	font-weight: 600;
}

.header .nav-menu
{
	padding: 0 15px;
}

.header .menu > .menu-item
{
	display: inline-block;
	margin-left: 30px;
	position: relative;
}

.header .menu > .menu-item > a
{
	color: white;
	display: block;
	padding: 12px 0;
	font-size: 16px;
	text-transform: capitalize;
	font-weight: 600;
	transition: all 0.3s ease;
}

.header .menu > .menu-item > a .plus
{
	display: inline-block;
	height: 12px;
	width: 12px;
	position: relative;
	margin-left: 5px; 
	pointer-events: none;
}

.header .menu > .menu-item > a .plus:before,
.header .menu > .menu-item > a .plus:after
{
	background-color: white;
	content:'';
	position: absolute;
	box-sizing: border-box;
	left: 50%;
	top:50%;
	height: 2px;
	width: 100%;
	transform: translate(-50%,-50%);
	transition: all 0.3s ease;
}

.header .menu > .menu-item > a .plus:after
{
   transform: translate(-50%,-50%) rotate(-90deg);	
}

.header .menu > .menu-item > .sub-menu
{
	background-color: #323232;
	border-top: 3px solid #FA8072;
	box-shadow: 0 0 10px rgba(0,0,0,0.2);
	width: 140px;
	position: absolute;
	left: 0;
	top: 100%;
	transform: translateY(10px);
	transition: all 0.3s ease;
	opacity: 0;
	visibility: hidden;
}

@media(min-width: 1010px)
{

.header .menu > .menu-item-has-children:hover > .sub-menu
{
	transform: translateY(0);
	opacity: 1;
	visibility: visible;
}

.header .menu > .menu-item-has-children:hover > a .plus:after
{
    transform: translate(-50%,-50%) rotate(0deg);		
}
}

.header .menu > .menu-item > .sub-menu > .menu-item > a:hover,
.header .menu > .menu-item:hover > a
{
	color: #FA8072;
}
.header .menu > .menu-item:hover > a .plus:before,
.header .menu > .menu-item:hover > a .plus:after
{
   background-color: #FA8072;
}

.header .menu > .menu-item > .sub-menu > .menu-item
{
	display: block;
}

.header .menu > .menu-item > .sub-menu > .menu-item > a
{
	color: white;
	display: block;
	padding-top: 10px;
	padding-bottom: 5px;
	padding-left: 10px;
	font-size: 16px;
	font-weight: 600;
	transition: all 0.3s ease;
	text-transform: capitalize;
}

.header .open-nav-menu
{
	height: 34px;
	width: 40px;
	margin-right: 15px;
	display: none;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

.header .open-nav-menu span
{
	color: #FA8072;
	display: block;
	height: 3px;
	width: 24px;
	background-color: white;
    position: relative;
}

.header .open-nav-menu span:before,
.header .open-nav-menu span:after
{
	content: '';
	position: absolute;
	left:0;
	width: 100%;
	height: 100%;
	background-color: white;
	box-sizing: border-box;
}

.header .open-nav-menu span:before
{
	top: -7px;
}

.header .open-nav-menu span:after
{
	top: 7px;
}

.header .close-nav-menu
{
	height: 40px;
	width: 40px;
	background-color: white;
	margin-right: 15px;
	cursor: pointer;
	display: none;
	align-items: center;
	justify-content: center;
}

.header .close-nav-menu img
{
	width: 16px;
}

.header .menu-overlay
{
	position: fixed;
	z-index: 999;
	background-color: rgba(0,0,0,0.5);
	left:0;
	top:0;
	height: 100%;
	width: 100%;
	visibility: hidden;
	opacity:0;
	transition: all 0.3s ease;
}

/*allgemeiner Text Style*/
.text
{
	font-size: 16px;
	font-weight: 300;
	letter-spacing: 1px;
}

/*home-section*/
.content
{
	min-height: 100%;
}

.bg
{
	background-image: url("../img/Holzbretter.jpg");
	height: 120vh;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

.typewrite
{
	color: #FA8072;
}

.Vorstellung
{
	margin-top: 350px;
	right: 0;
	position: absolute;
	margin-right: 200px;
}

h4
{
	color: white;
	font-size: 80px;
}

h5
{
	color: white;
	font-size: 30px;
}

h6
{
	color: white;
	letter-spacing: 1px;
	font-size: 30px;
}

.autoslide
{
	width: 600px;
    position: absolute;
    transform: translate(-50%,-50%);
    top: 480px;
    left: 30%;
    overflow: hidden;
    border: 4px solid #ffffff;
	border-radius: 10px;
}

.Bilder
{
	width: 100%;
    display: flex;
    animation: slide 16s infinite;
}

.Bilder img
{
	width: 100%;
}

@keyframes slide
{
    0%
	{
        transform: translateX(0);
    }
    25%
	{
        transform: translateX(0);
    }
    30%
	{
        transform: translateX(-100%);
    }
    50%
	{
        transform: translateX(-100%);
    }
    55%
	{
        transform: translateX(-200%);
    }
    75%
	{
        transform: translateX(-200%);
    }
    80%
	{
        transform: translateX(-300%);
    }
    100%
	{
        transform: translateX(-300%);
    }
}

.HomeScreenText
{
	color: white;
	top: 80%;
	left: 23%;
    float: left;
	position: absolute;
}

/*Anfahrt*/
.arrive
{
	margin-top: 150px;
	margin-bottom: 50px;
}

.arrive h2
{
	text-align: center;
	font-size: 50px;
	padding-bottom: 50px;
	padding-top: 10px;
}

/*Mietbedingungen*/
.mietbedingungen p
{
	color: white;
	font-size: 17px;
	margin: 20px auto; 
}

.mietbedingungen li
{
	color: white;
	font-size: 20px;
	width: 60%;
	margin: 20px auto; 
	align-items: left;
	justify-content: left;
	list-style: none;
}

.mietbedingungen h1
{
	color: white;
	font-size: 25px;
	padding-bottom: 10px;
	width: 60%;
	margin: 1em auto; 
	display: flex;
	align-items: left;
	justify-content: left;
}

.mietbedingungen .link
{
	color: white;
	text-decoration: underline;
}

.mietbedingungen .link:hover
{
  	color: #1f55ac;
}

/*Ferienhaus*/
.Ferienhaus p
{
	color: white;
	font-size: 20px;
	width: 60%;
	margin: 20px auto; 
	align-items: left;
	justify-content: left;
}

.Ferienhaus img
{
	display: block;
	margin-left: auto;
	margin-right: auto;
	width: 100%;
	max-width: 1000px;
}

.Ferienhaus2 img
{
	display: block;
	align-items: center;
	width: 100%;
	max-width: 800px;
}

/*Kontakt*/
.contact
{
	margin-top: 200px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.contact-info
{
	display: flex;
	width: 100%;
	max-width: 1200px;
	align-items: center;
	justify-content: center;
	padding: 0 20px;
}

.card
{
	padding: 0 20px;
	margin: 0 10px;
	width: calc(33% - 20px);
	height: 200px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	cursor: pointer;
}

.fa-brands
{
	font-size: 28px;
	background: black;
	width: 60px;
	height: 60px;
	text-align: center;
	line-height: 60px !important;
	border-radius: 50%;
	transition: 0.3s linear;
	color: black;
}

.card:hover .fa-brands
{
	background: none;
	color: white;
	transform: scale(1.6);
}

.fa-solid
{
	font-size: 28px;
	background: #FA8072;
	width: 60px;
	height: 60px;
	text-align: center;
	line-height: 60px !important;
	border-radius: 50%;
	transition: 0.3s linear;
	color: black;
}

.card:hover .fa-solid
{
	background: none;
	color: #FA8072;
	transform: scale(1.6);
}

.card a
{
	color: white;
	margin-top: 20px;
	font-weight: 300;
	letter-spacing: 2px;
	max-height: 0;
	opacity: 0;
	transition: 0.3s linear;
	text-decoration: none;
}

.card:hover a
{
	max-height: 40px;
	opacity: 1;
}

summary 
{
	background-color: white;
	font-size: 20px;
	font-weight: 600;
	padding: 15px;
	margin-bottom: 20px;
	margin-left: 80px;
	margin-right: 80px;
	border-radius: 15px;
	text-align: left;
	cursor: pointer;
	position: relative;
}

.faq__content
{
	color: white;
	padding-left: 40px;
	padding-right: 40px;
	margin-bottom: 30px;
	margin-top: 30px;
	margin-left: 80px;
	margin-right: 80px;
	font-size: 20px;
}

details > summary::after 
{
	position: absolute;
	content: "+";
	right: 20px;
}

details[open] > summary::after 
{
	position: absolute;
	content: "-";
	right: 20px;
}

details > summary::-webkit-details-marker 
{
	display: none;
}

/*Bilder*/
.slider img
{
	width: 100%;
	max-width: 1200px;
}

/*.body3
{
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: -50px;
}

.wrap
{
	max-width: 1100px;
}

.wrap2
{
	margin-top: 60px;
	max-width: 1100px;
}

.gallery
{
	display: flex;
	flex-wrap: wrap;
}

.gallery .image
{
	padding: 7px;
	width: calc(100% / 3);
}

.gallery .image span
{
	display: flex;
	width: 100%;
	overflow: hidden;
}

.gallery .image img
{
	width: 100%;
	vertical-align: middle;
	transition: all 0.3s ease;
}

.gallery .image:hover img
{
	transform: scale(1.1);
}

.preview-box
{
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) scale(0.9);
	background: #fff;
	max-width: 700px;
	width: 100%;
	z-index: 5;
	opacity: 0;
	pointer-events: none;
	border-radius: 10px;
	padding: 0 5px 5px 5px;
	box-shadow: 0px 0px 15px rgba(0,0,0,0.2);
}

.preview-box.show
{
	opacity: 1;
	pointer-events: auto;
	transform: translate(-50%, -50%) scale(1);
	transition: all 0.3s ease;
}

.preview-box .details
{
	display: flex;
	align-items: center;
	padding: 12px 15px 12px 10px;
	justify-content: space-between;
}

.preview-box .details .title
{
	display: flex;
	font-size: 18px;
	font-weight: 400;
	color: black;
}

.details .title p
{
	margin: 0 5px;
}

.details .title p.current-img
{
	font-weight: 500;
}

.details .icon
{
	color: #007bff;
	font-size: 20px;
	cursor: pointer;
}

.preview-box .image-box
{
	display: flex;
	width: 100%;
	position: relative;
}

.image-box .slide
{
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	color: #fff;
	font-size: 30px;
	cursor: pointer;
	height: 50px;
	width: 60px;
	line-height: 50px;
	text-align: center;
	border-radius: 3px;
}

.slide.prev
{
	left: 0px;
}

.slide.next
{
	right: 0px;
}

.image-box img
{
	width: 100%;
	border-radius: 0 0 3px 3px;
}

.shadow
{
	position: fixed;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: 2;
	display: none;
	background: rgba(0,0,0,0.45);
}
*/

.images
{
	width: 100%;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 50px 8%;
	margin-top: -50px;
}

.imagesdirekt
{
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	grid-gap: 20px;
}

.imagesdirekt img
{
	width: 100%;
}

.slider img
{
	width: 100%;
	max-width: 1200px;
}

/*Preise*/
.preise li
{
	color: white;
	font-size: 20px;
	width: 60%;
	margin: 20px auto; 
	align-items: left;
	justify-content: left;
	list-style: none;
}

.preise li a
{
	color: white;
	text-decoration: underline;
}

.preise p
{
	color: white;
	font-size: 18px;
	width: 60%;
	margin: 20px auto; 
	align-items: left;
	justify-content: left;
	list-style: none;
	font-style: italic;
}

.preise h1
{
	color: white;
	font-size: 25px;
	padding-bottom: 10px;
	width: 60%;
	margin: 1em auto; 
	display: flex;
	align-items: left;
	justify-content: left;
}

.preise h2
{
	color: white;
	text-align: center;
	font-size: 30px;
	padding-bottom: 30px;
	padding-top: 30px;
}

table 
{
	border-collapse: separate;
	border-spacing: 4px;
	text-align: center;
	margin-left: auto;
	margin-right: auto;
}
  
th, td 
{
	color: white;
	padding: 4px 10px;
	border-radius: 2px;
	font-size: 20px;
} 

td 
{
	font-style: italic;
	text-align: right;
	box-shadow: inset 1px 3px 5px -3px rgba(0,0,0,.5);
}   

td:empty
{
  	box-shadow: none;
}

tbody td:hover, tfoot td:hover 
{ 
  	background-color: #FA8072; 
	color: black;
}

/*Impressum*/
.impressum li
{
	color: white;
	font-size: 20px;
	width: 80%;
	margin: 20px auto; 
	align-items: left;
	justify-content: left;
}

.impressum p
{
	color: white;
	font-size: 20px;
	width: 80%;
	margin: 20px auto; 
	align-items: left;
	justify-content: left;
}

.impressum h1
{
	color: white;
	font-size: 25px;
	padding-bottom: 10px;
	width: 80%;
	margin: 25px auto; 
	display: flex;
	align-items: left;
	justify-content: left;
}

.impressum h2
{
	color: white;
	text-align: center;
	font-size: 30px;
	padding-bottom: 30px;
	padding-top: 30px;
}

 /*Fußzeile*/
.footer 
{
	background-color: white;
	position: relative;
	padding: 20px;
	display: flex;
	justify-content: space-between;
	align-items: center; 
	height: 40px;
	clear: both;
}

.footer ul
{
	display: flex;
	justify-content: center;
	align-items: center;
}

.footer ul a
{
	color: black;
	margin-right: 10px;
}

/*responsive*/
@media(max-width: 1140px)
{
	.header .menu-overlay.active
	{
		visibility: visible;
		opacity: 1;
}

	.header .nav-menu
	{
		position: fixed;
		right: -280px;
		visibility: hidden;
		width: 280px;
		height: 100%;
		top:0;
		overflow-y: auto;
		background-color: #222222;
		z-index: 1000;
		padding: 15px 0;
		transition: all 0.5s ease;
	}
	
	.header .nav-menu1
	{
		position: fixed;
		right: -280px;
		visibility: hidden;
		width: 280px;
		height: 100%;
		top:0;
		overflow-y: auto;
		background-color: #222222;
		z-index: 1000;
		padding: 15px 0;
		transition: all 0.5s ease;
	}

	.header .nav-menu.open
	{
		visibility: visible;
		right: 0px;
	}

	.header .menu > .menu-item
	{
		display: block;
		margin:0;
	}
	
	.header .menu > .menu-item1
	{
		display: block;
		margin:0;
	}

	.header .menu > .menu-item-has-children > a
	{
		display: flex;
		justify-content: space-between;
		align-items: center;
	}

	.header .menu > .menu-item > a
	{
		color: #ffffff;
		padding: 12px 15px;
	}
	
	.header .menu > .menu-item1 > a
	{
		color: #ffffff;
		padding: 12px 15px;
	}
	
	.header .menu > .menu-item > a .plus:before, 
	.header .menu > .menu-item > a .plus:after
	{
		background-color: #ffffff;
	}
	
	.header .menu > .menu-item1 > a .plus:before, 
	.header .menu > .menu-item1 > a .plus:after
	{
		background-color: #ffffff;
	}

	.header .menu > .menu-item-has-children.active > a .plus:after
	{
        transform: translate(-50%,-50%) rotate(0deg);
	}

	.header .menu > .menu-item > .sub-menu
	{
		width: 100%;
		position: relative;
		opacity: 1;
		visibility: visible;
		border:none;
		background-color: transparent;
		box-shadow: none;
		transform: translateY(0px);
		padding: 0px;
		left: auto;
		top: auto;
		max-height: 0;
		overflow: hidden;
	}
	
	.header .menu > .menu-item1 > .sub-menu
	{
		width: 100%;
		position: relative;
		opacity: 1;
		visibility: visible;
		border:none;
		background-color: transparent;
		box-shadow: none;
		transform: translateY(0px);
		padding: 0px;
		left: auto;
		top:auto;
		max-height: 0;
		overflow: hidden;
	}

	.header .menu > .menu-item > .sub-menu > .menu-item > a
	{
		padding: 12px 45px;
		color: #ffffff;
		border-bottom: 1px solid #333333;
	}
	
	.header .menu > .menu-item1 > .sub-menu > .menu-item1 > a
	{
		padding: 12px 45px;
		color: #ffffff;
		border-bottom: 1px solid #333333;
	}

	.header .close-nav-menu,
	.header .open-nav-menu
	{
		display: flex;
	}
}

@media screen and (max-width: 1600px) 
{
	.box 
	{
		flex-direction: column;
	}
	
	.box section 
	{
		margin-right: 0;
	}
	
	.box section p
	{
		margin: 0 50px;	
	}
	
	.box section img
	{
		display: block; 
		margin: auto;
		margin-bottom: 50px;
		width: 600px;
		height: 600px;
	}
}

@media screen and (max-width: 1050px) 
{
	.oben h2
	{
		font-size: 40px;
	}
	
	.oben p
	{
		font-size: 18px;
	}
	
	.impressum p 
	{
		font-size: 18px;
	}
	
	.impressum li 
	{
		font-size: 18px;
	}
	
	.impressum h1 
	{
		font-size: 22px;
	}
}

@media screen and (max-width: 450px) 
{
	.oben h2
	{
		font-size: 30px;
	}
	
	.oben p
	{
		font-size: 16px;
	}
	
	.impressum p 
	{
		font-size: 16px;
	}
	
	.impressum li 
	{
		font-size: 16px;
	}
	
	.impressum h1 
	{
		font-size: 20px;
	}
}

@media screen and (max-width: 1010px) 
{
	.contact2
	{
		margin-top: 100px;
	}
	
	.contact-info
	{
		flex-direction: column;
		margin-top: -100px;
	}
	
	.card
	{
		width: 100%;
		max-width: 300px;
		margin: 10px 0;
	}
	
	.preise li
	{
		font-size: 19px;
		
	}
	
	.preise p
	{
		font-size: 19px;
		
	}
}

@media screen and (max-width:800px) 
{
	.box section img
	{
		display: block; 
		margin: auto;
		margin-bottom: 50px;
		width: 500px;
		height: 500px;
	}
	
	.box section p
	{
		font-size: 18px;	
	}

	summary 
	{
		margin-left: 20px;
		margin-right: 20px;
		font-size: 18px;
	}

	.faq__content
	{
		font-size: 18px;
		margin-left: 10px;
		margin-right: 10px;
	}
}

@media screen and (max-width:480px) 
{
	summary 
	{
		margin-left: 20px;
		margin-right: 20px;
		font-size: 15px;
	}

	.faq__content
	{
		font-size: 15px;
		margin-left: 10px;
		margin-right: 10px;
	}
}

@media screen and (max-width:620px) 
{
	.box section img
	{
		display: block; 
		margin: auto;
		margin-bottom: 50px;
		width: 400px;
		height: 400px;
	}
	
	.box section p
	{
		font-size: 17px;	
	}
	
	.preise li
	{
		font-size: 17px;
	}
	
	.preise p
	{
		font-size: 17px;
	}
	
	th, td
	{
		font-size: 17px;
	}
	
	.table-scrollable
	{
		margin-bottom: -50px;
	}
}

@media screen and (max-width:500px) 
{
	.box section p
	{
		margin: 0 20px;	
	}
}

@media screen and (max-width:440px) 
{
	.box section img
	{
		display: block; 
		margin: auto;
		margin-bottom: 50px;
		width: 300px;
		height: 300px;
	}
	
	.box section p
	{
		font-size: 15px;	
	}
}

@media screen and (max-width: 1650px) 
{
	.Vorstellung
	{
		margin-top: 310px;
	}	
	
	.autoslide
	{
		width: 500px;
		top: 420px;
	}
	
	h4
	{
		font-size: 70px;
	}
	
	h5
	{
		font-size: 25px;
	}
	
	h6
	{
		font-size: 25px;
	}
	
	.Button
	{
		width: 120px;
		top: 680px;
	}
	
	.Button1
	{
		width: 120px;
		top: 680px;
	}
}

@media screen and (max-width: 1500px) 
{
	.Vorstellung
	{
		margin-right: 100px;
	}
}

@media screen and (max-width: 1340px) 
{
	.Vorstellung
	{
		margin-top: 330px;
		margin-right: 50px;
	}
	
	.autoslide
	{
		width: 420px;
	}
	
	h4
	{
		font-size: 65px;
	}
	
	h5
	{
		font-size: 20px;
	}
	
	h6
	{
		font-size: 20px;
	}
	
	.Button
	{
		width: 100px;
		top: 660px;
	}
	
	.Button a 
	{
		font-size: 18px;
	}
	
	.Button1
	{
		width: 100px;
		top: 660px;
	}
	
	.Button1 a 
	{
		font-size: 18px;
	}
}

@media screen and (max-width: 1100px) 
{	
	.Vorstellung
	{
		top: 170px;
		width: 100%;
		margin: auto; 
		text-align: center;
	}
	
	h4
	{
		font-size: 50px;
	}
	
	h5
	{
		font-size: 18px;
	}
	
	h6
	{
		font-size: 18px;
	}
	
	.autoslide
	{
		top: 500px;
		left: 50%;
		width: 500px;
		position: relative;
	}
	
	.Button
	{
		top: 330px;
		left: 50%;
		width: 100px;
		margin-left: 0px;
		margin-bottom: 10px;
		position: relative;
	}
	
	.Button1
	{
		top: 330px;
		left: 50%;
		width: 100px;
		margin-left: 0px;
		position: relative;
	}
}

@media screen and (max-width: 560px) 
{
	.autoslide
	{
		top: 460px;
		width: 400px;
	}
}

@media screen and (max-width: 410px) 
{
	.header .name a
	{
		font-size: 20px;
	}
	.header .name1 a
	{
		font-size: 20px;
	}
	
	.logo,
	.logo1
	{
		width: 30px;
		height: 30px;
	}
	
	.autoslide
	{
		top: 430px;
		width: 300px;
	}
	
	h4
	{
		font-size: 45px;
	}
	
	h5
	{
		font-size: 18px;
	}
	
	h6
	{
		font-size: 18px;
	}
	
	.Button
	{
		width: 100px;
		top: 330px;
	}
	
	.Button a 
	{
		font-size: 15px;
	}
	
	.Button1
	{
		width: 100px;
		top: 330px;
	}
	
	.Button1 a 
	{
		font-size: 15px;
	}
}

@media screen and (max-width: 330px) 
{
	.header .name a
	{
		font-size: 20px;
	}
	
	.logo
	{
		width: 30px;
		height: 30px;
	}
	
	.autoslide
	{
		top: 400px;
		width: 250px;
	}
	
	h4
	{
		font-size: 38px;
	}
	
	h5
	{
		font-size: 16px;
	}
	
	h6
	{
		font-size: 16px;
	}
	
	.Button
	{
		width: 100px;
		top: 310px;
	}
	
	.Button a 
	{
		font-size: 15px;
	}
	
	.Button1
	{
		width: 100px;
		top: 310px;
	}
	
	.Button1 a 
	{
		font-size: 15px;
	}
}

@media screen and (max-width: 290px) 
{
	.header .name a
	{
		font-size: 16px;
	}
	
	.logo
	{
		width: 25px;
		height: 25px;
	}
}

@media screen and (max-width: 740px) 
{
	.text
	{
		font-size: 12px;
	}
	
	.footer ul a
	{
		font-size: 12px;
	}
}

@media screen and (max-width: 580px) 
{
	.text
	{
		font-size: 11px;
	}
	
	.footer ul a
	{
		font-size: 11px;
	}
}

@media screen and (max-width: 450px) 
{
	.text
	{
		font-size: 9px;
	}
}

@media(max-width: 1000px)
{
	.gallery .image
	{
		width: calc(100% / 2);
	}
}

@media(max-width: 600px)
{
	.gallery .image
	{
		width: 100%;
		padding: 10px;
	}
}

@media only screen and (max-width: 1050px) 
{
	.impressum {margin-top: -50px}
}

@media screen and (max-width: 620px) 
{
	/*falls ich die Preise ohne Schieber einbauen möchte*/
	/*caption, tr, th, td 
	{
		display: block;
	}
	
	tr
	{
		padding: 5px;
	}

	th 
	{
		padding: 5px;
	}
	
	td 
	{
		padding: 5px;
	}*/

	.table-scrollable 
	{
		width: 100%;
		overflow-y: auto;
	}
	
	.table-scrollable::-webkit-scrollbar 
	{
		-webkit-appearance: none;
		width: 14px;
		height: 14px;
	}
	
	.table-scrollable::-webkit-scrollbar-thumb 
	{
		border-radius: 8px;
		border: 3px solid #fff;
		background-color: rgba(0, 0, 0, .3);
	}
}
