body {
    background-color: #fff;
    font-family: 'Source Sans Pro', 'Open Sans', sans-serif;
    line-height: 24px;
    font-size: 20px;
    color: #818181;
}

figure, p, address {
    margin: 0;
}

p {
    line-height: 25px;
}

iframe {
    border: 0;
}

a {
    -webkit-transition: all 0.3s ease-out 0s;
       -moz-transition: all 0.3s ease-out 0s;
        -ms-transition: all 0.3s ease-out 0s;
         -o-transition: all 0.3s ease-out 0s;
            transition: all 0.3s ease-out 0s;
}

#xxx {
	font-size: 1px;
	visibility: hidden;
}

a, a:hover, a:focus, .btn:focus {
    text-decoration: none;
    outline: none;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: 'Source Sans Pro','Open Sans', sans-serif;
    color: #666666;
}

.shadow {
    text-shadow: 5px 5px 5px #000;
    /*, 8px 8px 8px #FFF;*/
}

main > section {
    padding: 70px 0;
}

.btn {
    border-radius: 0;
    border: 0;
    position: relative;
    text-transform: uppercase;
}

.btn-red {
    background-color: rgba(163,38,56, 0.78);
    box-shadow: 0 -2px 0 rgba(0, 0, 0, 0.15) inset;
    padding: 15px 55px;
    color: #fff;
}

.btn-border {
    border: 2px solid #fff;
    color: #fff;
    padding: 12px 35px;
}

/* Sweep To Right */
.btn-effect {
    vertical-align: middle;
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    position: relative;
    display: inline-block;

    -webkit-transform: translateZ(0);
       -moz-transform: translateZ(0);
        -ms-transform: translateZ(0);
         -o-transform: translateZ(0);
            transform: translateZ(0);

    -webkit-backface-visibility: hidden;
       -moz-backface-visibility: hidden;
            backface-visibility: hidden;

    -webkit-transition-property: color;
       -moz-transition-property: color;
        -ms-transition-property: color;
            transition-property: color;

        -webkit-transition-duration: 0.3s;
           -moz-transition-duration: 0.3s;
            -ms-transition-duration: 0.3s;
                transition-duration: 0.3s;

    -moz-osx-font-smoothing: grayscale;
}

.btn-effect:before {
    content: '';
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;

    -webkit-transform: scaleX(0);
       -moz-transform: scaleX(0);
            -ms-transform: scaleX(0);
                    transform: scaleX(0);

    -webkit-transform-origin: 0 50%;
       -moz-transform-origin: 0 50%;
            -ms-transform-origin: 0 50%;
                    transform-origin: 0 50%;

    -webkit-transition-property: transform;
       -moz-transition-property: transform;
            -ms-transition-property: transform;
                    transition-property: transform;

    -webkit-transition-duration: 0.3s;
       -moz-transition-duration: 0.3s;
            -ms-transition-duration: 0.3s;
                    transition-duration: 0.3s;

    -webkit-transition-timing-function: ease-out;
       -moz-transition-timing-function: ease-out;
            -ms-transition-timing-function: ease-out;
                    transition-timing-function: ease-out;
}

.btn-effect:hover, .btn-effect:focus, .btn-effect:active {
    color: #992A3A;
}

.btn-effect:hover:before, .btn-effect:focus:before, .btn-effect:active:before {
    -webkit-transform: scaleX(1);
       -moz-transform: scaleX(1);
        -ms-transform: scaleX(1);
            transform: scaleX(1);
}

.sec-title {
    margin-bottom: 50px;
}

.sec-title.white {
    color: #fff;
}

.sec-title h2 {
    font-size: 36px;
    margin: 0 0 30px;
    padding-bottom: 30px;
    position: relative;
    text-transform: uppercase;
}

.sec-title.white h2 {
    color: #fff;
}

.sec-title h2:after {
    border-bottom: 1px solid #992A3A;
    content: '';
    display: block;
    /*left: 45%;
    width: 115px;*/
    left: 43%;
    width: 160px;
    bottom: 0;
    position: absolute;
}

.sec-title.white h2:after {
    border-bottom: 1px solid #fff;
}

.parallax {
    background-attachment: fixed;
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
}


#preloader {
    background-color: #FFF;
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 9999;
}

/*Battery*/
.loader-box {
    background-color: rgba(0, 0, 0, 0);
    border-radius: 10px;
    height: 100px;
    left: 50%;
    margin-left: -64px;
    margin-top: -50px;
    position: absolute;
    top: 50%;
    width: 128px;
}

.battery{
    width: 70px;
    height: 25px;
    top: 35%;
    border: 1px #8c2638 solid;
    border-radius: 2px;
    position: relative;
    -webkit-animation: charge 3s linear infinite;
       -moz-animation: charge 3s linear infinite;
            animation: charge 3s linear infinite;
    margin: 0 auto;
}

.battery:after {
    background-color: #8c2638;
    border-radius: 0 1px 1px 0;
    content: '';
    height: 10px;
    position: absolute;
    right: -5px;
    top: 7px;
    width: 3px;
}

