/****************************************************************************************************/

/**************************************  Datei: 1_styles.css  ***************************************/

/****************************************************************************************************/
/* 
    Allgemeine Defitionen zuerst
    Created on : 22.11.20
    Author     : Robert Heine
* /
@font-face { font-family: 'Open Sans Condensed';
             src: url('/fonts/OpenSans-CondLight.ttf') format('truetype'); }
@font-face { font-family: 'Open Sans Condensed';
             src: url('/fonts/OpenSans-CondBold.ttf') format('truetype');
             font-weight: bold; }
/**/

* {
    margin: 0;
    padding: 0;
    border: 0;
}
body, html {
    height: 100%;
    font-family: inter, Arial, sans-serif;
    font-size: 15px;
    font-weight: inherit;
    line-height: 1.3em
}
/*
body, p, span, a, table, td, th, div, li, dd, dt, dl, strong, em, h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
}
body, p, span, a, table, td, th, div, li, dd, dt, dl, strong, em, h3 {
    font-weight: normal;
    font-size: 17pt;
}
*/

body {
    font-weight: normal;
    background: white;
    /* Das hier sorgt zwar dafür, dass das Hintergrundbild bei <320 wiederholt wird, aber kleinere Bildschirme machen einfach keinen Sinn */
    min-width: 320px;
    min-height: 440px;
    /* line-height: 1.3 fach */
}

h1, .h1 {
    font-family: 'INTER BOLD', Arial, sans-serif;
    font-size: 26px;
}

h2, .h2 {

}

h3 {

}
h4 {

}

body, p, td {
}

p, li, dd {
    margin-bottom: 20pt;
}
p:last-child, li:last-child, dd:last-child {
    margin-bottom: 0;
}
strong {
    font-weight: bold;
}

h2, h3, h4, h5, h6, table, p, ul, ol {
    margin-bottom: 17pt;
}
.text-block ul {
    margin-left: 16px;
    padding-left: 0px;
}

img {
    max-width: 100%;
}

.text-center {
    text-align: center;
}
.noMargin {
    margin: 0;
}

.text-left {
    text-align: left;
}
.text-center {
    text-align: center;
}
.text-right {
    text-align: right;
}

.error {
    background-color: #ffb4b4;
    padding: 16px;
}



/************** LAYOUTS ****************/

    .left {
        float: left;
    }
    .right {
        float: right;
    }
    .clear {
        clear: both;
    }

    /* GRID */
    .row  {
       xmargin-left: -3%;
    }
    .row [class*="span"] {
        margin-right: 2%;
        display: inline-block;
        float: left;
    }
    .row [class*="span"]:first-child {
        
    }
    .row [class*="span"]:last-child {
        margin-right: 0;
        padding-right: 0%;
    }
    .row [class*="span"]:last-child:after {
        content: " ";
        clear: both;
    }
    
    .row .span3 {
        width: 23%;
    }
    .row .span3:last-child {
        width:25%;
    }

    .row .span4 {
        width: 32%;
    }
    .row .span4:last-child {
        width: 32%;
    }

    .row .span6 {
        width: 48%;
    }
    .row .span6:last-child {
        width:50%;
    }

    .row .span8 {
        width: 68%;
    }
    .row .span6:last-child {
        width:70%;
    }


    .container {
        max-width: 1081px;
        padding-left: 0;
        padding-right: 0;
        margin: auto;
    }

    
       
        
    /** Tabellen **/
        table {
            width: 100%;
            border-collapse: collapse;            
        }
        table td {
            padding: 5px 5px;
            vertical-align: top;
        }
        table td a {
            color: #1c7bc0;
        }
        table td.termin_link  a {
            font-size: 9px;
            font-size: 11px; /* 09.02.2019 */
        }
        table tr:hover td {
            background-color: #f5f5f5;
        }
        
        table.table_underlined td {
            border: none;
        }
        table.table_underlined td.no_underline {
            border-bottom: none;
            padding-bottom: 0;
        }

        .table {
            display: table;
        }
        .table-row {
            display: table-row;
        }
        .table-column {
            display: table-column;
        }
        .table-cell {
            display: table-cell;
        }
        .va-bottom {
            vertical-align: bottom;
        }


    .equalHeights {
        display: flex;
        flex-wrap: wrap;
    }

    .equalHeights .equalHeight {
        display: flex;

    }


