/*
@import url(http://fonts.googleapis.com/css?family=Montserrat:400,700);
@import url(http://fonts.googleapis.com/css?family=Marck+Script);
*/
@import url(gridExtension.css);
body {
    width: 100%;
    height: 100%;
    font-family: 'Montserrat', "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: #333;
    background-color: white;
    overflow-x:hidden
}

html {
    width: 100%;
    height: 100%;
    }

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 35px;
    font-family: 'Marck Script', "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-size: 28px;
    letter-spacing: 1px
}

#ueberuns hr {
    margin-bottom: 65px
}

p {
    margin: 0 0 25px;
    font-size: 18px;
    line-height: 1.5
}

@media(min-width:768px) {
    p {
        margin: 0 0 35px;
        font-size: 20px;
        line-height: 1.6;
            }
}

a {
    color: #8b221f;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out
}

#leistungen h3 {
    font-weight: 500;
    letter-spacing: normal;
    font-size: 25px;
    margin-top: 50px;
    margin-bottom: -15px
}

.og-details p {
    margin-bottom: 15px;
    font-size: 18px
}

a:hover,
a:focus {
    text-decoration: none;
    color: #380e0c
}

.light {
    font-weight: 400
}

.navbar-custom {
    margin-bottom: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    font-family: "Montserrat", "Helvetica Neue", Helvetica, Arial, sans-serif;
    background-color: black
}

.navbar-custom .navbar-brand {
    font-weight: 700
}

.navbar-custom .navbar-brand:focus {
    outline: 0
}

.navbar-custom .navbar-brand .navbar-toggle {
    padding: 4px 6px;
    font-size: 16px;
    color: white
}

.navbar-custom .navbar-brand .navbar-toggle:focus,
.navbar-custom .navbar-brand .navbar-toggle:active {
    outline: 0
}

.navbar-custom a {
    color: white
}

.navbar-custom .nav li a {
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    padding-top: 30px;
    padding-bottom: 30px
}

.navbar-custom .nav li a:hover {
    color: rgba(255, 255, 255, 0.8);
    outline: 0;
    background-color: transparent
}

.navbar-custom .nav li a:focus,
.navbar-custom .nav li a:active {
    outline: 0;
    background-color: transparent
}

.navbar-custom .nav li.active {
    outline: 0
}

.navbar-custom .nav li.active a {
    background-color: rgba(255, 255, 255, 0.3);
    border-bottom: #8b221f solid
}

.navbar-custom .nav li.active a:hover {
    color: #8b221f
}

@media(min-width:768px) {
    .navbar-custom {
        padding: 20px 0;
        border-bottom: 0;
        letter-spacing: 1px;
        background: transparent;
        -webkit-transition: background .5s ease-in-out, padding .5s ease-in-out;
        -moz-transition: background .5s ease-in-out, padding .5s ease-in-out;
        transition: background .5s ease-in-out, padding .5s ease-in-out
    }
    .navbar-custom.top-nav-collapse {
        padding: 0;
        background: #f2f2f2;
        border-bottom: transparent;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
    }
    .navbar-custom.top-nav-collapse a {
        color: #8b221f
    }
    .navbar-custom img {
        padding-top: 7px;
    }
}

.intro {
    display: table;
    width: 100%;
    height: auto;
    padding: 100px 0;
    text-align: center;
    color: white;
    background: url(../img/intro-bg.jpg) no-repeat bottom center scroll;
    background-color: black;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    -o-background-size: cover
}

.intro .intro-body {
    display: table-cell;
    vertical-align: middle;
    }

.intro .intro-body .brand-heading {
    font-size: 36px
}

.intro .intro-body .intro-text {
    font-size: 18px
}

@media(min-width:768px) {
    .intro {
        height: 100%;
        padding: 0
    }
    .intro .intro-body .brand-heading {
        font-size: 40px;
        margin-bottom: 15px
    }
    .intro .intro-body .intro-text {
        font-size: 23px
    }
}

.btn-circle {
    width: 50px;
    height: 50px;
    margin-top: 15px;
    padding: 0 11px;
    border: 3px solid white;
    font-size: 35px;
    color: white;
    background: transparent;
    -webkit-transition: background .3s ease-in-out;
    -moz-transition: background .3s ease-in-out;
    transition: background .3s ease-in-out
}

.btn-circle:hover,
.btn-circle:focus {
    outline: 0;
    color: white;
    background: rgba(255, 255, 255, 0.1)
}

.btn-circle i.animated {
    -webkit-transition-property: -webkit-transform;
    -webkit-transition-duration: 1s;
    -moz-transition-property: -moz-transform;
    -moz-transition-duration: 1s
}

