/*! HTML5 Boilerplate v5.3.0 | MIT License | https://html5boilerplate.com/ */

/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */

/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */

html {
    color: #222;
    font-size: 1em;
    line-height: 1.4;
}

/*
 * Remove text-shadow in selection highlight:
 * https://twitter.com/miketaylr/status/12228805301
 *
 * These selection rule sets have to be separate.
 * Customize the background color to match your design.
 */

::-moz-selection {
    background: #b3d4fc;
    text-shadow: none;
}

::selection {
    background: #b3d4fc;
    text-shadow: none;
}

/* FONTS */
@font-face {
    font-family: 'robotolight';
    src: url('../fonts/Roboto-Light-webfont.eot');
    src: url('../fonts/Roboto-Light-webfont.eot?#iefix') format('embedded-opentype'),
    url('../fonts/Roboto-Light-webfont.woff') format('woff'),
    url('../fonts/Roboto-Light-webfont.ttf') format('truetype'),
    url('../fonts/Roboto-Light-webfont.svg#robotolight') format('svg');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'robotoregular';
    src: url('../fonts/Roboto-Regular-webfont.eot');
    src: url('../fonts/Roboto-Regular-webfont.eot?#iefix') format('embedded-opentype'),
    url('../fonts/Roboto-Regular-webfont.woff') format('woff'),
    url('../fonts/Roboto-Regular-webfont.ttf') format('truetype'),
    url('../fonts/Roboto-Regular-webfont.svg#robotoregular') format('svg');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'robotomedium';
    src: url('../fonts/Roboto-Medium-webfont.eot');
    src: url('../fonts/Roboto-Medium-webfont.eot?#iefix') format('embedded-opentype'),
    url('../fonts/Roboto-Medium-webfont.woff') format('woff'),
    url('../fonts/Roboto-Medium-webfont.ttf') format('truetype'),
    url('../fonts/Roboto-Medium-webfont.svg#robotomedium') format('svg');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'robotothin';
    src: url('../fonts/Roboto-Thin-webfont.eot');
    src: url('../fonts/Roboto-Thin-webfont.eot?#iefix') format('embedded-opentype'),
    url('../fonts/Roboto-Thin-webfont.woff') format('woff'),
    url('../fonts/Roboto-Thin-webfont.ttf') format('truetype'),
    url('../fonts/Roboto-Thin-webfont.svg#robotothin') format('svg');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'robotothin_italic';
    src: url('../fonts/Roboto-ThinItalic-webfont.eot');
    src: url('../fonts/Roboto-ThinItalic-webfont.eot?#iefix') format('embedded-opentype'),
    url('../fonts/Roboto-ThinItalic-webfont.woff') format('woff'),
    url('../fonts/Roboto-ThinItalic-webfont.ttf') format('truetype'),
    url('../fonts/Roboto-ThinItalic-webfont.svg#robotothin_italic') format('svg');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'ion-icons';
    src: url('../fonts/ion-icons/ionicons.eot');
    src: url('../fonts/ion-icons/ionicons.eot?#iefix') format('embedded-opentype'),
    url('../fonts/ion-icons/ionicons.woff') format('woff'),
    url('../fonts/ion-icons/ionicons.ttf') format('truetype'),
    url('../fonts/ion-icons/ionicons.svg#ionicons') format('svg');
    font-weight: normal;
    font-style: normal;
}


/*

PROJEKTFARBEN:

Schwarz             #000000
Dunkelgrau          #707173
Neues Dunkelgrau    #57585a
Hellgrau            #ececed
Gruen               #00782c

*/


/*
 * A better looking default horizontal rule
 */

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
}

/*
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440
 */

