

@font-face {
    font-family: CardoItalic;
    src: url('../fonts/Cardo-Italic.eot'); /* IE9 Compatibility Modes */
    src: url('../fonts/Cardo-Italic.eot?') format('eot'),  /* IE6-IE8 */
    url('../fonts/Cardo-Italic.woff') format('woff'), /* Modern Browsers */
    url('../fonts/Cardo-Italic.ttf')  format('truetype'), /* Safari, Android, iOS */
    url('../fonts/Cardo-Italic.svg#svgCardo-Italic') format('svg'); /* Legacy iOS */
}

@font-face {
    font-family: SourceSansProExtraLight;
    src: url('../fonts/SourceSansPro-ExtraLight.eot'); /* IE9 Compatibility Modes */
    src: url('../fonts/SourceSansPro-ExtraLight.eot?') format('eot'),  /* IE6-IE8 */
    url('../fonts/SourceSansPro-ExtraLight.woff') format('woff'), /* Modern Browsers */
    url('../fonts/SourceSansPro-ExtraLight.ttf')  format('truetype'), /* Safari, Android, iOS */
    url('../fonts/SourceSansPro-ExtraLight.svg#svgSourceSansPro-ExtraLight') format('svg'); /* Legacy iOS */
}

@font-face {
    font-family: SourceSansProExtraLightItalic;
    src: url('../fonts/SourceSansPro-ExtraLightIt.eot'); /* IE9 Compatibility Modes */
    src: url('../fonts/SourceSansPro-ExtraLightIt.eot?') format('eot'),  /* IE6-IE8 */
    url('../fonts/SourceSansPro-ExtraLightIt.woff') format('woff'), /* Modern Browsers */
    url('../fonts/SourceSansPro-ExtraLightIt.ttf')  format('truetype'), /* Safari, Android, iOS */
    url('../fonts/SourceSansPro-ExtraLightIt.svg#svgSourceSansPro-ExtraLightIt') format('svg'); /* Legacy iOS */
}

@font-face {
    font-family: SourceSansProLight;
    src: url('../fonts/SourceSansPro-Light.eot'); /* IE9 Compatibility Modes */
    src: url('../fonts/SourceSansPro-Light.eot?') format('eot'),  /* IE6-IE8 */
    url('../fonts/SourceSansPro-Light.woff') format('woff'), /* Modern Browsers */
    url('../fonts/SourceSansPro-Light.ttf')  format('truetype'), /* Safari, Android, iOS */
    url('../fonts/SourceSansPro-Light.svg#svgSourceSansPro-Light') format('svg'); /* Legacy iOS */
}

@font-face {
    font-family: SourceSansProLightItalic;
    src: url('../fonts/SourceSansPro-LightIt.eot'); /* IE9 Compatibility Modes */
    src: url('../fonts/SourceSansPro-LightIt.eot?') format('eot'),  /* IE6-IE8 */
    url('../fonts/SourceSansPro-LightIt.woff') format('woff'), /* Modern Browsers */
    url('../fonts/SourceSansPro-LightIt.ttf')  format('truetype'), /* Safari, Android, iOS */
    url('../fonts/SourceSansPro-LightIt.svg#svgSourceSansPro-LightIt') format('svg'); /* Legacy iOS */
}

@font-face {
    font-family: SourceSansProRegular;
    src: url('../fonts/SourceSansPro-Regular.eot'); /* IE9 Compatibility Modes */
    src: url('../fonts/SourceSansPro-Regular.eot?') format('eot'),  /* IE6-IE8 */
    url('../fonts/SourceSansPro-Regular.woff') format('woff'), /* Modern Browsers */
    url('../fonts/SourceSansPro-Regular.ttf')  format('truetype'), /* Safari, Android, iOS */
    url('../fonts/SourceSansPro-Light.svg#svgSourceSansPro-Regular') format('svg'); /* Legacy iOS */
}

body {
    width: 100%;
    height: 100%;
    font-family: 'SourceSansProLight',sans-serif;
	font-weight: 300;
    color: #666;
    background-color: #fff;
}

html {
    width: 100%;
    height: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
}

p {
    margin: 0 0 20px;
    font-size: 16px;
    line-height: 1.6em;
}

p.lead {
	font-weight: 600;
}

