@charset "UTF-8";
/*
* Taubert
* Build Date: Juli 2016
* Author: autor
* Copyright (C) 2016 Taubert
*/

/* ------------------------------------- */
/* *. @Import .......................... */
/* ------------------------------------- */
/* custom CSS files */

@import url("https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css");	
@import url("https://maxcdn.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css");
@import url("https://cdn.jsdelivr.net/animatecss/3.5.2/animate.min.css");	
@import url("../css/owl.css");

/* Google Fonts */

@import url("https://fonts.googleapis.com/css?family=Oswald:300,400,700");
@import url("https://fonts.googleapis.com/css?family=Raleway:400,400i,500,500i,600,600i,700,700i,800,800i");
@import url("https://fonts.googleapis.com/css?family=Roboto+Slab:400,100,300,700");
@import url("https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,700italic,700,400italic,600,600italic,900italic,900");


/* ------------------------------------- */
/* 1. Generic styles ................... */
/* ------------------------------------- */
html {
  height: 100%;
}
body {
    background: #ababab url("../../images/body-bg.jpg") no-repeat fixed center center / cover ;
    color: #000000;
    padding-top: 50px;
    overflow-x: hidden;
}
img {
    height: auto;
    max-width: 100%;
}
a {
    color: #c02a2a;
    cursor: pointer;
    text-decoration: none;
}
a:hover {
    color: #ccc;
}
a:hover, a:focus, a:visited {
    outline: medium none;
    text-decoration: none;
}
a[href^="tel"]:link,
a[href^="tel"]:visited, 
a[href^="tel"]:hover {
    text-decoration: none;
    color: #c02a2a;
}
h1, h2, h3, h4, h5, h6 {
    background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
    font-family: "Raleway",sans-serif;
    font-weight: normal;
    line-height: 1.6em;
    margin: 0;
    position: relative;
}
p {
    line-height: 1.6em;
}
ul, li {
    list-style: outside none none;
    margin: 0;
    padding: 0;
}
    [class*="col-"] {
      padding-left: 0;
      padding-right: 0;
    }
.lead {
    font-family: "oswald",sans-serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.1em;
    line-height: 1.6;
    margin-bottom: 20px;
}
.no-padding {
    padding: 0;
}
.no-left-padding, 
ul {
    padding-left: 0;
}
.no-right-padding {
    padding-right: 0;
}
.no-top-padding {
    padding-top: 0;
}
.no-bottom-padding {
    padding-bottom: 0;
}
.no-margin {
    margin: 0;
}
.no-left-margin {
    margin-left: 0;
}
.no-right-margin {
    margin-right: 0;
}
.no-top-margin {
    padding-top: 0;
}
.no-bottom-margin {
    margin-bottom: 0;
}
.margin-bottom-30 {
    margin-bottom: 30px;
}
.margin-bottom-50 {
    margin-bottom: 50px;
}
.margin-top-30 {
    margin-top: 30px;
}
/* ------------------------------------- */
/* Page Loader ................... */
/* ------------------------------------- */
#page-loader {
    background-color: #fff;
    height: 100%;
    position: fixed;
    width: 100%;
	margin-top: -50px;
    z-index: 999999;
}
.loader-img {
    position: absolute;
    top: 50%;
	left: 50%;
    height: 100px;
    width: 100px;
    margin: -50px 0 0 -50px;
	text-align: center;
}
.loader-img img {
    border-radius: 50%;
}
.loader-img::after {
    position: absolute;
    left: 50%;
	top: 50%;
    border-radius: 50%;
    border-right: 2px solid #6caed1;
    border-top: 2px solid #003c7d;
    content: "";
    display: block;
    height: 110px;
    width: 110px;
    margin: -55px 0 0 -55px;
    animation: 1s linear 0s normal none infinite running rotate;
}
@media (min-width:768px) { 
    .loader-img {
        height: 150px;
        width: 150px;
        margin: -75px 0 0 -75px;
    }
    .loader-img::after {
        height: 160px;
        width: 160px;
        margin: -80px 0 0 -80px;
    }
}
@-webkit-keyframes rotate {
		0% {
			-webkit-transform: rotate(0);
				-ms-transform: rotate(0);
					transform: rotate(0);
		}
		100% {
			-webkit-transform: rotate(360deg);
				-ms-transform: rotate(360deg);
					transform: rotate(360deg);
		}
}
@keyframes rotate {
		0% {
			-webkit-transform: rotate(0);
				-ms-transform: rotate(0);
					transform: rotate(0);
		}
		100% {
			-webkit-transform: rotate(360deg);
				-ms-transform: rotate(360deg);
					transform: rotate(360deg);
		}
}

