@import 'icon-fonts.css';

/*
@import 'flexslider.css';
*/

@import 'animate.min.css';
    /*

@import 'bootstrap.min.css';

*/
/**
* PSC orange: #E95410;
*/



/* Common Colors to All Styles */
/*e34910*//* ========== GENERAL STYLES ========== */
ul,
li {
  padding: 0;
  margin: 0;
}
hr {
  border-top: 1px solid rgba(224, 224, 224, 1);
  margin:3em auto;
  width:90%;
}

label{
  font-weight: normal;
}


section {
  padding: 80px 0;
}


.btn {
  border: none;
  font-size: 16px;
  font-weight: normal;
  padding: 12px 24px;
  line-height: 24px;
  font-family: 'Abel', arial, sans-serif;
}
.btn-large {
  font-size: 21px;
  line-height: 36px;
  padding: 12px 24px;
}

.btn-xs {
    padding: 1px 5px !important;
}

.btn-primary {
  background-color: #EF5111;
}
.btn-primary:hover {
  background-color: #cf4c3e;
}
.btn-pricing {
  background-color: #4d6a82;
  color: white;
}
.btn-pricing:hover {
  background-color: #516f88;
  color: white;
}
.btn-pricing-popular {
  background-color: #E95410;
  color: white;
}
.btn-pricing-popular:hover {
  background-color: #d97267;
  color: white;
}
.btn-info {
  background-color: #22c5ac;
}
.btn-info:hover {
  background-color: #24ceb4;
}
/* ========== TYPOGRAPHY ========== */
html {
  width: auto !important;
  overflow-x: hidden !important;
}
body {
  font: 16px/1.5em  Arial, Helvetica, sans-serif;
  font-weight: 300;
  color: #3D3D3D;
  padding-top: 72px;
  width: auto !important;
  overflow-x: hidden !important;
  background-color: white !important;
}
* {
  -webkit-font-smoothing: antialiased;
  outline: none !important;
}
p {
  margin: 0 0 24px 0;
}
a {
  color: #E95410;
}
a:hover {
  text-decoration: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Abel', Arial, sans-serif;
}
h1 {
  font-size: 42px;
  line-height: 48px;
  margin: 0 0 48px;
  padding: 0;
}
h2 {
  font-size: 36px;
  line-height: 48px;
  margin: 0;
  padding-bottom: 24px;
}
h3 {
  font-size: 28px;
  line-height: 48px;
  margin: 0;
  padding: 0;
}
h4 {
  font-size: 21px;
  line-height: 36px;
  margin: 0;
  padding-bottom: 12px;
}

blockquote {
  padding: 12px 20px;
  font-size: 30px;
  line-height: 48px;
  font-family: "Abel", arial, sans-serif;
  text-align: right;
}
blockquote small {
  font-size: 18px;
  line-height: 24px;
  text-align: right;
}
.lead {
  font-size: 28px;
  line-height: 48px;
  margin-bottom: 48px;
}

img{
  max-width: 100%;
  height: auto;
}

.alert-info a{
    color:gray;
}
.alert-info a:hover{
    color:#31708f;
}

/* ========== FLEX SLIDER OVERRIDES ==========
.flexslider {
  background: transparent;
  border: none;
  border-radius: 0;
  margin-bottom: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.flexslider ul.slides {
  padding: 0;
  margin: 0;
}
.flex-direction-nav a {
  width: 30px;
  height: 30px;
  margin: -24px 0 0;
  display: block;
  background: url(img/bg_direction_nav.png) no-repeat 0 0;
  position: absolute;
  top: 50%;
  z-index: 10;
  cursor: pointer;
  text-indent: -9999px;
  opacity: 0;
  -webkit-transition: all .3s ease;
}
.flex-direction-nav a {
  width: 48px;
  height: 48px;
}
.flex-direction-nav .flex-next {
  background-position: 100% 0;
  right: -48px;
}
.flex-direction-nav .flex-prev {
  left: -48px;
}
.flexslider:hover .flex-next {
  opacity: 0.2;
  right: 0px;
}
.flexslider:hover .flex-prev {
  opacity: 0.2;
  left: 0px;
}
.flexslider:hover .flex-next:hover,
.flexslider:hover .flex-prev:hover {
  opacity: 0.8;
}
.flex-control-paging li a {
  background-color: #3a5062;
}
.flex-control-paging li a:hover,
.flex-control-paging li a.flex-active {
  background-color: #22c5ac;
}
.flex-control-nav {
  bottom: 18px;
}
#main-slider.flexslider .slides > li:first-child {
  display: block;
  -webkit-backface-visibility: visible;
}
#main-slider.flexslider .slides > li {
  display: none;
  -webkit-backface-visibility: hidden;
}
#flex1 .flex-control-paging li a {
  background-color: #2d2d2d;
}
#flex1 .flex-control-paging li a:hover,
#flex1 .flex-control-paging li a.flex-active {
  background-color: #939393;
}
#flex1 .flex-control-nav {
  bottom: 40px;
}
*/

