/* Eric Meyer's Reset CSS v2.0 - http://cssreset.com */
html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{border:0;font-size:100%;font:inherit;vertical-align:baseline;margin:0;padding:0;text-decoration:none;}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}body{line-height:1}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:none}table{border-collapse:collapse;border-spacing:0}

@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto-Thin.eot');
    src: url('../fonts/Roboto-Thin.eot?#iefix') format('embedded-opentype'), url('../fonts/Roboto-Thin.woff') format('woff'), url('../fonts/Roboto-Thin.ttf') format('truetype'), url('../fonts/Roboto-Thin.svg') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto Bold';
    src: url('../fonts/Roboto-Medium.eot');
    src: url('../fonts/Roboto-Medium.eot?#iefix') format('embedded-opentype'), url('../fonts/Roboto-Medium.woff') format('woff'), url('../fonts/Roboto-Medium.ttf') format('truetype'), url('../fonts/Roboto-Medium.svg') format('svg');
    font-weight: normal;
    font-style: normal;
}

*, *:before, *:after {
    box-sizing: border-box;
}

strong { font-weight: bold; }
u { text-decoration: underline; }
i, em { font-style: italic; text-decoration: underline; }
ol, ul { list-style: disc; padding-left: 35px; }

body {
    width: 100%;
    font-family: Roboto, helvetica, verdana, arial;
    color: #1d2637;
    font-size: 17px;
    word-wrap: break-word;
    margin: auto;
    line-height: 1.2em;
    min-height: 1500px;
    background-size: cover;
    background-color: grey;
    font-weight: bold;
}  

a {
    color: #ce9c7f;
    cursor: pointer;
}

div.bildTextList a {
    color: #ce9c7f;
    font-weight: bold;
}

a:hover {
    color: #c4b0a6;
}

h1 {
    font-size: 390%;
    margin-bottom: 25px;
    text-transform: uppercase;
    color: #000000;
    line-height: 1.1em;
}

h2 {
    font-size: 150%;
    margin-bottom: 15px;
    line-height: 1.3em;
    text-transform: uppercase;
}

h3, h5 {
    font-size: 120%;
    margin-bottom: 15px;
    line-height: 1.3em;
    text-transform: uppercase;
}

.headArtikelBox {
    border-bottom: 1px solid rgba(160, 160, 160, 0.3);
    margin-bottom: 25px;
}

.headArtikelBox p {
    text-transform: uppercase;
    font-weight: normal;
    display: block;
    margin-bottom: 25px;
    font-size: 120%;
    padding-top: 10px;
    line-height: 1.2em;
}

p {
    margin-bottom: 15px;
}

/* Grid Struktur */ 

div.site {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto auto 1fr auto auto;
    grid-template-areas: 
        "header header header"
        "nav nav nav"
        "main main main"
        "footer footer footer"
        "copyfooter copyfooter copyfooter";
}

div.blog {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto auto 1fr auto auto;
    grid-template-areas:
            "header header header"
            "nav nav nav"
            "main main sidebar"
            "footer footer footer"
            "copyfooter copyfooter copyfooter";
}


.footer, .copy-footer {
    padding: 5px 10% 5px 10%;
}

.nav-head {
    padding: 0px 10% 0px 10%;
}

.main-content {
    padding: 20px 15% 20px 15%;
}

article div.container { padding: 25px; background: rgba(255,255,255,0.9); }
article.start-content div.container { background-color: transparent; }

.sidebar{
    padding: 70px 30% 20px 0;
}

.nav-head {
    grid-area: nav;
}

.main-content {
    grid-area: main;
}

.sidebar {
    grid-area: sidebar;
    width: 100%;
}

.footer {
    grid-column: 1/4;
    grid-row: 4/5;
    grid-area: footer;
    background: rgba(60,60,60,0.7);
    transition: background-color 0.3s linear 0s;
}

.copy-footer {
    grid-area: copyfooter;
    background-color: #000;
}