audio,
canvas,
iframe,
img,
svg,
video {
    vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */

fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */

textarea {
    resize: vertical;
}

/* ==========================================================================
   Browser Upgrade Prompt
   ========================================================================== */

.browserupgrade {
    margin: 0.2em 0;
    background: #ccc;
    color: #000;
    padding: 0.2em 0;
}

/* ==========================================================================
   Author's custom styles
   ========================================================================== */

/*GLOBAL START*/
a {font-family: robotoregular; font-size: 14px; color: #707173}
a:hover {font-family: robotoregular;font-weight: bold; font-size: inherit; color: #707173}
a:visited {font-family: robotoregular; font-size: 14px; color: #707173}
p>a {font-size: inherit;}

.nopadding{
    padding-right:0;
    padding-left:0;
}
.nopaddingright{
    padding-right:0;
}


@media screen and (min-width: 576px){
    .paddinghalf{
        padding-left: 7.5px;
        padding-right: 7.5px;
    }
    .marginhalf{
        margin-left: -7.5px;
        margin-right: -7.5px;
    }
}

/*GLOBAL END*/

/*HEADER / NAV START*/
header {
    -webkit-box-shadow: 0 5px 10px 0px rgba(85,85,85,0.1);
    -moz-box-shadow: 0 5px 10px 0px rgba(85,85,85,0.1);
    box-shadow: 0 5px 10px 0px rgba(85,85,85,0.1);
    height: 70px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    background-color: white;
    width: 100%;
}
.logo{
    padding-top: 20px;
    padding-left: 6px;
    /*padding-right: 0px;
    padding-left: 0px;*/
}
.logo img {
    max-width: 300px;
    width: 100%;
    height: auto;
}
/*.mainNav  a:first-child{
    -webkit-box-shadow: 10px 0px 0px -9px #00782c;
    -moz-box-shadow: 10px 0px 0px -9px #00782c;
    box-shadow: 0px 0px 10px 0px #00782c;
}*/

.langSwitch, .mainNav, .hContact {
    float: right;
}

.mainNav{
    padding-left: 0;
}
.mainNav li {
    float: left;
    margin: 24px 18px 0 0;
    list-style: none;
    border-left: 1px solid transparent;
}

.mainNav a:hover, .langSwitch a:hover, .mobileLangSwitch a:hover {
    color: #00782c;
    font-weight: normal;
}
.mainNav a.active:hover {
    color: #00782c;
    font-weight: bold;
}

.mainNav li  > ul {
    display: none;

}
.mainNav li:hover  > ul {
    display: block;
    border-left: 1px solid #00782c;
    margin-left: -1px
}

.mainNav li ul {
    z-index: 1000;
    padding:0;
    position: absolute;
    padding-top: 16px;
    background-color: white;
}
.mainNav li ul li {
    float: none;
    padding:0;
    margin: 0;
}

.mainNav li a {
    padding: 6px;
}
.mainNav > li:hover {
    border-left: 1px solid #00782c;
}

.mainNav .active {
    font-weight: bold;
}
.langSwitch{
    margin-top: 25px;
    margin-right: 30px;
}

.hContact{
    color: #fff;
    background-color: #57585a;
    width: 146px;
    height: 70px;
    padding:24px 10px;
    font-size: 14px;
}
.hContact a, .hContacta :hover, .hContact a:visited  {font-family: robotoregular; font-size: 14px; color: #fff}

.search{
    background-color: #eceded;
    width: 146px;
    height: 30px;
    position: absolute;
    padding-left: 3px;
    padding-top: 3px;
    top: 100%;
    right: 0;
    z-index: 1000;
    color: #707173;
}
.search-field, .searchbox-sword{
    width: 116px;
    height: 27px;
    border: none;
    padding-left: 3px;
    background-color: #eceded;
}
.search-field:focus, .searchbox-sword:focus{
    outline: none;
}

.searchbox-button{
    height: 18px;
    width: 18px;
}
#top{
    position: absolute;
}

/* MOBILE */

.mobileNavContainer {
    position: relative;
    display: none;
    overflow: hidden;
    width: 100%;
    height: 60vh;
    max-height: 550px;
}
.mobileLangSwitch{
    position: relative;
    overflow: auto;
    top: 0;
    width: 100%;
    background: #fff;
    padding-left: 46px;
}
#hMenuMobile{
    position: relative;
    overflow: auto;
    top: 0;
    width: 100%;
    height: 95%;
    list-style: none;
    background: #fff;
    -webkit-box-shadow: 0 5px 10px 0px rgba(85,85,85,0.1);
    -moz-box-shadow: 0 5px 10px 0px rgba(85,85,85,0.1);
    box-shadow: 0 5px 10px 0px rgba(85,85,85,0.1);
}
#hMenuMobile ul {
    list-style: none;
}

#toggle {
    display: block;
    width: 28px;
    height: 30px;
    margin: 30px 14px 0 0;
    position: relative;
    float: right;
}

#toggle span:after,
#toggle span:before {
    content: "";
    position: absolute;
    left: 0;
    top: -9px;
}
#toggle span:after{
    top: 9px;
}
#toggle span {
    position: relative;
    display: block;
}