/* ========== HEADER SECTION ================================================= */
header {
  background-color: whitesmoke;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;

  background: #ededed; /* Old browsers */
background: -moz-linear-gradient(top,  #ededed 0%, #ffffff 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ededed), color-stop(100%,#ffffff)); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top,  #ededed 0%,#ffffff 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top,  #ededed 0%,#ffffff 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top,  #ededed 0%,#ffffff 100%); /* IE10+ */
background: linear-gradient(to bottom,  #ededed 0%,#ffffff 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ededed', endColorstr='#ffffff',GradientType=0 ); /* IE6-9 */

}
/* HEADER RESIZE ON SCROLL /*/
.morph-header-large {
   padding: 48px 0; /* - keine Größenveränderung */
  padding: 0;
  padding-top:1em;
}
.morph-header-small {
  padding: 0;
}
.morph-header-small .navbar-brand img {
  height: 48px;
  margin-top: 12px;
}
.navbar-header {
  height: 72px;
  margin-top: 12px;
}
.navbar-header span { /* Navi-Icon für Mobile-Navigaton */
  color: gray;
  font-size: 36px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.navbar-header span:hover {
  color: #E95410;
}
.navbar-brand {
  margin: 0;
  padding: 0;
}

 .navbar-collapse .navbar-nav.navbar-right:last-child {
    margin-right: -6px;
}

.navbar-nav {
  margin: 24px 0;
}
.navbar-nav li {
  margin: 0;
  padding: 0;
}
.navbar-nav li.active a {
  color: #E95410;
}
.navbar-nav li a {
  font-size: 19px;
  color: black;
  font-family: 'Abel', arial, sans-serif;
  text-transform: uppercase;
  line-height: 24px;
  padding: 0 4px;
  margin-left: 47px;
  height: 24px;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
.navbar-nav li a:hover {
  background: transparent;
}

/* LINKS HOVER ANIMATION */
.fancy-nav a {
  overflow: hidden;
}
.fancy-nav a span {
  position: relative;
  display: inline-block;
  -webkit-transition: -webkit-transform 0.15s;
  -moz-transition: -moz-transform 0.15s;
  transition: transform 0.15s;
}
.fancy-nav a span::before {
  position: absolute;
  top: 100%;
  content: attr(data-hover);
  color: #E95410;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.fancy-nav a:hover span,
.fancy-nav a:focus span {
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  transform: translateY(-100%);
}


/* ========== SLIDER SECTION ========= */
#section-slider {
  padding-top: 0;
  padding-bottom: 0;
  width:100%;

  position: relative;
  margin-top:50px;
}


/* Slider begrenzen in der breite und zentrieren */

#section-slider img.sliderimage{

    width:100%;
    height:auto;
    max-height:500px;
    left:0;
    display:block;
}


#section-slider .slider-text {
  padding-top: 96px;
  text-align: left;
}
#section-slider .slider-text h1 {
  margin-bottom: 24px;
}

.carousel-inner,
.carousel-control-inner{
    max-width:1170px;
    margin: 0 auto;
}

.carousel-control-inner{
    position: absolute;
    top:50%;
    left:50%;
    width:100%;
    margin:0 auto;
}

.carousel-control-inner .inside{
    position: relative;
    margin:0 auto;
    left:-50%;       /* den absoluten rand des parents ausgleichen -> zentrieren */
}

.carousel-indicators li{
    border:1px solid gray;
    background-color:transparent;
}

.carousel-indicators .active{
    background-color:black;
}



.carousel-control .icon-prev,
.carousel-control .icon-next,
.carousel-control .glyphicon-chevron-left,
.carousel-control .glyphicon-chevron-right {
     font-size: 2em;
    font-weight: normal;
    opacity: 0.3;
}

.glyphicon-chevron-left:before,
.glyphicon-chevron-right:before {
    color: black;
}

.carousel-control .glyphicon-chevron-left{
    left:10%;
}
.carousel-control .glyphicon-chevron-right{
    right:20%;
}
.carousel-control.left,
.carousel-control.right{
    background:none;
}

.carousel-caption {
    padding-bottom: 5em;
}



/* ========== FEATURES SECTION ========== */
#features {
  background: transparent;
  text-align: center;
}
#features hr {
  padding-bottom: 21px;
}
#features .feature {
  -webkit-transition: color .6s;
  -moz-transition: color .6s;
  transition: color .6s;
}