a {
    color: #28c3ab;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

a:hover,
a:focus {
    text-decoration: none;
    color: #176e61;
}

.light {
    font-weight: 400;
}

.navbar {
    margin-bottom: 0;
	
}

hr {
    border: none;
}


/* loader */
#preloader {
    background: #ffffff;
    bottom: 0;
    height: 100%;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    z-index: 999;
}


#loaderInner {
    background:#ffffff url(../img/spinner.gif) center center no-repeat;
    height: 60px;
    left: 50%;
    margin: -50px 0 0 -50px;
    position: absolute;
    top: 50%;
    width: 60px;
}

@keyframes boxSpin{
  0%{
    transform: translate(-10px, 0px);
  }
  25%{
    transform: translate(10px, 10px);
  }
  50%{
    transform: translate(10px, -10px);
  }
  75%{
    transform: translate(-10px, -10px);
  }
  100%{
    transform: translate(-10px, 10px);
  }
}


@keyframes shadowSpin{
  0%{
    box-shadow: 10px -10px #708390, -10px 10px #64788b;
  }
  25%{
    box-shadow: 10px 10px #708390, -10px -10px #64788b;
  }
  50%{
    box-shadow: -10px 10px #708390, 10px -10px #64788b;
  }
  75%{
    box-shadow: -10px -10px #708390, 10px 10px #64788b;
  }
  100%{
    box-shadow: 10px -10px #708390, -10px 10px #64788b;
  }
}

#load {
    z-index: 9999;
    background-color: #3e5063;
    opacity: 0.75;
    width: 10px;
    height: 10px;
    position: absolute;
    top: 50%;
    margin: -5px auto 0 auto;
    left: 0;
    right: 0;
    border-radius: 0px;
    border: 5px solid #3e5063;
    box-shadow: 10px 0px #39CCCC, 10px 0px #01FF70;
    animation: shadowSpin 1s ease-in-out infinite;
}

/* misc */
hr {
  margin-top: 10px;
}

/* margins */
.marginbot-0{margin-bottom:0 !important;}
.marginbot-10{margin-bottom:10px !important;}
.marginbot-20{margin-bottom:20px !important;}
.marginbot-30{margin-bottom:30px !important;}
.marginbot-40{margin-bottom:40px !important;}
.marginbot-50{margin-bottom:50px !important;}

/* ===========================
--- General sections
============================ */


body {
/*
    -moz-hyphens: auto;
    -o-hyphens: auto;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;
*/
}

.home-section {
    padding-top: 110px;
    padding-bottom: 110px;
	display:block;
    position:relative;
    z-index:120;
}


.section-heading h2 {
	font-size: 30px;
}

.section-heading i {
	margin-bottom: 20px;
}


/* --- section bg var --- */

.bg-white {
	background: #fff;
}

.bg-gray {
	background: #f8f8f8;
}


.bg-dark {
	background: #575757;
}

/* --- section color var --- */

.text-light {
	color: #fff;
}



.navbar {
    color: #fff;
    color: rgba(255,255,255,0.5);
    font-family: SourceSansProExtraLight, sans-serif;
}

.top-nav-collapse {
    background: rgba(255,255,255,0.9);
    color: #555;
    border-bottom: solid 1px #ccc;
}

.navbar .navbar-logo {
    float: left;
    font-family: SourceSansProExtraLightItalic, sans-serif;
    line-height: 50px;
    cursor: default;
    opacity: 0;

}

.top-nav-collapse .navbar-logo {
    opacity: 1;
}

.navbar .navbar-logo a {
    color: #555;
    display: block;
    background: url(../img/logo-navi.png) no-repeat 20px center;
    min-height: 50px;
    padding-left: 50px;
}

.navbar .navbar-logo a:focus,
.navbar .navbar-logo a:active {
	outline: none;
}

.navbar .navbar-logo a:hover {
    color: #000;
}

.navbar ul.navbar-nav {
    float: right;
    margin-right: 20px;
}

.navbar ul li a {
    font-weight: 100;
    color: inherit;
}

.navbar .nav > li > a:hover, .navbar .nav > li > a:focus {
    text-decoration: none;
    background: none;
    color: rgba(255,255,255,1);
    outline: none;
}

.top-nav-collapse .nav > li > a:hover, .top-nav-collapse .nav > li > a:focus {
    text-decoration: underline;
    background: none;
    color: #000;
    outline: none;
}

/* ===========================
--- Intro
============================ */