/************** LINKS ***************/
    a { 
        color: black;
        text-decoration: none;
    }
    a:hover {
        opacity: 0.8;
    }

    a.btn {
        border: 2px solid black;
        border-radius: 0;
        font-weight: bold;
    }
    a.btn:hover {

    }
    
    

        
/*********** Header *************/

    img.longArrow {
        height: 10px;
        display: none;
    }

    .header {
        border: 1px solid black;
        height: 60px;
        background: white;
        display: block;
    }

    .header .left,
    .header .middle,
    .header .right {
        height: 100%;
        margin-top: 20px;
    }
    .header .left {
        float: left;
    }
    .header .middle {
        float: left;
        text-align: center;
    }
    .header .right {
        float: right;
    }
    .header .left .heaerLeftInner {
        padding-left: 10px;
    }


    .header .page_headings h1 {
        font-weight: bold;
        font-size: 26px;
        line-height: 1.2;
        margin-bottom: 0px;
        margin-top: 0px;
        text-transform: uppercase;
    }

/*************** Galerie Menuitem top left: Show on subpages, on frontpage show "click to enlarge" ***********************/
    .click_to_enlarge {
        display:none;
    }
    .homepageLink {
        display: block;
    }
    body.home .click_to_enlarge {
        display:block;
        font-size: 15px;
    }
    body.home .homepageLink {
        display: none;
    }


/************** Inhalt ***************/

    .content {
        border: 1px solid black;
        border-top: 0px solid black;
        height: calc(100vh - 63px); /* Abzgl. header : (height 60px + 2px border oben und unten) + 1px border-bottom bei .content*/
        overflow-y: auto;
        width: calc(100% - 2px); /* Volle Breite, ohne Border links und rechts */
    }


    .content .container {
        margin-left: auto;
        margin-right: auto;
        width: 96%;
        max-width: 1081px;
    }

    .component {
        padding-top: 40px;
    }


    .content a {
        text-decoration: underline;
    }
    .content a:hover {
        opacity: 0.8;
    }

/******** HOME *********/

    .home .imageContainer {
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center center;
        margin-bottom: 2%;
    }
    .home .imageContainer img {
        visibility: hidden;
    }
    .home .imageContainer .image-link {
        display: block;
        height: 100%;
    }

/************** LIGHTBOX ***************/


    body .lightboxOverlay:focus {
        outline: none;
    }
    body .lightboxOverlay {
        background-color: white;
        opacity: 1;
    }

    body .lb-data,
    body .lb-number {
        color: black;
    }

    body .lb-outerContainer {
        position: static;
    }

    body .lb-nav  {
        height: 96%;
    }
    body .lb-nav a.lb-prev {
        background-position: 5% 48%; /* links aussen */
        background-position: 90% top; /* mittig */
        background-position: right 30px top; /* css3 feature, yeah! */
        background-image: url(../images/icons/prev.png);
        background-size: 20px 20px;
    }
    body .lb-nav a.lb-next {
        background-position: 95% 48%; /* rechts aussen */
        background-position: 10% top; /* mittig */
        background-position: 30px top; /* nur machen, wenn oben mit CSS3 gearbeitet wird */
        background-image: url(../images/icons/next.png);
        background-size: 20px 20px;
    }
    body .lb-data .lb-close {
        background-image: url(../images/icons/close.png);
        background-size: 20px 20px;
    }

    body .lb-data .lb-caption {
        font-weight: inherit;
        line-height: 1.3em
    }



/** Controls nach oben **/
    body .lb-nav  {
        top: -30px;
        width: 100%;
    }
    body .lb-nav a.lb-prev,
    body .lb-nav a.lb-next {
        width: 50%;
        background-position-y: top;
        opacity: 1;
    }
    body .lb-nav a.lb-next {
    }
    body .lb-data .lb-close {
    }

    body .lb-closeContainer {
        position: absolute;
        top: -30px;
        left: calc(50% - 15px);
        z-index: 999999;
    }
    body .lb-closeContainer .lb-close {
        background-position: top center;
    }