/* ------------------------------------- */
/* Überschriften ................... */
/* ------------------------------------- */	
.title {
    margin: 0 auto;
    position: relative;
    text-align: center;
}
.title h2 {
    color: #003c7d;
    font-family: "Oswald";
    font-size: 30px;
}
.title span {
    color: #8b8b8b;
}
h5.titel {
    color: #003c7d;
    font-weight: 600;
    margin-bottom: 15px;
}
.divater {
    height: auto;
    padding: 20px 0;
    position: relative;
    text-align: center;
    width: 100%;
}
.divater span {
    background-color: white;
    padding: 0 5px;
    position: relative;
}
.divater .line {
    background: rgba(0, 0, 0, 0.08) none repeat scroll 0 0;
    height: 1px;
    margin-top: -1px;
    position: absolute;
    top: 50%;
    width: 100%;
}

/* ------------------------------------- */
/* Menü ................... */
/* ------------------------------------- */
span.glyphicon {
    padding-right: 10px;
}

/* ------------------------------------- */
/* Wrapper ................... */
/* ------------------------------------- */
#wrapper {
    background-color: #fff;
}


/* ------------------------------------- */
/* Footer Section ................... */
/* ------------------------------------- */
.footer-main {
    position: relative;
}
/* to Top ................... */
.back-to-top {
	font-size: 26px;
	color: #fff;
	text-align: center;
	width: 60px;
	height: 60px;
	background-color: #94999c;
	display: block;
	margin: 0 auto;
	position: absolute;
	top: -30px;
	left: 0;
	right: 0;
	border-radius: 100%;
	line-height: 50px;
	-webkit-transition: all 1s ease 0s;
	-moz-transition: all 1s ease 0s;
	-o-transition: all 1s ease 0s;
	transition: all 1s ease 0s;
}
.back-to-top:hover,
.back-to-top:focus { 
	color: #003c7d;
}

/* -- OWL Carousel Footer */
#partner_carousel_area {
    background: #94999c none repeat scroll 0 0;
    border-top: 1px solid #888;
    padding: 30px 0;
}
.single_partner {
    filter: grayscale(1);
    filter: gray; /* IE6-9 */
    -webkit-filter: grayscale(100%);
    text-align: center;
}
.single_partner:hover {
    filter: grayscale(0);
    -webkit-filter: grayscale(0%);
}
.single_partner > a {
    display: inline-block;
    margin-bottom: -4px;
}
#partner_carousel_area .single_partner img {
    width: auto;
}
#partner_carousel_area .owl-carousel .owl-controls .owl-nav .owl-prev, #partner_carousel_area .owl-carousel .owl-controls .owl-nav .owl-next {
    background-color: transparent;
    height: auto;
    line-height: inherit;
}
#partner_carousel_area .owl-carousel .owl-controls .owl-nav .owl-prev i, #partner_carousel_area .owl-carousel .owl-controls .owl-nav .owl-next i {
    font-size: 23px;
}
.owl-carousel .owl-controls .owl-nav .owl-prev, .owl-carousel .owl-controls .owl-nav .owl-next {
    background-color: #333333;
    color: #ffffff;
    display: inline-block;
    height: 30px;
    line-height: 30px;
    text-align: center;
    transition: all 0.3s ease 0s;
    width: 30px;
}
.owl-carousel .owl-controls .owl-nav .owl-prev i, .owl-carousel .owl-controls .owl-nav .owl-next i {
    font-size: 19px;
}
.owl-carousel .owl-controls .owl-nav .owl-prev:hover, .owl-carousel .owl-controls .owl-nav .owl-next:hover {
    background-color: #33ccff;
}
.owl-carousel .owl-controls .owl-nav .owl-prev {
    left: -5px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
.owl-carousel .owl-controls .owl-nav .owl-next {
    position: absolute;
    right: -5px;
    top: 50%;
    transform: translateY(-50%);
}

/* ------------------------------------- */
/* Startseite ................... */
/* ------------------------------------- */

/* -- Carousel Startseite top */
#photo-slider .carousel-inner {
    border-bottom: 1px solid #fff;
}
#photo-slider .carousel-caption {
	right: 0;
	bottom: 0;
	text-shadow: none;
	left: 0;
	text-align: right;
	padding: 0;
}
#photo-slider .carousel-caption h3 {
	display: inline-block;
	margin: 0;
	background-color: rgba(0,0,0,0.4);
	padding: 5px 50px;	
	font-size: 23px;
	text-transform: none;
}
#photo-slider .carousel-caption b {
    font-size: 36px;
	color: red;
}
#photo-slider .carousel-control {
	background-image: none;
	background-color: #003c7d;
	width: 60px;
	height: 60px;
	opacity: 1;
	text-shadow: none;
	line-height: 60px;
	-webkit-transition: all 0.6s ease 0s;
	-moz-transition: all 0.6s ease 0s;
	-o-transition: all 0.6s ease 0s;
	transition: all 0.6s ease 0s;
}
#photo-slider .carousel-control:hover {
	background-color: #888d90;
}

