
/* CSS Document */

 /* Allgmein */


body{
			max-width: 1200px;
			margin: 5px 15px;
        hyphens: auto;
			background-image: url("../images/fabric_bg.png");
				color: #595959;
				font: normal 14px/20px Arial, Helvetica, sans-serif;
	
	}


@media screen and (min-width: 750px){
		body{
			display: grid;
			grid-template-columns: 1fr 3fr;
			grid-template-rows: auto auto auto auto;
			grid-gap: 2em 3em;
	
	}}

@media screen and (min-width: 1200px) {
	body {
		margin: auto;
}}

/* Überschriften */
		
		h1, h2, h3, h4, h5, h6 {
  font-family: "Lucida Grande", "Lucida Sans Unicode", Arial, Verdana, sans-serif;
			font-weight: normal;
}
		h1, h2, h3 {
			text-transform: uppercase;
		
		}

h1 {
	font-size: 26px;
	line-height: 1.3em;
}
		
 h3 {
			text-transform: uppercase;
			color: #E287AA;
			 margin-top: 0px;
			 font-weight: bold;
		}
		
h4 {
			font-size: 1.5em;
		}
		

/* Links */
a {
				color: #E287AA;
text-decoration: none;
		}

/* Horizontale Linie */

hr {
	margin: 50px 0px;
      border-top: 1px solid #595959;
	border-left: 0;
		border-right: 0;
		border-bottom: 0;
}


/* Listenpunkte */

ul.check > li {
  padding: 2px 0 2px 0px;
  background-position: 0 0;
  background-repeat: no-repeat;
}

ul.check >  li::marker  { 
	font-size:3em;
}

ul.unterpunkte {
list-style-image: none
		
}
ul.check {
    list-style-image:url("../images/Icons/check_rose.svg");
		
}


/* Titelbild */

.titelbild {
	width: 100%; 
	border-radius: 10px; 
}

@media screen and (max-width: 749px) {
	.titelbild {
	margin-bottom: 30px;
	}}


/* Grid */

@media screen and (min-width: 750px) {
		.grid {
			display: grid;
			grid-template-columns: 1fr 3fr;
			grid-template-rows: auto auto auto auto auto;
			grid-gap: 1em 1em;	
	}

		.kopf, .grid-1-3 {
			grid-column: 1 / 3;
			grid-row: 1 / 2;
		}
		
		.artikel, .grid-2-3 {
			grid-column: 2 / 3;
			grid-row: 2 / 5;
		}
		
		.seite, .grid-1-2{
			grid-column: 1 / 2;
			grid-row: 2 / 5;
		}

		 .grid-quaters {
			display: grid;
			grid-template-columns: 1fr 4fr;
			grid-template-rows: auto auto ;
			grid-gap: 1em 1em;	
		}

}
	

@media screen and (max-width: 749px) {
		
	.grid {
			display: block; 
	}

 .grid-quaters {
			display: grid;
			grid-template-columns: 1fr 3fr;
			grid-template-rows: auto auto ;
			grid-gap: 1em 1em;	
		}
	
	.grid-1-3 {
			grid-column: 1 / 3;
			grid-row: 1 / 2;
		}
	
	 .grid-2-3 {
			grid-column: 2 / 3;
			grid-row: 2 / 3;
		}
		
		.grid-1-2{
			grid-column: 1 / 2;
			grid-row: 2 / 3;
		}

}

@media screen and (max-width: 450px) {
		
	

 .grid-quaters {
			display: block;
			
		}
	
	.reichhart  {
		width: 100%;
	}

}

/* Produkte*/

		@media screen and (min-width: 750px) {
		.grid-4 {
			display: grid;
			grid-template-columns: 1fr 1fr;
			grid-template-rows: auto auto ;
			grid-gap: 1em 1em;	
			}}

	@media screen and (max-width: 749px) {
		.grid-4 {
			display: block;
			
			}}
		
.produkt1, .produkt2, .produkt3, .produkt4 {
	background: white;
			padding: 10px 20px;
			border-radius: 10px;
	
}

@media screen and (max-width: 749px) {
	.produkt1, .produkt2, .produkt3, .produkt4 {
	margin: 10px 0px;
	}}


		.produkt1 {
				grid-column: 1 / 2;
			grid-row: 1 / 2;
       
		}

.produkt2 {
				grid-column: 2 / 3;
			grid-row: 1 / 2;
        
		}
.produkt3 {
				grid-column: 1 / 2;
			grid-row: 2 / 3;
       
		}
.produkt4 {
				grid-column: 2 / 3;
			grid-row: 2 / 3;
        
		}


/* Footer */

	.footer {
			grid-column: 1 / 3;
			grid-row: 5 / 6;
			background: #e8d3da;
			border-radius: 10px;
			padding: 10px 20px;
		}

@media screen and (max-width: 749px) {

footer.footer div {
			display: block !important;
	}}

/* Panels */
		
		.box {
			background: white; 
			padding: 20px;
			margin-bottom: 30px;
			border-radius: 10px;
		}