#features .feature ul li{
  list-style: none;
}

#features .feature ul li:before{
    font-size: 0.8em;
    font-family: 'icomoon';
    content: '\f067';
    margin:0 0.4em 0 0;
}


#features .feature ul li:hover{
  background-color:whitesmoke;
}
#features .feature:hover {
  color: #E95410;
}


#features span {
  font-size: 96px;
  line-height: 120px;
}
/* ========== TOUR SECTION ========== */
#section-tour {
  padding-bottom: 0;
}
#section-tour .tour-step-icon {
    background: none repeat scroll 0 0 #FFFFFF;
    border: 12px solid #E95410;
    border-radius: 72px;
    color: #E95410;
    font-size: 48px;
    font-weight: bold;
    height: 96px;
    line-height: 48px;
    margin: -48px auto -6px;
    padding-top: 12px;
    position: relative;
    text-align: center;
    top: 48px;
    vertical-align: middle;
    width: 96px;
    z-index: 1;
}
#section-tour .tour-step-icon.final {
  font-size: 40px;
}
#section-tour .tour-step-container {
  padding-top: 66px;
}
#section-tour .tour-step-container .icon {
  color: #1fb49d;
  font-size: 140px;
  text-align: center;
  -moz-transition: color 0.3s;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
#section-tour .tour-step-container .icon:hover {
  color: #1ca28e;
}
#section-tour .tour-line-half {
  background: none repeat scroll 0 0 #E95410;
    display: block;
    height: 12px;
    position: relative;
    top: 0;
    width: 50%;
}
#section-tour .tour-line-full {
  background: #E95410;
  display: block;
  height: 12px;
  position: relative;
  top: 0;
}
#section-tour .tour-line-vert {
  background: #E95410;
  display: block;
  width: 12px;
  height: 282px;
}
#section-tour .last-step {
  height: 96px;
  margin-bottom: 96px;
}
#section-tour .last-step .launch {
  padding: 0;
  color: #3a5062;
  margin: -30px 0 0 0;
}
#section-tour .media {
  margin-top: -48px;
}
#section-tour .media:first-child {
  margin-top: 0;
}
#section-tour .media-heading {
  margin: 0;
  color: #425a6f;
}

/* =========== TINYWELL SECTION ========== */

section.tinywell{
    margin:0;
    padding: 2px 0 0 0;
    border-top:1px solid red;
    padding-top:2px solid white;
}
section.tinywell .container{
    background-color: #5F6364;
    color: white;
    width:100%;
    max-width: none;
}
section.tinywell .container p{
    max-width:   1170px;
    text-align:center;
    padding:12px 15px;
    margin:0 auto;
}

/* ========== PORTFOLIO SECTION ========== */

section.bg-grau{
    background-color:#E1E1E0;
}

#section-portfolio {
  background: transparent;
}
#section-portfolio .filters {
  height: 96px;
  text-align: center;
  margin: 0 auto;
}
#section-portfolio .filters li {
  display: inline-block;
  padding: 0 24px;
}
#section-portfolio .filters li a {
  line-height: 48px;
  color: #888888;
  font-family: "Abel", arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
  -webkit-transition: color 0.2s;
  -moz-transition: color 0.2s;
  transition: color 0.2s;
}
#section-portfolio .filters li a:hover {
  color: #E95410;
}
#section-portfolio .filters li a.selected {
  color: white;
}
#section-portfolio .portfolio-items .folio-item,
#section-beispiele .beispiel-item,
#section-wir .wir-item {
    display: table;
    margin-bottom: 24px;
    position: relative;
    vertical-align: middle;
    overflow: hidden;
    text-align: center;
    border: 2px solid #C0C0C0;
    width: 100%;
    border-radius: 8px;
    margin: 1em auto 0;
    padding: 1.5em;
    max-width: 540px;
    background-color: white;
}