.btn-circle:hover i.animated {
    -webkit-animation-name: pulse;
    -moz-animation-name: pulse;
    -webkit-animation-duration: 1.5s;
    -moz-animation-duration: 1.5s;
    -webkit-animation-iteration-count: infinite;
    -moz-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    -moz-animation-timing-function: linear
}

@-webkit-keyframes pulse {
    0 {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
    50% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2)
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

@-moz-keyframes pulse {
    0 {
        -moz-transform: scale(1);
        transform: scale(1)
    }
    50% {
        -moz-transform: scale(1.2);
        transform: scale(1.2)
    }
    100% {
        -moz-transform: scale(1);
        transform: scale(1)
    }
}

.content-section {
    padding-top: 100px
}

.download-section {
    width: 100%;
    padding: 50px 0;
    color: white;
    background: url(../img/downloads-bg.jpg) no-repeat center center scroll;
    background-color: black;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    -o-background-size: cover
}

.download-section2 {
    width: 100%;
    padding: 50px 0;
    color: white;
    background: url(../img/downloads-bg2.jpg) no-repeat center center scroll;
    background-color: black;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    -o-background-size: cover
}

.download-section3 {
    width: 100%;
    padding: 50px 0;
    color: white;
    background: url(../img/downloads-bg3.jpg) no-repeat center center scroll;
    background-color: black;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    -o-background-size: cover
}

#map {
    width: 100%;
    height: 200px;
    margin-top: 100px
}

@media(min-width:767px) {
    .content-section {
        padding-top: 125px
    }
    .download-section {
        padding: 125px 0
    }
    .download-section2 {
        padding: 125px 0;
         height: 900px
    }
    .download-section3 {
        padding: 125px 0
    }
    #map {
        height: 400px;
        margin-top: 125px
    }
}

.btn {
    text-transform: uppercase;
    font-family: "Montserrat", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 400;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    border-radius: 0
}

.btn-default {
    border: 3px solid #8b221f;
    color: #8b221f;
    background-color: transparent;
    font-weight: 700
}

.btn-default:hover,
.btn-default:focus {
    border: 3px solid white;
    outline: 0;
    color: white;
    background-color: transparent
}
.btn-lg,
.btn-group-lg-1 > .btn {
  padding: 10px 16px;
  font-size: 30px;
  line-height: 1.3333333;
  border-radius: 0px;
}

ul.banner-social-buttons {
    margin-top: 0
}

@media(max-width:1199px) {
    ul.banner-social-buttons {
        margin-top: 15px
    }
}

@media(max-width:767px) {
    ul.banner-social-buttons li {
        display: block;
        margin-bottom: 20px;
        padding: 0
    }
    ul.banner-social-buttons li:last-child {
        margin-bottom: 0
    }
}

footer {
    padding: 50px 0
}

footer p {
    margin: 0
}

::-moz-selection {
    text-shadow: none;
    background: #fcfcfc;
    background: rgba(255, 255, 255, 0.2)
}

::selection {
    text-shadow: none;
    background: #fcfcfc;
    background: rgba(255, 255, 255, 0.2)
}

img::selection {
    background: transparent
}

img::-moz-selection {
    background: transparent
}

body {
    webkit-tap-highlight-color: rgba(255, 255, 255, 0.2)
}

@media screen and (min-width: 768px) {
    .navbar-brand-centered {
        position: absolute;
        left: 50%;
        display: block;
        width: 1200px;
        text-align: center;
        background-color: transparent
    }
    .navbar>.container .navbar-brand-centered,
    .navbar>.container-fluid .navbar-brand-centered {
        margin-left: -100px
    }
}

.navbar-brand {
    padding: 0
}

.hidden {
    display: none;
    -webkit-transition: all .5s ease-in-out, padding .5s ease-in-out;
    -moz-transition: all .5s ease-in-out, padding .5s ease-in-out;
    transition: all .5s ease-in-out, padding .5s ease-in-out
}

#about h2 {
    letter-spacing: 8px;
}

#leistungen h2 {
    letter-spacing: 0;
    text-align: center;
    font-size: 32px;
}

#about p,
#leistungen p {
   <!-- text-align: justify; -->
    font-size: 13pt;
    -moz-text-align-last: left;
    text-align-last: left
}

#ueberuns p {
    text-align: center;
    font-size: 13pt;
    -moz-text-align-last: left;
    text-align-last: left
}

hr {
    border-top: 5px solid #333;
    width: 25%
}

#divider1 h3,
#divider2 h3 {
    letter-spacing: 5px;
    font-size: 30px;
    margin-bottom: 25px
}

#ueberuns {
    border-top: solid 5px #f2f2f2
}

