/*
Farben:
	orange (hell)	#F27830
	grau (hell)		#BBB
	grau (dunkel)	#444
	schwarz			#000
*/


@charset "UTF-8";

/*
----- Page Basics -----
*/

* {
    font-family: 'Noto-Sans-Display-Condensed-Medium', arial, sans-serif;
}
html {
	font-size: 100%;
}
body {
    color: #000;
}
*, ::after, ::before {
    box-sizing: border-box;
}


/*
----- Seitenbreiten und Flex-Definitionen -----
*/

article {
    display: grid;
}
#fh5co-main {
    clear: both;
    padding-top: 3em;
}
#fh5co-content {
    display: flex;
    justify-content: center;
}
.col, .col-1, .col-10, .col-11, .col-12, .col-2, .col-3, .col-4, 
.col-5, .col-6, .col-7, .col-8, .col-9, .col-auto, 
.col-lg, .col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, 
.col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, 
.col-lg-9, .col-lg-auto, 
.col-md, .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, 
.col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, 
.col-md-9, .col-md-auto, 
.col-sm, .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, 
.col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, 
.col-sm-9, .col-sm-auto, 
.col-xl, .col-xl-1, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl-2, 
.col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, 
.col-xl-9, .col-xl-auto {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}
@media (min-width: 768px) {
    .container {
        width: 720px;
    }
}
@media (min-width: 992px) {
    .col-lg-8 {
        flex: 0 0 66.666667%;
        width: 66.666667%;
    }
    .col-lg-2 {
        flex: 0 0 16.666667%;
        width: 16.666667%;
    }
    .offset-lg-2 {
        margin-left: 16.666667%;
    }
    .col-lg-6 {
        flex: 0 0 50%;
        width: 50%;
    }
    .offset-lg-3 {
        margin-left: 25%;
    }
    .col-lg-3 {
        width: 25%;
        flex: 0 0 25%;
    }
    .col-lg-9 {
        flex: 0 0 75%;
        width: 75%;
    }
    .container {
        width: 960px;
    }
    .col-lg-10 {
        flex: 0 0 83.333333%;
        width: 83.333333%;
    }
    .offset-lg-1 {
        margin-left: 8.333333%;
    }
}
@media (min-width: 1200px) {
    .container {
        width: 1190px;
    }
}


/*
----- Menu und Sidebar -----
*/

h1.site-title {
    font-size: 1.3rem;
    margin-bottom: 20px;
}
h1.site-title::first-letter {
	color:#F27830;
}
ul.static-pages {
    font-size: 0.9em;
    list-style: none;
    margin: 0 0 100px 0;
    padding: 0;
}
ul.static-pages a, .site-title a, h2 a {
    color: #444;
    text-decoration: none; !important
}
ul.static-pages a:hover, .site-title a:hover, h2 a:hover {
	color: #444;
    text-decoration: underline solid #BBB;
}
ul.static-pages li {
    padding-bottom: 6px;
}


/*
----- Fließtext -----
*/

h1, h2, h3, h4, h5, h6 {
    color: #000;
    margin-top: .8em;
    margin-bottom: 0em;
    font-weight: 300;
}
a {
	color:#444;
	text-decoration: underline solid #BBB;
	text-underline-position: skip;
}
a:hover {
	color:#444;
	text-decoration: underline double #BBB;
	text-underline-position: skip;
}
header h2, article h1 {
    font-size: 1.3rem;
}
.row {
    display: flex;
    flex-wrap: wrap;
}
.text-center {
    text-align: center;
}

/*
----- Sonderelemente und Medien -----
*/

pre {
    font-family: 'Open Sans', monospace;
    background: #BBB;
    padding: 10px;
    border-radius: 4px;
    box-shadow: 3px 3px 3px 3px #444;
    overflow-x: scroll;
}
dl dt {
	font-weight:700;
	margin-top:0,5 em;
}
img, video {
    max-width: 100%;
    margin-bottom: 10px;
    vertical-align: middle;
    border: 0;
}


/*
----- Pagination Startseite ("Nächste Seite") -----
*/

.pagination {
    display: inline-block;
    padding-left: 0;
    margin: 20px 0;
    border-radius: 4px;
    width: 100%;
}
.pagination > li {
    list-style-type: none;
}
.pagination > li > a, .pagination > li > span {
    position: relative;
    float: left;
    padding: 5px 10px;
    margin-top:2em;
    line-height: 1.42857;
    text-decoration: none;
    color: #444;
    background-color: #BBB;
    border: 1px solid #BBB;
}
.pagination > li > a:hover, .pagination > li > span:hover {
    background: #ffffff;
    border: 1px solid #BBB;
}
.float-left {
    float: left;
}
.float-right {
    float: right;
}


/*
----- Footer -----
*/

#fh5co-footer {
    display: flex;
    justify-content: center;
    font-size: 0.8em;
}
article.page:not(:last-child) {
    margin-bottom: 100px;
}
article.page footer {
    text-align: right;
    font-size: 0.8em;
    color: #444;
}
article.page footer a {
	float: left;
	display: none;
}
#dschutzhinweis {
	color: #BBB;
	text-decoration: none;
}

#dschutzhinweis:hover {
	color: #BBB;
	text-decoration: none;
}
