:root {
	/* Base colors */
	--image-background: url("img/bg.jpg");
	--color-background: hsl(0deg 0% 94%);
	--color-secondary: #656565;
	--color-highlight: #dc8b11;
	--color-text: #7d7d7d;
	
	--color-block: hsl(0deg 0% 90%);
	--color-block-text: #dc8b11;
	
	--color-gallery-border: hsl(0deg 0% 19%);
	--color-table-first-td-bg: hsl(0deg 0% 83%);
	--color-table-middle-td-bg: #e6e6e6;
	--color-table-last-td-bg: rgba(0,0,0,0);
	--color-link-hover: #52422d;
	--color-price: green;
	--color-fragt-box: green;
	
	--section-separator: 3px solid #8282821c;
	--table-row-separator: 1px dotted #a9a9a9;
}

* {
	color: var(--color-text);
}
body {
	/* margin: 40px 0; */
	padding: 0;
}
html, body {
	/* height: 90%; */
}
html {
	margin: 0;
	padding: 0;
	background: var(--color-background);
	/* background-image: var(--image-background); */
	background-repeat: repeat;
	min-height: 100%;
}


.section {
	font-family: sans-serif;
	margin: 0 auto;
	padding: 0 auto;
	margin-left: 15%;
	margin-right: 30%;
	/* margin-bottom: 50px; */
	
	border-top: var(--section-separator);
	padding-top: 30px;
	padding-bottom: 30px;
}
.section:first-child {
	border-top: none;
}
.section.ribbon {
	padding-left: 15%;
	padding-right: 15%;
	padding-top: 30px;
	padding-bottom: 30px;
	margin-bottom: 50px;
	margin-left: 0;
	margin-right: 0;
}
.section.columns {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	    -ms-flex-direction: row;
	        flex-direction: row;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-ms-flex-flow: wrap;
	    flex-flow: wrap;
	-webkit-box-pack: start;
	    -ms-flex-pack: start;
	        justify-content: flex-start;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
	-ms-flex-line-pack: start;
	    align-content: flex-start;
	/* margin-top: 50px; */
}
.column {
	/* margin-bottom: 40px; */
}
.column-left {
	-webkit-box-flex: 2.5;
	    -ms-flex-positive: 2.5;
	        flex-grow: 2.5;
}
.column-right {
	-webkit-box-flex: 1;
	    -ms-flex-positive: 1;
	        flex-grow: 1;
	padding: 16px 20px;
	/* margin-bottom: 50px; */
}
.contact {
	background-color: var(--color-block);
	border-radius: 6px;
}

.infobox li,
.infobox li b,
.contact h2,
.contact p,
.contact a {
	color: var(--color-block-text) !important;
}


.alt-color {
	color: var(--color-highlight);
}


h1, h2, p {
	/* text-shadow: 0 10px 14px rgba(0, 0, 0, .12); */
}
h1 {
	margin: 40px 0 30px;
	font-size: 36pt;
	color: var(--color-highlight);
}
h2 {
	margin: 0 0 20px;
	font-size: 22pt;
	color: var(--color-secondary);
}
a {
	text-decoration: none;
	-webkit-transition: color .1s ease-in-out;
	-o-transition: color .1s ease-in-out;
	transition: color .1s ease-in-out;
}
a:hover {
	text-decoration: none;
	color: var(--color-link-hover) !important;
}
p.body {
	line-height: 1.5;
}
p.intro {
	font-size: 14pt;
	/* font-weight: bold; */
}
p.black {
	color: var(--color-secondary);
	font-size: 18pt;
	margin-top: 0;
	font-weight: bold;
}
.bigger {
	font-size: 15pt;
	margin-top: 30px;
	font-weight: 600;
}

.image {
	max-width: 100%;
    width: 80%;
    image-rendering: -webkit-optimize-contrast;
}


ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
li p {
	font-size: 14pt;
	margin-top: 30px;
	border-left: 8px solid var(--color-highlight);
	padding-left: 14px;
	border-radius: 2px;
}
li p small {
	font-size: 10pt;
	color: var(--color-text);
}