.intro {
	width:100%;
	position:relative;
	background:url(../img/bg1.jpg) no-repeat top center;
    background-size:cover;
}

#intro.intro {
	padding:15% 0 0 0;
}

.intro .slogan {
	text-align: center;

}

.intro .page-scroll {
	text-align: center;
}

.brand-heading {
    font-size: 40px;
}

.intro-text {
    font-size: 18px;
}

.intro .slogan .logo span {
    background: url("../img/logo-header.png") no-repeat center rgba(0,0,0,0.65);
    display: inline-block;
    width: 115px;
    height: 151px;
}

.intro .slogan h2 {
	color: #FFF;
	text-shadow: none;
	font-size: 60px;
	line-height: 60px;
	font-family: SourceSansProExtraLightItalic, sans-serif;
    font-weight: 100;
    text-transform: none;
    cursor: default;
    margin-bottom: 0.25em;
}


.intro .slogan h2 span {
    background: #000;
    background: rgba(0,0,0,0.65);
    padding: 0 0.2em;
}


@media screen and (min-width: 415px) and (max-width:480px) {

    .intro .slogan h2 span.first {
        padding: 0 0.05em 0 0.2em;
    }

    .intro .slogan h2 span.last {
        padding: 0 0.2em 0 0.05em;
    }

}

@media (max-width:480px) {

    .intro .slogan .logo {
        margin-bottom: 70px;
        margin-top: -30px;
    }

}

@media screen and (min-width: 481px) and (max-width: 639px) {

    .intro .slogan h2 {
      line-height: 80px;
    }

}


@media (min-width:640px) {

    .intro .slogan h2 span.first {
        padding: 0 0.05em 0 0.2em;
    }

    .intro .slogan h2 span.last {
        padding: 0 0.2em 0 0.05em;
    }

}



.intro .slogan h4 {
	color: #ddd;
    font-family: CardoItalic;
    font-weight: 100;
    text-transform: none;
    font-size: 18px;
    opacity: 0.75;
    cursor: default;
}


.intro .slogan h4 span {
    background: #000;
    background: rgba(0,0,0,0.65);
    padding: 0 0.2em;
}

.intro .page-scroll .btn:hover, .btn:focus {
    opacity: 1;
    outline: none;
}

.intro .page-scroll .btn {
    color: #fff;
    opacity: 0.5;
}

.intro .page-scroll a i {
    font-size: 30px;
    background: #000;
    padding: 0.1em;
}

/* ===========================
--- General
============================ */

.region-section {
    padding-top: 50px;
    margin-top: -50px;
}

.region-section .region-section-inner {

}

.content-text .section-heading h2 {
    color: #5a7083;
    font-family: SourceSansProExtraLight, sans-serif;
}

.content-text .container h3 {
    font-weight: normal;
    font-family: SourceSansProLightItalic;
    color: #1f1e22;
    font-size: 22px;
    line-height: 27px;
    margin-bottom: 25px;
}

.content-text .container p {
    color: #6b6b6b;
    font-size: 16px;
    line-height: 20px;
}

.content-text .container p strong {
    font-family: SourceSansProRegular;
    font-weight: normal;
    color: #555;
}

.content-text hr.divisor {
    border-bottom: solid 1px #c3c4c6;
    margin-top: 20px;
}

.img-circle-border {
    border: solid 9px #fff;
}


/* ===========================
--- Quote
============================ */

.quote {
}

.quote .quote-inner {
    padding: 20px 0;
}

.quote .quote-inner .quote-text {
    color: #182023;
    font-size: 21px;
}

.quote .quote-inner .quote-author {
    font-family: CardoItalic,serif;
    text-align: right;
    max-width: 750px;
    color: #4e6376;
    margin: auto;
}

/* ===========================
--- About
============================ */

#about {

}

.about-inner {
    background: #e9ebed;
    padding: 30px 0;
}

#about-logo-container {
    margin-top: 15%;
}

/* ===========================
--- Referenzen
============================ */

.referenzen {

}

.referenzen .referenzen-inner {
    background: #f6f6f6;
    padding: 30px 0px 50px 0;
}


.referenzen .boxed-grey {
	background: #dedede;
	padding: 20px;
    border: 10px solid #fff;
}

.referenzen .avatar img {
  margin: auto;
}

.referenz h4 {
	margin: 0;
	color: #333;
	text-align: center;
	margin-bottom: 5px;
}

