/*
 * Web Starter Kit
 *
 * Multi-screen layout styles for your page. Brought to you by the
 * Web Starter Kit team.
 *
 */

html, body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    position: relative;
    font-family: 'Source Sans Pro', 'Helvetica', 'Arial', sans-serif;
    font-weight: 300;
    background-color: #FFFFFF;
    box-sizing: border-box;
    overflow: hidden;
    min-height: 100%;
}

.app-bar {
    display: block;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #fff;
    overflow: hidden;
    z-index: 1;
}

.app-bar-container {
    display: -webkit-flex;
    display: flex;
    width: 100%;
    height: 60px;
    position: relative;
    -webkit-flex-direction: row;
    flex-direction: row;
    margin: 0 auto;
}

.app-bar.open,
.app-bar.open ~ main {
    -webkit-transform: translate(250px, 0);
    transform: translate(250px, 0);
}

.app-bar .logo {
    -webkit-flex: 1;
    flex: 1;
    font-size: 2em;
    line-height: 60px;
    margin: 0 16px;
    padding: 0;
    color: #666666;
    float: none;
    max-width: none;
    font-family: 'Source Sans Pro', 'Helvetica Neue', Helvetica, sans-serif;
    font-weight: 300;
    line-height: 60px;
}

.app-bar .logo a {
    text-decoration: none;
    color: inherit;
    font-weight: normal;
}

.app-bar-actions {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    z-index: 2;
}

.app-bar button {
    width: 60px;
    height: 60px;
    background-image: none;
    background-color: transparent;
    border: none;
    padding: 0;
    transition: background-color 0.2s ease-out;

    -webkit-tap-highlight-color: transparent;
}

.app-bar button img {
    width: 60px;
    height: 60px;
}

.app-bar button:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.app-bar button:focus {
    background-color: rgba(255, 255, 255, 0.2);
    outline: 0;
}

.app-bar button:active {
    background-color: rgba(255, 255, 255, 0.4);
}

button.menu img {
    height:24px;
    width: 24px;
}

.promote-layer {
    /*
    This may promote the layer to a composited
    layer.

    Replace with will-change when available

    #perfmatters
    */
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.base, p, ul, ol {
    font-size: 19px;
}

.textbox{
    font-size: 16px;
	line-height:22px;
	text-align:left;
	padding:8px;
}

.navdrawer-container {
    z-index: 1;
    position: fixed;
    top: 0;
    bottom: 0;
    width: 250px;
    height: 100%;
    background-color: #e2001a;
    color: #fefefe;
    -webkit-transform: translate(-250px, 0);
    transform: translate(-250px, 0);
    overflow-y: scroll;
}

.navdrawer-container.open {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
}

.app-bar, .navdrawer-container, main {
    transition: -webkit-transform 0.3s ease-out;
    transition: transform 0.3s ease-out;
}

.navdrawer-container h4,
.navdrawer-container ul li a {
    height: 60px;
    padding: 0 20px;
    line-height: 60px;
}

.navdrawer-container h4 {
    background-color: white;
    color: #3367D6;
}

.navdrawer-container ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

.navdrawer-container ul li a {
    display: block;
    text-decoration: none;
    color: white;
    transition: background-color 0.2s ease-out;
}

.navdrawer-container ul li {
    border-bottom-style: solid;
    border-width: 1px;
    border-color: white;
    padding: 0;
}

.navdrawer-container ul li:before {
    content: none;
}

.navdrawer-container ul li a:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.navdrawer-container ul li a:focus {
    background-color: rgba(255, 255, 255, 0.3);
    outline: 0;
}

.navdrawer-container ul li a:active {
    background-color: rgba(255, 255, 255, 0.4);
}

main {
    margin: 0 auto;
    /* Height of the header */
    padding: 260px 16px 16px 16px;
    min-height: 100%;
}

/** Larger Screens - desktops and tablets **/
@media all and (min-device-width: 1200px) {
    .app-bar {
        position: relative;
    }

    .app-bar-container {
        display: block;
        height: 130px;
        max-width: 864px;
        padding: 0 16px;
        box-sizing: border-box;
        background-color: #ffffff;
    }

    .app-bar .logo {
        float: left;
        margin: 0;
        padding: 0;
        line-height: 130px;
        font-size: 36px;
    }

    .app-bar-actions {
        float: right;
    }

    .app-bar:after {
        content: ' ';
        display: block;
        height: 0;
        overflow: hidden;
        clear: both;
    }

    button.menu {
        display: none;
    }


    .navdrawer-container {
        position: relative;
        width: 100%;
        height: auto;
        margin-top: 130px;
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
        transition: none;
        overflow-y: auto;
    }

    .navdrawer-container h4 {
        display: none;
    }

    .navdrawer-container ul {
        display: -webkit-flex;
        display: flex;
        max-width: 45%;
        margin: 0 auto;
        -webkit-flex-direction: row;
        flex-direction: row;
    }

    .navdrawer-container ul li {
        border: none;
    }

    main {
        max-width: 80%;
        padding-top: 0;
        min-height: initial;
    }

    body {
        overflow-y: scroll;
    }

    .navdrawer-container {
        position: relative;
        margin-top: 0;
    }
}

@media all and (min-device-width: 1200px) and (max-width: 800px) {
    .app-bar .logo {
      
        width: 100%;
        line-height: normal;
        text-align: center;
        padding-top: 36px;
    }


    .app-bar-container {
        height: auto;
    }

    .app-bar-actions {
        width: 100%;
    }

    .navdrawer-container {
        padding: 0 16px;
        overflow-y: auto;
    }

    .navdrawer-container li {
        -webkit-flex: 1;
        flex: 1;
        text-align: center;
    }
}

#slidy-container { width: 95%; margin: 90px auto; overflow: hidden; }



@media screen and (max-width: 600px) {
#slidy-container figcaption { font-size: 1rem !important; }
}


.case-study-wrapper {
    background: none repeat scroll 0 0 #f0f0f0;
    margin-top: 15px;
    padding-top: 78px;
}
.case-study-wrapper {
    padding-bottom: 52px;
    padding-top: 26px;
}

.cbp-af-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #f6f6f6;
    z-index: 10000;
    height: 87px;
    overflow: hidden;
    -webkit-transition: height 0.3s;
    -moz-transition: height 0.3s;
    transition: height 0.3s;
}
 