#section-portfolio .portfolio-items .folio-item:hover,
#section-beispiele .beispiel-item:hover,
#section-wir .wir-item:hover{
  border-color: #E95410;

}

#section-portfolio .portfolio-items .folio-item:hover {
background-color: whitesmoke;
}

#section-portfolio .portfolio-items .folio-item img,
#section-beispiele .beispiel-item img {
  display: inline-block;
  max-width: 100%;
  z-index: 1;
  vertical-align: middle;
 /*  margin-bottom: 0 !important; */
 margin: 0 auto;

}

#section-portfolio .portfolio-items .folio-item a,
#section-beispiele .beispiel-item a {
  display: block;
  color: black;
  font-size: 1em;
  text-align: center;
/*
  min-height:200px;
*/
}

.beispiel-beschreibung{
    text-align: center;
}
.beispiel-beschreibung a{
    color:black;
}
.beispiel-beschreibung a:hover,
.beispiel-beschreibung.colorit{
    color:#E95410;
}
.beispiel-beschreibung.orange a{
    color: #E95410;
}


 .beispiel-item .over,
.wir-item .over {
    position: absolute;
    top: 2px;
    background: #5BC922 none repeat scroll 0% 0%;
    opacity: 0.8;
    height: 39px;
    left: 2px;
    width: 45px;
    color:white;

    border-radius: 50%;
    border-top-left-radius: 12%;
    border-bottom-left-radius: 0%;
    border-top-right-radius: 1%;
}


#section-portfolio .portfolio-items .folio-item .folio-hover {
  margin: 10px;
  background: #22c5ac;
}


#section-portfolio .fitvids {
  margin-bottom: 24px;
}

#section-portfolio .fitvids_vimeo {

}
/* die Icons bei wir-über-uns */
.wir-item span {
font-size: 96px;
line-height: 120px;
display:block;
margin-bottom: 10px;
}

#section-wir .wir-item a {
  display: block;
  color: black;
  font-size: 1em;
  text-align: center;
  min-height:200px;
} /*

#section-wir .wir-item a:hover{
  color: white;
}
*/


/* ========== ISOTOPE FILTERING ========== */
.isotope-item {
  z-index: 2;
}
.isotope-hidden.isotope-item {
  pointer-events: none;
  z-index: 1;
}
.isotope,
.isotope .isotope-item {
  -webkit-transition-duration: 0.8s;
  -moz-transition-duration: 0.8s;
  transition-duration: 0.8s;
}
.isotope {
  -webkit-transition-property: height, width;
  -moz-transition-property: height, width;
  transition-property: height, width;
}
.isotope .isotope-item {
  -webkit-transition-property: -webkit-transform, opacity;
  -moz-transition-property: -moz-transform, opacity;
  transition-property: transform, opacity;
}
/* ========== MODAL WINDOWS ========== */
.modal-header {
  /* background-color: #3a5062; */
  padding: 24px;
}
.modal-title {
  line-height: 24px;
  padding-bottom: 0;
}
.modal-body {
  color: #3a5062;
  padding: 24px;
}
.modal-body ul {
  padding-left: 24px;
}
.modal-footer {
/*   background-color: #f0f0f0; */
  padding: 24px;
  margin-top: 0;
}
.modal-footer .btn + .btn {
  margin-left: 12px;
  margin-bottom: 0;
}

/*** Videos ***/
#player,
.modal-content .player .video-wrapper{
	background-color: white !important;
}

/* ========== CONTACT SECTION ========== */
#section-contact a:hover {
  color: #3dddc5;
}

#contact-form{
  margin-right:1em;
}


.form-control {
border:1px solid silver;
/*
  height: 72px;
  font-size: 18px;
  font-weight: normal;
  line-height: 24px;
  vertical-align: middle;
  border-radius: 0;
  padding: 0 24px;
  margin: 0;
  margin-bottom: 12px;
  border: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  */
}
.form-group {
  margin-bottom: 12px;
}
.form-group .control-label {
  font-size: 18px;
  padding-top: 24px;
  font-family: "Abel", arial, sans-serif;
}
textarea.form-control {
  line-height: 26px;
    padding: 10px 16px;
}

#captcha_image{
    margin-right:1em;
}


/* ========== SUB-FOOTER SECTION ========== */
#sub-footer {
  background-color: gray;
  padding: 24px 0 0 0;
}
#sub-footer a {
  color: whitesmoke;
}