#toggle span,
#toggle span:after,
#toggle span:before {
    width: 100%;
    height: 5px;
    background-color: #888;
    transition: all 0.3s;
    backface-visibility: hidden;
    border-radius: 2px;
}

/* on activation */
#toggle.on span {
    background-color: transparent;
}
#toggle.on span:before {
    -webkit-transform: rotate(45deg) translate(5px, 5px);
    transform: rotate(45deg) translate(5px, 5px);
}
#toggle.on span:after {
    -webkit-transform: rotate(-45deg) translate(7px, -8px);
    transform: rotate(-45deg) translate(7px, -8px);
}
#toggle.on + #menu {
    opacity: 1;
    visibility: visible;
}

/* menu appearance*/
#mobileNav {
    position: absolute;
    color: #999;
    width: 200px;
    padding: 10px;
    margin: auto;
    font-family: "Segoe UI", Candara, "Bitstream Vera Sans", "DejaVu Sans", "Bitstream Vera Sans", "Trebuchet MS", Verdana, "Verdana Ref", sans-serif;
    text-align: center;
    border-radius: 4px;
    background: white;
    box-shadow: 0 1px 8px rgba(0,0,0,0.05);
    /* just for this demo */
    opacity: 0;
    visibility: hidden;
    transition: opacity .4s;
    overflow: hidden;
}
#mobileNav:after {
    position: absolute;
    top: -15px;
    left: 95px;
    content: "";
    display: block;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 20px solid white;
}
#mobileNav ul, #mobileNav  li, #mobileNav  li a {
    list-style: none;
    display: block;
    margin: 0;
    padding: 0;
}
#hMenuMobile > li:hover {
    border-left: 1px solid #00782c;
    margin-left: -1px;
}

#hMenuMobile > li:hover  > ul {
    display: block;
    border-left: 1px solid #00782c;
    margin-left: -1px;
}
#hMenuMobile li a {
    padding-left: 6px
}

#mobileNav li a {
    padding: 5px;
    color: #888;
    text-decoration: none;
    transition: all .2s;
    padding-left: 6px;
}
#mobileNav li a:hover,
#mobileNav li a:focus {
    background: #1ABC9C;
    color: #fff;
}
#hMenuMobile li > ul {
    /*height:0;*/
    overflow: hidden;
}

.mobilSwitch {
    display: none;
}

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

    .langSwitch {
        margin-right: 15px;
    }

    .mainNav li {
        margin: 24px 10px 0 0;
    }
}

@media screen and (max-width: 1005px ) {
    .hContact {display: none}
}
@media screen and (max-width: 992px ) {
    .mainNav{display: none}
    .langSwitch{display: none}
    .mobilSwitch{display: block}
}

/*HEADER / NAV END*/

.cc-window a{
    font-size: 1rem;
}



/* ==========================================================================
   Helper classes
   ========================================================================== */

/*
 * Hide visually and from screen readers
 */

.hidden {
    display: none !important;
}

/*
 * Hide only visually, but have it available for screen readers:
 * http://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 */

.visuallyhidden {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

/*
 * Extends the .visuallyhidden class to allow the element
 * to be focusable when navigated to via the keyboard:
 * https://www.drupal.org/node/897638
 */

.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
    clip: auto;
    height: auto; margin: 0;
    overflow: visible;
    position: static;
    width: auto;
}

/*
 * Hide visually and from screen readers, but maintain layout
 */

.invisible {
    visibility: hidden;
}

/*
 * Clearfix: contain floats
 *
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    `contenteditable` attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that receive the `clearfix` class.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */

.clearfix:before,
.clearfix:after {
    content: " "; /* 1 */
    display: table; /* 2 */
}

.clearfix:after {
    clear: both;
}

/* ==========================================================================
   EXAMPLE Media Queries for Responsive Design.
   These examples override the primary ('mobile first') styles.
   Modify as content requires.
   ========================================================================== */

@media only screen and (min-width: 35em) {
    /* Style adjustments for viewports that meet the condition */
}

@media print,
       (-webkit-min-device-pixel-ratio: 1.25),
       (min-resolution: 1.25dppx),
       (min-resolution: 120dpi) {
    /* Style adjustments for high resolution devices */
}

/* ==========================================================================
   Print styles.
   Inlined to avoid the additional HTTP request:
   http://www.phpied.com/delay-loading-your-print-css/
   ========================================================================== */