@-webkit-keyframes charge{
    0%{box-shadow: inset 0px 0px 0px #2E2E2E;}
    100%{box-shadow: inset 60px 0px 0px #2E2E2E;}
}

@-moz-keyframes charge{
    0%{box-shadow: inset 0px 0px 0px #2E2E2E;}
    100%{box-shadow: inset 60px 0px 0px #2E2E2E;}
}

@keyframes charge{
    0%{box-shadow: inset 0px 0px 0px #2E2E2E;}
    100%{box-shadow: inset 60px 0px 0px #2E2E2E;}
}


#navigation {
    -webkit-transition: all 0.8s ease 0s;
       -moz-transition: all 0.8s ease 0s;
        -ms-transition: all 0.8s ease 0s;
         -o-transition: all 0.8s ease 0s;
            transition: all 0.8s ease 0s;

    background-color: rgba(140,38,56,0.8);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
    padding: 5px 0;
}

#navigation.animated-header {
    padding: 20px 0;
}

h1.navbar-brand {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
}

.navbar-inverse .navbar-nav > li > a {
    color: #fff;
    /*font-size: 25px;*/
	font-size: 22px;
    text-transform: uppercase;
    font-family: 'Source Sans Pro','Open Sans', sans-serif;;
}


#home-slider {
    position: relative;
    padding: 0;
}

.sl-slider-wrapper {
    width: 100%;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.sl-slider {
    position: absolute;
    top: 0;
    left: 0;
}

.sl-slide,
.sl-slides-wrapper,
.sl-slide-inner {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
} 

.sl-slide {
    z-index: 1;
}

.slide-caption {
    color: #fff;
    display: table;
    height: 100%;
    left: 0;
    min-height: 100%;
    position: absolute;
    text-align: center;
    top: 0;
    width: 100%;
    z-index: 11;
}

.slide-caption .caption-content {
    vertical-align: middle;
    display: table-cell;
}

.caption-content h2 {
    color: #fff;
    font-size: 72px;
    font-weight: 600;
    margin-bottom: 25px;
    /*text-transform: uppercase;*/
}

.caption-content > span {
    display: block;
    font-size: 24px;
    margin-bottom: 45px;
    text-transform: capitalize;
}

.caption-content p {
    font-size: 29px;
    margin-bottom: 65px;
}

.sl-content-slice {
    overflow: hidden;
    position: absolute;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    background: #fff;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -o-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    backface-visibility: hidden;
    opacity : 1;
}


.sl-slide-horizontal .sl-content-slice {
    width: 100%;
    height: 50%;
    left: -200px;
    -webkit-transform: translateY(0%) scale(1);
    -moz-transform: translateY(0%) scale(1);
    -o-transform: translateY(0%) scale(1);
    -ms-transform: translateY(0%) scale(1);
    transform: translateY(0%) scale(1);
}

.sl-slide-horizontal .sl-content-slice:first-child {
    top: -200px;
    padding: 200px 200px 0px 200px;
}

.sl-slide-horizontal .sl-content-slice:nth-child(2) {
    top: 50%;
    padding: 0px 200px 200px 200px;
}

.sl-slide-vertical .sl-content-slice {
    width: 50%;
    height: 100%;
    top: -200px;
    -webkit-transform: translateX(0%) scale(1);
    -moz-transform: translateX(0%) scale(1);
    -o-transform: translateX(0%) scale(1);
    -ms-transform: translateX(0%) scale(1);
    transform: translateX(0%) scale(1);
}

.sl-slide-vertical .sl-content-slice:first-child {
    left: -200px;
    padding: 200px 0px 200px 200px;
}

.sl-slide-vertical .sl-content-slice:nth-child(2) {
    left: 50%;
    padding: 200px 200px 200px 0px;
}


.sl-content-wrapper {
    position: absolute;
}

.sl-content {
    width: 100%;
    height: 100%;
}


.fancybox-item.fancybox-close {
    background: url("../img/icons/close.png") no-repeat scroll 0 0 transparent;
    height: 50px;
    right: 0;
    top: 0;
    width: 50px;
}

.fancybox-next span {
    background: url("../img/right.png") no-repeat scroll center center #992A3A;
    height: 50px;
    width: 50px;
    right: 0;
}

.fancybox-prev span {
    background: url("../img/left.png") no-repeat scroll center center #992A3A;
    height: 50px;
    width: 50px;
    left: 0;
}


#about {
    background-color: #992A3A;
    color: #fff;
}

#about h3 {
    color: #fff;
    margin: 0 0 35px;
    text-transform: uppercase;
}

#about .welcome-block h3 {
    margin: 0 0 65px;
}

#about .welcome-block img {
    border: 3px solid #fff;
    border-radius: 50%;
    margin-right: 35px;
    max-width: 100px;
}

#about .message-body {
    font-size: 13px;
    line-height: 20px;
    margin-bottom: 70px;
}