table {
	border-collapse: collapse;
	border-radius: 6px;
	overflow: hidden;
	width: 100%;
	font-weight: 600;
}
table td,
table th {
	padding: 10px 18px;
}
table th {
	text-align: left;
}
table td {
	background-color: var(--color-table-middle-td-bg);
	color: var(--color-secondary) !important;
}
table td:first-child {
	background-color: var(--color-table-first-td-bg);
}
table tr:first-child td:first-child {
	border-top-left-radius: 6px;
}
table tr:first-child td:last-child {
	border-top-right-radius: 6px;
}
table tr:last-child td:last-child {
	border-bottom-right-radius: 6px;
}
table td.price {
	color: var(--color-price) !important;
	font-weight: bold;
	background-color: var(--color-table-last-td-bg);
	font-size: 14pt;
}
table td:first-child {
	min-width: 25px;
}
table tr:not(:nth-last-child(2)) td:not(:empty):not(:nth-child(1)) {
	border-bottom: var(--table-row-separator) !important;
}


.infobox {
	background-color: var(--color-block);
	color: black;
	padding: 16px 20px;
	border-radius: 18px;
	border-left: 12px solid var(--color-highlight);
	margin-bottom: 20px;
}
.infobox li:not(:last-child) {
	margin-bottom: 12px;
}


.fragt-box b {
	color: white;
	font-size: 14pt;
}
.fragt-box {
	background-color: var(--color-fragt-box);
	color: white;
	font-size: 13pt;
	padding: 20px 26px;
	border-radius: 6px;
	float: right;
	width: 300px;
	margin-top: 30px;
	-webkit-box-shadow: 0 2px 4px #00000040;
	        box-shadow: 0 2px 4px #00000040
}


.gallery {
	width: 100%;
	
}
.gallery .gallery-image {
	width: 26%;
	padding: 10px;
	margin: 0 16px 16px 0;
	background-color: var(--color-gallery-border);
	border-radius: 6px;
}


.logo {
	width: 350px;
	height: auto;
	image-rendering: -webkit-optimize-contrast;
}
.velgoerenhed-logo {
	width: 380px;
	margin-left: -9px;
	margin-bottom: -5px;
	max-width: 100%;
}
.tree-bg {
	position: absolute;
	top: 40px;
	right: 5%;
	height: 90%;
	min-height: 900px;
	/* z-index: -1000; */
	
}
.tree-small {
	display: none;
	height: 320px;
	position: absolute;
	right: 8px;
	margin-top: -320px;
}


@media only screen and (max-width : 1400px) {
	.section {
		margin-left: 15%;
		margin-right: 15%;
	}
	.section.ribbon {
		padding-left: 15%;
		padding-right: 15%;
	}
	h1 {
		font-size: 30pt;
	}
	.logo {
		width: 334px;
	}
	.gallery .gallery-image {
		width: 26%;
		padding: 8px;
		margin: 0 10px 10px 0;
		border-radius: 6px;
	}
	.image {
		max-width: 100%;
		width: 100%;
		image-rendering: -webkit-optimize-contrast;
	}
}
@media only screen and (max-width : 1100px) {
	.section {
		margin-left: 10%;
		margin-right: 10%;
	}
	.section.top {
		margin-left: 10%;
		margin-right: 10%;
	}
	.section.ribbon {
		padding-left: 10%;
		padding-right: 10%;
	}
	h1 {
		font-size: 28pt;
	}
	.logo {
		width: 317px;
	}
	.tree-bg {
		z-index: -1000;
		opacity: .1;
		right: 0;
		-webkit-filter: blur(4px);
		        filter: blur(4px);
	}
	.tree-small {
		display: block;
		margin-top: -315px;
		width: 33%;
		height: auto;
	}
	.gallery .gallery-image {
		width: 26%;
		padding: 6px;
		margin: 0 10px 10px 0;
		border-radius: 6px;
	}
	.fragt-box {
		float: none;
		margin-top: 20px;
		width: auto;
		padding: 12px 16px;
	}
}
@media only screen and (max-width : 600px) {
	.section {
		margin-left: 3%;
		margin-right: 3%;
	}
	.section.top {
		margin-left: 3%;
		margin-right: 3%;
	}
	.section.ribbon {
		padding-left: 3%;
		padding-right: 3%;
	}
	h1 {
		font-size: 24pt;
	}
	p.black {
		font-size: 14pt;
	}
	.logo {
		width: 284px;
	}
	.tree-bg {
		z-index: -1000;
		opacity: .1;
		right: 0;
		-webkit-filter: blur(4px);
		        filter: blur(4px);
	}
	.tree-small {
		display: block;
		margin-top: -315px;
		width: 38%;
		height: auto;
	}
	.gallery .gallery-image {
		width: 26%;
		padding: 4px;
		margin: 0 8px 8px 0;
		border-radius: 6px;
	}
}