/*
Theme Name: Default Theme
Theme URI: 
Description: Default Template | Lukas Eberlein
Author: Lukas Eberlein
Author URI: -
Version: 0.9
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:

# General
-- Includes
-- Overall
-- Typography
-- Elements

# Content
-- Header
-- Navigation
-- Main
-- Footer

# Helpers

----------------------------------------------------------------*/
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
    font-size:100%;  /*Flexibler Ausgangswert */
}

body,html {
    margin:0;
    padding:0;
    font-family: 'helvetica' , sans-serif;
}

/* Elements */
html {
    box-sizing: border-box;
}
*,
*:before,
*:after { /* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
    box-sizing: inherit;
}

img {
    height: auto; /* Make sure images are scaled correctly. */
    max-width: 100%; /* Adhere to container width. */
    display: block;
}

h1,h2,h3 {
    clear: both;
    margin: 0;
}

p {
    line-height: 1.5em;
}
em, i {
    font-style: italic;
}

/* Links */
a {
    text-decoration: none;
    color: #555;
}
a:visited {
	color: black;
}

a:hover, a:focus, a:active {
    color: black;
}

a:focus {
    outline: thin dotted;
}


/*--------------------------------------------------------------
# Content
--------------------------------------------------------------*/

#wrapper {	
}

/*------------------------------------
-- Header & Navigation
------------------------------------*/
.header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    height: 100px;
    background-color: white;
    z-index: 2000;
}
.site-branding {
    width: 300px;
    padding: 25px 40px 0;
    float: left;
}
.header .site-title img{
    width: 100%;
}
.main-navigation {
    position: relative;
}
.header ul {
    float: right;
    padding: 2.8em 0 0 2em;
    font-size: 1em;
    text-transform: uppercase; 
    margin-right: 10%;
    display: none;
    list-style: none;
    margin-top: 0;
}

.header ul li{
    float: left;
}
.header ul a {
    color: #aaada0;
    margin: 0 20px;
    font-weight: 400;
    padding: 4px 0;   
}
.header ul .current a {
    color: #88ba14;
    border-bottom: 2px solid #88ba14;
}
.header ul a:hover {
    color: #88ba14;
}

@media all and (max-width: 1430px) { 
    .site-branding {
    width: 230px;
    padding: 25px 20px 0;
    float: left;
    }
    .header .site-title img{
    width: 100%;
    }
    .header ul {
    padding: 2.8em 0 0 0;
    font-size: 0.8em;
    margin-right: 20px;
    }
    .header ul a {
    margin: 0 15px;
    font-weight: 400;
    padding: 4px 0;   
    }
}

/* Small menu. */
.main-navigation button,
.main-navigation input[type="button"],
.main-navigation input[type="submit"]{  
    position: absolute;
    top: 25px;
    right: 50px;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0px;
    font-family: Arial;
    color: white;
    font-size: 0.9em;
    background: #88ba14; 
    padding: 7px 10px;
    text-decoration: none;
    text-transform: uppercase;
    text-shadow: none;
    box-shadow: none;
    border: none;
    cursor: pointer;
}
.main-navigation i{
    margin-right: 10px;
}

.menu-toggle,
.main-navigation.toggled ul {
	display: block;
}

@media screen and (min-width: 1000px) {
    
    .menu-toggle {
            display: none;
    }
    .main-navigation ul {
            display: block;
    }
}

@media all and (max-width: 1000px) { 
    .header ul {
    width: 100%;
    float: left;
    padding: 50px 0 0 0;
    font-size: 1em;
    margin-right: 20px;
    background-color: white;
    }
    .header ul a {
    margin: 20px 40px;
    font-weight: 400;
    padding: 4px 0;  
    line-height: 3em;
    width: 100%;
    }
    .header ul li {
    width: 100%;
    }
}
@media all and (max-width: 500px) {
    
    .header .site-title img{
    width: 70%;
    }
    .header {
    height: 80px;
    }
    .main-navigation button,
    .main-navigation input[type="button"],
    .main-navigation input[type="submit"]{  
        right: 0px;
        top: 20px;
    }    
}

/*------------------------------------
-- Main
------------------------------------*/
#main {
	color: #555;
	margin-bottom: 20px;
}
.filler {
    height: 100px;
}
.section-wrapper {
    margin-top: -100px;
    padding-top: 100px;
}