/* -- 3er Box unter Carousel */
.page-box {
    margin-top: -35px;
    position: relative;
    z-index: 99;
}
.page-box img {
    border: 10px solid rgba(255, 255, 255, 1);
    box-shadow: 0 -6px 6px rgba(0, 0, 0, 0.2);
}
.page-box-top {
    margin-top: -35px;
}
.page-box__title {
    color: #c02a2a;
    font-family: "Oswald",sans-serif;
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 20px;
    margin-top: 24px;
}

/* -- Section */
.home-section,
.member-section,
.kontakt-section {
	padding-bottom: 40px;
}
.schweissen-section1,
.referenzen-section {
	padding-bottom: 40px;
}
.schweissen-section p {
    margin: 0 0 15px;
}
address {
	font-family: "oswald",sans-serif;
}
address .fa {
    margin: 0 5px 0 10px;
}
/* Videosection ................... */
.bs-example {
    border-color: #e5e5e5 #eee #eee;
    border-style: solid;
    border-width: 1px;
    padding: 50px 10px 10px;
}
.bs-example::after {
    color: #8b8b8b;
    content: "Unser neuer Unternehmensfilm";
    position: absolute;
    top: 15px;
}
@media (min-width: 768px) {
.bs-example {
    background-color: #fff;
    border-color: #ddd;
    border-width: 1px;
    margin-left: 0;
    margin-right: 0;
	margin-top: 5px;
}
}

/* ------------------------------------- */
/* Top Banner ................... */
/* ------------------------------------- */
#page-banner {
    color: #fff;
    height: 250px;
}
/* Smartphones (landscape) ----------- */
@media only screen and (min-width : 361px) {
#page-banner {
    height: 180px;
}
}
#page-banner.home {
	background: #fff url("../../images/home-banner.jpg") no-repeat center center / cover ;
}
#page-banner.sst-schweissen {
	background: #fff url("../../images/schweissen-banner.jpg") no-repeat center center / cover ;
}
#page-banner.schweisser-service {
	background: #fff url("../../images/service-banner.jpg") no-repeat center center / cover ;
}
#page-banner.werk-banner {
	background: #fff url("../../images/werk-banner.jpg") no-repeat center center / cover ;
}
#page-banner.referenzen {
	background: #fff url("../../images/referenzen-banner.jpg") no-repeat center center / cover ;
}
#page-banner.impressum {
	background: #fff url("../../images/impressum-banner.jpg") no-repeat center center / cover ;
}
#page-banner.kontakt {
	background: #fff url("../../images/kontakt-banner.jpg") no-repeat center center / cover ;
}
#page-banner.member {
	background: #fff url("../../images/member-banner.jpg") no-repeat center center / cover ;
}
#page-banner h3 {
    font-size: 30px;
    font-weight: bold;
    margin: 0;
    text-transform: uppercase;
}
#page-banner ol {
    background-color: transparent;
    margin: 0;
    padding: 0;
}
#page-banner ol li {
    font-size: 13px;
    font-weight: 300;
    text-transform: lowercase;
}
#page-banner ol li a, 
#page-banner .breadcrumb > .active {
    color: #fff;
}

/* ------------------------------------- */
/* Breadcrumb ................... */
/* ------------------------------------- */
.breadcrumb {
    background-color: #003c7d;
    border-radius: 0;
    box-shadow: 0 1px rgba(0, 0, 0, 0.08);
    color: white;
    font-family: "Oswald";
    list-style: outside none none;
    margin-bottom: 0;
    padding: 8px 15px;
}
.breadcrumb > li + li::before {
    content: "";
    padding: 0 5px;
}
.breadcrumb > li + li + li::before {
    color: #fff;
    content: "/ ";
    padding: 0 5px;
}
.breadcrumb > li > a {
    position: relative;
    top: 1px;
}
.breadcrumb > .active {
    color: #fff;
}
/* ------------------------------------- */
/* default ................... */
/* ------------------------------------- */
.no-padding-right {
    padding-right: 0;
}
.sig {
    color: #c02a2a;
    font-family: "oswald";
    font-size: 18px;
}
.schweissen-section1 .h4, .schweissen-section1 h4 {
    font-size: 16px;
    margin: 15px 0 15px;
}
/* ------------------------------------- */
/* Referenzen ................... */
/* ------------------------------------- */
.icon-box {
    -moz-border-bottom-colors: none;
    -moz-border-left-colors: none;
    -moz-border-right-colors: none;
    -moz-border-top-colors: none;
    border-color: #e6e6e6 #e6e6e6 #b9babc;
    border-image: none;
    border-style: solid;
    border-top-left-radius: 2px;
    border-top-right-radius: 2px;
    border-width: 1px 1px 2px;
    display: inline-block;
    line-height: 1.3;
    padding: 27px 30px 26px;
    transition: all 100ms ease-out 0s;
    width: 100%;
	box-shadow: 0 6px 9px rgba(0, 0, 0, 0.1);
	text-align: center;
}
.icon-box:hover {
    border-bottom: 2px solid #c02a2a;
    box-shadow: 0 6px 9px rgba(192, 42, 42, .3);
    text-decoration: none;
}
.icon-box:hover img {
    filter: grayscale(1);
}
.icon-box__title {
    font-size: 16px;
    margin-bottom: 8px;
    margin-top: 0;
    color: #444444;
    font-family: "Source Sans Pro",Helvetica,Arial,sans-serif;
    font-weight: 900;
    letter-spacing: -0.05em;
}
.icon-box__subtitle {
    color: #aaaaaa;
    font-size: 13px;
	font-family: "Roboto",Helvetica,Arial,sans-serif;
}
.icon-box .fa {
    color: #b9babc;
    font-size: 45px;
    padding: 10px 0 10px 10px;
    transition: all 100ms ease-out 0s;
}
/* ------------------------------------- */
/* Map ................... */
/* ------------------------------------- */
.map-box {
	height: 250px;
}
/* Smartphones (landscape) ----------- */
@media only screen and (min-width : 361px) {
.map-box {
    height: 180px;
}
}

