@charset "utf-8";

/* # LEER #.CSS */
/* letzte Aenderung am 3.9.2022 um 20:00 Uhr CC*/

/* ~ iPhone8 plus: 414 x 736 ---------------- 1 -- */
@media only screen and (min-width: 380px) and (max-width: 991px) {
.box-voll {}
.karte {
	width: 100%;
	margin-bottom: 40px;
	}
.karte-gross {
	width: 100%;
	border-radius: 0px;
	}
}

/* ~ Huawei P20: 360 x 760px ---------------- 2 -- */
@media only screen and (min-width: 331px) and (max-width : 379px) {
.box-voll {}
.karte {
	width: 100%;
	margin-bottom: 40px;
	}
.karte-gross {
	width: 100%;
	border-radius: 0px;
	}
}

/* ~ iPhone SE und 5s: 320 x 568 ------------ 3 -- */
@media only screen and (max-width : 330px) {
.box-voll {}
.karte {
	width: 100%;
	margin-bottom: 40px;
	}
.karte-gross {
	width: 100%;
	border-radius: 0px;
	}
}

/* ~ Tablet --------------------------------- 4 -- */
/* Pre-Design: 1112px, (iPad Pro) */
@media only screen and (min-width: 992px) and (max-width : 1499px) {
.box-voll {
	width: 100%;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	column-gap: 30px;
	row-gap: 40px;
	}
.karte {
	height: 280px;
	width: auto;
	border-radius: 20px;
	}
.karte-gross {
	width: 560px;
	border-radius: 25px;
	}
}

/* ~ Desktop -------------------------------- 5 -- */
/* 3 Spalten, Pull-Down-Menü */
/* Pre-Design: 1680px (mein Bildschirm) */
@media only screen and (min-width: 1500px) and (max-width: 1919px) {
.box-voll {
	width: 100%;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	column-gap: 40px;
	row-gap: 50px;
	}
.karte {
	height: 300px;
	weidth: auto;
	border-radius: 20px;
	}
.karte-gross {
	width: 600px;
	border-radius: 30px;
	}
}
	
/* ~ Widescreen ----------------------------- 6 -- */
/* Menü-Zeile, fixes Layout */
/* Heike: HD = 1920x1080px */
@media (min-width: 1920px) {
.box-voll {
	width: 100%;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	column-gap: 40px;
	row-gap: 40px;
	}
.karte {
	height: 420px;
	width: auto;
	border-radius: 25px;
	}
.karte-gross {
	width: 840px;
	border-radius: 30px;
	}
}