.section-wrapper:first-child .section {
    padding-top: 100px;
}
.section {
    width: 100%;
    padding-top: 80px;
}
.section h2{
    color: #a0a194;
    text-align: left;
    font-size: 1.2em;
}
.section h3{
    color: #88ba14;
    text-align: left;
    font-size: 2em;
}
.section h3 p{
    margin: 0;
    line-height: 1.4em;
}
.section .inner-text p {
    color: #9d9e90;
    font-size: 1.2em;
}
.inner {
    width: 80%;
    max-width: 1200px;
    margin: 0 auto;
}
#overlay {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: #a0a194;
    opacity: 0.7;
    z-index: 4000;
}
#overlay-content {
    display: none;
    position: fixed;
    width: 60%;
    left: 20%;
    top: 50px;
    background-color: white;
    z-index: 5000;
    padding: 50px; 
    max-height: 90%;
    overflow: auto;
}


#overlay-content h2 {
    color: #a0a194;
    text-align: left;
    font-size: 1em;
    margin-bottom: 30px;
}
#overlay-content h3 {
    color: #88ba14;
    text-align: left;
    font-size: 2em;
}
#overlay-content em{
    color: #aaada0;
    font-style: normal;
}
.close{
    position: absolute;
    top: 0;
    right: 0;
    padding: 30px;
    font-size: 3em;
    color: #aaada0;
    cursor: pointer;
    z-index: 6000;
    display: block;
    margin: 0;
}   

.scroll-2 {
    cursor: pointer;
}
    
@media screen and (max-width: 800px) {
    .section {
    padding-top: 50px;
    }
    .section h2{
    font-size: 1.1em;
    }
    .section h3{
    font-size: 1.6em;
    }
    .section .inner-text p {
    font-size: 1.0em;
    }
    #overlay-content {
    display: none;
    position: fixed;
    width: 90%;
    left: 5%;
    top: 20px;
    background-color: white;
    z-index: 5000;
    padding: 20px; 
    font-size: 0.9em;
    }
}
@media screen and (max-width: 500px) {
    .section h3{
    font-size: 1.2em;
    }
    .section .inner-text p {
    font-size: 0.9em;
    }
    .section-wrapper {
    margin-top: -80px;
    padding-top: 80px;
    }
    .inner {
    width: 88%;
    max-width: 1200px;
    margin: 0 auto;
    }
    .close{
    padding: 20px;
    } 
}

/*------------------------------------
-- Section 1 - Home
------------------------------------*/
.section.home {    
    padding: 0;
}
.intro-img {
    position: relative;
}
.intro-img img{
    width: 100%;
}
.intro-img h2 {
    position: absolute;
    width: 100%;
    left: 0;
    top: 10px;
    text-align: center;
    font-size: 2.8em;
    font-weight: bold;
    color: #969788;       
}
.intro-img h2 p {
    line-height: 1.2em;
}
.intro-text {
    background-color: #88ba14;
}
.intro-text-content {
    text-align: center;  
    background-image: url('img/blitz_klein2.png');
    background-repeat: no-repeat;
    background-position: top right;
    color: white;
    padding: 30px 0 25px;
}
.intro-text-content h2{
    width: 90%;
    margin: 0 auto;
    font-size: 2.8em;
    font-weight: bold;
    color: white;
    text-align: center;
}
.intro-text-content p{
    color: white;
}
.intro-text-content img{
    display: inline;
    margin: 20px 10px;
}
.intro-text-content-text {
    width: 50%;
    margin: 0 auto;
    font-size: 1.2em;
    font-weight: 200;
    line-height: 1.4em;
}
.intro-text-content #scroll-1 {
    cursor: pointer;
    width: 100%;
}
.intro-text-content i{
    font-size: 3em;
    margin: 20px 0;
    color: white;
}

@media screen and (max-width: 800px) {
    .intro-img img{
    width: 100%;
    }
    .intro-img h2 {
        top: 20px;
        font-size: 2.0em;
    }
    .intro-text-content h2{
        width: 95%;
        font-size: 2.0em;
    }
    .intro-text-content-text {
    width: 85%;
    font-size: 0.9em;
    }
    .intro-text-content i{
    font-size: 1.6em;
    margin: 0;
    }
}
@media screen and (max-width: 500px) {
    .intro-img {
    padding-top: 0px;
    height: 100px;
    }
    .intro-img img{
    display: none;
    }
    .intro-img h2 {
        top: 0px;
        font-size: 1.4em;
    }
    .intro-text-content h2{
    font-size: 1.4em;
    }
    .intro-text-content img{
    display: inline;
    margin: 0px 0px;
    width: 20px;
    }
}