.owl-buttons {
    border: 2px solid #fff;
    display: inline-block;
    float: right;
    padding: 1px 8px 5px;
}

.owl-buttons > div {
    display: inline-block;
    padding: 0 5px;
}

.welcome-message {
    padding: 0 50px;
}

.welcome-message img {
    display: block;
    height: auto;
    max-width: 100px;
    float: left;
}

.welcome-message p {
    font-size: 13px;
    margin-left: 135px;
}

.project-wrapper {
    margin: 0;
    padding: 0;
    list-style: none;
    text-align: center;
}

.project-wrapper li {
    display: inline-block;
}

figcaption.mask {
    background-color: rgba(54, 55, 50, 0.79);
    bottom: -126px;
    color: #fff;
    padding: 25px;
    position: absolute;
    width: 100%;
    text-align: left;
    
    -webkit-transition: all 0.4s ease 0s;
       -moz-transition: all 0.4s ease 0s;
        -ms-transition: all 0.4s ease 0s;
         -o-transition: all 0.4s ease 0s;
            transition: all 0.4s ease 0s;
}

figcaption.mask h3 {
    margin: 0;
    color: #fff;
}

ul.external {
    list-style: outside none none;
    margin: 0;
    padding: 0;
    position: absolute;
    right: 0;
    top: -47px;
    
    -webkit-transition: all 0.4s ease 0s;
       -moz-transition: all 0.4s ease 0s;
        -ms-transition: all 0.4s ease 0s;
         -o-transition: all 0.4s ease 0s;
            transition: all 0.4s ease 0s;
}

ul.external li {
    display: inline-block;
}

ul.external li a {
    background-color: rgba(255, 255, 255, 0.9);
    color: #818181;
    display: block;
    padding: 10px 18px 13px;
    
    -webkit-transition: all 0.5s ease 0s;
       -moz-transition: all 0.5s ease 0s;
        -ms-transition: all 0.5s ease 0s;
         -o-transition: all 0.5s ease 0s;
            transition: all 0.5s ease 0s;
}

ul.external li a:hover {
    background-color: #992A3A;
    color: #fff;
}

.fancybox-skin {
    border-radius: 0;
}

.fancybox-title.fancybox-title-inside-wrap {
    padding: 15px;
}

.fancybox-title h3 {
    margin: 0 0 15px;
}

.fancybox-title p {
    color: #818181;
    font-size: 16px;
    line-height: 22px;
}

.fancybox-title-inside-wrap {
    padding-top: 0;
}


.testimonial-item {
    margin: 0 auto;
    padding-bottom: 50px;
    width: 64%;
}

.testimonial-item img {
    border: 3px solid #fff;
    border-radius: 50%;
    display: inline-block;
    height: auto;
    max-width: 100px;
}

.testimonial-item > div {
    line-height: 30px;
    position: relative;
}

.testimonial-item > div:before {
    background-image: url("../img/icons/quotes.png");
    background-repeat: no-repeat;
    bottom: 127px;
    height: 33px;
    left: -35px;
    position: absolute;
    width: 45px;
}

.testimonial-item > div:after {
    background-image: url("../img/icons/quotes.png");
    background-position: -58px 0;
    background-repeat: no-repeat;
    bottom: -50px;
    height: 33px;
    position: absolute;
    right: 0;
    width: 45px;
}

.testimonial-item > div > span {
    display: inline-block;
    font-weight: 700;
    margin: 40px 0 30px;
    text-transform: uppercase;
}


#navigation_was {
    background-image: url(../img/parallax/goldengate.jpg);
    padding: 0;
    color: #fff;
}

#navigation_was .sec-title h2:after {
    border-bottom: 1px solid #fff;
}

#navigation_was .overlay {    
    background-color: rgba(153,42,58, 0.88);
    /*background-color: rgba(153,42,58, 0.78);*/
    padding: 70px 0 40px;
}

.navigation_was-item {
    margin: 0 auto;
    padding-bottom: 50px;
    width: 64%;
}

.navigation_was-item img {
    border: 3px solid #fff;
    border-radius: 50%;
    display: inline-block;
    height: auto;
    max-width: 100px;
}

.navigation_was-i_wertem > div:before {
    background-repeat: no-repeat;
    bottom: 127px;
    height: 33px;
    left: -35px;
    position: absolute;
    width: 45px;
}

.navigation_was-item > div:after {
    background-position: -58px 0;
    background-repeat: no-repeat;
    bottom: -50px;
    height: 33px;
    position: absolute;
    right: 0;
    width: 45px;
}

.navigation_was-item > div > span {
    display: inline-block;
    font-weight: 700;
    margin: 40px 0 30px;
    text-transform: uppercase;
}

#navigation_was .owl-controls.clickable {
    margin-top: 20px;
    text-align: center;
}

#navigation_was .owl-buttons {
    border: 2px solid #fff;
    float: inherit;
}

#navigation_was .owl-prev:hover,
#navigation_was .owl-next:hover {
    color: #fff;
}


#navigation_wer {
    background-image: url(../img/parallax/herz.jpg);
    padding: 0;
}

