@charset "UTF-8";

:root {
	--color-text: #1F2837;
	--color-main-primary: #6ec800;
}


/* open-sans-300 - latin */
@font-face {
	font-display: swap;
	/* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 300;
	src: url('../fonts/open_sans/open-sans-v36-latin-300.woff2') format('woff2');
	/* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* open-sans-regular - latin */
@font-face {
	font-display: swap;
	/* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 400;
	src: url('../fonts/open_sans/open-sans-v36-latin-regular.woff2') format('woff2');
	/* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* open-sans-600 - latin */
@font-face {
	font-display: swap;
	/* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 600;
	src: url('../fonts/open_sans/open-sans-v36-latin-600.woff2') format('woff2');
	/* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* open-sans-700 - latin */
@font-face {
	font-display: swap;
	/* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 700;
	src: url('../fonts/open_sans/open-sans-v36-latin-700.woff2') format('woff2');
	/* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* open-sans-800 - latin */
@font-face {
	font-display: swap;
	/* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 800;
	src: url('../fonts/open_sans/open-sans-v36-latin-800.woff2') format('woff2');
	/* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}




body,
p,
h1,
h2,
h3,
h4,
h5,
h6,
li,
td,
a {
	font-family: 'Open Sans', Arial, Helvetica, sans-serif;
	font-size: 16px;
	font-weight: 400;

	line-height: 1.5em;
	color: var(--color-text);

}

p {
	margin-bottom: 1em;
}




a {
	color: var(--color-main-primary);
	text-decoration: none;
	/* underline; */
}

a:hover {
	color: var(--color-text);
	/*text-decoration: underline; */
	-o-transition: color 0.1s ease-in;
	-webkit-transition: color 0.1s ease-in;
	-moz-transition: color 0.1s ease-in;
	transition: color 0.1s ease-in;
}

a:focus {
	-moz-outline: none;
	outline: none;

}

a.btn {
	text-decoration: none;
}

a[target=_blank]:not(a.nav-link):not(.no_before):not(.btn):before,
a.link_external:before {
	font-family: 'FontAwesome';
	content: '\f08e';
	margin: 0px 5px 0 0;
}

a[href$=".zip"],
a[href$=".exe"],
a[href$=".gz"],
a[href$=".tar"],
a[href$=".ipk"] {
	text-decoration: none !important;
}

a[href$=".zip"]:before,
a[href$=".pdf"]:before,
a[href$=".exe"]:before,
a[href$=".gz"]:before,
a[href$=".ipk"]:before,
a[href$=".tar"]:before,
a[href$=".svg"]:before,
a[href$=".csv"]:before,
a[href$=".projectarchive"]:before {
	content: '\f019' !important;
	/* f019 fa-download   f0ed fa-cloud-download */
}

a.icon_search_plus:before {
	font-family: 'FontAwesome';
	content: '\f00e';
	/*  fa-search-plus   */
	margin: 0px 5px 0 0;
}



.card_container a[target=_blank]:before {
	content: '';
	text-decoration: none;
}

/*
hyphens:	https://justmarkup.com/articles/2015-07-31-dealing-with-long-words-in-css/
http://clagnut.com/blog/2395/
*/
h1,
.h1 {
	overflow-wrap: break-word;
	word-wrap: break-word;

	-webkit-hyphens: auto;
	-webkit-hyphenate-limit-before: 3;
	-webkit-hyphenate-limit-after: 3;
	-webkit-hyphenate-limit-chars: 6 3 3;
	-webkit-hyphenate-limit-lines: 2;
	-webkit-hyphenate-limit-last: always;
	-webkit-hyphenate-limit-zone: 8%;

	-moz-hyphens: auto;
	-moz-hyphenate-limit-chars: 6 3 3;
	-moz-hyphenate-limit-lines: 2;
	-moz-hyphenate-limit-last: always;
	-moz-hyphenate-limit-zone: 8%;

	-ms-hyphens: auto;
	-ms-hyphenate-limit-chars: 6 3 3;
	-ms-hyphenate-limit-lines: 2;
	-ms-hyphenate-limit-last: always;
	-ms-hyphenate-limit-zone: 8%;

	hyphens: auto;
	hyphenate-limit-chars: 6 3 3;
	hyphenate-limit-lines: 2;
	hyphenate-limit-last: always;
	hyphenate-limit-zone: 8%;
}


h1 {
	font-size: 50px;
    line-height: 60px;
    font-weight: 400;


	margin-top: 0;
	margin-bottom: 1.3rem;
	padding: 0;
}

h1:first-child {
	padding-top: 0;
}



h2,
.h2 {
	font-size: 35px;
	line-height: 48px;
	font-weight: 400;
	margin-top: 0;
	margin-bottom: 1.3rem;
	/**/
	padding-top: 15px;
	
}


h3,
.h3 {
	font-size: 25px;
	line-height: 33px;
	font-weight: 400;
	margin-top: 0;
	margin-bottom: 1.3rem;
	padding-top: 15px;
}

h4,
.h4 {
	font-size: 18px;
	line-height: 24px;
	font-weight: 700;
	margin-top: 0;
	margin-bottom: 1.3rem;

}

h2 img{
	display: inline-block;
	height: 20px;
	width: auto;
	vertical-align: baseline;
	margin-bottom: -2px;
}

.txt_red {
	color: red;
}

hr {
	clear: both;
	background-color: #555;
	color: #555;
	border: #555;
	height: 1px;
	margin: 0 0 25px 0;
}

@media (max-width: 1399px) {
	h1 {
		font-size: 36px;
		line-height: 42px;
		font-weight: 400;
	}
	h2,
	.h2 {
		font-size: 30px;
		line-height: 36px;
		font-weight: 400;
	}	

	h3,
	.h3 {
		font-size: 25px;
		line-height: 32px;
		font-weight: 400;
	}
	h4,
	.h4 {
		font-size: 19px;
		line-height: 24px;
		font-weight: 700;
	
	}	
}






/*
media
____________________________________________ */

img,
embed,
object,
video {
	width: 100%;
	max-width: 100%;
	height: auto;

}


.embed-responsive {
	position: relative;
	display: block;
	width: 100%;
	padding: 0;
	overflow: hidden;
}

.embed-responsive::before {
	display: block;
	content: "";
}

.embed-responsive .embed-responsive-item,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

.embed-responsive-21by9::before {
	padding-top: 42.857143%;
}

.embed-responsive-16by9::before {
	padding-top: 56.25%;
}

.embed-responsive-4by3::before {
	padding-top: 75%;
}

.embed-responsive-1by1::before {
	padding-top: 100%;
}






.img_left {
	padding: 0px;
	margin: 5px 20px 15px 0;
	float: left;
	width: 40%;
}

.img_right {
	padding: 0px;
	margin: 5px 0 15px 20px;
	float: right;
	width: 40% !important;
}

.img_100prozent {
	width: 100%;
	/*
	margin: 5px 0;
	border: 1px solid #003a65;
	*/
}

.img_no_scale {
	width: auto !important;
}