.open1,
.open2,
.open3,
.open4,
.open5,
.open6 {
    width: 250px;
    height: 250px;
    vertical-align: middle;
    display: table-cell;
    color: white;
    outline: white solid 3px;
    outline-offset: -25px;
    text-transform: uppercase;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    font-size: 17px
}

.open1:hover,
.open2:hover,
.open3:hover,
.open4:hover,
.open5:hover,
.open6:hover,
.open1:focus,
.open2:focus,
.open3:focus,
.open4:focus,
.open5:focus,
.open6:focus {
    color: #8b221f;
    outline-color: #8b221f
}

.open1 {
    background-image: url(../img/thumbs/1.jpg)
}

.open2 {
    background-image: url(../img/thumbs/2.jpg)
}

.open3 {
    background-image: url(../img/thumbs/3.jpg)
}

.open4 {
    background-image: url(../img/thumbs/4.jpg)
}

.open5 {
    background-image: url(../img/thumbs/5.jpg)
}

.open6 {
    background-image: url(../img/thumbs/6.jpg)
}

.carousel-indicators li {
    background-color: #999;
    border-color: transparent
}

.carousel-indicators .active {
    background-color: #f9b122
}

#ueberuns h4 {
    margin-top: 25px;
    margin-bottom: 25px;
    letter-spacing: 5px;
    color: #333
}

#ueberuns address {
    font-size: 24px;
    margin-top: 25px;
    font-weight: 700
}

#ueberuns .col-md-3 {
    margin-top: 25px
}

#divider2 a.btn.btn-default.btn-lg {
    border-color: #8b221f;
    color: #8b221f;
}

#divider2 a.btn.btn-default.btn-lg:hover,
#divider2 a.btn.btn-default.btn-lg:focus {
    border-color: white;
    color: white
}

#ueberuns h2 {
    letter-spacing: 11px
}

#galerie h2 {
    letter-spacing: 11px
}

#portfolio {
    position: relative;
    background-color: #111;
    padding-top: 125px;
    color: #f1f1f1
}

#portfolio h1 {
    color: #f1f1f1
}

#filters button {
    margin: 10px
}

.gallery {
    background: #FDD;
    background: rgba(102, 76, 0, 0.2);
    max-width: 100%
}

.captionWrapper h1 {
    margin: 0;
    color: #f1f1f1
}

.caption-heading h4 {
    margin-top: 20px;
    margin-bottom: -10px
}

.gallery .gallery-inner .caption {
    opacity: 0;
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(40, 40, 40, 0.90);
    -webkit-transition: all 1s ease-in-out
}

.gallery .gallery-inner:hover .caption {
    opacity: 1
}

.gallery-inner .caption-heading {
    width: 100%;
    height: 80px
}

.gallery {
    background: #4c4c4c;
    min-height: 500px
}

.mfp-title {
    color: #f3f3f3;
    word-wrap: break-word;
    padding-right: 36px;
    font-family: 'Golden', sans-serif;
    letter-spacing: 2px;
    font-weight: 400;
    font-size: 15px;
    line-height: 16px;
    text-align: center;
    text-transform: uppercase;
    margin-top: 10px
}

.gallery:after {
    content: '';
    display: block;
    clear: both
}

.gallery .gallery-inner,
.gallery .grid-sizer {
    width: 20%
}

.gallery .gallery-inner {
    float: left;
    height: auto;
    background: #4c4c4c;
    position: absolute;
    left: 0;
    top: 0;
    margin: 0
}

.galleryImage {
    min-width: 100%;
    width: 100%;
    height: auto
}

#filters {
    margin-bottom: 25px
}

#container-fluid .mix {
    display: none
}

.container-fluid .mix,
.container-fluid .gap {
    display: inline-block;
    width: 49%
}

.container-fluid .mix {
    text-align: left;
    background: #03899c;
    margin-bottom: 3px;
    display: none
}

.container-fluid .mix.category-1 {
    border-top: 2px solid white
}

.container-fluid .mix.category-2 {
    border-top: 2px solid white
}

.container-fluid .mix:after {
    color: white;
    font-size: 16px;
    display: inline-block;
    vertical-align: top;
    font-weight: 700
}

#referenzen h4 {
    margin-top: 25px;
}

.container-fluid .mix:before {
    display: inline-block
}

@media all and (min-width: 420px) {
    .container-fluid .mix,
    .container-fluid .gap {
        width: 32%
    }
}

@media all and (min-width: 640px) {
    .container-fluid .mix,
    .container-fluid .gap {
        width: 23.5%
    }
}

.col-lg-8-1 {
    width: 100%;
    margin-left: 0%;
    text-align: justify;
    font-size: 13pt;
    font-family: 'Montserrat', "Helvetica Neue", Helvetica, Arial, sans-serif;
  }