/*------------------------------------
-- Section 1 - Our service
------------------------------------*/
.section.service {
    padding-bottom: 100px;
}
.cases {
    width: 50%;
    float: left;
}
.case {
    padding: 20px;
    cursor: pointer;
}
.case-title {
    color: white;
    font-weight: 400;
    margin-bottom: 10px;
}
.case-readmore {
}
.case-readmore img {
    float: left;
    margin-right: 10px;
}
.case-readmore p {
    float: left;
    color: white;
    margin: 10px 0 0 20px;
}
.case-content {
    display: none;
}
.office-map {
    width: 50%;
    float: left;
}

.case-content-title {
    margin-bottom: 50px;
}
.case-content-title h2{
    display: inline;
}
.case-content-title img{
    display: inline;
}
@media screen and (max-width: 700px) {
    .cases {
    width: 100%;
    float: none;
    }
    .case {
    padding: 15px;
    font-size: 0.8em;
    }
    .office-map {
    width: 100%;
    float: none;
    }
}
@media screen and (max-width: 500px) {

}

/*------------------------------------
-- Section 1 - Our Approach
------------------------------------*/
.section.approach {
    background-color: #ececea;
    padding-bottom: 100px;
}

.container{
    width: 100%;
    max-width: 1200px;
}

ul.tabs{
    margin: 0px;
    padding: 0px;
    list-style: none;
}
ul.tabs li{
    position: relative;
    display: block;
    float: left;
    width: 12.5%;
    height: 60px;
    color: white;
    display: inline-block;
    padding: 15px 15px;
    cursor: pointer;
    text-decoration: underline;
    font-size: 1.6em;
    text-align: center;
    margin: 0;
}
ul.tabs li.light {
    background-color: #b7d282;
}
ul.tabs li.dark {
    background-color: #89ba16;
}
ul.tabs li.current{
    background: white;
    color: #8abb18;
}
ul.tabs li i{
    position: absolute;
    top: 20px;
    left: 94%;
    z-index: 800;
    font-size: 0.8em;
}
ul.tabs li.light i{
    color: #b7d282;
}
ul.tabs li.dark i{
    color: #89ba16;
}
ul.tabs li.current i{
    color: white;
}
.tab-content{
    display: none;
    background: #ededed;
    padding: 15px;
    height: 270px;
}
.tab-content.current{
    display: inherit;
    background: white;
}
.tab-img {
    width: 20%;
    float: left;
}
.tab-img img{
    width: 60%;
    margin: 50px auto 0;
}
.tab-inner {
    width: 70%;
    float: left;
    padding: 10px;
}
.tab-inner .tab-title{
    font-size: 1.3em;
    color: #88ba14;
    font-weight: 700;
    margin: 20px 0;
}
.tab-inner .tab-text{
    font-size: 1.1em;
    color: #cecec7;
}

@media screen and (max-width: 700px) {
    ul.tabs li{
    height: 40px;
    padding: 10px 5px;
    font-size: 1em;
    }
    .tab-inner .tab-title{
    font-size: 1.1em;
    margin: 10px 0;
    }
    .tab-inner .tab-text{
        font-size: 0.9em;
    }
}
@media screen and (max-width: 500px) {
    .tab-img {
    display: none;
    }   
    .tab-content{
    height: auto;
    }
    .tab-inner {
    width: 100%;
    }
}

/*------------------------------------
-- Section 1 - Retailers
------------------------------------*/
.section.retailers {
    background-color: #dfdfdb;
    padding-bottom: 120px;
}
.retailer-wrap {
    width: 101%;
}
.retailer-cat {
    width: 32.3%;
    float: left;
    margin: 1% 1% 0 0;
    padding: 30px 10px;
    background-color: #c0c1b8;
    color:white;
    text-align: center;
    cursor: pointer;
}
.retailer {
    display: none;
}

    
.retailer-content .close img{
    width: 100%;
    display: block;
    margin: 0;
}  
.retailer-content img {
    display: inline-block;;
    width: 10%;
    margin: 0 1%;
}
.retailer-content img > div {
    display: inline-block;
    vertical-align: bottom;
    width: 5px;
    background-color: #999;
    margin-left: 2px;
}
@media screen and (max-width: 500px) {
    .retailer-wrap {
        width: 100%;
    }
    .retailer-cat {
        width: 100%;
        float: left;
        padding: 30px 10px;
    }
}
/*------------------------------------
-- Section 1 - References
------------------------------------*/
.section.references {
    padding-bottom: 100px;
}
.reference {
    width: 100%;
    height: 100px;
    float: left;
}