.cbp-af-header .cbp-af-inner {
    width: 90%;
    max-width: 69em;
    margin: 0 auto;
    padding: 0 1.875em;
}
 
.cbp-af-header h1,
.cbp-af-header nav {
    display: inline-block;
    position: relative;
	padding-top:2%;
}
 
 /* We just have one-lined elements, so we'll center the elements with the line-height set to the height of the header */
.cbp-af-header h1,
.cbp-af-header nav a {
    line-height: 10px;
}
 
.cbp-af-header h1 {
    text-transform: uppercase;
    color: #333;
    letter-spacing: 4px;
    font-size: 4em;
    margin: 0;
    float: left;
}
 
.cbp-af-header nav {
    float: right;
}
 
.cbp-af-header nav a {
    color: #e2001a;
    font-weight: 400;
    margin: 0 0 0 20px;
    font-size: 1.4em;
	text-decoration:none;
}
 
.cbp-af-header nav a:hover {
    color: #333;
}
 
/* Transitions and class for reduced height */
.cbp-af-header h1,
.cbp-af-header nav a {
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}
 
.cbp-af-header.cbp-af-header-shrink {
    height: 90px;
}
 
.cbp-af-header.cbp-af-header-shrink h1,
.cbp-af-header.cbp-af-header-shrink nav a {
    line-height: 30px;
}
 
.cbp-af-header.cbp-af-header-shrink h1 {
    font-size: 2em;
}
 
/* Example Media Queries */
@media screen and (max-width: 55em) {
     
    .cbp-af-header .cbp-af-inner {
        width: 100%;
    }
 
    .cbp-af-header h1,
    .cbp-af-header nav {
        display: block;
        margin: 0 auto;
        text-align: center;
        float: none;
    }
 
    .cbp-af-header h1,
    .cbp-af-header nav a {
        line-height: 15px;
    }
 
    .cbp-af-header nav a {
        margin: 0 10px;
    }
 
    .cbp-af-header.cbp-af-header-shrink h1,
    .cbp-af-header.cbp-af-header-shrink nav a {
        line-height: 25px;
    }
 
    .cbp-af-header.cbp-af-header-shrink h1 {
        font-size: 2em;
    }
 
    .cbp-af-header.cbp-af-header-shrink nav a {
        font-size: 1em;
    }
}
 
@media screen and (max-width: 32.25em) {
    .cbp-af-header nav a {
        font-size: 1em;
    }
}
 
@media screen and (max-width: 24em) {
    .cbp-af-header nav a,
    .cbp-af-header.cbp-af-header-shrink nav a {
        line-height: 1;
    }
}

a#imprint {
	 display: block;
    float: right;
    margin-bottom: 2em;
    position: relative;
}

@media all and (min-device-width: 600px) and (max-width: 930px) {
	.cbp-af-header {height:70px;}
	.cbp-af-inner h1 {width:30% !important;float:left !important;}	
	.cbp-af-header nav {width:70% !important;float:left !important;text-align:right;}
            input.button--primary {width:100% !important;}
}

@media all and (min-device-width: 600px) and (max-width: 710px) {
	.cbp-af-header {height:60px;}
	.cbp-af-inner h1 {width:20% !important;}	
	.cbp-af-header nav {width:80% !important;font-size:0.9em;}
            .cbp-af-header nav a {
                margin: 0 5px;
            }
            input.button--primary {width:100% !important;}
}

@media all and (min-device-width: 300px) and (max-width: 420px) {
	.cbp-af-header {height:60px;}
	.cbp-af-header nav {width:80% !important;font-size:0.7em;}
             input.button--primary {width:100% !important;}

}




.produkte {
    position:relative;
}

.produkte p {
    padding-bottom:2em;
}

.produkte p a.button--primary {
     display:block;
  position:absolute;
  left:0;
  right:0;
  bottom:1em;
  margin:auto;
  width:80%;

}

.produkte img {
    width:94%;
}



.designawards ul li:before {
display:none;

}

.designawards ul li a {
    color:#e2001a;
    font-weight:bold;
    text-decoration:none;
}

.designawards ul li a:hover {
    color:#4d4d4d;
    text-decoration:underline;
}

.designawards div.columns {
    -moz-column-width: 11.5em; /* Firefox */
    -webkit-column-width: 11.5em; /* webkit, Safari, Chrome */
    column-width: 11.5em;
    text-align:left;
}

.designawards .columns ul {
    margin: 0;
    padding: 0 !important;
    list-style-type: none;
    padding-left:0;
}

.designawards .columns ul li {
    white-space:nowrap;
    font-size:80%;
}

.designawards ul.columns li:first-child {
margin-top:0px;
}