.copy-footer ul li a { color: #fff; }


/* Ende Master Grid */


/* Flex Box Struktur */

.flex-main, .flex-nav {
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
    flex-grow: 1;
    flex-basis: auto;
    margin: auto;
}

.three-column-box {
    width: 33.333%;
    padding: 30px 4% 30px 4.3%;
    color: #fff;
}

.three-column-box:nth-child(3n+1) {
    padding-left: 0;
}

.three-column-box:nth-child(5n+3) {
    padding-right: 0;
}

.two-column-box {
    width: 50%;
}


nav.nav-head div div.logo {
    padding-top: 10px;
    padding-bottom: 0;
}

nav.nav-head div div.logo img {
    height: 75px;
    width: auto;
}

nav.nav-head div div.navigation {
    flex-grow: 2;
    padding-top: 20px;
}

.ausrichtung-rechts {
    text-align: right;
}

.ausrichtung-links {
    text-align: left;
}

.sidebar > div {
    margin-bottom: 25px;
}

.main-content div.container section.mit-background {
    padding: 25px;
    background: rgba(0,0,0,0.6);
    letter-spacing: 1px;
}

section.ohne-background, section.ohne-background div p { color: #000; }

.blog article div div.articleContent p {
    font-family: verdana;
    font-weight: normal;
    line-height: 1.4em;
    color: #515151;
}

/* ****************** Responsive Nav ******************* */

/* Aufstellung des Blocks Horizontal */
nav.nav-head ul {
    list-style-type:none;
    margin:0;
    padding:0;
    position: relative;
    padding-left: 20px;
}

nav.nav-head ul li {
    display:inline-block;
    /* float: left; */
    margin-right: 1px;
}

/* Formatierung der Links selbst */
nav.nav-head ul li a {
    display:block;
    height: 50px;
    text-align: center;
    line-height: 50px;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: #fff;
    text-decoration: none;
    border-radius: 15px 15px 15px 0;
    padding-left: 15px;
    padding-right: 15px;
    transition: background-color 0.3s linear 0s;
    text-transform: uppercase;
    font-weight: normal;
}

nav.nav-head ul li:hover a {
    background-color: #494949;
}

/* Formatierung der Dropdownbox */
nav.nav-head ul li:hover ul a {
    background: #ce9c7f;
    color: #ffffff;
    height: 40px;
    border-radius: 0;
    min-width: 200px;
    line-height: 40px;
    border-bottom: 1px solid #d5d5d5;
}

nav.nav-head ul li:hover ul a:hover {
    background: #08102a;
    color: #fff;
}
/* Unsichtbar machen der Drobdownbox */
nav.nav-head ul li ul {
    position: absolute;
    padding: 0;
    z-index: 101;
    opacity: 0;
}

nav.nav-head ul li:hover ul:hover {
    display: block;
}

nav.nav-head ul li ul li {
    display: block;
    float: none;
}

nav.nav-head ul li ul li a {
    width: auto;
    min-width: 100px;
    padding: 0 20px;
    
}

/* Anzeige des Dropdowns beim Hovern */
nav.nav-head ul li a:hover + .hidden, .hidden:hover {
    display: block;
    opacity: 1;
    transition: opacity 1.5s;
    transition: background-color 0.3s linear 0s;
}

/* Formatierung des Menübuttons, der in kleiner Auflösung angezeigt wird */
.show-menu {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    text-decoration: none;
    color: #fff;
    background: #08102a;
    text-align: center;
    padding: 10px 0;
    cursor: pointer;
    display: none;
    border-radius: 0;
}

/* Checkbox verstecken */
input.show-button[type=checkbox]{
    display: none;
}
/* Checkbox ist gecheckt */
input.show-button[type=checkbox]:checked ~ #menu{
    display: block;
}

/* Weitere Navigationen */

.bottom-nav {
    text-align: center;
    padding: 20px;
}

.bottom-nav li {
    display: inline;
    margin-right: 10px;
    padding: 5px 5px;
}

/* ****************** Subpages ***************** */

.subpage-box {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
    align-content: flex-start;
}

.subpage-box a {
    flex-basis: 31%;
    align-self: auto;
    background: rgba(60,60,60,0.7);
    margin-top: 45px;
    display: block;
    transition: background-color 0.3s linear 0s;
}

.subpage-box a:hover {
    background: rgba(0,0,0,0.6);
}

.subpage-box a strong {
    display: block;
    text-align: center;
    color: #1d2637;
    height: 45px;
    width: 45px;
    padding-top: 12px;
    background: rgba(0,0,0,0.1);
    float: right;
}

.subpage-box a img {
    width: 50%;
    height: auto;
    margin-left: 5%;
    margin-top: 5%;
}

.subpage-box span {
    height: 24px;
    width: 100%;
    padding-left: 15px;
    font-weight: normal;
    margin-bottom: 0;
    margin-top: 15px;
    font-size: 200%;
    display: block;
    color: #fff;
}

.subpage-box span.dritte_zeile {
    height: 60px;
    overflow: hidden;
    width: 98%;
    padding-left: 15px;
    font-size: 100%;
    color: #d2d2d2;
    text-transform: none;
    font-weight: bold;
    margin-top: 25px;
    margin-bottom: 40px;
    letter-spacing: 4px;
}


/* ****************** Formatbeschreibungen für den FCK ****************** */

.hundertProzent {
    width: 100%;
    height: auto;
}

.fuenfundsiebzigProzent {
    width: 75%;
    height: auto;
}

.sechsundsechzigProzent {
    width: 66%;
    height: auto;
}

.fuenfzigProzent {
    width: 50%;
    height: auto;
}

.dreiunddreissigProzent {
    width: 33%;
    height: auto;
}

.fuenfundzwanzigProzent {
    width: 25%;
    height: auto;
}

.zweispaltigText {
    width: 100%;
    column-width: 50%;
    column-rule-color: #d9d9d9;
    column-rule-width: 1px;
    column-rule-style: dotted;
    column-gap: 70px;
}

.dreispaltigText {
    width: 100%;
    column-count: 3;
    column-width: 50%;
    column-rule-color: #d9d9d9;
    column-rule-width: 1px;
    column-rule-style: dotted;
    column-gap: 70px;
}

.zweispaltigTextLinie {
    width: 100%;
    column-count: 2;
    column-width: 50%;
    column-gap: 70px;
}

.dreispaltigTextLinie {
    width: 100%;
    column-count: 3;
    column-width: 50%;
    column-gap: 70px;
}

/* ******************* Suche ******************** */

form.search input {
    background-color: #ffffff;
    border-radius: 5px;
    border: 0;
    color: #325b74;
    padding: 10px;
    text-indent: 18px;
    background-image:url(../../../../images/search_backgroundicon.gif);
    background-repeat: no-repeat;
    background-position: 3px 7px;
    margin-top: 10px;
    width: 220px;
}

/* **************** Language Auswahl **************** */

.languageBox {
    display: none;
    position: absolute;
    right: 0%;
    top: 15px;
}

.languageBox select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border:none;
    border-radius: 0;
    font-size: 1em;
    width: 100%;
    background-color: #2e2d30;
    color: #ffffff;
    padding:0.95em 0.95em 0.95em;
    background-image:url(../../../../site/templates/bulldozers/images/down_pfeil_hover.png);
    background-position: right;
    background-repeat: no-repeat;
    cursor: pointer;
}