#navigation_wer .sec-title h2:after {
    border-bottom: 1px solid #818181;
}

#navigation_wer .overlay {
    /*background-color: rgba(153,42,58, 0.88);helge*/
    background-color: rgba(255,255,255,0.2);
    padding: 70px 0 40px;
}

.navigation_wer-item {
    margin: 0 auto;
    padding-bottom: 50px;
    width: 64%;
}

.navigation_wer-item img {
    border: 3px solid #fff;
    border-radius: 50%;
    display: inline-block;
    height: auto;
    max-width: 100px;
}

.navigation_wer-item > div:before {
    background-repeat: no-repeat;
    bottom: 127px;
    height: 33px;
    left: -35px;
    position: absolute;
    width: 45px;
}

.navigation_wer-item > div:after {
    background-position: -58px 0;
    background-repeat: no-repeat;
    bottom: -50px;
    height: 33px;
    position: absolute;
    right: 0;
    width: 45px;
}

.navigation_wer-item > div > span {
    display: inline-block;
    font-weight: 700;
    margin: 40px 0 30px;
    text-transform: uppercase;
}

#navigation_wer .owl-controls.clickable {
    margin-top: 20px;
    text-align: center;
}

#navigation_wer .owl-buttons {
    border: 2px solid #fff;
    float: inherit;
}

#navigation_wer .owl-prev:hover,
#navigation_wer .owl-next:hover {
    color: #fff;
}


#navigation_wie {
    background-image: url(../img/parallax/zahnraeder.jpg);
    padding: 0;
}

#navigation_wie .sec-title h2:after {
    border-bottom: 1px solid #818181;
}

#navigation_wie .overlay {
    background-color: rgba(255,255,255, 0.8);
    /*background-color: rgba(153,42,58, 0.78);*/
    padding: 70px 0 40px;
}

.navigation_wie-item {
    margin: 0 auto;
    padding-bottom: 50px;
    width: 64%;
}

.navigation_wie-item img {
    border: 3px solid #fff;
    border-radius: 50%;
    display: inline-block;
    height: auto;
    max-width: 100px;
}

.roofing-item > div {
    line-height: 30px;
    position: relative;
}

.navigation_wie-item > div:before {
    background-repeat: no-repeat;
    bottom: 127px;
    height: 33px;
    left: -35px;
    position: absolute;
    width: 45px;
}

.navigation_wie-item > div:after {
    background-position: -58px 0;
    background-repeat: no-repeat;
    bottom: -50px;
    height: 33px;
    position: absolute;
    right: 0;
    width: 45px;
}

.navigation_wie-item > div > span {
    display: inline-block;
    font-weight: 700;
    margin: 40px 0 30px;
    text-transform: uppercase;
}

#navigation_wie .owl-controls.clickable {
    margin-top: 20px;
    text-align: center;
}

#navigation_wie .owl-buttons {
    border: 2px solid #fff;
    float: inherit;
}

#navigation_wie .owl-prev:hover,
#navigation_wie .owl-next:hover {
    color: #fff;
}

#navigation_warum {
    background-image: url(../img/parallax/kaffee.jpg);
    padding: 0;
    color: #fff;
}

#navigation_warum .sec-title h2:after {
    border-bottom: 1px solid #fff;
}

#navigation_warum .overlay {
    background-color: rgba(153,42,58, 0.8);
    padding: 70px 0 40px;
}

.navigation_warum-item {
    margin: 0 auto;
    padding-bottom: 50px;
    width: 100%;
}

.navigation_warum-item img {
    border: 3px solid #fff;
    border-radius: 50%;
    display: inline-block;
    height: auto;
    max-width: 100px;
}

.navigation_warum-item > div:before {
    background-repeat: no-repeat;
    bottom: 127px;
    height: 33px;
    left: -35px;
    position: absolute;
    width: 45px;
}

.navigation_warum-item > div:after {
    background-position: -58px 0;
    background-repeat: no-repeat;
    bottom: -50px;
    height: 33px;
    position: absolute;
    right: 0;
    width: 45px;
}

.navigation_warum-item > div > span {
    display: inline-block;
    font-weight: 700;
    margin: 40px 0 30px;
    text-transform: uppercase;
}

#navigation_warum .owl-controls.clickable {
    margin-top: 20px;
    text-align: center;
}

#navigation_warum .owl-buttons {
    border: 2px solid #fff;
    float: inherit;
}

#navigation_warum .owl-prev:hover,
#navigation_warum .owl-next:hover {
    color: #fff;
}



#navigation_weihnachten {
    background-image: url(../img/parallax/winterlandschaft.jpg);
    padding: 0;
}

#navigation_weihnachten .sec-title h2:after {
    border-bottom: 1px solid #818181;
}

#navigation_weihnachten .overlay {
    /*background-color: rgba(153,42,58, 0.88);helge*/
    background-color: rgba(255,255,255,0.7);
    padding: 70px 0 40px;
}