/*
body .lightbox .lb-container {
    width: 100% !important;
    margin-left: auto;
    margin-right: auto;
    height: auto !important;
}
body .lightbox .image {
    max-width: 100%!important;
}
*/


    
    
/************** Portraits ***************/

/************** Accordion (bei Vita, Presse, Coaching) ***************/

    
/************** Media ***************/


/************** Media-Galerie ***************/

    

/******** Links und Impressum **********/
    .kontakt_impressum .component a,
    .links_container a {
        line-height: 2;
        text-decoration: underline;
        font-weight: bold;
    }








/****************************************************************************************************/

/****************************************  Datei: 2_nav.css  ****************************************/

/****************************************************************************************************/
.burger_toggle {
    display: none;
}

.mainmenu ul,
.mainmenu ul li {
    list-style: none;
    text-align: right;
    margin-bottom: 0;
}
   
.mainmenu ul li {
    margin-bottom: 0;
    position: relative;
}

.mainmenu ul li a {
    text-transform: lowercase;
    color: black;
    margin-right: 16px;
    font-size: 15px;
    font-weight: normal;
    line-height: 2;
}
.mainmenu ul li.active a {
    font-weight: bold;
}
.mainmenu ul li.hasChildren > a {
    margin-left: 2px;
}

ul.nav-horizontal {
    display: inline-block;
}
ul.nav-horizontal li.nav-item {
    display: inline-block;
}

/* Hauptnav Startseite * /

    body.home .mainmenu {
        position: absolute;
        top: 30px;
        right: 10px;
        z-index: 99;
        margin-top: 20px;
    }
    
    
    body.home .mainmenu ul li a {
        font-weight: 400;
        margin-left: 0px;
        font-family: "Montserrat";
        font-size: 10px;
        line-height: 2;
        padding: 10px;
    }
    
    
/** Subnav, zB bei Projekte **/

     /* Das (+) und (-) Icon bei Projekte und Media */
        /* Das hier nur bei responsive anzeigen. */
        
        .mainmenu ul li a.subnavToggl {
            xdisplay: none;
            margin-right: 2px;
            text-decoration: none;
        }
            
        
        .subnavToggl img {
            width: 16px;
            height: 16px;
            vertical-align: middle;
        }
        .subnavToggl .minus-icon {
            display: none;
        }

    
        
    .nav .subnav {
        position: absolute;
        top: 21px;
        left: 15px;
        width: 300px;
        padding: 10px;
        padding: 0px;
        
        background: white;
        border-width: 1px;
        border-style: solid;
        border: none;
        text-align: left;
        box-shadow: 5px 5px 12px rgba(0,0,0,0.2);
        
        z-index: 99;
        opacity: 0;
        -webkit-transition: all 0.3s ease-in-out;
        -moz-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
    }
    .nav .subnav li {
        text-align: left;
        border-bottom: 1px dotted black;
        
        
        -webkit-transition: all 0.5s ease-in-out;
        -moz-transition: all 0.5s ease-in-out;
        -o-transition: all 0.5s ease-in-out;        
        transition: all 0.5s ease-in-out;        
        height: 0px;
        margin-bottom: 0px;
        padding-bottom: 0px;
        background: white;
    }    
    
    /* Subnav öffnen */
        .nav li.open > .subnav,
        .nav li:hover > .subnav {
            opacity: 1;
            padding: 10px;
        }
        .nav li.open > .subnav li,
        .nav li:hover > .subnav li {
            height: 30px;
            margin-bottom: 5px;
            padding-bottom: 0px;
        }
        .nav li.open > .subnav li:last-child,
        .nav li:hover > .subnav li:last-child  {
            border-bottom: none;
            margin-bottom: 0px;
            padding-bottom: 0px;
        }


    .nav .subnav li > a {
        display: block;
        padding: 5px 0;
    }
    
    .nav .colorIcon {
        display: none;
        border-width: 4px;
        border-style: solid;
        border-radius: 4px;
        margin-left: -15px;
    }
    .nav .subnav .active > .colorIcon {
        display: inline-block;
    }
        







/****************************************************************************************************/