/** /////////////////////////////////////////////////////////////////  **/
/** ///////////////////  otherworld.de  /////////////////////////////  **/
/** /////////////////////////////////////////////////////////////////  **/

.invisible{
  display:none;
}


span.mandatory{
  color:#CC0000;
}

/** Produkt-Slider als horizontaler scrollbereich */
#scroll {
  height:180px;
  width: 100%;
  margin:2em 0;
  border: solid 1px #000000;
  background-color:#564b47;
  color:#fff;
  overflow: auto;
  -webkit-overflow-scrolling: touch; /*iPad und dem iPhone */
  }

 #einzeilig {  white-space: nowrap;}

#einzeilig img{
  margin: 5px;
  border: 3px solid #333;
  background-color: #000;
  width: auto;
  height:150px;
  }
#einzeilig p{
  margin: 0 5px;
  padding: 0;
  }



 #funktions-beschreibung .row{
   padding:15px;
 }

 #funktions-beschreibung .row li{
   margin-left:2em;
   font-size: 0.9em;
   list-style: circle;
   list-style: outside disc none;/*
   list-style-position: outside !important;
   */
   }


.center-block {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.newsliste p{
  border:1px solid silver;
  background: whitesmoke;
  padding:1em;
  color: gray;
}

.newsliste p b{
    display: block;
    margin-bottom: 1px solid gray;
}





.color-ok{
  color: #59CC33;
}
.color-fail{
  color: #940905;
}

.big{
  font-size: 1.25em;
}

.padding-left-1{
  padding-left: 1em;
}
.padding-left-2{
  padding-left: 2em;
}


#druckpartner{
  background-color:whitesmoke;
  text-align:left;
   padding:1em;
   border:1px solid silver;
}

/* Div und Btn der Zielgruuppen-Spalten */
.zielgruppe{
   margin-bottom: 5em;
   width:50%;
}

.zielgruppe button, .zielgruppe a{
    float: left;
    margin: 5%;
    width: 40%;
}

/* Buttons als Row */
.zielgruppe-l{
  padding-left:1%;
}

.zielgruppe-l button, .zielgruppe-l a{
    float: left;
    margin: 2%;
    width: 45%;
}