.referenz h5 {
	margin-bottom: 10px;
    text-align: center;
    color: #666;
    margin-top: 0;
    min-height: 3.31em;
    font-size: 13px;
}

.referenz .download {
    overflow: hidden;
    font-size: 12px;
    padding-top: 10px;
    margin-bottom: -10px;
}

.referenz .download a {
    float: right;
    text-decoration: underline;
}

.referenz p.subtitle {
	margin-bottom: 10px;
}


/* ===========================
--- Leistungen
============================ */

.service-icon {
	margin-bottom: 20px;
}

#leistungen {

}

.leistungen .leistungen-inner {
    background: #eee;
    padding: 30px 0px 50px 0;
}


/* ===========================
--- Workshops
============================ */


#workshops {
  padding-top: 40px;
}



.workshops-inner {
    background: #e3e3e3;
    padding: 30px 0;
}

#workshops h4 {
	font-family: SourceSansProLight;
	color: #222;
}

#workshops h5 {
	font-family: SourceSansProRegular;
	color: #444;
}


/* ===========================
--- Kundenliste
============================ */


#kundenliste {
  padding-top: 40px;
}



.kundenliste-inner {
    background: #fcfcfc;
    padding: 30px 0;
}

#kundenliste ul {
	margin-left: -26px;
}

/* ===========================
--- Person
============================ */

#person {

}

.person-inner {
    background: #f6f6f6;
    padding: 30px 0;
}





/* ===========================
--- Kontakt
============================ */


#kontakt {
  padding-top: 40px;
}



.kontakt-inner {
    background: #fff;
    padding: 30px 0;
}

#kontakt h5 {
  font-size: 15px;
  font-family: SourceSansProRegular;
}

#kontakt ul {
  list-style-type: none;
  list-style: none;
  margin-left: -40px;
}

#kontakt ul li {
  list-style-type: none;
  list-style: none;
}

#kontakt ul li label {
  font-weight: normal;
  margin-right: 1em;
}

#kontakt ul li a {

}

#kontakt .widget-contact ul {
	
}


#kontakt .widget-inprint ul:before {
	content: ' ';
	background: url(../img/deleted.png) no-repeat;
	position: absolute;
	width: 100%;
	height: 100%;
	display: block;
	opacity: 0.2;
}
#kontakt .widget-inprint strong {
	color: red;
}


/* ===========================
--- Footer
============================ */

footer {
	text-align: center;
	padding: 50px 0 ;
	background: #94a3ac;
}

#footer {
  background: #94a3ac;
}

footer p {
	color: #f8f8f8;
}

/* ==========================
Parallax
============================= */

#parallax1{	
	background-image: url(../img/parallax/1.jpg);
}

#parallax1:after {	
	background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAAECAYAAACp8Z5+AAAAEklEQVQImWNgYGD4z0AswK4SAFXuAf8EPy+xAAAAAElFTkSuQmCC);
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	top: 0;
	opacity: 0.7;
	z-index: -1;
}


#parallax2{	
	background-image: url(../img/parallax/2.jpg);

}

#parallax2:after  {	
	background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAAECAYAAACp8Z5+AAAAEklEQVQImWNgYGD4z0AswK4SAFXuAf8EPy+xAAAAAElFTkSuQmCC);
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	top: 0;
	opacity: 0.7;
	z-index: -1;
}


/* ===========================
--- Elements
============================ */

.btn {
	border-radius: 0;
    text-transform: uppercase;
    font-family: Montserrat,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;
}


.btn-circle {
    width: 70px;
    height: 70px;
    margin-top: 15px;
    padding: 7px 16px;
    border: 2px solid #fff;
    border-radius: 50%;
    font-size: 40px;
    color: #fff;
    background: 0 0;
    -webkit-transition: background .3s ease-in-out;
    -moz-transition: background .3s ease-in-out;
    transition: background .3s ease-in-out;
}

.btn-circle.btn-dark {
    border: 2px solid #666;
    color: #666;
}


.btn-circle:hover,
.btn-circle:focus {
    outline: 0;
    color: #fff;
    background: rgba(255,255,255,.1);
}

.btn-circle.btn-dark :hover,
.btn-circle.btn-dark :focus {
    outline: 0;
    color: #999;
    background: #fff;
}

.btn-circle.btn-dark :hover i,
.btn-circle.btn-dark :focus i{
    color: #999;
}