.languageBox select:hover {
    color: #cecece;
}



/* ***************** Eigene Formatierungen ****************** */

a.logo img { width: 60%; height: auto; }
a.logo_start img { width: 50%; height: auto; }
a.logo, a.logo_start { display: block; text-align: center; }

.socialbox { display: block; text-align: right;}
.socialbox img {
    width: 30px;
    height: auto;
    margin-top: 5px;
}

input[type="submit"], .globalButton, .button {
    width: auto;
    margin-top: 20px;
    background-color: #ce9c7f;
    color: #ffffff;
    padding-left: 15px;
    padding-right: 15px;
    border: none;
    transition: background-color 0.3s linear 0s;
}

.button {
    padding: 15px;
    display: inline-block;
}

.button:hover {
    background-color: #000000;
    color: #fff;
}


.globalButton {
    padding: 15px;
}


@media screen and (max-width: 700px) {
    div.blog {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: auto auto 1fr auto auto auto;
        grid-template-areas:
                "header"
                "nav"
                "main"
                "sidebar"
                "footer"
                "copyfooter";
    }
}


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

    body { min-height: 0; }

    header.masthead, .nav-head, .footer {
        padding: 5px 5% 5px 5%;
    }
    .main-content {
        padding: 20px 8% 20px 8%;
    }

    .sidebar{
        padding: 20px 16% 20px 0;
    }

    .three-column-box {
        width: 50%;
    }

    .three-column-box:nth-child(3n+1) {
        padding-left: 20px;
    }
    
    .three-column-box:nth-child(2n+1) {
        padding-left: 0;
    }
    
    .three-column-box:nth-child(5n+3) {
        padding-right: 20px;
    }

    .three-column-box:nth-child(2n+2) {
        padding-right: 0px;
    }

    .logo { order: 1; }
    .navigation { order: 2; }
    .socialbox { order: 3; }
    
    nav.nav-head ul {
        position: static;
        display: none;
    }

    .flex-nav { position: relative; }
    nav.nav-head div div.logo { position: absolute; padding-top: 0; }
    nav.nav-head div div.socialbox { position: absolute; right: 0; }
    nav.nav-head div div.navigation { margin-top: 60px; }

    nav.nav-head ul {
        padding-left: 0px;
    }

    nav.nav-head ul li {
        margin-bottom: 1px;
    }

    nav.nav-head ul li, nav.nav-head ul li ul {
        width: 100%;
    }

    nav.nav-head ul li:hover ul a {
        border-bottom: 1px solid transparent;
    }

    nav.nav-head ul li a {
        width: auto;
        border-radius: 0;
    }

    nav.nav-head ul li a:hover + .hidden, .hidden:hover {
        position: relative;
    }

    /* Menülink anzeigen */
    .show-menu {
        display:block;
    }

    .bottom-nav li.copy {
        display: block;
        margin-top: 15px;
    }

    nav.nav-head ul {
        background: rgba(60,60,60,0.7);
        transition: background-color 0.3s linear 0s;
    }


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

    header.masthead, .nav-head, .footer, .copy-footer {
        padding: 5px 5% 5px 5%;
    }

    .main-content, .sidebar {
        padding: 20px 5% 20px 5%;
    }

    .three-column-box {
        width: 100%;
    }

    footer div div p a img.fuenfundzwanzigProzent {
        width: 32%;
    }

    .three-column-box:nth-child(3n+1), .three-column-box:nth-child(2n+1), .three-column-box:nth-child(5n+3), .three-column-box:nth-child(2n+2) {
        padding-left: 0px;
        padding-right: 0px;
        padding: 30px 0 0px 0;
    }
    
    .hundertProzent, .fuenfundsiebzigProzent, .sechsundsechzigProzent, .fuenfzigProzent, .dreiunddreissigProzent, .fuenfundzwanzigProzent {
        width: 100%;
        height: auto;
    }

    .zweispaltigTextLinie, .zweispaltigText, .dreispaltigTextLinie, .dreispaltigText {
        width: 100%;
        column-count: 1;
        column-width: 100%;
        column-rule-color: #ffffff;
        column-rule-width: 0px;
        column-gap: 0px;
    }

    .bottom-nav li {
        display: block;
    }
    
    .ausrichtung-rechts {
        text-align: center;
    }

    header.masthead div.logo img {
        height: 75px;
    }
    
    .sidebar > div {
        margin-bottom: 15px;
    }
}

