@import url('https://fonts.googleapis.com/css2?family=Lato:wght@100;300;700&family=Merriweather:wght@300;400;700;900&display=swap');

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;	
	font-family: 'Merriweather', serif;
	font-family: 'Lato', sans-serif;
	
}

h2 {
	/*color: #CD2026;*/
	
}
h3 {
	
}

p {
	margin: 0 0 10px 0;
	
}
.textbox {
	max-width: 600px;
	margin: 10px auto 30px auto;
}

.price {
	font-family: 'Merriweather', serif;
}

.grid-2 {
	display: grid;
	grid-template-columns: repeat(2, 1fr);	
	grid-column-gap: 0px;
	grid-row-gap: 0px;
}

.grid-3 {
	display: grid;
	grid-template-columns: repeat(3, 1fr);	
	grid-column-gap: 0px;
	grid-row-gap: 0px;
}
@media (max-width: 800px) {

	.grid-2,
	.grid-3 {
		display: block;		
	}

}

header,section,footer {
	margin: 0 auto;
}

header {
	width: 100%;
	padding: 5px;
	background-color: #f1f1f1;
	display: grid;
	grid-template-columns: 100px auto;
	grid-column-gap: 10px;
	grid-row-gap: 0px;
	text-align: right;
	font-size: 14px;
	/*position: -webkit-sticky; /* Safari *!/
	position: sticky;
	top: 0;	*/
	border-bottom: 1px solid #ccc;
}

header img {	
	height: 44px;
}

header p {
	margin: 0 0 5px 0;
	padding: 0 5px;
}

header divlast-child {
	border-left: 1px solid #ccc;
	text-align: left;
}

@media (max-width: 800px) { 
	
	header {
		display: block;
		height: 60px;
	}
	header div {
		text-align: right!important;
	}
	header p {
		margin: 0;
	}
	header img {
		float: left;
		height: 48px;
	}
	.desktop {
		display: none;
	}

}

.button {
	padding: 10px 20px;
	background-color: #CD2026;
	display: inline-block;
	margin: 10px 0;
	text-decoration: none;
	text-shadow: none;
	color: #fff;	
	font-weight: 300;
	text-transform: uppercase;
	font-size: 14px;
}

/* SHOWCASE */

.showcase {
	width: 100%;
	height: 500px;
	background-size: cover;
	position: relative;
	display: grid;
}
.showcase div {
	width: 80%;
	margin: auto;	
	color: #fff;
	text-shadow: 0 1px 1px #000;
	font-weight: 900;
}
.showcase h2 {
	font-size: 36px;
	line-height: 36px;
	font-weight: bold;
	text-transform: uppercase;
	color: #fff;
}

.showcase p {
	color: #fcfcfc;
	font-size: 18px;
	line-height: 24px;
}

/* SERVICES */

#products,
#services {
	text-align: center;
	padding: 50px 0;
}

@media (max-width: 800px) {
	#products,
	#services {
		padding: 20px;
	}
}

#services .services {
	margin: 100px 20px 50px 20px;
	border: 1px solid #ccc;
}
#services .services div:nth-child(2) {
	box-shadow: 0px 0px 10px #666;
	margin: -10px 0 0 0;
	height: calc(100% + 20px);
	background-color: #fff;
	z-index: 9;
	overflow: hidden;
	border-radius: 4px;
}

#services .services h4 {
	padding: 10px;
	border-bottom: 1px solid #ccc;
	background-color: #f9f9f9;
}
#services .services div:nth-child(2) h4 {
	background-color: #CD2026;
	color: #fff;
	padding:20px 10px;
}

@media (max-width: 800px) {
	
	#services .services {
		border: none;
	}
	#services .services div {
		border: 1px solid #ccc;
	}
	#services .services div:nth-child(2) {
		box-shadow: none;
		margin: 20px 0;
	}
}

#services .services p {
	font-size: 13px;
	color: #999;
}
#services .services p.price {
	font-size: 32px;
	padding: 20px 0 0 0;
	color: #CD2026;
	font-weight: bold;
}
#services .services ul {
	list-style: none;
	margin: 20px 0 0 0;
	border-top: 1px solid #f1f1f1;
}
#services .services ul li {
	padding: 10px;
	display: block;
	font-size: 13px;
	border-bottom: 1px solid #f1f1f1;
}
#services .services ul li:nth-child(odd) {
	background-color: #f9f9f9;
}

#services .other-service {
	margin: 20px;
}
#services .other-service span {
	color: #CD2026;
	font-weight: bold;
}
#services .other-service p {
	color: #999;
}
#services .other-service > div {
	margin: 0 0 20px 0;
}

/* PRODUCTS */
#products .line-header {
	position: relative;
	max-width: 800px;
	margin: 0 auto;
}
#products .line-header:before {	
	content: '';
	width: 100%;
	height: 1px;
	left: 0;
	top: 50%;
	background-color: #f1f1f1;
	position: absolute;
	z-index: -1;
}
#products .line-header h4 {
	background-color: #fff;
	display: inline-block;
	padding: 10px;
	
}

/* STORY */

.story {
	display: grid;
	min-height: 400px;
	padding:40px 20px;
}

.story > div {
	margin: auto;
	color: #fff;
	grid-template-columns: 200px auto;	
	width: 80%;
	font-size: 22px;
	font-weight: 100;
}
.story h2 {
	text-align: center;
}

/* FOOTER */

#footer {
	padding: 50px;
	background-color: #222;
	color: #ccc;
	font-size: 14px;
	border-bottom: 1px solid #111;
	grid-column-gap: 40px;
	grid-template-columns: repeat(3, auto);	
}
#footer > div {
	margin: 0 0 20px 0;
}
#footer h3 {
	margin: 0 0 20px ;
	color: #f1f1f1;
}
#footer a {
	display: block;
	margin: 10px 0;
	color: #fff;
}
#footer img {
	margin: 0 0 20px 0;
}

#footer ul {
	padding: 0 20px 0 0;
	list-style: none;
}

footer {
	border-top: 1px solid #333;
	background-color: #222;
	padding: 10px;
	font-size: 12px;
	color: #666;
}