.page-scroll .btn-circle i.animated {
    -webkit-transition-property: -webkit-transform;
    -webkit-transition-duration: 1s;
    -moz-transition-property: -moz-transform;
    -moz-transition-duration: 1s;
}

.page-scroll .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);
    }
}


#text {
    color: #fff;
    background: #ffcc00;
}

#map {
	height: 500px;
}


.btn-skin:hover,
.btn-skin:focus,
.btn-skin:active,
.btn-skin.active {
  color: #fff;
  background-color: #666;
  border-color: #666;
}


.btn-default:hover,
.btn-default:focus {
    border: 1px solid #28c3ab;
    outline: 0;
    color: #000;
    background-color: #28c3ab;
}

.btn-huge {
    padding: 25px;
    font-size: 26px;
}

.banner-social-buttons {
    margin-top: 0;
}


/* Media queries */

@media(min-width:767px) {

    .navbar {
        padding: 0;
        letter-spacing: 0px;
        -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;
    }

    .top-nav-collapse {

    }

    .navbar-custom.top-nav-collapse {
    }
	
    .intro {
        height: 100%;
        padding: 0;
    }

    .brand-heading {
        font-size: 100px;
    }
	

    .intro-text {
        font-size: 25px;
    }

  .referenzen .col-md-3 {
    width: 30%;
  }


}
@media (max-width:768px) {
	
	.referenz.boxed-grey {
		margin-bottom: 30px;
	}
	
	.boxed-grey {
		margin-bottom: 30px;
	}

  .mobile-landscape-hide {
    display: none;
  }

  .mobile-landscape-hide-text {
    text-indent: -9999px;
  }


  #referenzen .clearfix::after,
  #referenzen .container::after,
  .container-fluid::after,
  #referenzen .row::after,
  #referenzen .form-horizontal .form-group::after,
  #referenzen .btn-toolbar::after,
  #referenzen .btn-group-vertical > .btn-group::after,
  #referenzen .nav::after,
  #referenzen .navbar::after,
  #referenzen .navbar-header::after,
  #referenzen .navbar-collapse::after,
  #referenzen .pager::after,
  #referenzen .panel-body::after,
  #referenzen .modal-footer::after {
    clear: none;
    background: red;
  }
	
}

@media (max-width:480px) {

  .mobile-portrait-hide {
    display: none;
  }

  .mobile-portrait-hide-text {
    text-indent: -9999px;
  }

  .intro .slogan .logo {
    background: url("../img/logo-header-small.png") no-repeat scroll center center transparent;
    height: 90px;
  }

  .intro .slogan h2 {
    font-size: 40px;
    line-height: 40px;
    margin-top: 10px;
  }

  .intro .slogan h4 {
    opacity: 1;
    color: #fff;
  }

  .quote .quote-inner .quote-author {
    padding-right: 100px;
  }





  .navbar {
  }
  
  	.top-nav-collapse {
  		background: url(../img/icons/logo-navi.png) 20px 10px no-repeat rgba(255, 255, 255, 0.99);
	  	color: #555;
  	}
  
  .navbar .navbar-logo {
  	opacity: 1;
  	float: right;
  	margin-right: 10px;
  }
  	.top-nav-collapse .navbar-logo {
  		
  	}
  
  	.navbar .navbar-logo a {
  		background: url(../img/icons/mobile-navi.png) 20px center no-repeat;
  	}
  
  .navbar ul.nav {
  	float: left;
  	margin-left: 10px;
  	background: none !important;
  	display: none;
  }
  
  .top-nav-collapsed ul.nav {
  	display: block;
  }
  
  .top-nav-collapsed ul.nav li {
  	
  	display: inline-block;
  }

	.navbar-custom .nav.navbar-nav {
        background-color: rgba(255,255,255,.4);
	}
	
	.navbar.navbar-custom.navbar-fixed-top {
		margin-bottom: 30px;
	}
	
	.tp-banner-container {
		padding-top:40px;
	}

	.page-scroll a.btn-circle {
		width: 40px;
		height: 40px;
		margin-top: 10px;
		padding: 7px 0;
		border: 2px solid #fff;
		border-radius: 50%;
		font-size: 20px;
	}

  .marginbot-0,
  .marginbot-10,
  .marginbot-20 {
    display: none;
  }
	
}


@media (min-width:480px) {
	
	.navbar-nav > li {
	    float: left;
	}

}