/* ***************************** Extra *********************** */

article.start h1 {
    color: #000;
    font-size: 580%;
    font-weight: bold;
    margin-top: 70px;
    margin-left: -7px;
    line-height: 60%;
    letter-spacing: 5px;
}

article.start p {
    color: #000;
    font-weight: normal;
    text-transform: uppercase;
    font-size: 110%;
    margin-bottom: 45px;
    letter-spacing: 3px;
}

@media screen and (max-width: 1200px) {
    .main-content {
        padding: 20px 5% 20px 5%;
    }

    article.start h1 {
        font-size: 500%;
    }
}

@media screen and (max-width: 920px) {
    .subpage-box a {
        flex-basis: 48%;
    }

    article.start h1 {
        font-size: 390%;
    }
}

/* NAvigation REsponsive */
@media screen and (max-width: 769px) {
    nav.nav-head ul li a {
        padding-right: 0;
        background: rgba(255, 255, 255, 0.5)
    }
    
    nav.nav-head ul li:hover a {
        background: rgba(255, 255, 255, 0.7)
    }

    article.start h1 {
        margin-top: 10px;
    }
}

@media screen and (max-width: 660px) {
    .subpage-box a {
        flex-basis: 100%;
    }
    
    article.start h1, h1 {
        font-size: 280%;
        margin-left: 0;
    }
}

@media screen and (max-width: 500px) {
    .main-content {
        padding: 20px 3% 20px 3%;
    }
    
    article.start h1 {
        font-size: 165%;
    }
    
    h1 {
        font-size: 205%;
    }
}