.navigation_weihnachten-item {
    margin: 0 auto;
    padding-bottom: 50px;
    width: 64%;
}

.navigation_weihnachten-item img {
    border: 3px solid #fff;
    border-radius: 50%;
    display: inline-block;
    height: auto;
    /*max-width: 100px;*/
}

.navigation_weihnachten-item > div:before {
    background-repeat: no-repeat;
    bottom: 127px;
    height: 33px;
    left: -35px;
    position: absolute;
    width: 45px;
}

.navigation_weihnachten-item > div:after {
    background-position: -58px 0;
    background-repeat: no-repeat;
    bottom: -50px;
    height: 33px;
    position: absolute;
    right: 0;
    width: 45px;
}

.navigation_weihnachten-item > div > span {
    display: inline-block;
    font-weight: 700;
    margin: 40px 0 30px;
    text-transform: uppercase;
}

#navigation_weihnachten .owl-controls.clickable {
    margin-top: 20px;
    text-align: center;
}

#navigation_weihnachten .owl-buttons {
    border: 2px solid #fff;
    float: inherit;
}

#navigation_weihnachten .owl-prev:hover,
#navigation_weihnachten .owl-next:hover {
    color: #fff;
}

#navigation_datenschutz {
    background-image: url(../img/parallax/jura.png);
    padding: 0;
	color: #fff;
}

#navigation_datenschutz .sec-title h2:after {
    border-bottom: 1px solid #fff;
}

#navigation_datenschutz .overlay {
    /*background-color: rgba(153,42,58, 0.88);helge*/
    background-color: rgba(153,42,58, 0.8);
    padding: 70px 0 40px;
}

.navigation_datenschutz-item {
    margin: 0 auto;
    padding-bottom: 50px;
    width: 64%;
}

.navigation_datenschutz-item img {
    border: 3px solid #fff;
    border-radius: 50%;
    display: inline-block;
    height: auto;
    max-width: 100px;
}

.navigation_datenschutz-item > div:before {
    background-repeat: no-repeat;
    bottom: 127px;
    height: 33px;
    left: -35px;
    position: absolute;
    width: 45px;
}

.navigation_datenschutz-item > div:after {
    background-position: -58px 0;
    background-repeat: no-repeat;
    bottom: -50px;
    height: 33px;
    position: absolute;
    right: 0;
    width: 45px;
}

.navigation_datenschutz-item > div > span {
    display: inline-block;
    font-weight: 700;
    margin: 40px 0 30px;
    text-transform: uppercase;
}

#navigation_datenschutz .owl-controls.clickable {
    margin-top: 20px;
    text-align: center;
}

#navigation_datenschutz .owl-buttons {
    border: 2px solid #fff;
    float: inherit;
}

#navigation_datenschutz .owl-prev:hover,
#navigation_datenschutz .owl-next:hover {
    color: #fff;
}


#navigation_imagefilm {
    padding: 0;
}

#navigation_imagefilm .sec-title h2:after {
    border-bottom: 1px solid #818181;
}

#navigation_imagefilm .overlay {
    background-color: rgba(255,255,255, 0.8);
    padding: 70px 0 40px;
}

.navigation_imagefilm-item {
    margin: 0 auto;
    padding-bottom: 50px;
    width: 64%;
}

.navigation_imagefilm-item img {
    border: 3px solid #fff;
    border-radius: 50%;
    display: inline-block;
    height: auto;
    max-width: 100px;
}

.navigation_imagefilm-item > div:before {
    background-repeat: no-repeat;
    bottom: 127px;
    height: 33px;
    left: -35px;
    position: absolute;
    width: 45px;
}

.navigation_imagefilm-item > div:after {
    background-position: -58px 0;
    background-repeat: no-repeat;
    bottom: -50px;
    height: 33px;
    position: absolute;
    right: 0;
    width: 45px;
}

.navigation_imagefilm-item > div > span {
    display: inline-block;
    font-weight: 700;
    margin: 40px 0 30px;
    text-transform: uppercase;
}

#navigation_imagefilm .owl-controls.clickable {
    margin-top: 20px;
    text-align: center;
}

#navigation_imagefilm .owl-buttons {
    border: 2px solid #fff;
    float: inherit;
}

#navigation_imagefilm .owl-prev:hover,
#navigation_imagefilm .owl-next:hover {
    color: #fff;
}



#navigation_impressum {
    padding: 0;
    color: #fff;
}

#navigation_impressum .sec-title h2:after {
    border-bottom: 1px solid #fff;
}

#navigation_impressum .overlay {
    background-color: rgba(153,42,58, 0.78);
    padding: 70px 0 40px;
}

.navigation_impressum-item {
    margin: 0 auto;
    padding-bottom: 50px;
    width: 64%;
}

.navigation_impressum-item img {
    border: 3px solid #fff;
    border-radius: 50%;
    display: inline-block;
    height: auto;
    max-width: 100px;
}

.navigation_impressum-item > div:before {
    background-repeat: no-repeat;
    bottom: 127px;
    height: 33px;
    left: -35px;
    position: absolute;
    width: 45px;
}