/**************************************  Datei: 3_colors.css  ***************************************/

/****************************************************************************************************/
body, html {
    color: #1c1c1b;
    border-color: #1c1c1b;
}

/* leicht braun */
.color1 {
    color: #be9883;
    border-color: #be9883;
}

/* grau-braun */
.color2 {
    color: #55524a;
    border-color: #55524a;
}

/* dunkles blau */
.color3 {
    color: #3d4862;
    border-color: #3d4862;
}

/* hellblau */
.color4 {
    color: #bcc9da;
    border-color: #bcc9da;
}

/* rotbraun */
.color5 {
    color: #d54932;
    border-color: #d54932;
}

/* rot */
.color6 {
    color: #e6321e;
    border-color: #e6321e;
}

/* meeres-blau */
.color7 {
    color: #1677bd;
    border-color: #1677bd;
}
/* meeres-hellblau */
.color8 {
    color: #88b9d9;
    border-color: #88b9d9;
}

/* Grün */
.color9 {
    color: #0b8777;
    border-color: #0b8777;
}
/* rot */
.color10 {
    color: #e51526;
    border-color: #e51526;
}
/* blass-blau */
.color11 {
    color: #53628a;
    border-color: #53628a;
}
/* blass-hellbraun*/
.color12 {
    color: #d6b3b7;
    border-color: #d6b3b7;
}

/* hellbraun */
.color13 {
    color: #c77c55;
    border-color: #c77c55;
}

/* Tango-Rot */
.color14 {
    color: #c52530;
    border-color: #c52530;
}

/* Euridyke */
    .color15 {
        color: #323E46;
        border-color: #c52530;
    }
    /* https://trello.com/c/Z20XOtLW/#action-5c67bc83ceaefc5a0f9e74c9*/
    .color16 {
        color: #A3434C;
        border-color: #A3434C;
    }






/****************************************************************************************************/

/*********************************  Datei: 4_responsive_handy.css  **********************************/

/****************************************************************************************************/
/***** Handy ****/

/*
    Hochformat: 320-768px breit
    Querformat: 320-768px hoch
    800px ist hier allerdings der Breakpoint, weil das Hauptmenu sonst umbricht zwischen 800 und 768
*/
@media (min-width: 801px) {
    body .hideLarge {
        display: none!important;
    }
}
@media (max-width: 800px) {

    .home .imageContainer.span3 {
        width: 29%;
        margin-left: 3%;
        margin-bottom: 3%;
    }

    body.media .vCenter,
    body.media .container {
        height: auto;
        min-height: 100%;
    }

    .left, .right {
        float: none;
    }

    body .hidePhone {
        display: none!important;
    }

    .component {
        padding-top: 0px;
    }



    /* GRID */
        .row [class*="span"] {
            margin-right: 0%;
            display: block;
            float: none;
        }
        .row [class*="span"]:last-child {
            margin-right: 0;
            padding-right: 0%;
        }

        .row .span4:last-child,
        .row .span4 {
            width: 100%;
        }
        .row .span6 {
            width: 100%;
        }
        .row .span8 {
            width: 100%;
        }



    /* Header / Nav */
        .header {
            border: none;
            height: auto;
            margin-bottom: 0px;
        }

        .header .left,
        .header .middle,
        .header .right {
            float: none;
            display: block;
        }

        .header .middle {
            margin: 0px;
            padding: 20px 0px;
            vertical-align: center;
            border: 1px solid black;
            width: calc(100% - 2px);
        }

        .header .right.span4 {
            text-align: left;
            margin: 0;
            padding: 10px;
            width: calc(100% - 22px);
            display: block;
            border: 1px solid black;
            border-top: none;
            border-bottom: none;
        }


} /* maxwidth 768 */







/* Handy, Querformat */
    @media (max-width: 1200px)  and (max-height: 700px) {


    }
    
    @media (max-width: 850px)  and (max-height: 450px) {


    }
    
    @media (max-width: 450px)  {

    }

    
    
    /**/
    @media (max-width: 320px) {

        .home .imageContainer.span3 {
            width: 48%;
            margin: 0 0 1% 1%;
        }


    }
    
         
    @media (min-height: 321px) {

    }