#map-box .mapmarker {
	position: relative;
	top: 30px;
	content: "";
	left: 0px;
	width: 75px;
	height: 75px;
	background: #ef4728;
	border-radius: 50%;
	z-index: 999;
	-webkit-border-radius: 50%;
	-webkit-transform: scale(.5);
	-moz-transform: scale(.5);
	-ms-transform: scale(.5);
	-o-transform: scale(.5);
	transform: scale(.5);
	-webkit-animation: blink 1.2s infinite;
	-o-animation: blink 1.2s infinite;
	animation: blink 1.2s infinite;
	-webkit-animation-fill-mode: forwards; /* Chrome, Safari, Opera */
	animation-fill-mode: forwards;
	display: block;
}
#falkwidget {
	width: 100% !important;
}
.goggle {
    margin-top: 15px;
}
.panel-group {
    margin: 0 auto 30px;
}
/* Chrome, Safari, Opera */
@-webkit-keyframes blink {
0% {
opacity:1;
-webkit-transform: scale(.1);
-moz-transform: scale(.1);
-ms-transform: scale(.1);
-o-transform: scale(.1);
transform: scale(.1);
}
 50% {
opacity:.7;
-webkit-transform: scale(.4);
-moz-transform: scale(.4);
-ms-transform: scale(.4);
-o-transform: scale(.4);
transform: scale(.4);
}
 100% {
opacity:0;
-webkit-transform: scale(1);
-moz-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
transform: scale(1);
}
}
 @keyframes blink {
0% {
opacity:1;
-webkit-transform: scale(.1);
-moz-transform: scale(.1);
-ms-transform: scale(.1);
-o-transform: scale(.1);
transform: scale(.1);
}
 50% {
opacity:.7;
-webkit-transform: scale(.4);
-moz-transform: scale(.4);
-ms-transform: scale(.4);
-o-transform: scale(.4);
transform: scale(.4);
}
 100% {
opacity:0;
-webkit-transform: scale(1);
-moz-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
transform: scale(1);
}
}




/* Responsive iFrame */

.responsive-iframe-container {
position: relative;
padding-bottom: 56.25%;
padding-top: 30px;
height: 0;
overflow: hidden;
}

.responsive-iframe-container iframe,
.vresponsive-iframe-container object,
.vresponsive-iframe-container embed {
position: absolute;
top: 0;
left: 0;
width: 100% !important;
height: 100% !important;
}

/* ------------------------------------- */
/* Responsive Anpassung................... */
/* ------------------------------------- */

@media only screen and (min-width: 768px) and (max-width: 991px) {
#main-container {
    margin: 0 auto;
    width: 100%;
}
.container {
	width: 100%;
}
.title h2 {
    font-size: 18px;
}
.page-box__title {
    font-size: 13px;
    font-weight: 500;
}
#partner_carousel_area {
    padding: 30px 0;
}
#partner_carousel_area .single_partner img {
    width: 70%;
}
}

@media (max-width: 767px) {
.page-box__title {
    font-size: 11px;
    font-weight: 500;
}
.title h2 {
    font-size: 16px;
}
#photo-slider .carousel-control,
#top-header.navbar-fixed-top {
    display: none
}
#partner_carousel_area .single_partner img {
    width: 100px;
}
}

@media (max-width: 479px) {
.page-banner h3 {
    font-size: 19px;
}
}
@media (max-width: 991px) {
#main-container {
    position: relative;
}
}

@media (max-width: 560px) {
#partner_carousel_area {
    padding: 15px 0;
}
}