.navigation_impressum-item > div:after {
    background-position: -58px 0;
    background-repeat: no-repeat;
    bottom: -50px;
    height: 33px;
    position: absolute;
    right: 0;
    width: 45px;
}

.navigation_impressum-item > div > span {
    display: inline-block;
    font-weight: 700;
    margin: 40px 0 30px;
    text-transform: uppercase;
}

#navigation_impressum .owl-controls.clickable {
    margin-top: 20px;
    text-align: center;
}

#navigation_impressum .owl-buttons {
    border: 2px solid #fff;
    float: inherit;
}

#navigation_impressum .owl-prev:hover,
#navigation_impressum .owl-next:hover {
    color: #fff;
}


#contact {
    padding: 0;
    color: #fff;
}

#contact .overlay {
    /*background-color: rgba(255,255,255, 0.78);*/
    background-color: rgba(153,42,58, 0.68);
    padding: 70px 0 40px;
}


.social-button {
    margin: 0;
    padding: 0;
    list-style: none;
    text-align: center;
}

.social-button li {
    display: inline-block;
}

.social-button li:nth-child(2) {
    margin: 0 75px;
}

.social-button li a {
    border: 2px solid #fff;
    border-radius: 50%;
    color: #fff;
    display: block;
    height: 90px;
    line-height: 96px;
    width: 90px;
    
    -webkit-transition: all 0.2s ease 0s;
       -moz-transition: all 0.2s ease 0s;
        -ms-transition: all 0.2s ease 0s;
         -o-transition: all 0.2s ease 0s;
            transition: all 0.2s ease 0s;
}

.social-button li a:hover {
    color: #992A3A;
    border: 2px solid #992A3A;
}


.input-field {
    margin-bottom: 10px;
}

.form-control {
    border: 1px solid #ececec;
    border-radius: 0;
    box-shadow: none;
    color: #818181;
    font-size: 16px;
    height: 50px;
}

textarea.form-control {
    width: 100%;
    height: 165px;
}

#submit:hover {
  color: #fff;
}

#submit:before {
  background-color: #992A3A;
}

#submit.btn-effect:after {
  background: #2E2E2E;
}

.contact-details h3 {
    border-bottom: 1px solid #FFF;
    font-weight: 700;
    margin-bottom: 15px;
    padding-bottom: 15px;
    text-transform: uppercase;
}

.contact-details p {
    line-height: 30px;
}

.contact-details p i {
    margin-right: 10px;
}

.contact-details span {
    display: block;
    margin-left: 24px;
}


#google-map {
    padding: 0;
}

#map-canvas {
    width: 100%;
    height: 450px;
}


#footer {
    background-color: #2E2E2E;
    padding: 20px 0;
    color: #fff;
}

.footer-content {
    width: 390px;
    margin: 0 auto;
    font-size: 14px;
}

.footer-content > div {
    margin-bottom: 40px;
}

.footer-content > div > p:first-child {
    margin-bottom: 15px;
    text-transform: uppercase;
}

.subscribe-form {
    position: relative;
}

.subscribe.form-control {
    background-color: transparent;
    border: 1px solid #7f7f7f;
}

.subscribe.form-control:focus {
    -webkit-box-shadow: none;
       -moz-box-shadow: none;
            box-shadow: none;
}

.submit-icon {
    background-color: #7f7f7f;
    border: 0 none;
    border-radius: 0;
    color: #c1c1c1;
    padding: 13px 20px;
    position: absolute;
    overflow: hidden;
    right: 0;
    top: 0;
}

.submit-icon .fa-paper-plane {
    position: relative;
    top: 0;
    
    -webkit-transform: translateX(0);
       -moz-transform: translateX(0);
        -ms-transform: translateX(0);
         -o-transform: translateX(0);
            transform: translateX(0);

    -webkit-transition: all 0.3s ease 0.2s;
       -moz-transition: all 0.3s ease 0.2s;
        -ms-transition: all 0.3s ease 0.2s;
         -o-transition: all 0.3s ease 0.2s;
            transition: all 0.3s ease 0.2s;
}

.submit-icon:hover .fa-paper-plane {
    position: relative;
    top: -37px;
    
    -webkit-transform: translateX(30px);
       -moz-transform: translateX(30px);
        -ms-transform: translateX(30px);
         -o-transform: translateX(30px);
            transform: translateX(30px);
}

.footer-content .footer-social {
    margin: 40px 0 35px;
}

.footer-social ul {
    list-style: outside none none;
    margin: 0;
    padding: 0;
    text-align: center;
}

.footer-social ul li {
    display: inline-block;
    margin: 0 10px;
}

.footer-social ul li a {
    color: #7f7f7f;
    display: block;
    
    -webkit-transition: all 0.2s ease 0s;
       -moz-transition: all 0.2s ease 0s;
        -ms-transition: all 0.2s ease 0s;
         -o-transition: all 0.2s ease 0s;
            transition: all 0.2s ease 0s;
}