.item {
    float: left;
    width: 100px;
    height: 100px;
    background: #0D8;
    border: 2px solid #333;
    border-color: hsla(0, 0, 0, 0.7)
}

.item.width2 {
    width: 200px
}

#referenzen hr {
    margin-bottom: 50px;
    margin-top: 50px;
}

.item.height2 {
    height: 200px
}

#referenzen p {
    font-size: 19px;
}

#galerie button.filter.btn.btn-default.active {
    color: #333;
    border-bottom: solid #333
}

ol.carousel-indicators {
    bottom: -10px;
}

#galerie button.filter.btn.btn-default {
    color: #333;
    border: 0;
    text-transform: none;
    font-size: 15px;
    background-color: transparent;
    box-shadow: none
}

#nav a:hover {
    color: #f9b122
}

.carousel-inner .item {
    width: auto;
    height: auto;
    border: none;
    float: none;
    background-color: transparent;
}

button.navbar-toggle {
    color: white;
    border-color: white
}

span.icon-bar {
    color: white;
    border-color: white
}

#kontakt .red {
    background-color: #8b221f
}

#kontakt form.form-horizontal {
    margin: 50px auto
}

#kontakt .form-group {
    margin: 25px auto
}

textarea#textarea,
#kontakt input#textinput {
    background-color: transparent;
    border: solid white 3px;
    border-radius: 0;
    padding: 25px 15px;
    color: white;
    box-shadow: none;
    letter-spacing: 5px;
    font-size: 15px
}

textarea#textarea {
    padding-top: 18px;
    resize: vertical;
    letter-spacing: normal
}

.form-control::-moz-placeholder {
    color: #fff;
    letter-spacing: 5px;
    font-size: 15px;
    text-transform: uppercase
}

.form-control:-ms-input-placeholder {
    color: #fff;
    letter-spacing: 5px;
    font-size: 15px;
    text-transform: uppercase
}

.form-control::-webkit-input-placeholder {
    color: #fff;
    letter-spacing: 5px;
    font-size: 15px;
    text-transform: uppercase
}

#kontakt button#singlebutton {
    background-color: transparent;
    border: white solid 3px;
    padding: 16px 35px;
    width: 100%;
    letter-spacing: 5px;
    font-size: 15px
}

#kontakt address {
    color: white;
    text-align: left
}

address h4 {
    margin-bottom: 0;
    font-size: 25px;
    text-transform: none
}

address h5 {
    margin-bottom: 15px;
    text-transform: none;
    font-weight: 500;
    font-size: 18px
}

address td {
    padding: 8px
}

address table {
    font-size: 13px;
    letter-spacing: 1px;
    font-weight: 500;
    margin-bottom: 50px
}

address tr td:first-child {
    padding-left: 5px
}

#kontakt fieldset .form-group:last-child {
    margin-bottom: -10px
}

#googleMap {
    width: 100%;
    height: 887px
}

@media screen and (max-width: 1298px) {
    #googleMap {
        height: 893px
    }
}

@media screen and (max-width: 990px) {
    #googleMap {
        height: 500px
    }
}

@media screen and (max-width: 770px) {
    nav#nav {
        background-color: #8b221f;
        border: 0;
        text-align: center
    }
    .navbar-custom .nav li a {
        padding: 15px
    }
    button.navbar-toggle {
        float: none;
        padding: 15px;
        margin-top: 0;
        margin-right: 0;
        margin-bottom: 0;
        border: 0;
        border-radius: 0;
        font-size: 30px
    }
    .intro {
        height: 100%
    }
}

footer {
    background-color: #f2f2f2
}

footer p {
    font-size: 16px
}

footer a:hover {
    color: #f9b122
}

footer a {
    color: #333
}

footer a.btn.btn-default {
    text-transform: none;
    margin: 0 3px;
    text-align: center
}

footer a.btn.btn-default:hover {
    color: #f9b122;
    border-color: #f9b122
}

@media screen and (max-width: 500px) {
    footer p {
        font-size: 12px
    }
    nav#nav {
        background-color: #8b221f;
        border: 0;
        text-align: center
    }
    .navbar-custom .nav li a {
        padding: 15px
    }
    button.navbar-toggle {
        float: none;
        padding: 15px;
        margin-top: 0;
        margin-right: 0;
        margin-bottom: 0;
        border: 0;
        border-radius: 0;
        font-size: 30px
    }
    .intro {
        height: 100%
    }
    .navbar-brand {
        height: 0
    }
}

.og-grid li ul li {
    display: list-item;
    height: auto
}

.og-grid li ul {
    list-style-type: disc;
    font-size: 18px;
    padding-left: 15px
}