/* ============================================================================*/
/* ========== MEDIA QUERIES ================================================== */
/* ============================================================================*/

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

  .navbar-right {
      float: none !important;
  }
  .navbar-nav {
      float: none;
  }

  #section-slider ul.slides {
    min-height: 408px;
  }
  #section-slider .slider-text h1 {
    font-size: 32px;
    line-height: 36px;
    margin-bottom: 12px;
  }
  #section-slider .slider-text .btn-large {
    font-size: 18px;
  }

  #sub-footer {
    text-align: center;
  }

    #section-portfolio .portfolio-items .folio-item .folio-desc p
  {
    font-size: 14px;
    line-height:1;
    }

 /* Kachelhöhe in "Funktionen  */
 #section-portfolio .portfolio-items .folio-item a {
    min-height: 230px;
}


}
/* =========================================================================== */
@media screen and (max-width: 992px) {

  .navbar-right {
      float: none !important;
  }
  .navbar-nav {
      float: none;
  }


  #morph-header.morph-header-large {
    padding: 0;
  }
  #morph-header.morph-header-large .navbar-brand img {
    height: 48px;
    margin-top: 12px;
  }
  #morph-header .navbar-nav li a {
    margin-left: 24px;
  }
  #section-slider {
    margin-top: 0px;
  }
  #section-slider ul.slides {
    min-height: 360px;
    padding: 48px 0;
  }
  #section-slider ul.slides .slider-text {
    padding-top: 0;
    text-align: center;
  }
  #section-slider ul.slides img {
    display: none;
  }

  #features {
    padding-bottom: 48px;
  }
  #features .feature {
    padding-bottom: 24px;
  }
  #section-tour {
    text-align: center;
  }
  #section-tour .tour-line-half,
  #section-tour .tour-line-full {
    display: none;
  }
  #section-tour span {
    font-size: 96px;
  }
  #section-tour .tour-line-vert,
  #section-tour .tour-line-vert.pull-right {
    float: none !important;
    margin: 0 auto;
    height: 96px;
  }
  #section-tour .tour-step-container {
    padding-top: 24px;
  }
  #section-tour .media-body {
    margin-bottom: 72px;
  }
  #section-tour .media-body h3 {
    padding: 12px;
  }
  #section-tour .last-step {
    height: 190px;
  }
  #section-tour .last-step .launch {
    margin-top: 72px;
    float: none !important;
  }
  #section-tour .tour-step-icon.final {
    width: 120px;
    height: 120px;
  }
  #section-tour .tour-step-icon.final span {
    font-size: 54px;
    line-height: 72px;
  }
  #section-portfolio .filters li {
     padding: 0 24px;
  }
  #section-contact #contact-form label {
    padding-bottom: 12px;
  }

  #section-portfolio .portfolio-items .folio-item .folio-desc p
  {
    font-size: 14px;
    line-height:1;
    }


  #footer .twitter-feed {
    padding-top: 72px;
    text-align: center;
    clear: both;
  }
  #footer .twitter-feed span {
    font-size: 64px;
  }
}
/* ===== */
@media screen and (min-width: 768px) and (max-width: 992px) {
  #footer .links {
    text-align: right;
  }
  #footer .links .footer-links {
    text-align: right !important;
  }
}
/* =========================================================================== */
@media screen and (max-width: 768px) {
  body {
    padding-top: 0;

  }
  header {
    position: relative;
  }
  header .navbar-toggle {
    padding: 0;
    margin: 18px 24px;
  }
  header .navbar-brand {
    height: 72px;
    margin-left: 24px;
    padding: 0;
  }
  header .navbar-brand img {
    margin-top: 18px !important;
    height: 36px !important;
  }
  header .navbar-collapse {
    margin: 0 auto;
    text-align: center;
  }
  header .navbar-collapse ul li {
    padding: 12px 0;
  }

  .navbar-nav li a { /* weniger platz on small diveces */
      font-size: 12px;
    height: 12px;
    line-height: 14px;
    }

  #section-slider .flex-direction-nav .flex-next {
    background-position: 100% 0;
    right: 0px;
  }
  #section-slider .flex-direction-nav .flex-prev {
    left: 0px;
  }
  #section-slider .flexslider .flex-next {
    opacity: 0;
    right: 0px;
  }
  #section-slider .flexslider .flex-prev {
    opacity: 0;
    left: 0px;
  }
  #section-slider .flexslider:hover .flex-next {
    opacity: 0.2;
    right: 0px;
  }
  #section-slider .flexslider:hover .flex-prev {
    opacity: 0.2;
    left: 0px;
  }
  #section-slider .flexslider .flex-next:hover {
    opacity: 0.8;
    right: 0px;
  }
  #section-slider .flexslider .flex-prev:hover {
    opacity: 0.8;
    left: 0px;
  }
  #section-portfolio .filters-header {
    width: 96px;
    height: 96px;
    margin: 0 auto;
  }
  #section-portfolio .filters-header .navbar-toggle {
    margin-top: 0;
    margin-bottom: 0;
  }
  #section-portfolio .filters-header span {
    font-size: 40px;
    margin: 0 auto;
    color: white;
    -webkit-transition: color 0.2s;
    -moz-transition: color 0.2s;
    transition: color 0.2s;
  }
  #section-portfolio .filters-header span:hover {
    color: #22c5ac;
  }
  #section-portfolio #filters-nav ul {
    height: 100%;
  }
  #section-portfolio #filters-nav ul li {
    display: block;
    padding-bottom: 6px;
  }
  #section-portfolio #filters-nav.navbar-collapse {
    border-top: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
  }
  #section-portfolio #filters-nav.navbar-collapse.in {
    overflow-y: hidden;
    margin-bottom: 24px;
  }
  #section-contact {
    text-align: center;
  }
  #section-contact .btn {
    float: none !important;
  }
  #footer .footer-logo {
    padding: 0;
  }
  #footer img {
    margin: 0 auto;
  }

table.toggle .btn {
    font-size: 0.8em;
    padding: 2px;
}

/* Div und Btn der Zielgruuppen-Spalten */
.zielgruppe{
   margin-bottom: 5em;
   width:100%;
}

.zielgruppe button, .zielgruppe a{
    float: left;
    margin: 2%;
    width: 45%;
}

 /* Kachelhöhe in "Funktionen  */
 #section-portfolio .portfolio-items .folio-item a {
    min-height: 220px;
    min-width:
}

 #section-portfolio .col-sm-6{
   min-width: 45% !important;
 }


}

/* =========================================================================== */
@media screen and (max-width: 620px) {

 #section-portfolio .col-sm-6{
   min-width: 100% !important;

 }


}