.footer-social ul li a:hover {
    color: #992A3A;
}

.footer-content > p {
    color: #ababab;
    font-size: 12px;
}

 .playicon {
        position: absolute;
        margin: auto;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        width: 95px;
        height: 67px;
        background-color: transparent;
        border-radius: 3px;
    }

@media (min-width: 980px) and (max-width: 1150px) {

    #about .welcome-block img {
        margin-bottom: 30px;
    }

    figcaption.mask {
        bottom: -151px;
    }

    .testimonial-item > div:after {
        bottom: -40px;
    }
    
    .navigation_was-item > div:after {
        bottom: -40px;
    }
    
    .navigation_wer-item > div:after {
        bottom: -40px;
    }
    
    .navigation_wie-item > div:after {
        bottom: -40px;
    }
    
    .navigation_warum-item > div:after {
        bottom: -40px;
    }
    
    .navigation_imagefilm-item > div:after {
        bottom: -40px;
    }    
    
	.navigation_weihnachten-item > div:after {
        bottom: -40px;
    }	
	
    .navigation_impressum-item > div:after {
        bottom: -40px;
    }

	.navigation_datenschutz-item > div:after {
        bottom: -40px;
    }
	
    .playicon {
        position: absolute;
        margin: auto;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        width: 95px;
        height: 67px;
        background-color: transparent;
        border-radius: 3px;
    }   
}


@media (min-width: 768px) and (max-width: 979px) {

    .caption-content h2 {
        font-size: 40px;
    }

    .caption-content p {
        font-size: 25px;
    }

    .caption-content strong {
        font-size: 45px;
    }

    .recent-works {
        margin-bottom: 50px;
    }

    .testimonial-item {
        width: 100%;
    }

    .testimonial-item {
        width: 80%;
    }

    .testimonial-item > div:after {
        bottom: -35px;
    }
   
    
    .navigation_was-item {
        width: 100%;
    }

    .navigation_was-item {
        width: 80%;
    }

    .navigation_was-item > div:after {
        bottom: -35px;
    }
    
    .navigation_wer-item {
        width: 100%;
    }

    .navigation_wer-item {
        width: 80%;
    }

    .navigation_wer-item > div:after {
        bottom: -35px;
    }
    
    .navigation_wie-item {
        width: 100%;
    }

    .navigation_wie-item {
        width: 80%;
    }

    .navigation_wie-item > div:after {
        bottom: -35px;
    }
    
    .navigation_warum-item {
        width: 100%;
    }

    .navigation_warum-item {
        width: 80%;
    }

    .navigation_warum-item > div:after {
        bottom: -35px;
    }
    
	.navigation_weihnachten-item {
        width: 100%;
    }

    .navigation_weihnachten-item {
        width: 80%;
    }

    .navigation_weihnachten-item > div:after {
        bottom: -35px;
    }
	
	.navigation_datenschutz-item {
        width: 100%;
    }

    .navigation_datenschutz-item {
        width: 80%;
    }

    .navigation_datenschutz-item > div:after {
        bottom: -35px;
    }
	
    .navigation_imagefilm-item {
        width: 100%;
    }

    .navigation_imagefilm-item {
        width: 80%;
    }

    .navigation_imagefilm-item > div:after {
        bottom: -35px;
    }
    
    .navigation_impressum-item {
        width: 100%;
    }

    .navigation_impressum-item {
        width: 80%;
    }

    .navigation_impressum-item > div:after {
        bottom: -35px;
    }
    
    .service-table {
        margin-bottom: 50px;
    }

    .contact-form {
        margin-bottom: 50px;
    }
    
    .playicon {
        position: absolute;
        margin: auto;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        width: 95px;
        height: 67px;
        background-color: transparent;
        border-radius: 3px;
    }
}


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

    body {
        font-size: 14px;
    }

    .parallax {
        background-position: centet tip !important;
    }

    .sec-title h2 {
        font-size: 25px;
    }

    .sec-title h2:after {
        left: 30%;
    }

    .navbar-inverse .navbar-toggle {
        border-color: #fff;
    }

    .navbar-inverse .navbar-toggle:hover,
    .navbar-inverse .navbar-toggle:focus {
        background-color: transparent;
    }

    .caption-content h2 {
        font-size: 18px;
    }

    .caption-content > span {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .caption-content p {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .caption-content strong {
        font-size: 22px;
    }

    .recent-works {
        margin-bottom: 85px;
    }

    #about h3 {
        font-size: 18px;
        margin: 0 0 35px !important;
    }

    #about .owl-buttons {
        margin-top: 20px;
    }

    #about .message-body {
        margin-bottom: 45px;
    }

    #about .welcome-block img {
        margin: 0 25px 15px 0;
    }

    figcaption.mask {
        bottom: -107px;
        color: #fff;
        padding: 15px;
    }

    .fancybox-title h3 {
        font-size: 20px;
    }

    .fancybox-title p {
        font-size: 14px;
    }

    .testimonial-item {
        width: 95%;
    }

    .testimonial-item > div:before,
    .testimonial-item > div:after {
        background-image: none;
    }

    .testimonial-item > div > span {
        margin: 30px 0 20px;
    }
    
    .navigation_was-item {
        width: 95%;
    }

    .navigation_was-item > div:before,
    .navigation_was-item > div:after {
        background-image: none;
    }

    .navigation_was-item > div > span {
        margin: 30px 0 20px;
    }

    .navigation_wer-item {
        width: 95%;
    }

    .navigation_wer-item > div:before,
    .navigation_wer-item > div:after {
        background-image: none;
    }

    .navigation_wer-item > div > span {
        margin: 30px 0 20px;
    }

    .navigation_wie-item {
        width: 95%;
    }

    .navigation_wie-item > div:before,
    .navigation_wie-item > div:after {
        background-image: none;
    }

    .navigation_wie-item > div > span {
        margin: 30px 0 20px;
    }
    
    .navigation_warum-item {
        width: 95%;
    }

    .navigation_warum-item > div:before,
    .navigation_warum-item > div:after {
        background-image: none;
    }

    .navigation_warum-item > div > span {
        margin: 30px 0 20px;
    }
    
	 .navigation_weihnachten-item {
        width: 95%;
    }

    .navigation_weihnachten-item > div:before,
    .navigation_weihnachten-item > div:after {
        background-image: none;
    }

    .navigation_weihnachten-item > div > span {
        margin: 30px 0 20px;
    }
	
	.navigation_datenschutz-item {
        width: 95%;
    }

    .navigation_datenschutz-item > div:before,
    .navigation_datenschutz-item > div:after {
        background-image: none;
    }

    .navigation_datenschutz-item > div > span {
        margin: 30px 0 20px;
    }
	
    .navigation_imagefilm-item {
        width: 95%;
    }

    .navigation_imagefilm-item > div:before,
    .navigation_imagefilm-item > div:after {
        background-image: none;
    }

    .navigation_imagefilm-item > div > span {
        margin: 30px 0 20px;
    }    
    
    .navigation_impressum-item {
        width: 95%;
    }

    .navigation_impressum-item > div:before,
    .navigation_impressum-item > div:after {
        background-image: none;
    }

    .navigation_impressum-item > div > span {
        margin: 30px 0 20px;
    }
    
    .social-button li:nth-child(2) {
        margin: 0 25px;
    }

    .social-button li a {
        height: 65px;
        line-height: 71px;
        width: 65px;
    }

    .contact-form {
        margin-bottom: 50px;
    }

    .footer-content {
        width: 100%;
    }

    .footer-social ul li {
        margin: 0 7px;
    }
    
    .playicon {
        position: absolute;
        margin: auto;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        width: 95px;
        height: 67px;
        background-color: transparent;
        border-radius: 3px;
		display: none;
    }
}