/*------------------------------------
-- Section 1 - Showcases
------------------------------------*/
.showcases {
    
}
.showcase {
    width: 100%;
    height: 260px;
    overflow: hidden;
}
.showcase-img {
    width: 40%;
}
.showcase-img img{
    width: 230%;
}
.showcase-inner {
    width: 60%;
    float: left;
    height: 100%;
    padding: 30px;
    cursor: pointer;
    position: relative;
}
.showcase-title {
    color: white;
    font-size: 2em;
    font-weight: 600;
    margin-bottom: 10px;
}
.showcase-text {
    color: white;
    font-size: 1.1em;
    font-weight: 400;
    margin-bottom: 10px;
    width: 80%;
}
.showcase-readmore {
}
.showcase-readmore img {
    float: left;
    margin-right: 10px;
}
.showcase-readmore p {
    float: left;
    color: white;
    margin: 10px 0 0 20px;
}
.showcase-content {
    display: none;
}
.showcase-content-title {
    margin-bottom: 60px;
}
.showcase-content-title h2{
    display: inline;
}
.showcase-content-title img{
    display: inline;
}

.showcase-content-wrap {
    width: 55%;
    float: left;
    margin-right: 5%;
}
.showcase-content-images {
    width: 38%;
    float: left; 
}
.showcase-content-images img{
    width: 100%;
    margin: 2% 1%;
}
.showcase-content-logo {
    width: 40%;
}



@media screen and (max-width: 800px) {
    .showcase {
    height: auto;
    }
    .showcase-img {
    display: none;
    }
    .showcase-inner {
    width: 100%;
    padding: 20px;
    }
    .showcase-text {
    color: white;
    font-size: 0.9em;
    width: 100%;
    }
}
@media screen and (max-width: 500px) {
    .showcase-content-wrap {
    width: 100%;
    float: none;
    margin-right: 0;
    }
    .showcase-content-images {
        width: 100%;
        float: none; 
    }
}
/*------------------------------------
-- Section 1 - About
------------------------------------*/
.section.about {
    background-color: #88ba14;
    padding: 0;
}
.about .inner {
    width: 100%;
    max-width: 2000px;
    background-image: url('img/blitz_groß2.png');
    background-repeat: no-repeat;
    background-position: top right;
    padding: 100px 0 50px;
}
.about h2 {
    color: white;
    text-align: center;
    margin-bottom: 20px;
}
.about h3 {
    color: white;
    text-align: center;
}
.about .inner-text p {
    color: white;
    text-align: center;
    width: 80%;
    max-width: 1200px;
    margin: 0 auto;
}

.slider-wrapper {
    position: relative;
    margin-bottom: 50px;
}
.thumb {
    width: 100%;
    position: absolute;
    left: 0;
    top: 320px;
    z-index: 1000;
    cursor: pointer;
    text-align: center;
}
.thumb-item {
    display: inline;
    text-align: center;
    padding: 20px;
    border: 2px solid white;
    color: white;
    margin: 10px 20px;
    font-size: 1.2em;
}
.thumb-item.active {
    padding: 20px;
    border: 2px solid white;
    color: #88ba14;
    background-color: white;
}

.swiper-container {
    width: 100%;
    margin-top: 60px;
}  
.swiper-slide {
}
.slide-img {
    width: 500px;
    height: 400px;
    margin: 0 auto;
}
.slide-img img{
    margin: 0 auto;
}
.slide-content {
    color: white;
    text-align: center;
    padding: 0 20%;
    font-size: 1.1em;
}

.break-line {
    border-top: 2px solid white;
    width: 15%;
    margin: 0 auto;
    padding-top: 50px;
}

@media screen and (max-width: 600px) {
    .thumb-item {
    padding: 8px;
    color: white;
    margin: 10px 4px;
    font-size: 0.9em;
    }
    .thumb-item.active {
    padding: 8px;
    border: 2px solid white;
    color: #88ba14;
    background-color: white;
    }
    .slide-img {
    width: 300px;
    height: 400px;
    margin: 0 auto;
    }
    .about .inner {
    padding: 50px 0 0px;
    }
    .about h2 {
    color: white;
    text-align: center;
    margin-bottom: 20px;
    }
    .about h3 {
        width: 95%;
        color: white;
        text-align: center;
        margin-bottom: 20px;
    }
    .about .inner-text p {
        width: 88%;
        font-size: 0.9em;
    }
    .slide-content {
    color: white;
    text-align: center;
    padding: 0 6%;
    font-size: 1em;
    }
}