@media print {
    *,
    *:before,
    *:after,
    *:first-letter,
    *:first-line {
        background: transparent !important;
        color: #000 !important; /* Black prints faster:
                                   http://www.sanbeiji.com/archives/953 */
        box-shadow: none !important;
        text-shadow: none !important;
    }

    a,
    a:visited {
        text-decoration: underline;
    }

    a[href]:after {
        content: " (" attr(href) ")";
    }

    abbr[title]:after {
        content: " (" attr(title) ")";
    }

    /*
     * Don't show links that are fragment identifiers,
     * or use the `javascript:` pseudo protocol
     */

    a[href^="#"]:after,
    a[href^="javascript:"]:after {
        content: "";
    }

    pre,
    blockquote {
        border: 1px solid #999;
        page-break-inside: avoid;
    }

    /*
     * Printing Tables:
     * http://css-discuss.incutio.com/wiki/Printing_Tables
     */

    thead {
        display: table-header-group;
    }

    tr,
    img {
        page-break-inside: avoid;
    }

    img {
        max-width: 100% !important;
    }

    p,
    h2,
    h3 {
        orphans: 3;
        widows: 3;
    }

    h2,
    h3 {
        page-break-after: avoid;
    }
}




/* WEBPAGES */

body{
    font-family: robotoregular;
    color: #707173;
    padding-top: 72px;
    height: 100%;
    width: 100%;
    background-color: unset!important;
}
h1,h2,h3,h4,h5,p, ul li{
    font-family: robotolight;
}
h1 strong,h2 strong,h3 strong,h4 strong,h5 strong,p, ul li{
    font-family: robotoregular;
    font-weight: 400;
}
section{
    position: relative;
    z-index: 3;
}
/*Podcasts*/
.podcasts iframe{
    height: 60vh;
}
.podcasts h1{
    margin-bottom: 30px;
    text-align: center;
}
.podcasts .table-container{
    padding: 30px 0 80px 0;
}
.podcasts .podcast-table{
    width: 100%;
    padding: 50px 0;
}
.podcasts .podcast-table td{
    padding: 10px;
}
.podcasts .podcast-table td:first-child{
    width: 150px;
    font-weight: bold;
    font-size: 1rem;
}


.podcasts .podcast-table td audio{
    width: 100%;
}
.podcasts .podcast-table th{
    padding: 10px;
    font-size: 1rem;
    color: #00782c;
}

/* TT NEWS */

section.kunstwoche {
    margin-top: 100px;
    margin-bottom: 100px;
    z-index: 5;
}
.kunstwoche #to-gallery{
    font-size: 1.314em;
    color: #00872c;
    position: relative;
    top: -50px;
    display: none;
}

.kunstwoche h2 {
    font-size: 3.571em;
    font-weight: bold;
    margin-top: 0;
    margin-bottom: 70px;
}

.kunstwoche h3 {
    font-size: 2.143em;
    margin-bottom: 20px;
    margin-top: 0;
}

.kunstwoche h4, .kunstwoche p {
    font-size: 1.214em;
    margin-bottom: 20px;
}

.kunstwoche .newstime {
    font-size: 1.214em;
    margin-bottom: 7px;
}

.kunstwoche .news-single-img {
    float: none;
    margin-bottom: 50px;
    margin-left: 0;
}

.kunstwoche .news-single-img img {
    height: auto;
    width: 308px;
    max-width: 100%;
}
.kunstwoche .article a{
    color: #00782c;
    font-weight: bold;
    font-size: inherit;
}

.kw-archiv {
    margin-top: 2px;
}

.kw-archiv p {
    margin-bottom: 44px;
}

.kw-archiv .newsImageSmall {
    margin-bottom: 22px;
}

.kw-archiv .activePage {
    font-weight: bold;
    color: #00782c;
}

/* FOOTER Start */
footer {
    background-color: #57585a;
    height: 170px;
    padding-top: 30px;
    color: #ffffff;
}
footer .footer-list{
    position: absolute;
    text-align: left;
}
footer .footer-social{
    position: absolute;
    text-align: right;
}
footer .footer-list a, footer .footer-social a{
    font-size: 1.133em;
    color: #ffffff;
}
footer .footer-social img{
    height: 25px;
    width: auto;
    padding: 3px;
}
footer h3{
    font-size: 1.857em;
    margin-top: 15px;
}
footer ul {
    list-style-type: none;
}
footer a:hover {
    text-decoration: none;
}
footer div > ul > li:hover {
    border-color: #ffffff;
    padding-left: 1px;
}
footer .arrow-top{
    position: relative;
    z-index: 4;
    margin: 0 auto;
    text-align: center;
    bottom: 60px;
}