@media only screen and (min-width: 480px) and (max-width: 767px) {

    .sec-title h2:after {
        left: 38%;
    }

    .caption-content h2 {
        font-size: 35px;
    }

    .caption-content p {
        font-size: 25px;
    }

    .caption-content strong {
        font-size: 35px;
    }

    #about .welcome-block h3 {
        margin: 0 0 35px;
    }
  
    figcaption.mask {
        bottom: -132px;
    }

    .testimonial-item {
        width: 80%;
    }

    .testimonial-item > div:before {
        bottom: 160px;
    }
    
    .navigation_was-item {
        width: 80%;
    }

    .navigation_was-item > div:before {
        bottom: 160px;
    }
    
    .navigation_wer-item {
        width: 80%;
    }

    .navigation_wer-item > div:before {
        bottom: 160px;
    }
    
    .navigation_wie-item {
        width: 80%;
    }

    .navigation_wie-item > div:before {
        bottom: 160px;
    }
    
    .navigation_warum-item {
        width: 80%;
    }

    .navigation_warum-item > div:before {
        bottom: 160px;
    }
    
	.navigation_weihnachten-item {
        width: 80%;
    }

    .navigation_weihnachten-item > div:before {
        bottom: 160px;
    }
	
	.navigation_datenschutz-item {
        width: 80%;
    }

    .navigation_datenschutz-item > div:before {
        bottom: 160px;
    }
    .navigation_imagefilm-item {
        width: 80%;
    }

    .navigation_imagefilm-item > div:before {
        bottom: 160px;
    }
    
    
    .navigation_impressum-item {
        width: 80%;
    }

    .navigation_impressum-item > div:before {
        bottom: 160px;
    }
    
    .social-button li:nth-child(2) {
        margin: 0 50px;
    }

    .social-button li a {
        height: 90px;
        line-height: 96px;
        width: 90px;
    }

    .contact-form {
        margin-bottom: 50px;
    }

    .footer-content {
        width: 380px;
    }
    
    .playicon {
        position: absolute;
        margin: auto;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        width: 95px;
        height: 67px;
        background-color: transparent;
        border-radius: 3px;
    }
}

 .padleftright{
     padding-left: 50px;
     padding-right: 50px;    
}