@media screen and (max-width: 500px) {
    .slide-content {
    color: white;
    text-align: center;
    padding: 40px 6% 0;
    font-size: 0.9em;
    }
    .thumb {
    width: 85%;
    position: absolute;
    left: 10%;
    top: 280px;
    }
    .thumb-item {
    display: block;
    padding: 8px;
    color: white;
    margin: 10px 4px;
    font-size: 0.9em;
    }
    .thumb-item.active {
    padding: 8px;
    border: 2px solid white;
    color: #88ba14;
    background-color: white;
    }
}    
/*------------------------------------
-- Contact
------------------------------------*/
.section.contact {
    background-color: #88ba14;
    padding-bottom: 100px;  
}
.contact .inner {
    width: 100%;
    max-width: 2000px;
}
.contact h2 {
    color: white;
    text-align: center;
}
.contact h3 {
    color: white;
    text-align: center;
}
.contact .inner-text p {
    color: white;
    text-align: center;
    width: 80%;
    margin: 0 auto;
}
.contact-form-wrapper {
    width: 60%;
    margin: 50px auto;
}
.form-left {
    width: 50%;
    float: left;
}
.form-right {
    width: 49%;
    float: left;
    margin-left: 1%;
}
.form-right p, .form-left p{
    margin: 0 0 5px 0;
}

.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 textarea
{
    background-color: #fff;
    color: #000;
    width: 100%;
    height: 60px;
    border: none;
    font-family: 'helvetica', sans-serif;
}
.your-message textarea {
    height: 255px;
    padding-top: 60px;  
}
.wpcf7 textarea.wpcf7-textarea {
    padding-top: 20px;
}
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 textarea {
    font-size: 1em;
    padding: 0 0 0 20px;
}
.submitBt {
    width: 30%;
    margin: 20px auto;
}

input[type="submit"] {
    width: 100%;
    margin: 0 auto;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0px;
    font-family: Arial;
    color:white;
    font-size: 1em;
    background: none; 
    padding: 20px 20px;
    text-decoration: none;
    text-transform: uppercase;
    text-shadow: none;
    box-shadow: none;
    border: 2px solid white;
    cursor: pointer;
}

input[type="submit"]:hover {
    background: white;
    color: #88ba14;
}

.offices {
    width: 100%;
}
.office {
    width: 40%;
    margin: 0 5%;
    float: left;
    text-align: center;
    color: white;
    font-size: 1.2em;
    line-height: 1.8em;
    font-weight: 100;   
}


@media screen and (max-width: 600px) {
    .contact-form-wrapper {
    width: 90%;
    margin: 50px auto;
    }  
    .form-left {
    width: 100%;
    float: none;
    }
    .form-right {
        width: 100%;
        float: none;
        margin-left: 0;
    }
    .office {
    width: 88%;
    margin: 0 auto;
    float: none;
    text-align: center;
    color: white;
    font-size: 1.2em;
    line-height: 1.8em;
    font-weight: 100;   
    }
    .section.contact {
    padding: 0;
    }
}
/*------------------------------------
-- Footer
------------------------------------*/
#footer {
    background-color: #aaada0;
    color: #555;
    padding: 50px 0;
}
.footer-item {
    width: 20%;
    float: left;
    margin: 0 2.5%;
    color: white;
    font-weight: 100;
}
.footer-item h5{
    font-size: 1em;
    margin: 0;
    color: white;
}
.footer-item p{ 
    margin: 0.2em 0;
}
@media screen and (max-width: 600px) {
    .footer-item {
    width: 90%;
    float: none;
    margin: 50px 5%;
    color: white;
    font-weight: 100;
    }
}
/*------------------------------------
-- Impressum
------------------------------------*/
.header ul.imprint {
    float: left;
}
.inner.imprint {
    padding: 100px 0;
}


/*------------------------------------ 
RESPONSIVE STUFF -- media queries: https://css-tricks.com/snippets/css/media-queries-for-standard-devices/
------------------------------------*/

@media all and (max-width: 980px) { }

@media all and (max-width: 480px) { }




/*--------------------------------------------------------------
# Clearings
--------------------------------------------------------------*/
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
	content: "";
	display: table;
}

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
	clear: both;
}