.arrow-down{
    position: relative;
    margin: 0 auto;
    text-align: center;
    bottom: 30px;
    height: 0;
}

.Suche footer, .Search footer, .error404 footer, .short footer{
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 10;
}

@media screen and (max-width: 1599px) {
    .kunstwoche h2 {
        font-size: 2.55em;
    }
    .kunstwoche h1 {
        font-size: 2.7em;
    }
}
@media screen and (max-width: 1199px) {
    .kunstwoche h2 {
        font-size: 2em;
    }
    .kunstwoche h1 {
        font-size: 2.2em;
    }
}
@media screen and (max-width: 991px){
    footer .footer-list, footer .footer-social{
        position: relative;
        text-align: center;
    }
    footer div > ul > li:hover {
        border: none;

    }
    footer ul{
        padding-left: 0;
    }
    footer{
        padding-top: 0;
        height: 220px;
    }
    footer .arrow-top{
        bottom: 30px;
    }
    .kw-archiv {
        display: none;
    }
}
@media screen and (max-width: 767px) {
    .kunstwoche h1 {
        font-size: 1.4em;
    }
    .kunstwoche h2 {
        font-size: 1.3em;
    }
    .kunstwoche h3 {
        font-size: 1.2em;
    }
    .kunstwoche h4, .kunstwoche p, .kunstwoche .newstime {
        font-size: 1.1em;
    }
}
@media screen and (max-width: 425px){
    footer{
        height: 240px;
    }
}
@media screen and (min-width: 992px){
    footer .footer-social{
        right: 8.33%;
    }
}
@media screen and (min-width: 1200px){
    footer h3{
        font-size: 2.643em;
        margin-top: 5px;
    }
}
@media screen and (min-width: 1300px){
    footer .footer-list{
        left: 8.33%;
    }

}
@media screen and (min-width: 1600px){
    footer .footer-list{
        /*left: 16.67%;*/
        left: 14%;
    }
    footer .footer-social{
        /*right: 16.67%;*/
        right: 14%;
    }
}
/* FOOTER End */

@media screen and (min-width: 1500px){

    .col-xl-0, .col-xl-1, .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-10, .col-xl-11, .col-xl-12 {
        float: left;

    }

    .container {
        width: 1306px;
    }


    .col-xl-0{
        width: 0%;
    }
    .col-xl-1{
        width: 8.33%;
    }
    .col-xl-2{
        width: 16.66%;
    }
    .col-xl-3{
        width: 25%;
    }
    .col-xl-4{
        width: 33.33%;
    }
    .col-xl-5{
        width: 41.66%;
    }
    .col-xl-6{
        width: 50%;
    }
    .col-xl-7{
        width: 58.33%;
    }
    .col-xl-8{
        width: 66.66%;
    }
    .col-xl-9{
        width: 75%;
    }
    .col-xl-10{
        width: 83.33%;
    }
    .col-xl-11{
        width: 91.66%;
    }
    .col-xl-12{
        width: 100%;
    }
    .col-xl-offset-1{
        margin-left: 8.33%;
    }
    .col-xl-offset-2{
        margin-left: 16.66%;
    }
    .col-xl-offset-3{
        margin-left: 25%;
    }
    .col-xl-offset-4{
        margin-left: 33.33%;
    }
    .col-xl-offset-5{
        margin-left: 41.66%;
    }
    .col-xl-offset-6{
        margin-left: 50%;
    }
    .col-xl-offset-7{
        margin-left: 58.33%;
    }
    .col-xl-offset-8{
        margin-left: 66.66%;
    }
    .col-xl-offset-9{
        margin-left: 75%;
    }
    .col-xl-offset-10{
        margin-left: 83.33%;
    }
    .col-xl-offset-11{
        margin-left: 91.66%;
    }
    .col-xl-offset-12{
        margin-left: 100%;
    }
}

@media screen and (min-width: 1700px){

    .col-xxl-6{
        width: 50%;
        float: left;
    }
    .col-xxl-offset-3{
        margin-left: 25%;
    }
}

@media (min-width: 768px) {

    .col-sm-0 {
        /*display: none;*/
    }
}

/*
@media screen and (max-width: 425px){
    footer{
        padding-top: 0;
        height: 210px;
    }
}*/
